From 2dc69dc63d4e6fee068a918629f406a241ec9716 Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Fri, 15 Jul 2011 16:02:19 +0100 Subject: [PATCH] build: Escape AC_DEFINE arguments --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 8fc034ca9..1a06f9f07 100644 --- a/configure.ac +++ b/configure.ac @@ -602,7 +602,7 @@ AS_IF([test "x$SUPPORT_XLIB" = "x1"], have_xge=no AC_CHECK_FUNC([XGetEventData], [ - AC_DEFINE(HAVE_XGE, 1, [Define to 1 if X Generic Extensions is available]) + AC_DEFINE([HAVE_XGE], [1], [Define to 1 if X Generic Extensions is available]) have_xge=yes ])