diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-02-15 01:27:48 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-02-15 01:27:48 +0000 |
| commit | 2c53b38b7ce6a63518a44393e8b5a9107cb33061 (patch) | |
| tree | b3babbf4e36001524756c7683221af3af72d0cbf | |
| parent | 9c615e03007d348438f458dfd0dbbb9626ff3145 (diff) | |
| download | ruby-2c53b38b7ce6a63518a44393e8b5a9107cb33061.tar.gz ruby-2c53b38b7ce6a63518a44393e8b5a9107cb33061.tar.xz ruby-2c53b38b7ce6a63518a44393e8b5a9107cb33061.zip | |
* {win,bcc}32/Makefile.sub (config.h): added HAVE_FTRUNCATE.
[ruby-dev:33786]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@15480 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | bcc32/Makefile.sub | 1 | ||||
| -rw-r--r-- | win32/Makefile.sub | 1 |
3 files changed, 7 insertions, 0 deletions
@@ -1,3 +1,8 @@ +Fri Feb 15 10:27:47 2008 Nobuyoshi Nakada <nobu@ruby-lang.org> + + * {win,bcc}32/Makefile.sub (config.h): added HAVE_FTRUNCATE. + [ruby-dev:33786] + Fri Feb 15 09:44:11 2008 Nobuyoshi Nakada <nobu@ruby-lang.org> * parse.y (reg_compile_gen): reg_fragment_setenc might not raise an diff --git a/bcc32/Makefile.sub b/bcc32/Makefile.sub index 5b3939bf4..1510b9740 100644 --- a/bcc32/Makefile.sub +++ b/bcc32/Makefile.sub @@ -309,6 +309,7 @@ $(CONFIG_H): $(MKFILES) $(srcdir)/bcc32/Makefile.sub \#define HAVE_FSYNC 1 \#define HAVE_GETCWD 1 \#define HAVE_TRUNCATE 1 +\#define HAVE_FTRUNCATE 1 \#define HAVE_FSEEKO 1 \#define HAVE_FTELLO 1 \#define HAVE_TIMES 1 diff --git a/win32/Makefile.sub b/win32/Makefile.sub index be31962b7..e2a38146d 100644 --- a/win32/Makefile.sub +++ b/win32/Makefile.sub @@ -398,6 +398,7 @@ $(CONFIG_H): $(MKFILES) $(srcdir)/win32/Makefile.sub $(win_srcdir)/Makefile.sub #define HAVE_FSYNC 1 #define HAVE_GETCWD 1 #define HAVE_TRUNCATE 1 +#define HAVE_FTRUNCATE 1 #define HAVE_FSEEKO 1 #define HAVE_FTELLO 1 #define HAVE_TIMES 1 |
