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/config_H.vc | |
parent | db433f450608e784356bfeb17ba135fbfb2f3af1 (diff) | |
download | perl-a05353bfa2b031e0c0283559432496d3915c83b2.tar.gz |
Regenerate Configure and chainsaw voidflags
Diffstat (limited to 'win32/config_H.vc')
-rw-r--r-- | win32/config_H.vc | 25 |
1 files changed, 0 insertions, 25 deletions
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 |