From 983c7c74eef6ae0fb622be7c840b194cd768326d Mon Sep 17 00:00:00 2001 From: nobu Date: Mon, 25 Jul 2005 12:31:21 +0000 Subject: * {bcc32,win32,wince}/Makefile.sub: moved CPPFLAGS only for ruby source to XCFLAGS. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@8834 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 39 ++++++++++++++++++++++----------------- bcc32/Makefile.sub | 5 +---- win32/Makefile.sub | 5 +---- wince/Makefile.sub | 5 ++--- 4 files changed, 26 insertions(+), 28 deletions(-) diff --git a/ChangeLog b/ChangeLog index 54fbc5e47f..e8bb865788 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Mon Jul 25 21:30:46 2005 Nobuyoshi Nakada + + * {bcc32,win32,wince}/Makefile.sub: moved CPPFLAGS only for ruby + source to XCFLAGS. + Mon Jul 25 13:45:18 2005 NAJIMA Hiroki * io.c: check HAVE_SYS_IOCTL_H before including the header. @@ -33,7 +38,7 @@ Fri Jul 22 15:02:39 2005 Kouhei Sutou * sample/rss/tdiary-plugin/rss-recent.rb: ditto. * sample/rss/tdiary-plugin/rss-recent.rb: 0.0.6 -> 0.0.7. - + Fri Jul 22 14:37:43 2005 Kouhei Sutou * lib/rss/parser.rb (RSS::Parser#initialize): accept HTTP/FTP @@ -51,34 +56,34 @@ Fri Jul 22 07:01:42 2005 Hidetoshi NAGAI * ext/tcltklib/tcltklib.c: add TclTkIp#has_mainwindow? method. - * ext/tk/lib/tk.rb: add Tk.has_mainwindow? method. + * ext/tk/lib/tk.rb: add Tk.has_mainwindow? method. - * ext/tk/lib/multi-tk.rb: add MultiTkIp#has_mainwindow? method. + * ext/tk/lib/multi-tk.rb: add MultiTkIp#has_mainwindow? method. - * ext/tk/lib/remote-tk.rb: add RemoteTkIp#has_mainwindow? method. + * ext/tk/lib/remote-tk.rb: add RemoteTkIp#has_mainwindow? method. * ext/tk/lib/multi-tk.rb: slave IP fail to exit itself when $SAFE==4. - * ext/tk/lib/multi-tk.rb: remove constants from MultiTkIp module to + * ext/tk/lib/multi-tk.rb: remove constants from MultiTkIp module to avoid access from external. - * ext/tk/lib/multi-tk.rb: check_root flag is ignored on slave IPs' - mainloop. + * ext/tk/lib/multi-tk.rb: check_root flag is ignored on slave IPs' + mainloop. - * ext/tk/lib/multi-tk.rb: hang-up Tk.mainloop called on a slave IP + * ext/tk/lib/multi-tk.rb: hang-up Tk.mainloop called on a slave IP with $SAFE==4. * ext/tk/lib/multi-tk.rb: MultiTkIp#bg_eval_proc doesn't work - properly. + properly. * ext/tk/lib/multi-tk.rb: add MultiTkIp#set_cb_error(proc) and - cb_error(exc) to log errors at callbacks on safe slave IPs. + cb_error(exc) to log errors at callbacks on safe slave IPs. - * ext/tk/lib/multi-tk.rb: fail to get an available slave IP object - when call Tk.mainloop in the block which is given to new_* method, - because cannot finish initialize while the root widget is alive. + * ext/tk/lib/multi-tk.rb: fail to get an available slave IP object + when call Tk.mainloop in the block which is given to new_* method, + because cannot finish initialize while the root widget is alive. - * ext/tk/lib/multi-tk.rb: fail to control a slave IP when Tk.mainloop + * ext/tk/lib/multi-tk.rb: fail to control a slave IP when Tk.mainloop runs on the IP. Wed Jul 20 19:20:37 2005 NAKAMURA Usaku @@ -93,7 +98,7 @@ Wed Jul 20 18:40:50 2005 Hirokazu Yamamoto Wed Jul 20 18:07:11 2005 Tanaka Akira - * io.c (rb_io_ctl): update FMODE_WSPLIT_INITIALIZED and FMODE_WSPLIT + * io.c (rb_io_ctl): update FMODE_WSPLIT_INITIALIZED and FMODE_WSPLIT by F_SETFL. Wed Jul 20 10:04:51 2005 Yukihiro Matsumoto @@ -143,7 +148,7 @@ Tue Jul 19 14:08:22 2005 Hirokazu Yamamoto Tue Jul 19 13:19:46 2005 Hidetoshi NAGAI * ext/tk/lib/tk/variable.rb: For symmetry, add TkVariable#string. It - returns a string even if the default value type of the TkVariable + returns a string even if the default value type of the TkVariable object is not "string". Mon Jul 18 21:40:20 2005 Hirokazu Yamamoto @@ -342,7 +347,7 @@ Tue Jul 5 14:51:35 2005 Hidetoshi NAGAI Mon Jul 4 14:35:52 2005 Yukihiro Matsumoto * sample/svr.rb: service can be stopped by ill-behaved client; use - tsvr.rb instead. + tsvr.rb instead. Mon Jul 4 13:25:21 2005 Yukihiro Matsumoto diff --git a/bcc32/Makefile.sub b/bcc32/Makefile.sub index 021aa4f0ca..213d5a7826 100644 --- a/bcc32/Makefile.sub +++ b/bcc32/Makefile.sub @@ -116,9 +116,6 @@ OUTFLAG = -o !ifndef CFLAGS CFLAGS = -q -tWR -tWC $(DEBUGFLAGS) $(OPTFLAGS) $(PROCESSOR_FLAG) -w- -wsus -wcpt -wdup -wext -wrng -wrpt -wzdi !endif -!ifndef CPPFLAGS -CPPFLAGS = -I. -I$(srcdir) -I$(srcdir)missing -!endif !ifndef LDFLAGS LDFLAGS = -S:$(STACK) !endif @@ -135,7 +132,7 @@ MISSING = acosh.obj crypt.obj erf.obj win32.obj STACK = 0x2000000 !endif -XCFLAGS = -DRUBY_EXPORT +XCFLAGS = -DRUBY_EXPORT -I. -I$(srcdir) -I$(srcdir)missing ARFLAGS = /a LD = ilink32 -q -Gn diff --git a/win32/Makefile.sub b/win32/Makefile.sub index 16494794bf..7141575e9f 100644 --- a/win32/Makefile.sub +++ b/win32/Makefile.sub @@ -115,9 +115,6 @@ OUTFLAG = -Fe !if !defined(CFLAGS) CFLAGS = -MD $(DEBUGFLAGS) $(OPTFLAGS) $(PROCESSOR_FLAG) !endif -!if !defined(CPPFLAGS) -CPPFLAGS = -I. -I$(srcdir) -I$(srcdir)/missing -!endif !if !defined(LDFLAGS) LDFLAGS = -link -incremental:no -debug -opt:ref -opt:icf !endif @@ -137,7 +134,7 @@ ARFLAGS = -machine:$(MACHINE) -out: CC = $(CC) -nologo LD = $(CC) LDSHARED = $(LD) -LD -XCFLAGS = -DRUBY_EXPORT +XCFLAGS = -DRUBY_EXPORT -I. -I$(srcdir) -I$(srcdir)/missing DLDFLAGS = $(LDFLAGS) -dll SOLIBS = diff --git a/wince/Makefile.sub b/wince/Makefile.sub index 6579705d56..2b8dd06b1d 100644 --- a/wince/Makefile.sub +++ b/wince/Makefile.sub @@ -108,8 +108,7 @@ OUTFLAG = -Fe CFLAGS = $(DEBUGFLAGS) $(OPTFLAGS) $(PROCESSOR_FLAG) !endif !if !defined(CPPFLAGS) -CPPFLAGS = -I. -I$(srcdir) -I$(srcdir)/missing -I$(srcdir)/wince \ - $(CECPUDEF) -DUNDER_CE -D_WIN32_WCE=$(SUBSYSVERSION:.=) \ +CPPFLAGS = $(CECPUDEF) -DUNDER_CE -D_WIN32_WCE=$(SUBSYSVERSION:.=) \ -DFILENAME_MAX=MAX_PATH -DTLS_OUT_OF_INDEXES=0xFFFFFFFF \ -DBUFSIZ=512 -D_UNICODE -DUNICODE !endif @@ -137,7 +136,7 @@ ARFLAGS = -machine:$(MACHINE) -out: CC = $(CC) -nologo LD = $(CC) LDSHARED = $(LD) -LD -XCFLAGS = -DRUBY_EXPORT +XCFLAGS = -DRUBY_EXPORT -I. -I$(srcdir) -I$(srcdir)/missing -I$(srcdir)/wince DLDFLAGS = $(LDFLAGS) -dll SOLIBS = -- cgit v1.2.3