X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=internals%2F_PDCLIB_aux.h;h=0844962b5f3aec80e58bbae0cca1acfdd6b47832;hb=99677c35ae2bfd651274191143e140d730fc9925;hp=5183c9fdc3c08d6ef7759097178391d555b96dac;hpb=ab6ee64b38cee9cd2ce9872714c77c19da9fb031;p=pdclib.old diff --git a/internals/_PDCLIB_aux.h b/internals/_PDCLIB_aux.h index 5183c9f..0844962 100644 --- a/internals/_PDCLIB_aux.h +++ b/internals/_PDCLIB_aux.h @@ -160,9 +160,11 @@ #ifdef __cplusplus #define _PDCLIB_BEGIN_EXTERN_C extern "C" { #define _PDCLIB_END_EXTERN_C } + typedef bool _PDCLIB_bool; #else - #define _PDCLIB_BEGIN_EXTERN_C - #define _PDCLIB_END_EXTERN_C + #define _PDCLIB_BEGIN_EXTERN_C + #define _PDCLIB_END_EXTERN_C + typedef _Bool _PDCLIB_bool; #endif /*#if _PDCLIB_C_VERSION != 1999 @@ -177,6 +179,7 @@ #define _PDCLIB_cc( x, y ) x ## y #define _PDCLIB_concat( x, y ) _PDCLIB_cc( x, y ) +#define _PDCLIB_concat3( x, y, z ) _PDCLIB_concat( _PDCLIB_concat( x, y ), z ) #define _PDCLIB_symbol2value( x ) #x #define _PDCLIB_symbol2string( x ) _PDCLIB_symbol2value( x ) @@ -199,10 +202,21 @@ * XOPEN: X/Open System Interface (XSI)/Single Unix Specification * 0 (XPG4), 500 (SUSv2/UNIX98), 600 (SUSv3/UNIX03), 700 (SUSv4) * - * PDCLib does not attempt or claim POSIX comformance, but makes available these - * extensions as - * (a) useful, and - * (b) + * Additionally, the macros + * _BSD_SOURCE, _SVID_SOURCE and _GNU_SOURCE + * are adhered to. If _GNU_SOURCE is defined, _XOPEN_SOURCE and + * _POSIX_C_SOURCE are defined to their most recent values to match glibc + * behaviour + * + * The intention of supporting these feature test macros is to ease + * application portability from these systems to PDCLib systems; in addition, + * it eases support for these standards by systems supporting them which are + * using PDCLib as their default C library. + * + * Applications targetting purely PDClib/PDCLib based platforms may define + * just _PDCLIB_EXTENSIONS, which will enable all supported extensions, plus + * all features from all supported versions of C and C++. + * */ #define _PDCLIB_C_MIN(min) _PDCLIB_C_MINMAX(min, 3000) #define _PDCLIB_CXX_MIN(min) _PDCLIB_CXX_MINMAX(min, 3000) @@ -217,6 +231,16 @@ #define _PDCLIB_CXX_MINMAX(min, max) 1 #define _PDCLIB_POSIX_MINMAX(min, max) 1 #define _PDCLIB_XOPEN_MINMAX(min, max) 1 + + #undef _PDCLIB_EXTENSIONS + #undef _PDCLIB_BSD_SOURCE + #undef _PDCLIB_SVID_SOURCE + #undef _PDCLIB_GNU_SOURCE + + #define _PDCLIB_EXTENSIONS 1 + #define _PDCLIB_BSD_SOURCE 1 + #define _PDCLIB_SVID_SOURCE 1 + #define _PDCLIB_GNU_SOURCE 1 #else #define _PDCLIB_C_MINMAX(min, max) \ (_PDCLIB_C_VERSION >= (min) && _PDCLIB_C_VERSION <= (max)) @@ -235,6 +259,32 @@ #define _XOPEN_SOURCE 0 #endif + #if defined(_GNU_SOURCE) + #define _PDCLIB_GNU_SOURCE 1 + #define _PDCLIB_SVID_SOURCE 1 + #define _PDCLIB_BSD_SOURCE 1 + #undef _XOPEN_SOURCE + #define _XOPEN_SOURCE 700 + #else + #define _PDCLIB_GNU_SOURCE 0 + #endif + + #if defined(_PDCLIB_BSD_SOURCE) + // pass + #elif defined(_BSD_SOURCE) + #define _PDCLIB_BSD_SOURCE 1 + #else + #define _PDCLIB_BSD_SOURCE 0 + #endif + + #if defined(_PDCLIB_SVID_SOURCE) + // pass + #elif defined(_SVID_SOURCE) + #define _PDCLIB_SVID_SOURCE 1 + #else + #define _PDCLIB_SVID_SOURCE 0 + #endif + #if _PDCLIB_XOPEN_MIN(700) && !_PDCLIB_POSIX_MIN(200809L) #undef _POSIX_C_SOURCE #define _POSIX_C_SOURCE 2008098L