summaryrefslogtreecommitdiff
path: root/lib/libXfont/config.h.in
diff options
context:
space:
mode:
authorMatthieu Herrb <matthieu@cvs.openbsd.org>2014-01-07 20:42:21 +0000
committerMatthieu Herrb <matthieu@cvs.openbsd.org>2014-01-07 20:42:21 +0000
commite1c8dc96be656c819f4bafa357642c20c80d67ac (patch)
tree7e266a1f7a022f61c3e95fd39e18d6f1c4a3d34d /lib/libXfont/config.h.in
parentfbf7bfc3107f14a9677c700f09f70084c0b608b2 (diff)
Update to libXfont 1.4.7. Include fix for CVE-2013-6462.
unlimited sscanf overflows stack buffer in bdfReadCharacters
Diffstat (limited to 'lib/libXfont/config.h.in')
-rw-r--r--lib/libXfont/config.h.in32
1 files changed, 32 insertions, 0 deletions
diff --git a/lib/libXfont/config.h.in b/lib/libXfont/config.h.in
index ff0fdce7b..ae1689fd3 100644
--- a/lib/libXfont/config.h.in
+++ b/lib/libXfont/config.h.in
@@ -106,6 +106,28 @@
/* Support UNIX socket connections */
#undef UNIXCONN
+/* 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
+
+
/* Version number of package */
#undef VERSION
@@ -138,3 +160,13 @@
/* Support gzip for bitmap fonts */
#undef X_GZIP_FONT_COMPRESSION
+
+/* 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