diff options
author | Thomas White <taw@bitwiz.org.uk> | 2011-01-16 17:24:01 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2012-02-22 15:27:11 +0100 |
commit | 63039a76484b181e18a76144f7c38b1467dd861b (patch) | |
tree | 4e823866846d025127bc77c401a0a4a457eef98e /config.h.in | |
parent | 537c1bf6b534e3dfc07b8b53c674256b7a5dc023 (diff) |
Check with pkg-config for gdk-pixbuf and gdk-pixbuf-2.0
Diffstat (limited to 'config.h.in')
-rw-r--r-- | config.h.in | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/config.h.in b/config.h.in index 5ab4c8a5..0f412281 100644 --- a/config.h.in +++ b/config.h.in @@ -179,6 +179,9 @@ /* Define to the one symbol short name of this package. */ #undef PACKAGE_TARNAME +/* Define to the home page for this package. */ +#undef PACKAGE_URL + /* Define to the version of this package. */ #undef PACKAGE_VERSION @@ -246,13 +249,14 @@ nothing if this is not supported. Do not define if restrict is supported directly. */ #undef restrict -/* Work around a bug in Sun C++: it does not support _Restrict, even - though the corresponding Sun C compiler does, which causes - "#define restrict _Restrict" in the previous line. Perhaps some future - version of Sun C++ will work with _Restrict; if so, it'll probably - define __RESTRICT, just as Sun C does. */ +/* Work around a bug in Sun C++: it does not support _Restrict or + __restrict__, even though the corresponding Sun C compiler ends up with + "#define restrict _Restrict" or "#define restrict __restrict__" in the + previous line. Perhaps some future version of Sun C++ will work with + restrict; if so, hopefully it defines __RESTRICT like Sun C does. */ #if defined __SUNPRO_CC && !defined __RESTRICT # define _Restrict +# define __restrict__ #endif /* Define as a marker that can be attached to declarations that might not |