From 72d7d23402ff33c1bb92069829749dba0c509328 Mon Sep 17 00:00:00 2001 From: PHO Date: Mon, 17 Dec 2012 22:26:38 +0900 Subject: [PATCH] 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 #include \#include https://bugzilla.gnome.org/show_bug.cgi?id=690346 --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index bf4d938a4..3414aa9b8 100644 --- a/configure.ac +++ b/configure.ac @@ -1080,7 +1080,7 @@ AS_IF([test $glib_native_win32 = yes], [ #include ], [int qclass = C_IN;])], [AC_MSG_RESULT([yes]) - NAMESER_COMPAT_INCLUDE="\#include "], + NAMESER_COMPAT_INCLUDE="#include "], [AC_MSG_ERROR([could not compile test program either way])])]) AC_SUBST(NAMESER_COMPAT_INCLUDE)