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:
parent
be122a160c
commit
a27a33889c
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
])
|
||||
])
|
||||
|
|
|
|||
Loading…
Reference in a new issue