From b8f89394b36d73ae12e15b30dca06e296576156f Mon Sep 17 00:00:00 2001 From: usa Date: Mon, 24 Nov 2003 05:54:05 +0000 Subject: * bcc32/Makefile.sub, win32/Makefile.sub, wince/Makefile.sub (XCFLAGS): output empty value instead of `-DRUBY_EXPORT'. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5010 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ bcc32/Makefile.sub | 2 +- win32/Makefile.sub | 2 +- wince/Makefile.sub | 2 +- 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 296f0aae2..f8ea64978 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Mon Nov 24 14:53:10 2003 NAKAMURA Usaku + + * bcc32/Makefile.sub, win32/Makefile.sub, wince/Makefile.sub + (XCFLAGS): output empty value instead of `-DRUBY_EXPORT'. + Sat Nov 22 23:09:45 2003 WATANABE Hirofumi * configure.in: set enable_pthread to no on MinGW. diff --git a/bcc32/Makefile.sub b/bcc32/Makefile.sub index 55ac6a028..7b592e22b 100644 --- a/bcc32/Makefile.sub +++ b/bcc32/Makefile.sub @@ -348,7 +348,7 @@ s,@ALLOCA@,$(ALLOCA),;t t s,@DEFAULT_KCODE@,$(DEFAULT_KCODE),;t t s,@EXEEXT@,.exe,;t t s,@OBJEXT@,obj,;t t -s,@XCFLAGS@,$(XCFLAGS),;t t +s,@XCFLAGS@,,;t t s,@XLDFLAGS@,$(XLDFLAGS),;t t s,@DLDFLAGS@,$(DLDFLAGS),;t t s,@STATIC@,$(STATIC),;t t diff --git a/win32/Makefile.sub b/win32/Makefile.sub index 700c80c75..55f3020bc 100644 --- a/win32/Makefile.sub +++ b/win32/Makefile.sub @@ -345,7 +345,7 @@ s,@ALLOCA@,$(ALLOCA),;t t s,@DEFAULT_KCODE@,$(DEFAULT_KCODE),;t t s,@EXEEXT@,.exe,;t t s,@OBJEXT@,obj,;t t -s,@XCFLAGS@,$(XCFLAGS),;t t +s,@XCFLAGS@,,;t t s,@XLDFLAGS@,$(XLDFLAGS),;t t s,@DLDFLAGS@,$(DLDFLAGS) $$(LIBPATH) -def:$$(DEFFILE),;t t s,@STATIC@,$(STATIC),;t t diff --git a/wince/Makefile.sub b/wince/Makefile.sub index 874ad3cae..e6b591333 100644 --- a/wince/Makefile.sub +++ b/wince/Makefile.sub @@ -379,7 +379,7 @@ s,@ALLOCA@,$(ALLOCA),;t t s,@DEFAULT_KCODE@,$(DEFAULT_KCODE),;t t s,@EXEEXT@,.exe,;t t s,@OBJEXT@,obj,;t t -s,@XCFLAGS@,$(XCFLAGS),;t t +s,@XCFLAGS@,,;t t s,@XLDFLAGS@,$(XLDFLAGS),;t t s,@DLDFLAGS@,$(DLDFLAGS) $$(LIBPATH) -def:$$(DEFFILE),;t t s,@STATIC@,$(STATIC),;t t -- cgit