Remove an unneeded escaping in NAMESER_COMPAT_INCLUDE

In configure.ac, escaping '#' in NAMESER_COMPAT_INCLUDE results in the following gio/gnetworking.h, which obviously doesn't compile:

  #include <arpa/inet.h>
  #include <arpa/nameser.h>
  \#include <arpa/nameser_compat.h>

https://bugzilla.gnome.org/show_bug.cgi?id=690346
This commit is contained in:
PHO 2012-12-17 22:26:38 +09:00 committed by Dan Winship
parent 0eb28063a8
commit 72d7d23402

View File

@ -1080,7 +1080,7 @@ AS_IF([test $glib_native_win32 = yes], [
#include <arpa/nameser_compat.h>],
[int qclass = C_IN;])],
[AC_MSG_RESULT([yes])
NAMESER_COMPAT_INCLUDE="\#include <arpa/nameser_compat.h>"],
NAMESER_COMPAT_INCLUDE="#include <arpa/nameser_compat.h>"],
[AC_MSG_ERROR([could not compile test program either way])])])
AC_SUBST(NAMESER_COMPAT_INCLUDE)