author | Gabriel Jacobo <gabomdq@gmail.com> |
Wed, 09 Oct 2013 11:30:01 -0300 | |
changeset 7794 | 7995e0920bf9 |
parent 7704 | 3182291fc65f |
child 7828 | 1451063c8ecd |
permissions | -rw-r--r-- |
0 | 1 |
dnl Process this file with autoconf to produce a configure script. |
2 |
AC_INIT(README) |
|
3 |
||
1550 | 4 |
dnl Detect the canonical build and host environments |
1380
d94b080ff6ce
Completely removed dependency on automake
Sam Lantinga <slouken@libsdl.org>
parents:
1367
diff
changeset
|
5 |
AC_CONFIG_AUX_DIRS($srcdir/../build-scripts) |
1550 | 6 |
AC_CANONICAL_HOST |
0 | 7 |
|
8 |
dnl Check for tools |
|
9 |
||
10 |
AC_PROG_CC |
|
11 |
||
12 |
dnl Check for compiler environment |
|
13 |
||
14 |
AC_C_CONST |
|
15 |
||
6390
3047baa4a5e0
Nasty attempt to fix building of testnative across various platforms.
Ryan C. Gordon <icculus@icculus.org>
parents:
6272
diff
changeset
|
16 |
dnl We only care about this for building testnative at the moment, so these |
3047baa4a5e0
Nasty attempt to fix building of testnative across various platforms.
Ryan C. Gordon <icculus@icculus.org>
parents:
6272
diff
changeset
|
17 |
dnl values shouldn't be considered absolute truth. |
3047baa4a5e0
Nasty attempt to fix building of testnative across various platforms.
Ryan C. Gordon <icculus@icculus.org>
parents:
6272
diff
changeset
|
18 |
dnl (BeOS, for example, sets none of these.) |
3047baa4a5e0
Nasty attempt to fix building of testnative across various platforms.
Ryan C. Gordon <icculus@icculus.org>
parents:
6272
diff
changeset
|
19 |
ISUNIX="false" |
3047baa4a5e0
Nasty attempt to fix building of testnative across various platforms.
Ryan C. Gordon <icculus@icculus.org>
parents:
6272
diff
changeset
|
20 |
ISWINDOWS="false" |
3047baa4a5e0
Nasty attempt to fix building of testnative across various platforms.
Ryan C. Gordon <icculus@icculus.org>
parents:
6272
diff
changeset
|
21 |
ISMACOSX="false" |
3047baa4a5e0
Nasty attempt to fix building of testnative across various platforms.
Ryan C. Gordon <icculus@icculus.org>
parents:
6272
diff
changeset
|
22 |
|
0 | 23 |
dnl Figure out which math library to use |
1550 | 24 |
case "$host" in |
0 | 25 |
*-*-cygwin* | *-*-mingw32*) |
6390
3047baa4a5e0
Nasty attempt to fix building of testnative across various platforms.
Ryan C. Gordon <icculus@icculus.org>
parents:
6272
diff
changeset
|
26 |
ISWINDOWS="true" |
1380
d94b080ff6ce
Completely removed dependency on automake
Sam Lantinga <slouken@libsdl.org>
parents:
1367
diff
changeset
|
27 |
EXE=".exe" |
0 | 28 |
MATHLIB="" |
29 |
SYS_GL_LIBS="-lopengl32" |
|
30 |
;; |
|
3292 | 31 |
*-*-beos* | *-*-haiku*) |
1380
d94b080ff6ce
Completely removed dependency on automake
Sam Lantinga <slouken@libsdl.org>
parents:
1367
diff
changeset
|
32 |
EXE="" |
0 | 33 |
MATHLIB="" |
34 |
SYS_GL_LIBS="-lGL" |
|
35 |
;; |
|
991
12b13601a544
Final touches to OSMesa OpenGL support on Atari, using loadable libraries. Hope SDL 1.2.8 is out soon.
Patrice Mandin <patmandin@gmail.com>
parents:
981
diff
changeset
|
36 |
*-*-darwin* ) |
6390
3047baa4a5e0
Nasty attempt to fix building of testnative across various platforms.
Ryan C. Gordon <icculus@icculus.org>
parents:
6272
diff
changeset
|
37 |
ISMACOSX="true" |
1380
d94b080ff6ce
Completely removed dependency on automake
Sam Lantinga <slouken@libsdl.org>
parents:
1367
diff
changeset
|
38 |
EXE="" |
0 | 39 |
MATHLIB="" |
3623
9a73fecd9181
Reverted r5460 ... this was merged from 1.2, but was later reverted there.
Ryan C. Gordon <icculus@icculus.org>
parents:
3622
diff
changeset
|
40 |
SYS_GL_LIBS="-Wl,-framework,OpenGL" |
0 | 41 |
;; |
42 |
*-*-aix*) |
|
6390
3047baa4a5e0
Nasty attempt to fix building of testnative across various platforms.
Ryan C. Gordon <icculus@icculus.org>
parents:
6272
diff
changeset
|
43 |
ISUNIX="true" |
1380
d94b080ff6ce
Completely removed dependency on automake
Sam Lantinga <slouken@libsdl.org>
parents:
1367
diff
changeset
|
44 |
EXE="" |
0 | 45 |
if test x$ac_cv_prog_gcc = xyes; then |
46 |
CFLAGS="-mthreads" |
|
978
3b1ba22f5a28
Add support for OpenGL on Atari using OSMesa, the offscreen rendering driver from Mesa
Patrice Mandin <patmandin@gmail.com>
parents:
796
diff
changeset
|
47 |
fi |
0 | 48 |
SYS_GL_LIBS="" |
49 |
;; |
|
991
12b13601a544
Final touches to OSMesa OpenGL support on Atari, using loadable libraries. Hope SDL 1.2.8 is out soon.
Patrice Mandin <patmandin@gmail.com>
parents:
981
diff
changeset
|
50 |
*-*-mint*) |
1380
d94b080ff6ce
Completely removed dependency on automake
Sam Lantinga <slouken@libsdl.org>
parents:
1367
diff
changeset
|
51 |
EXE="" |
991
12b13601a544
Final touches to OSMesa OpenGL support on Atari, using loadable libraries. Hope SDL 1.2.8 is out soon.
Patrice Mandin <patmandin@gmail.com>
parents:
981
diff
changeset
|
52 |
MATHLIB="" |
12b13601a544
Final touches to OSMesa OpenGL support on Atari, using loadable libraries. Hope SDL 1.2.8 is out soon.
Patrice Mandin <patmandin@gmail.com>
parents:
981
diff
changeset
|
53 |
AC_PATH_PROG(OSMESA_CONFIG, osmesa-config, no) |
12b13601a544
Final touches to OSMesa OpenGL support on Atari, using loadable libraries. Hope SDL 1.2.8 is out soon.
Patrice Mandin <patmandin@gmail.com>
parents:
981
diff
changeset
|
54 |
if test "x$OSMESA_CONFIG" = "xyes"; then |
12b13601a544
Final touches to OSMesa OpenGL support on Atari, using loadable libraries. Hope SDL 1.2.8 is out soon.
Patrice Mandin <patmandin@gmail.com>
parents:
981
diff
changeset
|
55 |
OSMESA_CFLAGS=`$OSMESA_CONFIG --cflags` |
12b13601a544
Final touches to OSMesa OpenGL support on Atari, using loadable libraries. Hope SDL 1.2.8 is out soon.
Patrice Mandin <patmandin@gmail.com>
parents:
981
diff
changeset
|
56 |
OSMESA_LIBS=`$OSMESA_CONFIG --libs` |
12b13601a544
Final touches to OSMesa OpenGL support on Atari, using loadable libraries. Hope SDL 1.2.8 is out soon.
Patrice Mandin <patmandin@gmail.com>
parents:
981
diff
changeset
|
57 |
CFLAGS="$CFLAGS $OSMESA_CFLAGS" |
12b13601a544
Final touches to OSMesa OpenGL support on Atari, using loadable libraries. Hope SDL 1.2.8 is out soon.
Patrice Mandin <patmandin@gmail.com>
parents:
981
diff
changeset
|
58 |
SYS_GL_LIBS="$OSMESA_LIBS" |
12b13601a544
Final touches to OSMesa OpenGL support on Atari, using loadable libraries. Hope SDL 1.2.8 is out soon.
Patrice Mandin <patmandin@gmail.com>
parents:
981
diff
changeset
|
59 |
else |
12b13601a544
Final touches to OSMesa OpenGL support on Atari, using loadable libraries. Hope SDL 1.2.8 is out soon.
Patrice Mandin <patmandin@gmail.com>
parents:
981
diff
changeset
|
60 |
SYS_GL_LIBS="-lOSMesa" |
12b13601a544
Final touches to OSMesa OpenGL support on Atari, using loadable libraries. Hope SDL 1.2.8 is out soon.
Patrice Mandin <patmandin@gmail.com>
parents:
981
diff
changeset
|
61 |
fi |
3087
0b6f51c29267
Date: Wed, 4 Mar 2009 15:38:22 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
2138
diff
changeset
|
62 |
;; |
0b6f51c29267
Date: Wed, 4 Mar 2009 15:38:22 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
2138
diff
changeset
|
63 |
*-*-qnx*) |
0b6f51c29267
Date: Wed, 4 Mar 2009 15:38:22 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
2138
diff
changeset
|
64 |
EXE="" |
0b6f51c29267
Date: Wed, 4 Mar 2009 15:38:22 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
2138
diff
changeset
|
65 |
MATHLIB="" |
0b6f51c29267
Date: Wed, 4 Mar 2009 15:38:22 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
2138
diff
changeset
|
66 |
SYS_GL_LIBS="-lGLES_CM" |
0b6f51c29267
Date: Wed, 4 Mar 2009 15:38:22 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
2138
diff
changeset
|
67 |
;; |
0 | 68 |
*) |
6390
3047baa4a5e0
Nasty attempt to fix building of testnative across various platforms.
Ryan C. Gordon <icculus@icculus.org>
parents:
6272
diff
changeset
|
69 |
dnl Oh well, call it Unix... |
3047baa4a5e0
Nasty attempt to fix building of testnative across various platforms.
Ryan C. Gordon <icculus@icculus.org>
parents:
6272
diff
changeset
|
70 |
ISUNIX="true" |
1380
d94b080ff6ce
Completely removed dependency on automake
Sam Lantinga <slouken@libsdl.org>
parents:
1367
diff
changeset
|
71 |
EXE="" |
0 | 72 |
MATHLIB="-lm" |
1380
d94b080ff6ce
Completely removed dependency on automake
Sam Lantinga <slouken@libsdl.org>
parents:
1367
diff
changeset
|
73 |
SYS_GL_LIBS="-lGL" |
0 | 74 |
;; |
75 |
esac |
|
1380
d94b080ff6ce
Completely removed dependency on automake
Sam Lantinga <slouken@libsdl.org>
parents:
1367
diff
changeset
|
76 |
AC_SUBST(EXE) |
0 | 77 |
AC_SUBST(MATHLIB) |
6390
3047baa4a5e0
Nasty attempt to fix building of testnative across various platforms.
Ryan C. Gordon <icculus@icculus.org>
parents:
6272
diff
changeset
|
78 |
AC_SUBST(ISMACOSX) |
3047baa4a5e0
Nasty attempt to fix building of testnative across various platforms.
Ryan C. Gordon <icculus@icculus.org>
parents:
6272
diff
changeset
|
79 |
AC_SUBST(ISWINDOWS) |
3047baa4a5e0
Nasty attempt to fix building of testnative across various platforms.
Ryan C. Gordon <icculus@icculus.org>
parents:
6272
diff
changeset
|
80 |
AC_SUBST(ISUNIX) |
0 | 81 |
|
82 |
dnl Check for SDL |
|
6250
cce0ddcf6747
Updated to SDL 2.0, and SDL 2.0 can now be installed coexisting with SDL 1.2
Sam Lantinga <slouken@libsdl.org>
parents:
6188
diff
changeset
|
83 |
SDL_VERSION=2.0.0 |
6272
f3dbef2cc0f2
Switched the SDL 2 autoconf macro to AM_PATH_SDL2
Sam Lantinga <slouken@libsdl.org>
parents:
6250
diff
changeset
|
84 |
AM_PATH_SDL2($SDL_VERSION, |
0 | 85 |
:, |
86 |
AC_MSG_ERROR([*** SDL version $SDL_VERSION not found!]) |
|
87 |
) |
|
88 |
CFLAGS="$CFLAGS $SDL_CFLAGS" |
|
7703 | 89 |
LIBS="$LIBS $SDL_LIBS -lSDL2_test" |
0 | 90 |
|
2138
9af6717e676a
Merged change from 1.2 to add X11 path for OpenGL detection
Sam Lantinga <slouken@libsdl.org>
parents:
1895
diff
changeset
|
91 |
dnl Check for X11 path, needed for OpenGL on some systems |
9af6717e676a
Merged change from 1.2 to add X11 path for OpenGL detection
Sam Lantinga <slouken@libsdl.org>
parents:
1895
diff
changeset
|
92 |
AC_PATH_X |
9af6717e676a
Merged change from 1.2 to add X11 path for OpenGL detection
Sam Lantinga <slouken@libsdl.org>
parents:
1895
diff
changeset
|
93 |
if test x$have_x = xyes; then |
7794
7995e0920bf9
Fixes testgles and testgl
Gabriel Jacobo <gabomdq@gmail.com>
parents:
7704
diff
changeset
|
94 |
if test x$ac_x_includes = xno || test "x$ac_x_includes" = xNone || test "x$ac_x_includes" = x; then |
2138
9af6717e676a
Merged change from 1.2 to add X11 path for OpenGL detection
Sam Lantinga <slouken@libsdl.org>
parents:
1895
diff
changeset
|
95 |
: |
9af6717e676a
Merged change from 1.2 to add X11 path for OpenGL detection
Sam Lantinga <slouken@libsdl.org>
parents:
1895
diff
changeset
|
96 |
else |
9af6717e676a
Merged change from 1.2 to add X11 path for OpenGL detection
Sam Lantinga <slouken@libsdl.org>
parents:
1895
diff
changeset
|
97 |
CFLAGS="$CFLAGS -I$ac_x_includes" |
9af6717e676a
Merged change from 1.2 to add X11 path for OpenGL detection
Sam Lantinga <slouken@libsdl.org>
parents:
1895
diff
changeset
|
98 |
fi |
7703 | 99 |
if test x$ac_x_libraries = xno || test "x$ac_x_libraries" = xNone; then |
2138
9af6717e676a
Merged change from 1.2 to add X11 path for OpenGL detection
Sam Lantinga <slouken@libsdl.org>
parents:
1895
diff
changeset
|
100 |
: |
9af6717e676a
Merged change from 1.2 to add X11 path for OpenGL detection
Sam Lantinga <slouken@libsdl.org>
parents:
1895
diff
changeset
|
101 |
else |
7704
3182291fc65f
[Linux] Test config script: Add the X11 library search path if it is not empty
Gabriel Jacobo <gabomdq@gmail.com>
parents:
7703
diff
changeset
|
102 |
if test "x$ac_x_libraries" = x; then |
7794
7995e0920bf9
Fixes testgles and testgl
Gabriel Jacobo <gabomdq@gmail.com>
parents:
7704
diff
changeset
|
103 |
XPATH="" |
7704
3182291fc65f
[Linux] Test config script: Add the X11 library search path if it is not empty
Gabriel Jacobo <gabomdq@gmail.com>
parents:
7703
diff
changeset
|
104 |
XLIB="-lX11" |
3182291fc65f
[Linux] Test config script: Add the X11 library search path if it is not empty
Gabriel Jacobo <gabomdq@gmail.com>
parents:
7703
diff
changeset
|
105 |
else |
7794
7995e0920bf9
Fixes testgles and testgl
Gabriel Jacobo <gabomdq@gmail.com>
parents:
7704
diff
changeset
|
106 |
XPATH="-L$ac_x_libraries" |
7704
3182291fc65f
[Linux] Test config script: Add the X11 library search path if it is not empty
Gabriel Jacobo <gabomdq@gmail.com>
parents:
7703
diff
changeset
|
107 |
XLIB="-L$ac_x_libraries -lX11" |
3182291fc65f
[Linux] Test config script: Add the X11 library search path if it is not empty
Gabriel Jacobo <gabomdq@gmail.com>
parents:
7703
diff
changeset
|
108 |
fi |
2138
9af6717e676a
Merged change from 1.2 to add X11 path for OpenGL detection
Sam Lantinga <slouken@libsdl.org>
parents:
1895
diff
changeset
|
109 |
fi |
9af6717e676a
Merged change from 1.2 to add X11 path for OpenGL detection
Sam Lantinga <slouken@libsdl.org>
parents:
1895
diff
changeset
|
110 |
fi |
9af6717e676a
Merged change from 1.2 to add X11 path for OpenGL detection
Sam Lantinga <slouken@libsdl.org>
parents:
1895
diff
changeset
|
111 |
|
0 | 112 |
dnl Check for OpenGL |
113 |
AC_MSG_CHECKING(for OpenGL support) |
|
114 |
have_opengl=no |
|
115 |
AC_TRY_COMPILE([ |
|
292
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
214
diff
changeset
|
116 |
#include "SDL_opengl.h" |
0 | 117 |
],[ |
118 |
],[ |
|
119 |
have_opengl=yes |
|
120 |
]) |
|
121 |
AC_MSG_RESULT($have_opengl) |
|
3087
0b6f51c29267
Date: Wed, 4 Mar 2009 15:38:22 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
2138
diff
changeset
|
122 |
|
0b6f51c29267
Date: Wed, 4 Mar 2009 15:38:22 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
2138
diff
changeset
|
123 |
dnl Check for OpenGL ES |
0b6f51c29267
Date: Wed, 4 Mar 2009 15:38:22 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
2138
diff
changeset
|
124 |
AC_MSG_CHECKING(for OpenGL ES support) |
0b6f51c29267
Date: Wed, 4 Mar 2009 15:38:22 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
2138
diff
changeset
|
125 |
have_opengles=no |
0b6f51c29267
Date: Wed, 4 Mar 2009 15:38:22 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
2138
diff
changeset
|
126 |
AC_TRY_COMPILE([ |
6188
e82023802002
Fixed bug 1242 - PATCH: Improve support for OpenGL ES under X11
Sam Lantinga <slouken@libsdl.org>
parents:
3623
diff
changeset
|
127 |
#if defined (__IPHONEOS__) |
3087
0b6f51c29267
Date: Wed, 4 Mar 2009 15:38:22 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
2138
diff
changeset
|
128 |
#include <OpenGLES/ES1/gl.h> |
0b6f51c29267
Date: Wed, 4 Mar 2009 15:38:22 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
2138
diff
changeset
|
129 |
#else |
6188
e82023802002
Fixed bug 1242 - PATCH: Improve support for OpenGL ES under X11
Sam Lantinga <slouken@libsdl.org>
parents:
3623
diff
changeset
|
130 |
#include <GLES/gl.h> |
3087
0b6f51c29267
Date: Wed, 4 Mar 2009 15:38:22 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
2138
diff
changeset
|
131 |
#endif /* __QNXNTO__ */ |
0b6f51c29267
Date: Wed, 4 Mar 2009 15:38:22 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
2138
diff
changeset
|
132 |
],[ |
0b6f51c29267
Date: Wed, 4 Mar 2009 15:38:22 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
2138
diff
changeset
|
133 |
],[ |
0b6f51c29267
Date: Wed, 4 Mar 2009 15:38:22 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
2138
diff
changeset
|
134 |
have_opengles=yes |
0b6f51c29267
Date: Wed, 4 Mar 2009 15:38:22 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
2138
diff
changeset
|
135 |
]) |
0b6f51c29267
Date: Wed, 4 Mar 2009 15:38:22 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
2138
diff
changeset
|
136 |
AC_MSG_RESULT($have_opengles) |
3090
37f9304df6a9
Fixed OpenGL library linking issue
Sam Lantinga <slouken@libsdl.org>
parents:
3087
diff
changeset
|
137 |
|
6188
e82023802002
Fixed bug 1242 - PATCH: Improve support for OpenGL ES under X11
Sam Lantinga <slouken@libsdl.org>
parents:
3623
diff
changeset
|
138 |
GLLIB="" |
7794
7995e0920bf9
Fixes testgles and testgl
Gabriel Jacobo <gabomdq@gmail.com>
parents:
7704
diff
changeset
|
139 |
GLESLIB="" |
6188
e82023802002
Fixed bug 1242 - PATCH: Improve support for OpenGL ES under X11
Sam Lantinga <slouken@libsdl.org>
parents:
3623
diff
changeset
|
140 |
if test x$have_opengles = xyes; then |
e82023802002
Fixed bug 1242 - PATCH: Improve support for OpenGL ES under X11
Sam Lantinga <slouken@libsdl.org>
parents:
3623
diff
changeset
|
141 |
CFLAGS="$CFLAGS -DHAVE_OPENGLES" |
7794
7995e0920bf9
Fixes testgles and testgl
Gabriel Jacobo <gabomdq@gmail.com>
parents:
7704
diff
changeset
|
142 |
GLESLIB="$XPATH -lGLESv1_CM" |
7995e0920bf9
Fixes testgles and testgl
Gabriel Jacobo <gabomdq@gmail.com>
parents:
7704
diff
changeset
|
143 |
fi |
7995e0920bf9
Fixes testgles and testgl
Gabriel Jacobo <gabomdq@gmail.com>
parents:
7704
diff
changeset
|
144 |
if test x$have_opengl = xyes; then |
3090
37f9304df6a9
Fixed OpenGL library linking issue
Sam Lantinga <slouken@libsdl.org>
parents:
3087
diff
changeset
|
145 |
CFLAGS="$CFLAGS -DHAVE_OPENGL" |
37f9304df6a9
Fixed OpenGL library linking issue
Sam Lantinga <slouken@libsdl.org>
parents:
3087
diff
changeset
|
146 |
GLLIB="$XPATH $SYS_GL_LIBS" |
3087
0b6f51c29267
Date: Wed, 4 Mar 2009 15:38:22 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
2138
diff
changeset
|
147 |
fi |
0b6f51c29267
Date: Wed, 4 Mar 2009 15:38:22 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
2138
diff
changeset
|
148 |
|
1380
d94b080ff6ce
Completely removed dependency on automake
Sam Lantinga <slouken@libsdl.org>
parents:
1367
diff
changeset
|
149 |
AC_SUBST(GLLIB) |
7794
7995e0920bf9
Fixes testgles and testgl
Gabriel Jacobo <gabomdq@gmail.com>
parents:
7704
diff
changeset
|
150 |
AC_SUBST(GLESLIB) |
7495
c4ba5e5c2765
Fixed bug 1973 - test/Makefile.in fails on Mac OS X with X11 enabled...
Sam Lantinga <slouken@libsdl.org>
parents:
6785
diff
changeset
|
151 |
AC_SUBST(XLIB) |
0 | 152 |
|
3280
00cace2d9080
Merged a cleaned up version of Jiang's code changes from Google Summer of Code 2009
Sam Lantinga <slouken@libsdl.org>
parents:
3090
diff
changeset
|
153 |
dnl Check for SDL_ttf |
6598
81d643a61b54
Fixed check for SDL_ttf with SDL 2.0
Sam Lantinga <slouken@libsdl.org>
parents:
6390
diff
changeset
|
154 |
AC_CHECK_LIB(SDL2_ttf, TTF_Init, have_SDL_ttf=yes) |
3280
00cace2d9080
Merged a cleaned up version of Jiang's code changes from Google Summer of Code 2009
Sam Lantinga <slouken@libsdl.org>
parents:
3090
diff
changeset
|
155 |
if test x$have_SDL_ttf = xyes; then |
00cace2d9080
Merged a cleaned up version of Jiang's code changes from Google Summer of Code 2009
Sam Lantinga <slouken@libsdl.org>
parents:
3090
diff
changeset
|
156 |
CFLAGS="$CFLAGS -DHAVE_SDL_TTF" |
6598
81d643a61b54
Fixed check for SDL_ttf with SDL 2.0
Sam Lantinga <slouken@libsdl.org>
parents:
6390
diff
changeset
|
157 |
SDL_TTF_LIB="-lSDL2_ttf" |
3280
00cace2d9080
Merged a cleaned up version of Jiang's code changes from Google Summer of Code 2009
Sam Lantinga <slouken@libsdl.org>
parents:
3090
diff
changeset
|
158 |
fi |
00cace2d9080
Merged a cleaned up version of Jiang's code changes from Google Summer of Code 2009
Sam Lantinga <slouken@libsdl.org>
parents:
3090
diff
changeset
|
159 |
AC_SUBST(SDL_TTF_LIB) |
00cace2d9080
Merged a cleaned up version of Jiang's code changes from Google Summer of Code 2009
Sam Lantinga <slouken@libsdl.org>
parents:
3090
diff
changeset
|
160 |
|
1380
d94b080ff6ce
Completely removed dependency on automake
Sam Lantinga <slouken@libsdl.org>
parents:
1367
diff
changeset
|
161 |
dnl Finally create all the generated files |
0 | 162 |
AC_OUTPUT([Makefile]) |