bug-glibc
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

mathinline.h forgotten ifdef?


From: Gilbert Netzer
Subject: mathinline.h forgotten ifdef?
Date: Fri, 12 Mar 2004 15:35:08 +0100
User-agent: Wanderlust/2.11.23 (Wonderwall) SEMI/1.14.6 (Maruoka) FLIM/1.14.6 (Marutamachi) APEL/10.6 Emacs/21.3 (i386-pc-linux-gnu) MULE/5.0 (SAKAKI)

hi hackers,

i have noticed as i tried to compile the glibc from the cvs archives for 
sparc64-unknown-linux-gnu that you might have forgotten to remove a #endif
or accidentially deleted a #ifdef __GNUC__ in the file
sysdeps/sparc/fpu/bits/mathinline.h (cvs revision 1.12), the following patch
(just added the #ifdef __GNUC__ line that was there in some earlier revison)
made this part of the library compile:


--- ./sysdeps/sparc/fpu/bits/mathinline.h       2004-03-11 15:11:01.000000000 
+0100
+++ ./sysdeps/sparc/fpu/bits/mathinline.h        2004-03-11 16:18:20.000000000 
+0100
@@ -24,6 +24,8 @@
 
 #include <bits/wordsize.h>
 
+#ifdef __GNUC__
+
 #if defined __USE_ISOC99 && defined __GNUC__ && !__GNUC_PREREQ(3,0)
 # undef isgreater
 # undef isgreaterequal

best regards
Gilbert Netzer




reply via email to

[Prev in Thread] Current Thread [Next in Thread]