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

25845f
commit 12f2254b815056bb897a25a0c6dee0122aef52ac
25845f
Author: Siddhesh Poyarekar <siddhesh@redhat.com>
25845f
Date:   Thu Jul 10 14:19:21 2014 +0530
25845f
25845f
    Fix -Wundef warning for HAVE_SYS_PARAM_H
25845f
    
25845f
    Include sys/param.h unconditionally
25845f
25845f
diff --git a/io/ftw.c b/io/ftw.c
25845f
index 7aff7d04c9ed1e95..ffdb4b02dc7ca4d5 100644
25845f
--- a/io/ftw.c
25845f
+++ b/io/ftw.c
25845f
@@ -66,9 +66,7 @@ char *alloca ();
25845f
 #include <string.h>
25845f
 #include <unistd.h>
25845f
 #include <not-cancel.h>
25845f
-#if HAVE_SYS_PARAM_H || defined _LIBC
25845f
-# include <sys/param.h>
25845f
-#endif
25845f
+#include <sys/param.h>
25845f
 #ifdef _LIBC
25845f
 # include <include/sys/stat.h>
25845f
 #else