Do not use libiberty's getpagesize on Android
authorJoel Brobecker <brobecker@adacore.com>
Fri, 6 Nov 2015 21:37:49 +0000 (21:37 +0000)
committerJoel Brobecker <brobecke@gcc.gnu.org>
Fri, 6 Nov 2015 21:37:49 +0000 (21:37 +0000)
libiberty/ChangeLog:

        * configure.ac: Set AC_CV_FUNC_GETPAGESIZE to "yes" on
        Android hosts.
        * configure: Regenerate.

From-SVN: r229893

libiberty/ChangeLog
libiberty/configure
libiberty/configure.ac

index b5ac8363c3609eb849f84883efbba25fb20525e2..34ff62e8f436c65943de55a6913df12d82db2885 100644 (file)
@@ -1,3 +1,9 @@
+2015-11-06  Joel Brobecker  <brobecker@adacore.com>
+
+       * configure.ac: Set AC_CV_FUNC_GETPAGESIZE to "yes" on
+       Android hosts.
+       * configure: Regenerate.
+
 2015-10-28  Jason Merrill  <jason@redhat.com>
 
        * Makefile.in (TAGS): Fix for separate build directory.
index da2df4ec740b30e4a0c929bab1ee3b994d40ef4d..a40ae7087977b265a7bdd463f681d2c9789b100e 100755 (executable)
@@ -6224,6 +6224,12 @@ if test -z "${setobjs}"; then
 
   case "${host}" in
 
+  *-*-android*)
+    # On android, getpagesize is defined in unistd.h as a static inline
+    # function, which AC_CHECK_FUNCS does not handle properly.
+    ac_cv_func_getpagesize=yes
+    ;;
+
   *-*-mingw32*)
     # Under mingw32, sys_nerr and sys_errlist exist, but they are
     # macros, so the test below won't find them.
index 868be8e72d1a969f94339042c98233d353d30b4c..e21e3aa5809b12f0616d376c69608fc5c941dbd4 100644 (file)
@@ -600,6 +600,12 @@ if test -z "${setobjs}"; then
 
   case "${host}" in
 
+  *-*-android*)
+    # On android, getpagesize is defined in unistd.h as a static inline
+    # function, which AC_CHECK_FUNCS does not handle properly.
+    ac_cv_func_getpagesize=yes
+    ;;
+
   *-*-mingw32*)
     # Under mingw32, sys_nerr and sys_errlist exist, but they are
     # macros, so the test below won't find them.