diff options
author | Sebastian Dröge <sebastian.droege@collabora.co.uk> | 2010-02-23 09:26:42 +0100 |
---|---|---|
committer | Sebastian Dröge <sebastian.droege@collabora.co.uk> | 2010-02-23 09:26:42 +0100 |
commit | 6af97522e5d98cd4618838be94635cf3d4559cb3 (patch) | |
tree | b36ab7b083c20773b50db78b2761bc4d776ed557 /config.h.in | |
parent | 0b05d5812d0ceaeb5a9db5a50be0d3f7f16b277a (diff) |
Import upstream version 1.9.6
Diffstat (limited to 'config.h.in')
-rw-r--r-- | config.h.in | 53 |
1 files changed, 41 insertions, 12 deletions
diff --git a/config.h.in b/config.h.in index 6f63b05..6ba0c35 100644 --- a/config.h.in +++ b/config.h.in @@ -6,18 +6,6 @@ /* whether memory barriers are needed around atomic operations */ #undef ATOMIC_OP_NEEDS_MEMORY_BARRIER -/* define if glitz backend can be tested against agl */ -#undef CAIRO_CAN_TEST_GLITZ_AGL_SURFACE - -/* define if glitz backend can be tested against egl */ -#undef CAIRO_CAN_TEST_GLITZ_EGL_SURFACE - -/* define if glitz backend can be tested against glx */ -#undef CAIRO_CAN_TEST_GLITZ_GLX_SURFACE - -/* define if glitz backend can be tested against wgl */ -#undef CAIRO_CAN_TEST_GLITZ_WGL_SURFACE - /* Define to 1 if the PDF backend can be tested (need poppler and other dependencies for pdf2png) */ #undef CAIRO_CAN_TEST_PDF_SURFACE @@ -274,6 +262,9 @@ /* Define to the version of this package. */ #undef PACKAGE_VERSION +/* Shared library file extension */ +#undef SHARED_LIB_EXT + /* The size of `int', as computed by sizeof. */ #undef SIZEOF_INT @@ -292,6 +283,28 @@ /* Define to 1 if you have the ANSI C header files. */ #undef STDC_HEADERS +/* Enable extensions on AIX 3, Interix. */ +#ifndef _ALL_SOURCE +# undef _ALL_SOURCE +#endif +/* Enable GNU extensions on systems that have them. */ +#ifndef _GNU_SOURCE +# undef _GNU_SOURCE +#endif +/* Enable threading extensions on Solaris. */ +#ifndef _POSIX_PTHREAD_SEMANTICS +# undef _POSIX_PTHREAD_SEMANTICS +#endif +/* Enable extensions on HP NonStop. */ +#ifndef _TANDEM_SOURCE +# undef _TANDEM_SOURCE +#endif +/* Enable general extensions on Solaris. */ +#ifndef __EXTENSIONS__ +# undef __EXTENSIONS__ +#endif + + /* Define to the value your compiler uses to support the warn-unused-result attribute */ #undef WARN_UNUSED_RESULT @@ -324,6 +337,22 @@ /* Define to 1 if the X Window System is missing or not being used. */ #undef X_DISPLAY_MISSING +/* Number of bits in a file offset, on hosts where this is settable. */ +#undef _FILE_OFFSET_BITS + +/* Define for large files, on AIX-style hosts. */ +#undef _LARGE_FILES + +/* Define to 1 if on MINIX. */ +#undef _MINIX + +/* Define to 2 if the system does not provide POSIX.1 features except with + this defined. */ +#undef _POSIX_1_SOURCE + +/* Define to 1 if you need to in order for `stat' and other things to work. */ +#undef _POSIX_SOURCE + /* Define to `__inline__' or `__inline' if that's what the C compiler calls it, or to nothing if 'inline' is not supported under any name. */ #ifndef __cplusplus |