]> sourceware.org Git - glibc.git/commitdiff
Update.
authorUlrich Drepper <drepper@redhat.com>
Tue, 16 Jul 2002 18:15:34 +0000 (18:15 +0000)
committerUlrich Drepper <drepper@redhat.com>
Tue, 16 Jul 2002 18:15:34 +0000 (18:15 +0000)
2002-07-16  Ulrich Drepper  <drepper@redhat.com>

* glibcbug.in: Fix little typo.  Remove STDIO.

* config.h.in: Fail if __FAST_MATH__ is defined.

ChangeLog
config.h.in
glibcbug.in

index 008b554958bdf9db716b51245e78127a8836a669..66435308d81517d7f82034f0977c1a7eb7ebe856 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2002-07-16  Ulrich Drepper  <drepper@redhat.com>
+
+       * glibcbug.in: Fix little typo.  Remove STDIO.
+
+       * config.h.in: Fail if __FAST_MATH__ is defined.
+
 2002-07-15  Ulrich Drepper  <drepper@redhat.com>
 
        * intl/tst-gettext.sh: Pass -f option to msgfmt.
index 34e3547431bd12d7c6067c454e8e5af76c4da7aa..5bafd13a6e23cd038432396bc80a03c00ba874b8 100644 (file)
@@ -2,6 +2,12 @@
 # error "glibc cannot be compiled without optimization"
 #endif
 
+/* Another evil option when it comes to compiling the C library is
+   --ffast-math since it alters the ABI.  */
+#ifdef __FAST_MATH__
+# error "glibc must not be compiled with -ffast-math"
+#endif
+
 /* Define if using GNU ld, with support for weak symbols in a.out,
    and for symbol set and warning messages extensions in a.out and ELF.
    This implies HAVE_WEAK_SYMBOLS; set by --with-gnu-ld.  */
index b83e2bd4753efe0fe22a5dae3615732ed6b606aa..37123b603fb33cb1dbd5af2c37a06d74e79af988 100644 (file)
@@ -21,11 +21,10 @@ BUILD_PROFILE="@profile@"
 BUILD_OMITFP="@omitfp@"
 BUILD_BOUNDED="@bounded@"
 BUILD_STATIC_NSS="@static_nss@"
-STDIO="@stdio@"
 
 TEMP=`mktemp -q ${TMPDIR-/tmp}/glibcbugXXXXXX 2>/dev/null`
 if test $? -ne 0; then
-  TEMP={$TMPDIR-/tmp}/glibcbug.$$
+  TEMP=${TMPDIR-/tmp}/glibcbug.$$
   echo > $TEMP
   chmod 600 $TEMP
 fi
@@ -163,7 +162,6 @@ ${ORGANIZATION- $ORGANIZATION_C}
 `[ -n "$BUILD_OMITFP" ] && echo Build omitfp: $BUILD_OMITFP`
 `[ -n "$BUILD_BOUNDED" ] && echo Build bounded: $BUILD_BOUNDED`
 `[ -n "$BUILD_STATIC_NSS" ] && echo Build static-nss: $BUILD_STATIC_NSS`
-`[ -n "$STDIO" ] && echo Stdio: $STDIO`
 
 >Description:
        $DESCRIPTION_C
This page took 0.051542 seconds and 5 git commands to generate.