diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2006-08-08 03:02:35 +0300 |
---|---|---|
committer | Steve Peters <steve@fisharerojo.org> | 2006-08-08 03:55:13 +0000 |
commit | 666ea1927d03c6430ac8120e8603244e721e20a0 (patch) | |
tree | 825978bf91e0470887834b60aeb5ca5815ec39ed /uconfig.h | |
parent | 0ec9ad96b741d60d5dad460acf757c031b11fe15 (diff) | |
download | perl-666ea1927d03c6430ac8120e8603244e721e20a0.tar.gz |
g++ stage 1 reached
Message-ID: <44D7AA6B.4040802@iki.fi>
p4raw-id: //depot/perl@28674
Diffstat (limited to 'uconfig.h')
-rw-r--r-- | uconfig.h | 27 |
1 files changed, 19 insertions, 8 deletions
@@ -349,13 +349,6 @@ */ /*#define HAS_PIPE / **/ -/* HAS_POLL: - * This symbol, if defined, indicates that the poll routine is - * available to poll active file descriptors. You may safely - * include <poll.h> when this symbol is defined. - */ -/*#define HAS_POLL / **/ - /* HAS_READDIR: * This symbol, if defined, indicates that the readdir routine is * available to read directory entries. You may have to include @@ -1174,6 +1167,11 @@ /*#define HAS_BUILTIN_EXPECT / **/ /*#define HAS_BUILTIN_CHOOSE_EXPR / **/ +/* HAS_C99_VARIADIC_MACROS: + * If defined, the compiler supports C99 variadic macros. + */ +/*#define HAS_C99_VARIADIC_MACROS / **/ + /* CASTI32: * This symbol is defined if the C compiler can cast negative * or large floating point numbers to 32-bit ints. @@ -1237,6 +1235,12 @@ */ /*#define HAS_COPYSIGNL / **/ +/* USE_CPLUSPLUS: + * This symbol, if defined, indicates that a C++ compiler was + * used to compiled Perl and will be used to compile extensions. + */ +/*#define USE_CPLUSPLUS / **/ + /* HAS_CRYPT: * This symbol, if defined, indicates that the crypt routine is available * to encrypt passwords and the like. @@ -3475,7 +3479,7 @@ /* I_POLL: * This symbol, if defined, indicates that <poll.h> exists and - * should be included. + * should be included. (see also HAS_POLL) */ /*#define I_POLL / **/ @@ -4396,4 +4400,11 @@ #define M_VOID /* Xenix strikes again */ #endif +/* HAS_POLL: + * This symbol, if defined, indicates that the poll routine is + * available to poll active file descriptors. You may safely + * include <poll.h> when both this symbol *and* I_POLL are defined. + */ +/*#define HAS_POLL / **/ + #endif |