summaryrefslogtreecommitdiff
path: root/acinclude.m4
blob: 41646844e888056c193ae4c824ba7c8604bc616d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
dnl
dnl SDL workaround autoconf macros, by Simon Howard.
dnl I release the contents of this file to the public domain.
dnl

dnl Macro to check if autoconf's compile tests have been broken by
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([[ ]], [[ ]])], [], [
        $1
    ])
])

dnl Macro to work around SDL redefining main.  The provided block
dnl is run with main #defined to SDL_main via a compiler switch
dnl if autoconf tests are found to be broken.

AC_DEFUN([AC_SDL_MAIN_WORKAROUND], [
    sdl_workaround_saved_CFLAGS="$CFLAGS"

    AC_CHECK_SDL_BREAKAGE([
        CFLAGS="$CFLAGS -Dmain=SDL_main"
    ])

    AC_CHECK_SDL_BREAKAGE([
        AC_MSG_ERROR([Autoconf checks broken by SDL, and can't figure out how to fix them.])
    ])

    $1

    CFLAGS="$sdl_workaround_saved_CFLAGS"
])