1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@888 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
eban 2000-08-09 21:27:10 +00:00
parent db537ebae3
commit 1732b6fa4e
4 changed files with 12 additions and 2 deletions

View file

@ -1,3 +1,11 @@
Thu Aug 10 05:40:28 2000 WATANABE Hirofumi <eban@os.rim.or.jp>
* ext/extmk.rb.in: $CPPFLAGS should be initialized.
* ext/tcltklib/depend: add stubs.o.
* ext/tcltklib/extconf.rb: use $CPPFLAGS instead of $CFLAGS.
Wed Aug 9 16:31:48 2000 Yukihiro Matsumoto <matz@ruby-lang.org>
* eval.c (rb_callcc): thread status for continuations must be

View file

@ -550,7 +550,8 @@ def extmake(target)
ldir = "-L"+dir if dir
end
$CFLAGS = idir || ""
$CFLAGS = ""
$CPPFLAGS = idir || ""
$LDFLAGS = ldir || ""
begin

View file

@ -1 +1,2 @@
tcltklib.o: tcltklib.c $(hdrdir)/ruby.h $(topdir)/config.h $(hdrdir)/defines.h
stubs.o: stubs.c $(hdrdir)/ruby.h $(topdir)/config.h $(hdrdir)/defines.h

View file

@ -50,6 +50,6 @@ if have_header("tcl.h") && have_header("tk.h") &&
"/usr/X11/lib", "/usr/X11R6/lib", "/usr/openwin/lib")) &&
find_tcl(tcllib, stubs) &&
find_tk(tklib, stubs)
$CFLAGS += ' -DUSE_TCL_STUBS -DUSE_TK_STUBS' if stubs
$CPPFLAGS += ' -DUSE_TCL_STUBS -DUSE_TK_STUBS' if stubs
create_makefile("tcltklib")
end