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

c6d234
commit 6d6d7fde04c8ef830205a9900bf101597a2f4b18
c6d234
Author: Chris Metcalf <cmetcalf@ezchip.com>
c6d234
Date:   Mon Dec 29 23:14:38 2014 -0500
c6d234
c6d234
    Fix a couple of -Wundef warnings.
c6d234
c6d234
Conflicts:
c6d234
	sysdeps/unix/sysv/linux/tst-setgetname.c
c6d234
c6d234
File removed manually; this test does not exist in our tree.
c6d234
c6d234
diff --git a/stdlib/tst-limits.c b/stdlib/tst-limits.c
c6d234
index 6e51dcadb5baaabb..9aabc360f6b8c3f7 100644
c6d234
--- a/stdlib/tst-limits.c
c6d234
+++ b/stdlib/tst-limits.c
c6d234
@@ -58,7 +58,7 @@ do_test (void)
c6d234
   /* Values from POSIX and Unix.  */
c6d234
 #ifdef PAGESIZE
c6d234
   TEST (PAGESIZE, "d", getpagesize ());
c6d234
-#elif PAGE_SIZE
c6d234
+#elif defined (PAGE_SIZE)
c6d234
   TEST (PAGE_SIZE, "d", getpagesize ());
c6d234
 #endif
c6d234