View | Details | Raw Unified | Return to bug 87367
Collapse All | Expand All

(-)./configure.ac (-7 / +7 lines)
Lines 37-44 Link Here
37
have_SDLnet=yes
37
have_SDLnet=yes
38
if test "x$enable_sdltest" = "xyes" ; then
38
if test "x$enable_sdltest" = "xyes" ; then
39
	AC_TRY_COMPILE([
39
	AC_TRY_COMPILE([
40
		#include <SDL/SDL.h>
40
		#include <SDL11/SDL.h>
41
		#include <SDL/SDL_net.h>
41
		#include <SDL11/SDL_net.h>
42
42
43
		int main(int argc, char *argv[])
43
		int main(int argc, char *argv[])
44
		{ return 0; }
44
		{ return 0; }
Lines 248-260 Link Here
248
        ])
248
        ])
249
fi
249
fi
250
     
250
     
251
CPPFLAGS="$CPPFLAGS $WX_CPPFLAGS"
251
CPPFLAGS="$WX_CPPFLAGS $CPPFLAGS"
252
CXXFLAGS="$CXXFLAGS $WX_CXXFLAGS_ONLY"
252
CXXFLAGS="$WX_CXXFLAGS_ONLY $CXXFLAGS"
253
CFLAGS="$CFLAGS $WX_CFLAGS_ONLY"
253
CFLAGS="$WX_CFLAGS_ONLY $CFLAGS"
254
if test x"$use_static_wx" = x"yes"; then
254
if test x"$use_static_wx" = x"yes"; then
255
	LIBS="$LIBS $WX_LIBS_STATIC"
255
	LIBS="$WX_LIBS_STATIC $LIBS"
256
else
256
else
257
	LIBS="$LIBS $WX_LIBS"
257
	LIBS="$WX_LIBS $LIBS"
258
fi
258
fi
259
259
260
dnl Check for FreeType2
260
dnl Check for FreeType2

Return to bug 87367