]> Zhao Yanbai Git Server - minix.git/commitdiff
Compatibility check for autotools 63/363/3
authorLionel Sambuc <lionel@minix3.org>
Mon, 25 Feb 2013 10:48:38 +0000 (11:48 +0100)
committerLionel Sambuc <lionel@minix3.org>
Tue, 26 Feb 2013 09:44:25 +0000 (09:44 +0000)
This add an explicit test on the obsolete _MINIX define, unset it and
replace it with _NETBSD_SOURCE.

This should help compile a lot of packages relying on autotools in pkgsrc.

Change-Id: Ie7da4ed5172f1b9f1f89e7a5d788ec2aed4d2563

sys/sys/featuretest.h

index 967f09bcf16c8b5a7d22b6ba2a5f5d2d7b796c1d..67354d216dd90c59e2e74847e41bc39a2ef17b92 100644 (file)
 #define _NETBSD_SOURCE 1
 #endif
 
+/* Compatibility for older version of autotools. */
+#if defined(_MINIX)
+#undef _MINIX
+#define _NETBSD_SOURCE 1
+#endif
+
 /* Never define _REENTRANT on Minix */
 
 #ifndef __minix