diff options
author | Paul Smith <psmith@gnu.org> | 2002-08-08 00:11:19 +0000 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 2002-08-08 00:11:19 +0000 |
commit | f2ceb0d68aa780e57641e50d972fac3b6e70bd58 (patch) | |
tree | 73853f27fe9a08b2ba2938057f1f3ccc51597d06 /config.h-vms.template | |
parent | bccb277dda1a4dcc6729824a7c9d544086f147c3 (diff) | |
download | gunmake-f2ceb0d68aa780e57641e50d972fac3b6e70bd58.tar.gz |
Incorporate some VMS fixes.
Add -B option docs.
Add .VARIABLES variable.
Add a few new tests.
Add a new translation: Swedish
Diffstat (limited to 'config.h-vms.template')
-rw-r--r-- | config.h-vms.template | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/config.h-vms.template b/config.h-vms.template index 1dbf04c..7d7d9b0 100644 --- a/config.h-vms.template +++ b/config.h-vms.template @@ -9,13 +9,6 @@ /* #undef _ALL_SOURCE */ #endif -/* Define if using alloca.c. */ -/* #undef C_ALLOCA */ -/* maybe this should be placed into make.h */ -#if defined(__VAX) && defined(__DECC) -#define alloca(n) __ALLOCA(n) -#endif - /* Define to 1 if NLS is requested. */ /* #undef ENABLE_NLS */ @@ -345,6 +338,9 @@ /* Define if you have the sun library (-lsun). */ /* #undef HAVE_LIBSUN */ +/* Use high resolution file timestamps if nonzero. */ +#define FILE_TIMESTAMP_HI_RES 0 + /* Define for case insensitve filenames */ #define HAVE_CASE_INSENSITIVE_FS 1 @@ -396,5 +392,12 @@ #define PARAMS(protos) () #endif /* C++ or ANSI C. */ +/* Define if using alloca.c. */ +/* #undef C_ALLOCA */ +/* maybe this should be placed into make.h */ +#if defined(__VAX) && defined(__DECC) +#define alloca(n) __ALLOCA(n) +#endif + /* Build host information. */ #define MAKE_HOST "VMS" |