[glib] build: fix configure arpa/nameser.h test for Solaris



commit 2f61a877d8e8e1311d905ab374e421ed0f37c3b7
Author: Dan Winship <danw gnome org>
Date:   Thu Feb 7 08:41:00 2013 -0500

    build: fix configure arpa/nameser.h test for Solaris
    
    https://bugzilla.gnome.org/show_bug.cgi?id=692827

 configure.ac |    6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)
---
diff --git a/configure.ac b/configure.ac
index bfb131c..2d75253 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1073,10 +1073,12 @@ AS_IF([test $glib_native_win32 = yes], [
   AC_SUBST(WSPIAPI_INCLUDE)
 ], [
   AC_MSG_CHECKING([if arpa/nameser_compat.h is needed])
-  AC_COMPILE_IFELSE([AC_LANG_PROGRAM([#include <arpa/nameser.h>],
+  AC_COMPILE_IFELSE([AC_LANG_PROGRAM([#include <sys/types.h>
+                                      #include <arpa/nameser.h>],
                                      [int qclass = C_IN;])],
                     [AC_MSG_RESULT([no])],
-                    [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([#include <arpa/nameser.h>
+                    [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([#include <sys/types.h>
+                                                         #include <arpa/nameser.h>
                                                          #include <arpa/nameser_compat.h>],
                                                         [int qclass = C_IN;])],
                                        [AC_MSG_RESULT([yes])


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]