From 2f61a877d8e8e1311d905ab374e421ed0f37c3b7 Mon Sep 17 00:00:00 2001 From: Dan Winship Date: Thu, 7 Feb 2013 08:41:00 -0500 Subject: [PATCH] build: fix configure arpa/nameser.h test for Solaris https://bugzilla.gnome.org/show_bug.cgi?id=692827 --- configure.ac | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index bfb131c55..2d752536f 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 ], + AC_COMPILE_IFELSE([AC_LANG_PROGRAM([#include + #include ], [int qclass = C_IN;])], [AC_MSG_RESULT([no])], - [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([#include + [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([#include + #include #include ], [int qclass = C_IN;])], [AC_MSG_RESULT([yes])