diff options
author | Nick Ing-Simmons <nik@tiuk.ti.com> | 2002-01-26 22:27:08 +0000 |
---|---|---|
committer | Nick Ing-Simmons <nik@tiuk.ti.com> | 2002-01-26 22:27:08 +0000 |
commit | 6643fc8cdb7aebe9d196d6332476546a9a35daec (patch) | |
tree | 08cf586b91f0f66e4a28cb980f757e9c27802426 /win32/config_H.vc | |
parent | 126dd235999b6580f8d629a35f0e2b2d32077c88 (diff) | |
download | perl-6643fc8cdb7aebe9d196d6332476546a9a35daec.tar.gz |
"All tests successful" VC6.0 Win32
(Update config.vc to need cppstdin so those tests are skipped...)
p4raw-id: //depot/perlio@14434
Diffstat (limited to 'win32/config_H.vc')
-rw-r--r-- | win32/config_H.vc | 56 |
1 files changed, 34 insertions, 22 deletions
diff --git a/win32/config_H.vc b/win32/config_H.vc index 02397c49a2..58b22db890 100644 --- a/win32/config_H.vc +++ b/win32/config_H.vc @@ -13,7 +13,7 @@ /* * Package name : perl5 * Source directory : - * Configuration time: Mon Jan 14 15:39:13 2002 + * Configuration time: Sat Jan 26 22:15:55 2002 * Configured by : nick * Target system : */ @@ -504,20 +504,6 @@ */ /*#define HAS_SETSID /**/ -/* Shmat_t: - * This symbol holds the return type of the shmat() system call. - * Usually set to 'void *' or 'char *'. - */ -/* HAS_SHMAT_PROTOTYPE: - * This symbol, if defined, indicates that the sys/shm.h includes - * a prototype for shmat(). Otherwise, it is up to the program to - * guess one. Shmat_t shmat(int, Shmat_t, int) is a good guess, - * but not always right so it should be emitted by the program only - * when HAS_SHMAT_PROTOTYPE is not defined to avoid conflicting defs. - */ -#define Shmat_t void * /**/ -/*#define HAS_SHMAT_PROTOTYPE /**/ - /* HAS_STRCHR: * This symbol is defined to indicate that the strchr()/strrchr() * functions are available for string searching. If not, try the @@ -892,12 +878,6 @@ */ /*#define I_VFORK /**/ -/* CAN_PROTOTYPE: - * If defined, this macro indicates that the C compiler can handle - * function prototypes. - */ -#define CAN_PROTOTYPE /**/ - /* INTSIZE: * This symbol contains the value of sizeof(int) so that the C * preprocessor can make decisions based on it. @@ -1134,7 +1114,7 @@ * This symbol is intended to be used along with CPPRUN in the same manner * symbol CPPMINUS is used with CPPSTDIN. It contains either "-" or "". */ -#define CPPSTDIN "cl -nologo -E" +#define CPPSTDIN "cppstdin" #define CPPMINUS "" #define CPPRUN "cl -nologo -E" #define CPPLAST "" @@ -3402,6 +3382,20 @@ /*#define SETUID_SCRIPTS_ARE_SECURE_NOW /**/ /*#define DOSUID /**/ +/* Shmat_t: + * This symbol holds the return type of the shmat() system call. + * Usually set to 'void *' or 'char *'. + */ +/* HAS_SHMAT_PROTOTYPE: + * This symbol, if defined, indicates that the sys/shm.h includes + * a prototype for shmat(). Otherwise, it is up to the program to + * guess one. Shmat_t shmat(int, Shmat_t, int) is a good guess, + * but not always right so it should be emitted by the program only + * when HAS_SHMAT_PROTOTYPE is not defined to avoid conflicting defs. + */ +#define Shmat_t void * /**/ +/*#define HAS_SHMAT_PROTOTYPE /**/ + /* I_NDBM: * This symbol, if defined, indicates that <ndbm.h> exists and should * be included. @@ -3419,6 +3413,24 @@ #define I_STDARG /**/ /*#define I_VARARGS /**/ +/* CAN_PROTOTYPE: + * If defined, this macro indicates that the C compiler can handle + * function prototypes. + */ +/* _: + * This macro is used to declare function parameters for folks who want + * to make declarations with prototypes using a different style than + * the above macros. Use double parentheses. For example: + * + * int main _((int argc, char *argv[])); + */ +#define CAN_PROTOTYPE /**/ +#ifdef CAN_PROTOTYPE +#define _(args) args +#else +#define _(args) () +#endif + /* SH_PATH: * This symbol contains the full pathname to the shell used on this * on this system to execute Bourne shell scripts. Usually, this will be |