diff options
author | Simon Howard | 2013-11-06 04:36:45 +0000 |
---|---|---|
committer | Simon Howard | 2013-11-06 04:36:45 +0000 |
commit | a27a33889c1e8821a1ee15a744b82769e9e171de (patch) | |
tree | 18444b733b6fa5ad421e04772fa8d3a721115061 | |
parent | be122a160c93e3f7387000b62163021aa9f26cdd (diff) | |
download | chocolate-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
-rw-r--r-- | acinclude.m4 | 2 |
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 ]) ]) |