Blame SOURCES/glibc-rh1505492-undef-24.patch

00db10
commit 4f02e2b8f94799b4f9e57e922c06c5eeec4272e6
00db10
Author: Will Newton <will.newton@linaro.org>
00db10
Date:   Fri Apr 25 15:48:48 2014 +0100
00db10
00db10
    stdlib/gmp-impl.h: Silence -Wundef warning for USE_STACK_ALLOC
00db10
    
00db10
    The upstream version of GMP has long removed this conditional
00db10
    altogether in this commit:
00db10
    
00db10
    changeset:   5254:88618a4694ac
00db10
    user:        Kevin Ryde <user42@zip.com.au>
00db10
    date:        Sun Jun 17 01:37:27 2001 +0200
00db10
    
00db10
    So just turn the #if into an #ifdef to silence the warning.
00db10
    
00db10
    ChangeLog:
00db10
    
00db10
    2014-05-14  Will Newton  <will.newton@linaro.org>
00db10
    
00db10
            * stdlib/gmp-impl.h: Test USE_STACK_ALLOC #ifdef
00db10
            rather than #if.
00db10
00db10
diff --git a/stdlib/gmp-impl.h b/stdlib/gmp-impl.h
00db10
index 7e94624859dd7017..add63603f64ff39e 100644
00db10
--- a/stdlib/gmp-impl.h
00db10
+++ b/stdlib/gmp-impl.h
00db10
@@ -47,7 +47,7 @@ along with the GNU MP Library; see the file COPYING.LIB.  If not, see
00db10
 #endif
00db10
 #endif
00db10
 
00db10
-#if ! defined (HAVE_ALLOCA) || USE_STACK_ALLOC
00db10
+#if ! defined (HAVE_ALLOCA) || defined (USE_STACK_ALLOC)
00db10
 #include "stack-alloc.h"
00db10
 #else
00db10
 #define TMP_DECL(m)