diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-06-10 05:47:12 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-06-10 05:47:12 +0000 |
commit | f85a060b910fa7dc04d6369ca131f566b5732ec2 (patch) | |
tree | ec2c965c41c51d9604588f8ed8d1920e63beaf81 /win32 | |
parent | e310addeb1e19ce3f7a5fa2b532a88e4d829768b (diff) | |
download | ruby-f85a060b910fa7dc04d6369ca131f566b5732ec2.tar.gz ruby-f85a060b910fa7dc04d6369ca131f566b5732ec2.tar.xz ruby-f85a060b910fa7dc04d6369ca131f566b5732ec2.zip |
* Makefile.in, win32/Makefile.sub (XCFLAGS): -I. is needed for *.inc.
* ext/extmk.rb (parse_args): add also topdir to mflags.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@12504 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'win32')
-rw-r--r-- | win32/Makefile.sub | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/Makefile.sub b/win32/Makefile.sub index 88bf4f895..282fbb22e 100644 --- a/win32/Makefile.sub +++ b/win32/Makefile.sub @@ -151,7 +151,7 @@ ARFLAGS = -machine:$(MACHINE) -out: CC = $(CC) -nologo LD = $(CC) LDSHARED = $(LD) -LD -XCFLAGS = -DRUBY_EXPORT -I$(arch_hdrdir) -I$(hdrdir) -I$(srcdir) -I$(srcdir)/missing +XCFLAGS = -DRUBY_EXPORT -I. -I$(arch_hdrdir) -I$(hdrdir) -I$(srcdir) -I$(srcdir)/missing !if $(MSC_VER) >= 1400 # Prevents VC++ 2005 (cl ver 14) warnings CPPFLAGS = $(CPPFLAGS) -D_CRT_SECURE_NO_DEPRECATE -D_CRT_NONSTDC_NO_DEPRECATE |