diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-04-07 01:43:27 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-04-07 01:43:27 +0000 |
commit | b10a3c15cf0b3ab78fe761ad7f7cc37a54d8e0ad (patch) | |
tree | 225b6819959134ec7c2f91ad5969f788886ae8fb /wince | |
parent | 86a34bd0f3b11183e1f8d0f7b6b2589a7a7d9710 (diff) | |
download | ruby-b10a3c15cf0b3ab78fe761ad7f7cc37a54d8e0ad.tar.gz ruby-b10a3c15cf0b3ab78fe761ad7f7cc37a54d8e0ad.tar.xz ruby-b10a3c15cf0b3ab78fe761ad7f7cc37a54d8e0ad.zip |
* Makefile.in, common.mk, */Makefile.sub (ext/extinit.o): OUTFLAG
doesn't work for object files on VC.
* */Makefile.sub (config.h): need SIZEOF_TIME_T now.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6113 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'wince')
-rw-r--r-- | wince/Makefile.sub | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/wince/Makefile.sub b/wince/Makefile.sub index 88ea02d68..34a844695 100644 --- a/wince/Makefile.sub +++ b/wince/Makefile.sub @@ -207,6 +207,7 @@ config.h: #define SIZEOF_VOIDP 4 #define SIZEOF_FLOAT 4 #define SIZEOF_DOUBLE 8 +#define SIZEOF_TIME_T 4 #define HAVE_PROTOTYPES 1 #define TOKEN_PASTE(x,y) x##y #define HAVE_STDARG_PROTOTYPES 1 @@ -482,3 +483,6 @@ end $(OBJS): {$(srcdir)}win32/win32.h dir.$(OBJEXT): {$(srcdir)}win32/dir.h + +ext/extinit.obj: ext/extinit.c $(SETUP) + $(CC) $(CFLAGS) $(XCFLAGS) $(CPPFLAGS) -Fo$@ -c ext/extinit.c |