Module Name: src
Committed By: mrg
Date: Sat May 8 02:58:34 UTC 2010
Modified Files:
src/gnu/dist/gcc4/gcc: configure
Log Message:
don't use the __{BIG,LITTLE}_ENDIAN__ test on NetBSD. it doesn't give
the right result for some platforms, and the later valid tests are
never used. (this problem seems fixed in newer autoconf...)
To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 src/gnu/dist/gcc4/gcc/configure
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/gnu/dist/gcc4/gcc/configure
diff -u src/gnu/dist/gcc4/gcc/configure:1.10 src/gnu/dist/gcc4/gcc/configure:1.11
--- src/gnu/dist/gcc4/gcc/configure:1.10 Mon Oct 6 00:07:08 2008
+++ src/gnu/dist/gcc4/gcc/configure Sat May 8 02:58:33 2010
@@ -9055,6 +9055,9 @@
cat confdefs.h >>conftest.$ac_ext
cat >>conftest.$ac_ext <<_ACEOF
/* end confdefs.h. */
+#ifdef __NetBSD__
+ always fail this on netbsd;
+#endif
#if ! (defined __BIG_ENDIAN__ || defined __LITTLE_ENDIAN__)
neither is defined;
#endif