diff options
author | Juan Quintela <quintela@redhat.com> | 2009-07-27 16:13:23 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-07-27 14:10:55 -0500 |
commit | 75b5a697ed5dbfd9bef2eeddf82032ecfeb169f8 (patch) | |
tree | a58277e669384069144f77b20806901f43c0a968 /fpu | |
parent | 2880bc32b84831032d561f850b13b9f4f03d910e (diff) |
rename NEEDS_LIBSUNMATH to CONFIG_NEEDS_LIBSUNMATH
Once there fix a place where it was misspelled
Signed-off-by: Juan Quintela <quintela@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'fpu')
-rw-r--r-- | fpu/softfloat-native.h | 2 | ||||
-rw-r--r-- | fpu/softfloat.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/fpu/softfloat-native.h b/fpu/softfloat-native.h index 0bba08440..0893ce36f 100644 --- a/fpu/softfloat-native.h +++ b/fpu/softfloat-native.h @@ -62,7 +62,7 @@ #define isunordered(x,y) unordered(x, y) #endif -#if defined(__sun__) && !defined(NEED_LIBSUNMATH) +#if defined(__sun__) && !defined(CONFIG_NEEDS_LIBSUNMATH) #ifndef isnan # define isnan(x) \ diff --git a/fpu/softfloat.h b/fpu/softfloat.h index bebfefd05..789179a6b 100644 --- a/fpu/softfloat.h +++ b/fpu/softfloat.h @@ -32,7 +32,7 @@ these four paragraphs for those parts of this code that are retained. #ifndef SOFTFLOAT_H #define SOFTFLOAT_H -#if defined(CONFIG_SOLARIS) && defined(NEEDS_LIBSUNMATH) +#if defined(CONFIG_SOLARIS) && defined(CONFIG_NEEDS_LIBSUNMATH) #include <sunmath.h> #endif |