[glib] Remove an unneeded escaping in NAMESER_COMPAT_INCLUDE
- From: Dan Winship <danw src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [glib] Remove an unneeded escaping in NAMESER_COMPAT_INCLUDE
- Date: Mon, 17 Dec 2012 13:55:41 +0000 (UTC)
commit 72d7d23402ff33c1bb92069829749dba0c509328
Author: PHO <pho cielonegro org>
Date: Mon Dec 17 22:26:38 2012 +0900
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
configure.ac | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/configure.ac b/configure.ac
index bf4d938..3414aa9 100644
--- a/configure.ac
+++ b/configure.ac
@@ -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)
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]