summaryrefslogtreecommitdiff
path: root/pkgtools
diff options
context:
space:
mode:
authoradrianp <adrianp@pkgsrc.org>2007-07-21 10:21:38 +0000
committeradrianp <adrianp@pkgsrc.org>2007-07-21 10:21:38 +0000
commit39b2b8ef53552eb8f11b34771c09c83911a7be65 (patch)
tree01804e4e028112ec21ab8e03dfa472baadb5aad3 /pkgtools
parent74d71ced166439f0a617f5f94f13c8b153a95fd6 (diff)
downloadpkgsrc-39b2b8ef53552eb8f11b34771c09c83911a7be65.tar.gz
Add missed file in last update
Diffstat (limited to 'pkgtools')
-rw-r--r--pkgtools/pkg_install/files/lib/config.h.in39
1 files changed, 35 insertions, 4 deletions
diff --git a/pkgtools/pkg_install/files/lib/config.h.in b/pkgtools/pkg_install/files/lib/config.h.in
index 477e2cb3041..f1d58c30a9d 100644
--- a/pkgtools/pkg_install/files/lib/config.h.in
+++ b/pkgtools/pkg_install/files/lib/config.h.in
@@ -165,7 +165,7 @@
/* Defined when PRIu64 is missing or broken */
#undef NEED_PRI_MACRO
-/* Defined when only the numeric part of the OS version should be used */
+/* Defined when to retain only the numeric OS version */
#undef NUMERIC_VERSION_ONLY
/* Define to the address where bug reports for this package should be sent. */
@@ -183,18 +183,49 @@
/* Define to the version of this package. */
#undef PACKAGE_VERSION
-/* The size of a `int', as computed by sizeof. */
+/* The size of `int', as computed by sizeof. */
#undef SIZEOF_INT
-/* The size of a `long', as computed by sizeof. */
+/* The size of `long', as computed by sizeof. */
#undef SIZEOF_LONG
-/* The size of a `long long', as computed by sizeof. */
+/* The size of `long long', as computed by sizeof. */
#undef SIZEOF_LONG_LONG
/* Define to 1 if you have the ANSI C header files. */
#undef STDC_HEADERS
+/* Define for Solaris 2.5.1 so the uint32_t typedef from <sys/synch.h>,
+ <pthread.h>, or <semaphore.h> is not used. If the typedef was allowed, the
+ #define below would cause a syntax error. */
+#undef _UINT32_T
+
+/* Define for Solaris 2.5.1 so the uint64_t typedef from <sys/synch.h>,
+ <pthread.h>, or <semaphore.h> is not used. If the typedef was allowed, the
+ #define below would cause a syntax error. */
+#undef _UINT64_T
+
+/* Define for Solaris 2.5.1 so the uint8_t typedef from <sys/synch.h>,
+ <pthread.h>, or <semaphore.h> is not used. If the typedef was allowed, the
+ #define below would cause a syntax error. */
+#undef _UINT8_T
+
+/* Define to the type of an unsigned integer type of width exactly 16 bits if
+ such a type exists and the standard includes do not define it. */
+#undef uint16_t
+
+/* Define to the type of an unsigned integer type of width exactly 32 bits if
+ such a type exists and the standard includes do not define it. */
+#undef uint32_t
+
+/* Define to the type of an unsigned integer type of width exactly 64 bits if
+ such a type exists and the standard includes do not define it. */
+#undef uint64_t
+
+/* Define to the type of an unsigned integer type of width exactly 8 bits if
+ such a type exists and the standard includes do not define it. */
+#undef uint8_t
+
#if !HAVE_VFORK
# define vfork fork
#endif