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
This commit is contained in:
Simon Howard 2013-11-06 04:36:45 +00:00
parent be122a160c
commit a27a33889c

View file

@ -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
])
])