summaryrefslogtreecommitdiff
path: root/acinclude.m4
diff options
context:
space:
mode:
authorSimon Howard2013-11-06 04:36:45 +0000
committerSimon Howard2013-11-06 04:36:45 +0000
commita27a33889c1e8821a1ee15a744b82769e9e171de (patch)
tree18444b733b6fa5ad421e04772fa8d3a721115061 /acinclude.m4
parentbe122a160c93e3f7387000b62163021aa9f26cdd (diff)
downloadchocolate-doom-a27a33889c1e8821a1ee15a744b82769e9e171de.tar.gz
chocolate-doom-a27a33889c1e8821a1ee15a744b82769e9e171de.tar.bz2
chocolate-doom-a27a33889c1e8821a1ee15a744b82769e9e171de.zip
Fix quoting around use of AC_LANG_PROGRAM macro to stop warning message.
Some further information can be found here: https://lists.gnu.org/archive/html/bug-autoconf/2011-04/msg00015.html Subversion-branch: /branches/v2-branch Subversion-revision: 2744
Diffstat (limited to 'acinclude.m4')
-rw-r--r--acinclude.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index ed7e4d31..41646844 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -9,7 +9,7 @@ dnl SDL. Tries to build the simplest possible program, and if it
dnl fails, calls the given block.
AC_DEFUN([AC_CHECK_SDL_BREAKAGE], [
- AC_LINK_IFELSE(AC_LANG_PROGRAM([], []), [], [
+ AC_LINK_IFELSE([AC_LANG_PROGRAM([[ ]], [[ ]])], [], [
$1
])
])