X-Git-Url: https://perl5.git.perl.org/perl5.git/blobdiff_plain/c3c50a5a932e0a38b0e9dcbd324c27279e82557c..365f8c3e9d04802accfb3922fb8ab94c3d17c8d9:/plan9/config.plan9 diff --git a/plan9/config.plan9 b/plan9/config.plan9 index 27b76ae..1508fab 100644 --- a/plan9/config.plan9 +++ b/plan9/config.plan9 @@ -3385,8 +3385,8 @@ * This symbol contains the ~name expanded version of PRIVLIB, to be used * in programs that are not prepared to deal with ~ expansion at run-time. */ -#define PRIVLIB "/sys/lib/perl/5.13.11" /**/ -#define PRIVLIB_EXP "/sys/lib/perl/5.13.11" /**/ +#define PRIVLIB "/sys/lib/perl/5.19.8" /**/ +#define PRIVLIB_EXP "/sys/lib/perl/5.19.8" /**/ /* PTRSIZE: * This symbol contains the size of a pointer, so that the C preprocessor @@ -3513,9 +3513,9 @@ * removed. The elements in inc_version_list (inc_version_list.U) can * be tacked onto this variable to generate a list of directories to search. */ -#define SITELIB "/sys/lib/perl/5.13.11/site_perl" /**/ -#define SITELIB_EXP "/sys/lib/perl/5.13.11/site_perl" /**/ -#define SITELIB_STEM "/sys/lib/perl/5.13.11/site_perl" /**/ +#define SITELIB "/sys/lib/perl/5.19.8/site_perl" /**/ +#define SITELIB_EXP "/sys/lib/perl/5.19.8/site_perl" /**/ +#define SITELIB_STEM "/sys/lib/perl/5.19.8/site_perl" /**/ /* Size_t_size: * This symbol holds the size of a Size_t in bytes. @@ -3732,31 +3732,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 - /* HAS_CRYPT: * This symbol, if defined, indicates that the crypt routine is available * to encrypt passwords and the like.