diff options
author | H.Merijn Brand <h.m.brand@xs4all.nl> | 2013-09-16 14:47:08 +0200 |
---|---|---|
committer | H.Merijn Brand <h.m.brand@xs4all.nl> | 2013-09-16 14:47:08 +0200 |
commit | a05353bfa2b031e0c0283559432496d3915c83b2 (patch) | |
tree | 9e2a465aaa01ff4ba9d798cfa9d1309555df7f3b /win32 | |
parent | db433f450608e784356bfeb17ba135fbfb2f3af1 (diff) | |
download | perl-a05353bfa2b031e0c0283559432496d3915c83b2.tar.gz |
Regenerate Configure and chainsaw voidflags
Diffstat (limited to 'win32')
-rw-r--r-- | win32/config.ce | 2 | ||||
-rw-r--r-- | win32/config.gc | 2 | ||||
-rw-r--r-- | win32/config.vc | 2 | ||||
-rw-r--r-- | win32/config_H.ce | 25 | ||||
-rw-r--r-- | win32/config_H.gc | 25 | ||||
-rw-r--r-- | win32/config_H.vc | 25 |
6 files changed, 0 insertions, 81 deletions
diff --git a/win32/config.ce b/win32/config.ce index 46c067328f..3e70a81b00 100644 --- a/win32/config.ce +++ b/win32/config.ce @@ -538,7 +538,6 @@ db_prefixtype='int' db_version_major='0' db_version_minor='0' db_version_patch='0' -defvoidused='15' direntrytype='struct direct' dlext='dll' dlsrc='dl_win32.xs' @@ -1025,7 +1024,6 @@ vendorprefixexp='' version='' versiononly='undef' vi='' -voidflags='15' xlibpth='/usr/lib/386 /lib/386' zcat='' zip='zip' diff --git a/win32/config.gc b/win32/config.gc index d8167951b9..e426c9b809 100644 --- a/win32/config.gc +++ b/win32/config.gc @@ -539,7 +539,6 @@ db_prefixtype='int' db_version_major='0' db_version_minor='0' db_version_patch='0' -defvoidused='15' direntrytype='struct direct' dlext='dll' dlltool='~ARCHPREFIX~dlltool' @@ -1080,7 +1079,6 @@ version='' version_patchlevel_string='' versiononly='undef' vi='' -voidflags='15' xlibpth='/usr/lib/386 /lib/386' yacc='yacc' yaccflags='' diff --git a/win32/config.vc b/win32/config.vc index fbfd7cec2b..d133b58572 100644 --- a/win32/config.vc +++ b/win32/config.vc @@ -539,7 +539,6 @@ db_prefixtype='int' db_version_major='0' db_version_minor='0' db_version_patch='0' -defvoidused='15' direntrytype='struct direct' dlext='dll' dlsrc='dl_win32.xs' @@ -1079,7 +1078,6 @@ version='' version_patchlevel_string='' versiononly='undef' vi='' -voidflags='15' xlibpth='/usr/lib/386 /lib/386' yacc='yacc' yaccflags='' diff --git a/win32/config_H.ce b/win32/config_H.ce index 1e129e2873..f6be13aec4 100644 --- a/win32/config_H.ce +++ b/win32/config_H.ce @@ -3740,31 +3740,6 @@ /*#define PERL_VENDORLIB_EXP "" /**/ /*#define PERL_VENDORLIB_STEM "" /**/ -/* VOIDFLAGS: - * This symbol indicates how much support of the void type is given by this - * compiler. What various bits mean: - * - * 1 = supports declaration of void - * 2 = supports arrays of pointers to functions returning void - * 4 = supports comparisons between pointers to void functions and - * addresses of void functions - * 8 = suports declaration of generic void pointers - * - * The package designer should define VOIDUSED to indicate the requirements - * of the package. This can be done either by #defining VOIDUSED before - * including config.h, or by defining defvoidused in Myinit.U. If the - * latter approach is taken, only those flags will be tested. If the - * level of void support necessary is not present, defines void to int. - */ -#ifndef VOIDUSED -#define VOIDUSED 15 -#endif -#define VOIDFLAGS 15 -#if (VOIDFLAGS & VOIDUSED) != VOIDUSED -#define void int /* is void to be avoided? */ -#define M_VOID /* Xenix strikes again */ -#endif - /* HASATTRIBUTE_FORMAT: * Can we handle GCC attribute for checking printf-style formats */ diff --git a/win32/config_H.gc b/win32/config_H.gc index 0d13bb6587..6da645a8a3 100644 --- a/win32/config_H.gc +++ b/win32/config_H.gc @@ -3336,31 +3336,6 @@ /*#define PERL_VENDORLIB_EXP "" / **/ /*#define PERL_VENDORLIB_STEM "" / **/ -/* VOIDFLAGS: - * This symbol indicates how much support of the void type is given by this - * compiler. What various bits mean: - * - * 1 = supports declaration of void - * 2 = supports arrays of pointers to functions returning void - * 4 = supports comparisons between pointers to void functions and - * addresses of void functions - * 8 = supports declaration of generic void pointers - * - * The package designer should define VOIDUSED to indicate the requirements - * of the package. This can be done either by #defining VOIDUSED before - * including config.h, or by defining defvoidused in Myinit.U. If the - * latter approach is taken, only those flags will be tested. If the - * level of void support necessary is not present, defines void to int. - */ -#ifndef VOIDUSED -#define VOIDUSED 15 -#endif -#define VOIDFLAGS 15 -#if (VOIDFLAGS & VOIDUSED) != VOIDUSED -#define void int /* is void to be avoided? */ -#define M_VOID /* Xenix strikes again */ -#endif - /* PERL_USE_DEVEL: * This symbol, if defined, indicates that Perl was configured with * -Dusedevel, to enable development features. This should not be diff --git a/win32/config_H.vc b/win32/config_H.vc index 2a5f016525..92dfdd9e3d 100644 --- a/win32/config_H.vc +++ b/win32/config_H.vc @@ -3330,31 +3330,6 @@ /*#define PERL_VENDORLIB_EXP "" / **/ /*#define PERL_VENDORLIB_STEM "" / **/ -/* VOIDFLAGS: - * This symbol indicates how much support of the void type is given by this - * compiler. What various bits mean: - * - * 1 = supports declaration of void - * 2 = supports arrays of pointers to functions returning void - * 4 = supports comparisons between pointers to void functions and - * addresses of void functions - * 8 = supports declaration of generic void pointers - * - * The package designer should define VOIDUSED to indicate the requirements - * of the package. This can be done either by #defining VOIDUSED before - * including config.h, or by defining defvoidused in Myinit.U. If the - * latter approach is taken, only those flags will be tested. If the - * level of void support necessary is not present, defines void to int. - */ -#ifndef VOIDUSED -#define VOIDUSED 15 -#endif -#define VOIDFLAGS 15 -#if (VOIDFLAGS & VOIDUSED) != VOIDUSED -#define void int /* is void to be avoided? */ -#define M_VOID /* Xenix strikes again */ -#endif - /* PERL_USE_DEVEL: * This symbol, if defined, indicates that Perl was configured with * -Dusedevel, to enable development features. This should not be |