summaryrefslogtreecommitdiff
blob: 34dd76b48ea01b4e388c631b09443bad9c278d8e (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
From: Julian Ospald <hasufell@gentoo.org>
Date: Wed Jun  4 16:01:18 UTC 2014
Subject: fix header checks

	our multilib wrapped headers are broken shit

--- a/configure.ac
+++ b/configure.ac
@@ -55,7 +55,7 @@
 AC_SUBST(LW6_VERSION_MINOR)
 
 dnl Headers, some are optional
-AC_CHECK_HEADERS(arpa/inet.h caca.h ctype.h CUnit/CUnit.h CUnit/Automated.h CUnit/CUCurses.h dirent.h errno.h execinfo.h expat.h fcntl.h gc/gc.h gmp.h GL/gl.h GL/glu.h GLES2/gl2.h iconv.h ifaddrs.h jpeglib.h langinfo.h libintl.h libpng12/png.h libpng13/png.h libpng14/png.h libpng15/png.h libpng16/png.h lmcons.h limits.h locale.h ltdl.h mach/vm_statistics.h mach/mach_types.h mach/mach_init.h mach/mach_host.h math.h netdb.h netinet/in.h omp.h pthread.h readline/history.h readline/readline.h SDL/SDL.h SDL/SDL_image.h SDL/SDL_mixer.h SDL/SDL_ttf.h signal.h stdarg.h stdio.h stdlib.h string.h syslog.h sys/select.h sys/signal.h sys/socket.h sys/stat.h sys/sysinfo.h sys/time.h sys/types.h sys/utsname.h time.h unistd.h winbase.h windows.h winsock2.h)
+AC_CHECK_HEADERS(arpa/inet.h caca.h ctype.h CUnit/CUnit.h CUnit/Automated.h CUnit/CUCurses.h dirent.h errno.h execinfo.h expat.h fcntl.h gc/gc.h gmp.h GL/gl.h GL/glu.h GLES2/gl2.h iconv.h ifaddrs.h jpeglib.h langinfo.h libintl.h libpng12/png.h libpng13/png.h libpng14/png.h libpng15/png.h libpng16/png.h lmcons.h limits.h locale.h ltdl.h mach/vm_statistics.h mach/mach_types.h mach/mach_init.h mach/mach_host.h math.h netdb.h netinet/in.h omp.h pthread.h readline/history.h readline/readline.h signal.h stdarg.h stdio.h stdlib.h string.h syslog.h sys/select.h sys/signal.h sys/socket.h sys/stat.h sys/sysinfo.h sys/time.h sys/types.h sys/utsname.h time.h unistd.h winbase.h windows.h winsock2.h)
 
 dnl GNULIB stuff, http://www.gnu.org/software/gnulib/
 gl_00GNULIB
@@ -477,40 +477,42 @@
 fi
 SDL_EXTRA="${SDL_EXTRA_CFLAGS} ${SDL_EXTRA_LIBS}"
 
+CFLAGS="$CFLAGS $SDL_EXTRA_CFLAGS"
+
 AC_CHECK_HEADER(SDL/SDL.h, HAVE_SDL_H=1, AC_MSG_WARN([
 *** Liquid War 6 needs SDL (http://www.libsdl.org/)
-]),[${SDL_EXTRA}])
+]),[])
 AC_CHECK_LIB(SDL, SDL_Init, HAVE_LIBSDL=1, AC_MSG_WARN([
 *** Liquid War 6 needs SDL (http://www.libsdl.org/)
-]),[${SDL_EXTRA}])
+]),[])
 
 AC_CHECK_HEADER(GL/gl.h, HAVE_GL_GL_H=1,AC_MSG_WARN([
 *** Liquid War 6 needs Mesa (http://www.mesa3d.org/)
-]),[${SDL_EXTRA}])
+]),[])
 AC_CHECK_LIB(GL, glBegin, HAVE_LIBGL=1, AC_MSG_WARN([
 *** Liquid War 6 needs Mesa (http://www.mesa3d.org/)
-]),[${SDL_EXTRA}])
+]),[])
 
 AC_CHECK_HEADER(GL/glu.h, HAVE_GL_GLU_H=1,AC_MSG_WARN([
 *** Liquid War 6 needs GLU (http://www.mesa3d.org/)
-]),[${SDL_EXTRA}])
+]),[])
 AC_CHECK_LIB(GLU, gluBeginCurve, HAVE_LIBGLU=1, AC_MSG_WARN([
 *** Liquid War 6 needs GLU (http://www.mesa3d.org/)
-]),[${SDL_EXTRA}])
+]),[])
 
 AC_CHECK_HEADER(SDL/SDL_image.h, HAVE_SDL_IMAGE_H=1, AC_MSG_WARN([
 *** Liquid War 6 needs SDL_image (http://www.libsdl.org/projects/SDL_image/)
-]),[${SDL_EXTRA}])
+]),[])
 AC_CHECK_LIB(SDL_image, IMG_Load, HAVE_LIBSDL_IMAGE=1, AC_MSG_WARN([
 *** Liquid War 6 needs SDL_image (http://www.libsdl.org/projects/SDL_image/)
-]),[${SDL_EXTRA}])
+]),[])
 
 AC_CHECK_HEADER(SDL/SDL_ttf.h, HAVE_SDL_TTF_H=1, AC_MSG_WARN([
 *** Liquid War 6 needs SDL_ttf (http://www.libsdl.org/projects/SDL_ttf/)
-]),[${SDL_EXTRA}])
+]),[])
 AC_CHECK_LIB(SDL_ttf, TTF_Init, HAVE_LIBSDL_TTF=1, AC_MSG_WARN([
 *** Liquid War 6 needs SDL_ttf (http://www.libsdl.org/projects/SDL_ttf/)
-]),[${SDL_EXTRA}])
+]),[])
 
 AC_ARG_ENABLE([mod-gl1], AS_HELP_STRING([--enable-mod-gl1],[compile mod-gl1 default=yes]), [enable_mod_gl1=$enableval], [enable_mod_gl1=yes])