slouken@0
|
1 |
dnl Process this file with autoconf to produce a configure script.
|
slouken@0
|
2 |
AC_INIT(README)
|
slouken@1341
|
3 |
AC_CONFIG_HEADER(include/SDL_config.h)
|
slouken@1353
|
4 |
AC_GNU_SOURCE
|
slouken@0
|
5 |
|
slouken@0
|
6 |
dnl Set various version strings - taken gratefully from the GTk sources
|
slouken@0
|
7 |
#
|
slouken@0
|
8 |
# Making releases:
|
slouken@0
|
9 |
# Edit include/SDL/SDL_version.h and change the version, then:
|
slouken@0
|
10 |
# SDL_MICRO_VERSION += 1;
|
slouken@0
|
11 |
# SDL_INTERFACE_AGE += 1;
|
slouken@0
|
12 |
# SDL_BINARY_AGE += 1;
|
slouken@0
|
13 |
# if any functions have been added, set SDL_INTERFACE_AGE to 0.
|
slouken@0
|
14 |
# if backwards compatibility has been broken,
|
slouken@0
|
15 |
# set SDL_BINARY_AGE and SDL_INTERFACE_AGE to 0.
|
slouken@0
|
16 |
#
|
slouken@0
|
17 |
SDL_MAJOR_VERSION=1
|
slouken@1895
|
18 |
SDL_MINOR_VERSION=3
|
slouken@1895
|
19 |
SDL_MICRO_VERSION=0
|
slouken@1886
|
20 |
SDL_INTERFACE_AGE=0
|
slouken@1895
|
21 |
SDL_BINARY_AGE=0
|
slouken@0
|
22 |
SDL_VERSION=$SDL_MAJOR_VERSION.$SDL_MINOR_VERSION.$SDL_MICRO_VERSION
|
slouken@0
|
23 |
|
slouken@0
|
24 |
AC_SUBST(SDL_MAJOR_VERSION)
|
slouken@0
|
25 |
AC_SUBST(SDL_MINOR_VERSION)
|
slouken@0
|
26 |
AC_SUBST(SDL_MICRO_VERSION)
|
slouken@0
|
27 |
AC_SUBST(SDL_INTERFACE_AGE)
|
slouken@0
|
28 |
AC_SUBST(SDL_BINARY_AGE)
|
slouken@0
|
29 |
AC_SUBST(SDL_VERSION)
|
slouken@0
|
30 |
|
slouken@0
|
31 |
# libtool versioning
|
slouken@0
|
32 |
LT_RELEASE=$SDL_MAJOR_VERSION.$SDL_MINOR_VERSION
|
slouken@0
|
33 |
LT_CURRENT=`expr $SDL_MICRO_VERSION - $SDL_INTERFACE_AGE`
|
slouken@0
|
34 |
LT_REVISION=$SDL_INTERFACE_AGE
|
slouken@0
|
35 |
LT_AGE=`expr $SDL_BINARY_AGE - $SDL_INTERFACE_AGE`
|
slouken@0
|
36 |
|
slouken@0
|
37 |
AC_SUBST(LT_RELEASE)
|
slouken@0
|
38 |
AC_SUBST(LT_CURRENT)
|
slouken@0
|
39 |
AC_SUBST(LT_REVISION)
|
slouken@0
|
40 |
AC_SUBST(LT_AGE)
|
slouken@0
|
41 |
|
slouken@1550
|
42 |
dnl Detect the canonical build and host environments
|
slouken@1361
|
43 |
AC_CONFIG_AUX_DIRS($srcdir/build-scripts)
|
slouken@1550
|
44 |
AC_CANONICAL_HOST
|
slouken@1354
|
45 |
AC_C_BIGENDIAN
|
slouken@1354
|
46 |
if test x$ac_cv_c_bigendian = xyes; then
|
slouken@1354
|
47 |
AC_DEFINE(SDL_BYTEORDER, 4321)
|
slouken@1354
|
48 |
else
|
slouken@1354
|
49 |
AC_DEFINE(SDL_BYTEORDER, 1234)
|
slouken@1354
|
50 |
fi
|
slouken@0
|
51 |
|
slouken@1389
|
52 |
dnl Set up the compiler and linker flags
|
slouken@1571
|
53 |
INCLUDE="-I$srcdir/include"
|
slouken@1373
|
54 |
if test x$srcdir != x.; then
|
slouken@1742
|
55 |
# Remove SDL_config.h from the source directory, since it's the
|
slouken@1742
|
56 |
# default one, and we want to include the one that we generate.
|
slouken@1742
|
57 |
if test -f $srcdir/include/SDL_config.h; then
|
slouken@1742
|
58 |
rm $srcdir/include/SDL_config.h
|
slouken@1742
|
59 |
fi
|
slouken@1571
|
60 |
INCLUDE="-Iinclude $INCLUDE"
|
slouken@1373
|
61 |
fi
|
slouken@1550
|
62 |
case "$host" in
|
slouken@1389
|
63 |
*-*-cygwin*)
|
slouken@1389
|
64 |
# We build SDL on cygwin without the UNIX emulation layer
|
slouken@1521
|
65 |
BASE_CFLAGS="-I/usr/include/mingw -mno-cygwin"
|
slouken@1521
|
66 |
BASE_LDFLAGS="-mno-cygwin"
|
slouken@1389
|
67 |
;;
|
slouken@1389
|
68 |
*)
|
slouken@1521
|
69 |
BASE_CFLAGS="-D_GNU_SOURCE=1"
|
slouken@1521
|
70 |
BASE_LDFLAGS=""
|
slouken@1389
|
71 |
;;
|
slouken@1389
|
72 |
esac
|
slouken@1648
|
73 |
BUILD_CFLAGS="$CFLAGS $CPPFLAGS"
|
slouken@1521
|
74 |
EXTRA_CFLAGS="$INCLUDE $BASE_CFLAGS"
|
slouken@1521
|
75 |
BUILD_LDFLAGS="$LDFLAGS"
|
slouken@1521
|
76 |
EXTRA_LDFLAGS="$BASE_LDFLAGS"
|
slouken@2163
|
77 |
## These are common directories to find software packages
|
slouken@2163
|
78 |
#for path in /usr/freeware /usr/pkg /usr/X11R6 /usr/local; do
|
slouken@1823
|
79 |
# if test -d $path/include; then
|
slouken@1823
|
80 |
# EXTRA_CFLAGS="$EXTRA_CFLAGS -I$path/include"
|
slouken@1823
|
81 |
# fi
|
slouken@1823
|
82 |
# if test -d $path/lib; then
|
slouken@1823
|
83 |
# EXTRA_LDFLAGS="$EXTRA_LDFLAGS -L$path/lib"
|
slouken@1823
|
84 |
# fi
|
slouken@1823
|
85 |
#done
|
slouken@1521
|
86 |
SDL_CFLAGS="$BASE_CFLAGS"
|
slouken@1521
|
87 |
SDL_LIBS="-lSDL $BASE_LDFLAGS"
|
slouken@1521
|
88 |
CPPFLAGS="$CPPFLAGS $EXTRA_CFLAGS"
|
slouken@1521
|
89 |
CFLAGS="$CFLAGS $EXTRA_CFLAGS"
|
slouken@1521
|
90 |
LDFLAGS="$LDFLAGS $EXTRA_LDFLAGS"
|
slouken@1373
|
91 |
|
slouken@0
|
92 |
dnl Check for tools
|
slouken@0
|
93 |
AC_LIBTOOL_WIN32_DLL
|
slouken@1361
|
94 |
AC_PROG_LIBTOOL
|
slouken@0
|
95 |
AC_PROG_CC
|
slouken@200
|
96 |
AC_PROG_CXX
|
slouken@0
|
97 |
AC_PROG_INSTALL
|
slouken@1380
|
98 |
AC_PROG_MAKE_SET
|
slouken@2204
|
99 |
AC_CHECK_PROGS(WINDRES, windres i386-mingw32-windres)
|
slouken@1341
|
100 |
|
slouken@1353
|
101 |
dnl Check for compiler characteristics
|
slouken@1341
|
102 |
AC_C_CONST
|
slouken@1341
|
103 |
AC_C_INLINE
|
slouken@1353
|
104 |
AC_C_VOLATILE
|
slouken@1353
|
105 |
|
slouken@1361
|
106 |
dnl See whether we are allowed to use the system C library
|
slouken@1361
|
107 |
AC_ARG_ENABLE(libc,
|
slouken@1637
|
108 |
AC_HELP_STRING([--enable-libc], [Use the system C library [[default=yes]]]),
|
slouken@1361
|
109 |
, enable_libc=yes)
|
slouken@1361
|
110 |
if test x$enable_libc = xyes; then
|
slouken@1361
|
111 |
AC_DEFINE(HAVE_LIBC)
|
slouken@1361
|
112 |
|
slouken@1361
|
113 |
dnl Check for C library headers
|
slouken@1361
|
114 |
AC_HEADER_STDC
|
slouken@1501
|
115 |
AC_CHECK_HEADERS(sys/types.h stdio.h stdlib.h stddef.h stdarg.h malloc.h memory.h string.h strings.h inttypes.h stdint.h ctype.h math.h iconv.h signal.h)
|
slouken@1353
|
116 |
|
slouken@1361
|
117 |
dnl Check for typedefs, structures, etc.
|
slouken@1361
|
118 |
AC_TYPE_SIZE_T
|
slouken@1361
|
119 |
if test x$ac_cv_header_inttypes_h = xyes -o x$ac_cv_header_stdint_h = xyes; then
|
slouken@1361
|
120 |
AC_CHECK_TYPE(int64_t)
|
slouken@1361
|
121 |
if test x$ac_cv_type_int64_t = xyes; then
|
slouken@1361
|
122 |
AC_DEFINE(SDL_HAS_64BIT_TYPE)
|
slouken@1361
|
123 |
fi
|
slouken@1361
|
124 |
have_inttypes=yes
|
slouken@1353
|
125 |
fi
|
slouken@1361
|
126 |
|
slouken@1361
|
127 |
dnl Checks for library functions.
|
icculus@2079
|
128 |
case "$host" in
|
icculus@2079
|
129 |
*-*-cygwin* | *-*-mingw32*)
|
icculus@2079
|
130 |
;;
|
icculus@2079
|
131 |
*)
|
icculus@2079
|
132 |
AC_FUNC_ALLOCA
|
icculus@2079
|
133 |
;;
|
icculus@2079
|
134 |
esac
|
icculus@2079
|
135 |
|
slouken@1361
|
136 |
AC_FUNC_MEMCMP
|
slouken@1361
|
137 |
if test x$ac_cv_func_memcmp_working = xyes; then
|
slouken@1361
|
138 |
AC_DEFINE(HAVE_MEMCMP)
|
slouken@1361
|
139 |
fi
|
slouken@1361
|
140 |
AC_FUNC_STRTOD
|
slouken@1361
|
141 |
if test x$ac_cv_func_strtod = xyes; then
|
slouken@1361
|
142 |
AC_DEFINE(HAVE_STRTOD)
|
slouken@1361
|
143 |
fi
|
slouken@1512
|
144 |
AC_CHECK_FUNCS(malloc calloc realloc free getenv putenv unsetenv qsort abs bcopy memset memcpy memmove strlen strlcpy strlcat strdup _strrev _strupr _strlwr strchr strrchr strstr itoa _ltoa _uitoa _ultoa strtol strtoul _i64toa _ui64toa strtoll strtoull atoi atof strcmp strncmp _stricmp strcasecmp _strnicmp strncasecmp sscanf snprintf vsnprintf iconv sigaction setjmp nanosleep)
|
slouken@1373
|
145 |
|
slouken@1891
|
146 |
AC_CHECK_LIB(iconv, libiconv_open, [EXTRA_LDFLAGS="$EXTRA_LDFLAGS -liconv"])
|
slouken@1521
|
147 |
AC_CHECK_LIB(m, pow, [EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lm"])
|
slouken@1361
|
148 |
fi
|
slouken@1361
|
149 |
|
slouken@1361
|
150 |
if test x$have_inttypes != xyes; then
|
slouken@1353
|
151 |
AC_CHECK_SIZEOF(char, 1)
|
slouken@1353
|
152 |
AC_CHECK_SIZEOF(short, 2)
|
slouken@1353
|
153 |
AC_CHECK_SIZEOF(int, 4)
|
slouken@1353
|
154 |
AC_CHECK_SIZEOF(long, 4)
|
slouken@1353
|
155 |
AC_CHECK_SIZEOF(long long, 8)
|
slouken@1353
|
156 |
if test x$ac_cv_sizeof_char = x1; then
|
slouken@1353
|
157 |
AC_DEFINE(int8_t, signed char)
|
slouken@1353
|
158 |
AC_DEFINE(uint8_t, unsigned char)
|
slouken@1353
|
159 |
fi
|
slouken@1353
|
160 |
if test x$ac_cv_sizeof_short = x2; then
|
slouken@1353
|
161 |
AC_DEFINE(int16_t, signed short)
|
slouken@1353
|
162 |
AC_DEFINE(uint16_t, unsigned short)
|
slouken@1353
|
163 |
else
|
slouken@1353
|
164 |
if test x$ac_cv_sizeof_int = x2; then
|
slouken@1353
|
165 |
AC_DEFINE(int16_t, signed int)
|
slouken@1353
|
166 |
AC_DEFINE(uint16_t, unsigned int)
|
slouken@1353
|
167 |
fi
|
slouken@1353
|
168 |
fi
|
slouken@1353
|
169 |
if test x$ac_cv_sizeof_int = x4; then
|
slouken@1353
|
170 |
AC_DEFINE(int32_t, signed int)
|
slouken@1353
|
171 |
AC_DEFINE(uint32_t, unsigned int)
|
slouken@1353
|
172 |
else
|
slouken@1353
|
173 |
if test x$ac_cv_sizeof_long = x4; then
|
slouken@1353
|
174 |
AC_DEFINE(int32_t, signed long)
|
slouken@1353
|
175 |
AC_DEFINE(uint32_t, unsigned long)
|
slouken@1353
|
176 |
fi
|
slouken@1353
|
177 |
fi
|
slouken@1353
|
178 |
if test x$ac_cv_sizeof_long = x8; then
|
slouken@1353
|
179 |
AC_DEFINE(int64_t, signed long)
|
slouken@1353
|
180 |
AC_DEFINE(uint64_t, unsigned long)
|
slouken@1353
|
181 |
AC_DEFINE(SDL_HAS_64BIT_TYPE)
|
slouken@1353
|
182 |
else
|
slouken@1353
|
183 |
if test x$ac_cv_sizeof_long_long = x8; then
|
slouken@1353
|
184 |
AC_DEFINE(int64_t, signed long long)
|
slouken@1353
|
185 |
AC_DEFINE(uint64_t, unsigned long long)
|
slouken@1353
|
186 |
AC_DEFINE(SDL_HAS_64BIT_TYPE)
|
slouken@1353
|
187 |
fi
|
slouken@1353
|
188 |
fi
|
slouken@1361
|
189 |
AC_DEFINE(size_t, unsigned int)
|
slouken@1361
|
190 |
AC_DEFINE(uintptr_t, unsigned long)
|
slouken@1353
|
191 |
fi
|
slouken@1341
|
192 |
|
slouken@1361
|
193 |
# Standard C sources
|
slouken@1361
|
194 |
SOURCES="$SOURCES $srcdir/src/*.c"
|
slouken@1361
|
195 |
SOURCES="$SOURCES $srcdir/src/audio/*.c"
|
slouken@1361
|
196 |
SOURCES="$SOURCES $srcdir/src/cdrom/*.c"
|
slouken@1361
|
197 |
SOURCES="$SOURCES $srcdir/src/cpuinfo/*.c"
|
slouken@1361
|
198 |
SOURCES="$SOURCES $srcdir/src/events/*.c"
|
slouken@1361
|
199 |
SOURCES="$SOURCES $srcdir/src/file/*.c"
|
slouken@1361
|
200 |
SOURCES="$SOURCES $srcdir/src/stdlib/*.c"
|
slouken@1361
|
201 |
SOURCES="$SOURCES $srcdir/src/thread/*.c"
|
slouken@1361
|
202 |
SOURCES="$SOURCES $srcdir/src/timer/*.c"
|
slouken@1361
|
203 |
SOURCES="$SOURCES $srcdir/src/video/*.c"
|
slouken@1361
|
204 |
|
slouken@0
|
205 |
dnl Enable/disable various subsystems of the SDL library
|
slouken@0
|
206 |
|
slouken@0
|
207 |
AC_ARG_ENABLE(audio,
|
slouken@1637
|
208 |
AC_HELP_STRING([--enable-audio], [Enable the audio subsystem [[default=yes]]]),
|
slouken@0
|
209 |
, enable_audio=yes)
|
slouken@1361
|
210 |
if test x$enable_audio != xyes; then
|
slouken@1361
|
211 |
AC_DEFINE(SDL_AUDIO_DISABLED)
|
slouken@0
|
212 |
fi
|
slouken@0
|
213 |
AC_ARG_ENABLE(video,
|
slouken@1637
|
214 |
AC_HELP_STRING([--enable-video], [Enable the video subsystem [[default=yes]]]),
|
slouken@0
|
215 |
, enable_video=yes)
|
slouken@1361
|
216 |
if test x$enable_video != xyes; then
|
slouken@1361
|
217 |
AC_DEFINE(SDL_VIDEO_DISABLED)
|
slouken@0
|
218 |
fi
|
slouken@0
|
219 |
AC_ARG_ENABLE(events,
|
slouken@1637
|
220 |
AC_HELP_STRING([--enable-events], [Enable the events subsystem [[default=yes]]]),
|
slouken@0
|
221 |
, enable_events=yes)
|
slouken@1361
|
222 |
if test x$enable_events != xyes; then
|
slouken@1361
|
223 |
AC_DEFINE(SDL_EVENTS_DISABLED)
|
slouken@0
|
224 |
fi
|
slouken@0
|
225 |
AC_ARG_ENABLE(joystick,
|
slouken@1637
|
226 |
AC_HELP_STRING([--enable-joystick], [Enable the joystick subsystem [[default=yes]]]),
|
slouken@0
|
227 |
, enable_joystick=yes)
|
slouken@1361
|
228 |
if test x$enable_joystick != xyes; then
|
slouken@1361
|
229 |
AC_DEFINE(SDL_JOYSTICK_DISABLED)
|
icculus@2103
|
230 |
else
|
icculus@2103
|
231 |
SOURCES="$SOURCES $srcdir/src/joystick/*.c"
|
slouken@0
|
232 |
fi
|
slouken@0
|
233 |
AC_ARG_ENABLE(cdrom,
|
slouken@1637
|
234 |
AC_HELP_STRING([--enable-cdrom], [Enable the cdrom subsystem [[default=yes]]]),
|
slouken@0
|
235 |
, enable_cdrom=yes)
|
slouken@1361
|
236 |
if test x$enable_cdrom != xyes; then
|
slouken@1361
|
237 |
AC_DEFINE(SDL_CDROM_DISABLED)
|
slouken@0
|
238 |
fi
|
slouken@0
|
239 |
AC_ARG_ENABLE(threads,
|
slouken@1637
|
240 |
AC_HELP_STRING([--enable-threads], [Enable the threading subsystem [[default=yes]]]),
|
slouken@0
|
241 |
, enable_threads=yes)
|
slouken@0
|
242 |
if test x$enable_threads != xyes; then
|
slouken@1361
|
243 |
AC_DEFINE(SDL_THREADS_DISABLED)
|
slouken@0
|
244 |
fi
|
slouken@0
|
245 |
AC_ARG_ENABLE(timers,
|
slouken@1637
|
246 |
AC_HELP_STRING([--enable-timers], [Enable the timer subsystem [[default=yes]]]),
|
slouken@0
|
247 |
, enable_timers=yes)
|
slouken@1361
|
248 |
if test x$enable_timers != xyes; then
|
slouken@1361
|
249 |
AC_DEFINE(SDL_TIMERS_DISABLED)
|
slouken@0
|
250 |
fi
|
slouken@0
|
251 |
AC_ARG_ENABLE(file,
|
slouken@1637
|
252 |
AC_HELP_STRING([--enable-file], [Enable the file subsystem [[default=yes]]]),
|
slouken@0
|
253 |
, enable_file=yes)
|
slouken@1361
|
254 |
if test x$enable_file != xyes; then
|
slouken@1361
|
255 |
AC_DEFINE(SDL_FILE_DISABLED)
|
slouken@1361
|
256 |
fi
|
slouken@1361
|
257 |
AC_ARG_ENABLE(loadso,
|
slouken@1637
|
258 |
AC_HELP_STRING([--enable-loadso], [Enable the shared object loading subsystem [[default=yes]]]),
|
slouken@1361
|
259 |
, enable_loadso=yes)
|
slouken@1361
|
260 |
if test x$enable_loadso != xyes; then
|
slouken@1361
|
261 |
AC_DEFINE(SDL_LOADSO_DISABLED)
|
slouken@0
|
262 |
fi
|
slouken@740
|
263 |
AC_ARG_ENABLE(cpuinfo,
|
slouken@1637
|
264 |
AC_HELP_STRING([--enable-cpuinfo], [Enable the cpuinfo subsystem [[default=yes]]]),
|
slouken@740
|
265 |
, enable_cpuinfo=yes)
|
slouken@1361
|
266 |
if test x$enable_cpuinfo != xyes; then
|
slouken@1361
|
267 |
AC_DEFINE(SDL_CPUINFO_DISABLED)
|
slouken@1361
|
268 |
fi
|
slouken@1402
|
269 |
AC_ARG_ENABLE(assembly,
|
slouken@1637
|
270 |
AC_HELP_STRING([--enable-assembly], [Enable assembly routines [[default=yes]]]),
|
slouken@1402
|
271 |
, enable_assembly=yes)
|
slouken@1402
|
272 |
if test x$enable_assembly = xyes; then
|
slouken@1402
|
273 |
AC_DEFINE(SDL_ASSEMBLY_ROUTINES)
|
slouken@740
|
274 |
fi
|
slouken@0
|
275 |
|
slouken@0
|
276 |
dnl See if the OSS audio interface is supported
|
slouken@0
|
277 |
CheckOSS()
|
slouken@0
|
278 |
{
|
slouken@0
|
279 |
AC_ARG_ENABLE(oss,
|
slouken@1637
|
280 |
AC_HELP_STRING([--enable-oss], [support the OSS audio API [[default=yes]]]),
|
slouken@0
|
281 |
, enable_oss=yes)
|
slouken@0
|
282 |
if test x$enable_audio = xyes -a x$enable_oss = xyes; then
|
slouken@0
|
283 |
AC_MSG_CHECKING(for OSS audio support)
|
slouken@0
|
284 |
have_oss=no
|
slouken@94
|
285 |
if test x$have_oss != xyes; then
|
slouken@94
|
286 |
AC_TRY_COMPILE([
|
slouken@94
|
287 |
#include <sys/soundcard.h>
|
slouken@94
|
288 |
],[
|
slouken@94
|
289 |
int arg = SNDCTL_DSP_SETFRAGMENT;
|
slouken@94
|
290 |
],[
|
slouken@94
|
291 |
have_oss=yes
|
slouken@94
|
292 |
])
|
slouken@94
|
293 |
fi
|
slouken@94
|
294 |
if test x$have_oss != xyes; then
|
slouken@94
|
295 |
AC_TRY_COMPILE([
|
slouken@94
|
296 |
#include <soundcard.h>
|
slouken@94
|
297 |
],[
|
slouken@94
|
298 |
int arg = SNDCTL_DSP_SETFRAGMENT;
|
slouken@94
|
299 |
],[
|
slouken@94
|
300 |
have_oss=yes
|
slouken@1361
|
301 |
AC_DEFINE(SDL_AUDIO_DRIVER_OSS_SOUNDCARD_H)
|
slouken@94
|
302 |
])
|
slouken@94
|
303 |
fi
|
slouken@0
|
304 |
AC_MSG_RESULT($have_oss)
|
slouken@0
|
305 |
if test x$have_oss = xyes; then
|
slouken@1361
|
306 |
AC_DEFINE(SDL_AUDIO_DRIVER_OSS)
|
slouken@1361
|
307 |
SOURCES="$SOURCES $srcdir/src/audio/dsp/*.c"
|
slouken@1361
|
308 |
SOURCES="$SOURCES $srcdir/src/audio/dma/*.c"
|
slouken@1361
|
309 |
have_audio=yes
|
slouken@1361
|
310 |
|
slouken@1565
|
311 |
# We may need to link with ossaudio emulation library
|
slouken@1550
|
312 |
case "$host" in
|
slouken@1383
|
313 |
*-*-openbsd*|*-*-netbsd*)
|
slouken@1521
|
314 |
EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lossaudio";;
|
slouken@1361
|
315 |
esac
|
slouken@0
|
316 |
fi
|
slouken@0
|
317 |
fi
|
slouken@0
|
318 |
}
|
slouken@0
|
319 |
|
slouken@0
|
320 |
dnl See if the ALSA audio interface is supported
|
slouken@0
|
321 |
CheckALSA()
|
slouken@0
|
322 |
{
|
slouken@0
|
323 |
AC_ARG_ENABLE(alsa,
|
slouken@1637
|
324 |
AC_HELP_STRING([--enable-alsa], [support the ALSA audio API [[default=yes]]]),
|
slouken@0
|
325 |
, enable_alsa=yes)
|
slouken@0
|
326 |
if test x$enable_audio = xyes -a x$enable_alsa = xyes; then
|
slouken@948
|
327 |
AM_PATH_ALSA(0.9.0, have_alsa=yes, have_alsa=no)
|
slouken@1009
|
328 |
# Restore all flags from before the ALSA detection runs
|
slouken@1009
|
329 |
CFLAGS="$alsa_save_CFLAGS"
|
slouken@1009
|
330 |
LDFLAGS="$alsa_save_LDFLAGS"
|
slouken@1009
|
331 |
LIBS="$alsa_save_LIBS"
|
slouken@354
|
332 |
if test x$have_alsa = xyes; then
|
slouken@865
|
333 |
AC_ARG_ENABLE(alsa-shared,
|
slouken@1637
|
334 |
AC_HELP_STRING([--enable-alsa-shared], [dynamically load ALSA audio support [[default=yes]]]),
|
slouken@1361
|
335 |
, enable_alsa_shared=yes)
|
slouken@1361
|
336 |
if test "x`echo $ALSA_LIBS | grep -- -L`" = "x"; then
|
slouken@1361
|
337 |
if test "x`ls /lib/libasound.so.* 2> /dev/null`" != "x"; then
|
slouken@1361
|
338 |
ALSA_LIBS="-L/lib $ALSA_LIBS"
|
slouken@1361
|
339 |
elif test "x`ls /usr/lib/libasound.so.* 2> /dev/null`" != "x"; then
|
slouken@1361
|
340 |
ALSA_LIBS="-L/usr/lib $ALSA_LIBS"
|
slouken@1361
|
341 |
elif test "x`ls /usr/local/lib/libasound.so.* 2> /dev/null`" != "x"; then
|
slouken@1361
|
342 |
ALSA_LIBS="-L/usr/local/lib $ALSA_LIBS"
|
slouken@1361
|
343 |
fi
|
slouken@1361
|
344 |
fi
|
slouken@1361
|
345 |
alsa_lib_spec=`echo $ALSA_LIBS | sed 's/.*-L\([[^ ]]*\).*/\1\/libasound.so.*/'`
|
slouken@1606
|
346 |
alsa_lib=`ls -- $alsa_lib_spec | sed 's/.*\/\(.*\)/\1/; q'`
|
slouken@1361
|
347 |
echo "-- $alsa_lib_spec -> $alsa_lib"
|
slouken@1361
|
348 |
|
slouken@1361
|
349 |
AC_DEFINE(SDL_AUDIO_DRIVER_ALSA)
|
slouken@1361
|
350 |
SOURCES="$SOURCES $srcdir/src/audio/alsa/*.c"
|
slouken@1521
|
351 |
EXTRA_CFLAGS="$EXTRA_CFLAGS $ALSA_CFLAGS"
|
slouken@1361
|
352 |
if test x$have_loadso != xyes && \
|
slouken@1361
|
353 |
test x$enable_alsa_shared = xyes; then
|
slouken@1467
|
354 |
AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic ALSA loading])
|
slouken@1361
|
355 |
fi
|
slouken@1361
|
356 |
if test x$have_loadso = xyes && \
|
slouken@1361
|
357 |
test x$enable_alsa_shared = xyes && test x$alsa_lib != x; then
|
slouken@1361
|
358 |
AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_ALSA_DYNAMIC, "$alsa_lib")
|
slouken@1361
|
359 |
else
|
slouken@1521
|
360 |
EXTRA_LDFLAGS="$EXTRA_LDFLAGS $ALSA_LIBS"
|
slouken@1361
|
361 |
fi
|
slouken@1361
|
362 |
have_audio=yes
|
slouken@1361
|
363 |
fi
|
slouken@1361
|
364 |
fi
|
slouken@0
|
365 |
}
|
slouken@0
|
366 |
|
slouken@148
|
367 |
dnl Check whether we want to use IRIX 6.5+ native audio or not
|
slouken@148
|
368 |
CheckDMEDIA()
|
slouken@148
|
369 |
{
|
slouken@148
|
370 |
if test x$enable_audio = xyes; then
|
slouken@148
|
371 |
AC_MSG_CHECKING(for dmedia audio support)
|
slouken@148
|
372 |
have_dmedia=no
|
slouken@148
|
373 |
AC_TRY_COMPILE([
|
slouken@148
|
374 |
#include <dmedia/audio.h>
|
slouken@148
|
375 |
],[
|
slouken@148
|
376 |
ALport audio_port;
|
slouken@148
|
377 |
],[
|
slouken@148
|
378 |
have_dmedia=yes
|
slouken@148
|
379 |
])
|
slouken@935
|
380 |
AC_MSG_RESULT($have_dmedia)
|
slouken@148
|
381 |
# Set up files for the audio library
|
slouken@148
|
382 |
if test x$have_dmedia = xyes; then
|
slouken@1361
|
383 |
AC_DEFINE(SDL_AUDIO_DRIVER_DMEDIA)
|
slouken@1361
|
384 |
SOURCES="$SOURCES $srcdir/src/audio/dmedia/*.c"
|
slouken@1521
|
385 |
EXTRA_LDFLAGS="$EXTRA_LDFLAGS -laudio"
|
slouken@1361
|
386 |
have_audio=yes
|
slouken@148
|
387 |
fi
|
slouken@148
|
388 |
fi
|
slouken@148
|
389 |
}
|
slouken@148
|
390 |
|
slouken@1438
|
391 |
dnl Check whether we want to use Tru64 UNIX native audio or not
|
slouken@1438
|
392 |
CheckMME()
|
slouken@1438
|
393 |
{
|
slouken@1438
|
394 |
dnl Make sure we are running on an Tru64 UNIX
|
slouken@1438
|
395 |
case $ARCH in
|
slouken@1438
|
396 |
osf)
|
slouken@1438
|
397 |
;;
|
slouken@1438
|
398 |
*)
|
slouken@1438
|
399 |
return
|
slouken@1438
|
400 |
;;
|
slouken@1438
|
401 |
esac
|
slouken@1438
|
402 |
if test x$enable_audio = xyes; then
|
slouken@1438
|
403 |
AC_MSG_CHECKING(for MME audio support)
|
slouken@1438
|
404 |
MME_CFLAGS="-I/usr/include/mme"
|
slouken@1438
|
405 |
MME_LIBS="-lmme"
|
slouken@1438
|
406 |
have_mme=no
|
slouken@1438
|
407 |
save_CFLAGS="$CFLAGS"
|
slouken@1438
|
408 |
CFLAGS="$CFLAGS $MME_CFLAGS"
|
slouken@1438
|
409 |
AC_TRY_COMPILE([
|
slouken@1438
|
410 |
#include <mme_api.h>
|
slouken@1438
|
411 |
],[
|
slouken@1438
|
412 |
HWAVEOUT sound;
|
slouken@1438
|
413 |
],[
|
slouken@1438
|
414 |
have_mme=yes
|
slouken@1438
|
415 |
])
|
slouken@1438
|
416 |
CFLAGS="$save_CFLAGS"
|
slouken@1438
|
417 |
AC_MSG_RESULT($have_mme)
|
slouken@1438
|
418 |
# Set up files for the audio library
|
slouken@1438
|
419 |
if test x$have_mme = xyes; then
|
slouken@1438
|
420 |
AC_DEFINE(SDL_AUDIO_DRIVER_MMEAUDIO)
|
slouken@1438
|
421 |
SOURCES="$SOURCES $srcdir/src/audio/mme/*.c"
|
slouken@1521
|
422 |
EXTRA_CFLAGS="$EXTRA_CFLAGS $MME_CFLAGS"
|
slouken@1521
|
423 |
EXTRA_LDFLAGS="$EXTRA_LDFLAGS $MME_LIBS"
|
slouken@1438
|
424 |
have_audio=yes
|
slouken@1438
|
425 |
fi
|
slouken@1438
|
426 |
fi
|
slouken@1438
|
427 |
}
|
slouken@1438
|
428 |
|
slouken@0
|
429 |
dnl Find the ESD includes and libraries
|
slouken@0
|
430 |
CheckESD()
|
slouken@0
|
431 |
{
|
slouken@0
|
432 |
AC_ARG_ENABLE(esd,
|
slouken@1637
|
433 |
AC_HELP_STRING([--enable-esd], [support the Enlightened Sound Daemon [[default=yes]]]),
|
slouken@0
|
434 |
, enable_esd=yes)
|
slouken@0
|
435 |
if test x$enable_audio = xyes -a x$enable_esd = xyes; then
|
slouken@948
|
436 |
AM_PATH_ESD(0.2.8, have_esd=yes, have_esd=no)
|
slouken@948
|
437 |
if test x$have_esd = xyes; then
|
slouken@294
|
438 |
AC_ARG_ENABLE(esd-shared,
|
slouken@1637
|
439 |
AC_HELP_STRING([--enable-esd-shared], [dynamically load ESD audio support [[default=yes]]]),
|
slouken@678
|
440 |
, enable_esd_shared=yes)
|
slouken@294
|
441 |
esd_lib_spec=`echo $ESD_LIBS | sed 's/.*-L\([[^ ]]*\).*/\1\/libesd.so.*/'`
|
slouken@1606
|
442 |
esd_lib=`ls -- $esd_lib_spec | sed 's/.*\/\(.*\)/\1/; q'`
|
slouken@371
|
443 |
echo "-- $esd_lib_spec -> $esd_lib"
|
slouken@1467
|
444 |
|
slouken@1467
|
445 |
AC_DEFINE(SDL_AUDIO_DRIVER_ESD)
|
slouken@1467
|
446 |
SOURCES="$SOURCES $srcdir/src/audio/esd/*.c"
|
slouken@1521
|
447 |
EXTRA_CFLAGS="$EXTRA_CFLAGS $ESD_CFLAGS"
|
icculus@1173
|
448 |
if test x$have_loadso != xyes && \
|
slouken@296
|
449 |
test x$enable_esd_shared = xyes; then
|
slouken@1467
|
450 |
AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic ESD loading])
|
slouken@296
|
451 |
fi
|
icculus@1173
|
452 |
if test x$have_loadso = xyes && \
|
slouken@294
|
453 |
test x$enable_esd_shared = xyes && test x$esd_lib != x; then
|
slouken@1361
|
454 |
AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_ESD_DYNAMIC, "$esd_lib")
|
slouken@1467
|
455 |
else
|
slouken@1521
|
456 |
EXTRA_LDFLAGS="$EXTRA_LDFLAGS $ESD_LIBS"
|
slouken@294
|
457 |
fi
|
slouken@1361
|
458 |
have_audio=yes
|
slouken@294
|
459 |
fi
|
slouken@0
|
460 |
fi
|
slouken@0
|
461 |
}
|
slouken@0
|
462 |
|
slouken@0
|
463 |
CheckARTSC()
|
slouken@0
|
464 |
{
|
slouken@0
|
465 |
AC_ARG_ENABLE(arts,
|
slouken@1637
|
466 |
AC_HELP_STRING([--enable-arts], [support the Analog Real Time Synthesizer [[default=yes]]]),
|
slouken@0
|
467 |
, enable_arts=yes)
|
slouken@0
|
468 |
if test x$enable_audio = xyes -a x$enable_arts = xyes; then
|
slouken@1361
|
469 |
AC_PATH_PROG(ARTSCONFIG, artsc-config)
|
slouken@1361
|
470 |
if test x$ARTSCONFIG = x -o x$ARTSCONFIG = x'"$ARTSCONFIG"'; then
|
slouken@0
|
471 |
: # arts isn't installed
|
slouken@0
|
472 |
else
|
slouken@1361
|
473 |
ARTS_CFLAGS=`$ARTSCONFIG --cflags`
|
slouken@1361
|
474 |
ARTS_LIBS=`$ARTSCONFIG --libs`
|
slouken@1361
|
475 |
ARTS_PREFIX=`$ARTSCONFIG --arts-prefix`
|
slouken@0
|
476 |
AC_MSG_CHECKING(for aRts development environment)
|
slouken@0
|
477 |
audio_arts=no
|
slouken@0
|
478 |
save_CFLAGS="$CFLAGS"
|
slouken@1361
|
479 |
CFLAGS="$CFLAGS $ARTS_CFLAGS"
|
slouken@0
|
480 |
AC_TRY_COMPILE([
|
slouken@0
|
481 |
#include <artsc.h>
|
slouken@0
|
482 |
],[
|
slouken@0
|
483 |
arts_stream_t stream;
|
slouken@0
|
484 |
],[
|
slouken@0
|
485 |
audio_arts=yes
|
slouken@0
|
486 |
])
|
slouken@0
|
487 |
CFLAGS="$save_CFLAGS"
|
slouken@0
|
488 |
AC_MSG_RESULT($audio_arts)
|
slouken@0
|
489 |
if test x$audio_arts = xyes; then
|
slouken@294
|
490 |
AC_ARG_ENABLE(arts-shared,
|
slouken@1637
|
491 |
AC_HELP_STRING([--enable-arts-shared], [dynamically load aRts audio support [[default=yes]]]),
|
slouken@678
|
492 |
, enable_arts_shared=yes)
|
slouken@1361
|
493 |
arts_lib_spec="$ARTS_PREFIX/lib/libartsc.so.*"
|
slouken@1606
|
494 |
arts_lib=`ls -- $arts_lib_spec | sed 's/.*\/\(.*\)/\1/; q'`
|
slouken@371
|
495 |
echo "-- $arts_lib_spec -> $arts_lib"
|
slouken@1467
|
496 |
|
slouken@1467
|
497 |
AC_DEFINE(SDL_AUDIO_DRIVER_ARTS)
|
slouken@1467
|
498 |
SOURCES="$SOURCES $srcdir/src/audio/arts/*.c"
|
slouken@1521
|
499 |
EXTRA_CFLAGS="$EXTRA_CFLAGS $ARTS_CFLAGS"
|
icculus@1173
|
500 |
if test x$have_loadso != xyes && \
|
slouken@296
|
501 |
test x$enable_arts_shared = xyes; then
|
slouken@1467
|
502 |
AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic ARTS loading])
|
slouken@296
|
503 |
fi
|
icculus@1173
|
504 |
if test x$have_loadso = xyes && \
|
slouken@294
|
505 |
test x$enable_arts_shared = xyes && test x$arts_lib != x; then
|
slouken@1361
|
506 |
AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_ARTS_DYNAMIC, "$arts_lib")
|
slouken@1467
|
507 |
else
|
slouken@1521
|
508 |
EXTRA_LDFLAGS="$EXTRA_LDFLAGS $ARTS_LIBS"
|
slouken@294
|
509 |
fi
|
slouken@1361
|
510 |
have_audio=yes
|
slouken@0
|
511 |
fi
|
slouken@0
|
512 |
fi
|
slouken@0
|
513 |
fi
|
slouken@0
|
514 |
}
|
slouken@0
|
515 |
|
slouken@0
|
516 |
dnl See if the NAS audio interface is supported
|
slouken@0
|
517 |
CheckNAS()
|
slouken@0
|
518 |
{
|
slouken@0
|
519 |
AC_ARG_ENABLE(nas,
|
slouken@1637
|
520 |
AC_HELP_STRING([--enable-nas], [support the NAS audio API [[default=yes]]]),
|
slouken@41
|
521 |
, enable_nas=yes)
|
slouken@0
|
522 |
if test x$enable_audio = xyes -a x$enable_nas = xyes; then
|
icculus@2049
|
523 |
AC_CHECK_HEADER(audio/audiolib.h, have_nas_hdr=yes)
|
icculus@2049
|
524 |
AC_CHECK_LIB(audio, AuOpenServer, have_nas_lib=yes)
|
icculus@2049
|
525 |
|
slouken@41
|
526 |
AC_MSG_CHECKING(for NAS audio support)
|
slouken@41
|
527 |
have_nas=no
|
icculus@2049
|
528 |
|
icculus@2049
|
529 |
if test x$have_nas_hdr = xyes -a x$have_nas_lib = xyes; then
|
icculus@2049
|
530 |
have_nas=yes
|
icculus@2049
|
531 |
NAS_LIBS="-laudio"
|
icculus@2049
|
532 |
|
icculus@2049
|
533 |
elif test -r /usr/X11R6/include/audio/audiolib.h; then
|
slouken@41
|
534 |
have_nas=yes
|
slouken@1361
|
535 |
NAS_CFLAGS="-I/usr/X11R6/include/"
|
slouken@1520
|
536 |
NAS_LIBS="-L/usr/X11R6/lib -laudio -lXt"
|
slouken@605
|
537 |
|
slouken@605
|
538 |
dnl On IRIX, the NAS includes are in a different directory,
|
slouken@605
|
539 |
dnl and libnas must be explicitly linked in
|
slouken@605
|
540 |
|
slouken@605
|
541 |
elif test -r /usr/freeware/include/nas/audiolib.h; then
|
slouken@605
|
542 |
have_nas=yes
|
slouken@1361
|
543 |
NAS_LIBS="-lnas -lXt"
|
slouken@41
|
544 |
fi
|
icculus@2049
|
545 |
|
slouken@605
|
546 |
AC_MSG_RESULT($have_nas)
|
icculus@2049
|
547 |
|
slouken@1361
|
548 |
if test x$have_nas = xyes; then
|
icculus@2049
|
549 |
AC_ARG_ENABLE(nas-shared,
|
icculus@2049
|
550 |
AC_HELP_STRING([--enable-nas-shared], [dynamically load NAS audio support [[default=yes]]]),
|
icculus@2049
|
551 |
, enable_nas_shared=yes)
|
icculus@2049
|
552 |
if test "x`echo $NAS_LIBS | grep -- -L`" = "x"; then
|
icculus@2049
|
553 |
if test "x`ls /lib/libaudio.so.* 2> /dev/null`" != "x"; then
|
icculus@2049
|
554 |
NAS_LIBS="-L/lib $NAS_LIBS"
|
icculus@2049
|
555 |
elif test "x`ls /usr/lib/libaudio.so.* 2> /dev/null`" != "x"; then
|
icculus@2049
|
556 |
NAS_LIBS="-L/usr/lib $NAS_LIBS"
|
icculus@2049
|
557 |
elif test "x`ls /usr/local/lib/libaudio.so.* 2> /dev/null`" != "x"; then
|
icculus@2049
|
558 |
NAS_LIBS="-L/usr/local/lib $NAS_LIBS"
|
icculus@2049
|
559 |
fi
|
icculus@2049
|
560 |
fi
|
icculus@2049
|
561 |
nas_lib_spec=`echo $NAS_LIBS | sed 's/.*-L\([[^ ]]*\).*/\1\/libaudio.so.*/'`
|
icculus@2049
|
562 |
nas_lib=`ls -- $nas_lib_spec | sed 's/.*\/\(.*\)/\1/; q'`
|
icculus@2049
|
563 |
echo "-- $nas_lib_spec -> $nas_lib"
|
icculus@2049
|
564 |
|
icculus@2049
|
565 |
if test x$have_loadso != xyes && \
|
icculus@2049
|
566 |
test x$enable_nas_shared = xyes; then
|
icculus@2049
|
567 |
AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic NAS loading])
|
icculus@2049
|
568 |
fi
|
icculus@2049
|
569 |
if test x$have_loadso = xyes && \
|
slouken@2163
|
570 |
test x$enable_nas_shared = xyes && test x$nas_lib != x; then
|
icculus@2049
|
571 |
AC_DEFINE_UNQUOTED(SDL_AUDIO_DRIVER_NAS_DYNAMIC, "$nas_lib")
|
icculus@2049
|
572 |
else
|
icculus@2049
|
573 |
EXTRA_LDFLAGS="$EXTRA_LDFLAGS $NAS_LIBS"
|
icculus@2049
|
574 |
fi
|
icculus@2049
|
575 |
|
slouken@1361
|
576 |
AC_DEFINE(SDL_AUDIO_DRIVER_NAS)
|
slouken@1361
|
577 |
SOURCES="$SOURCES $srcdir/src/audio/nas/*.c"
|
slouken@1521
|
578 |
EXTRA_CFLAGS="$EXTRA_CFLAGS $NAS_CFLAGS"
|
slouken@1361
|
579 |
have_audio=yes
|
slouken@1361
|
580 |
fi
|
slouken@0
|
581 |
fi
|
slouken@0
|
582 |
}
|
slouken@0
|
583 |
|
slouken@68
|
584 |
dnl rcg07142001 See if the user wants the disk writer audio driver...
|
slouken@68
|
585 |
CheckDiskAudio()
|
slouken@68
|
586 |
{
|
slouken@68
|
587 |
AC_ARG_ENABLE(diskaudio,
|
slouken@1637
|
588 |
AC_HELP_STRING([--enable-diskaudio], [support the disk writer audio driver [[default=yes]]]),
|
slouken@86
|
589 |
, enable_diskaudio=yes)
|
slouken@68
|
590 |
if test x$enable_audio = xyes -a x$enable_diskaudio = xyes; then
|
slouken@1361
|
591 |
AC_DEFINE(SDL_AUDIO_DRIVER_DISK)
|
slouken@1361
|
592 |
SOURCES="$SOURCES $srcdir/src/audio/disk/*.c"
|
slouken@68
|
593 |
fi
|
slouken@68
|
594 |
}
|
slouken@68
|
595 |
|
icculus@1532
|
596 |
dnl rcg03142006 See if the user wants the dummy audio driver...
|
icculus@1532
|
597 |
CheckDummyAudio()
|
icculus@1532
|
598 |
{
|
icculus@1532
|
599 |
AC_ARG_ENABLE(dummyaudio,
|
slouken@1637
|
600 |
AC_HELP_STRING([--enable-dummyaudio], [support the dummy audio driver [[default=yes]]]),
|
icculus@1532
|
601 |
, enable_dummyaudio=yes)
|
icculus@1532
|
602 |
if test x$enable_audio = xyes -a x$enable_dummyaudio = xyes; then
|
icculus@1532
|
603 |
AC_DEFINE(SDL_AUDIO_DRIVER_DUMMY)
|
icculus@1532
|
604 |
SOURCES="$SOURCES $srcdir/src/audio/dummy/*.c"
|
icculus@1532
|
605 |
fi
|
icculus@1532
|
606 |
}
|
icculus@1532
|
607 |
|
slouken@398
|
608 |
dnl Set up the Atari Audio driver
|
slouken@398
|
609 |
CheckAtariAudio()
|
slouken@398
|
610 |
{
|
slouken@398
|
611 |
AC_ARG_ENABLE(mintaudio,
|
slouken@1637
|
612 |
AC_HELP_STRING([--enable-mintaudio], [support Atari audio driver [[default=yes]]]),
|
slouken@398
|
613 |
, enable_mintaudio=yes)
|
slouken@398
|
614 |
if test x$enable_audio = xyes -a x$enable_mintaudio = xyes; then
|
slouken@398
|
615 |
mintaudio=no
|
slouken@398
|
616 |
AC_CHECK_HEADER(mint/falcon.h, have_mint_falcon_hdr=yes)
|
slouken@398
|
617 |
if test x$have_mint_falcon_hdr = xyes; then
|
slouken@398
|
618 |
mintaudio=yes
|
slouken@1361
|
619 |
AC_DEFINE(SDL_AUDIO_DRIVER_MINT)
|
patmandin@1364
|
620 |
SOURCES="$SOURCES $srcdir/src/audio/mint/*.c"
|
patmandin@1477
|
621 |
SOURCES="$SOURCES $srcdir/src/audio/mint/*.S"
|
slouken@1361
|
622 |
have_audio=yes
|
slouken@398
|
623 |
fi
|
slouken@398
|
624 |
fi
|
slouken@398
|
625 |
}
|
slouken@398
|
626 |
|
slouken@0
|
627 |
dnl See if we can use x86 assembly blitters
|
slouken@1361
|
628 |
# NASM is available from: http://nasm.sourceforge.net
|
slouken@0
|
629 |
CheckNASM()
|
slouken@0
|
630 |
{
|
slouken@0
|
631 |
dnl Make sure we are running on an x86 platform
|
slouken@1550
|
632 |
case $host in
|
slouken@0
|
633 |
i?86*)
|
slouken@0
|
634 |
;;
|
slouken@0
|
635 |
*)
|
slouken@0
|
636 |
# Nope, bail early.
|
slouken@0
|
637 |
return
|
slouken@0
|
638 |
;;
|
slouken@0
|
639 |
esac
|
slouken@0
|
640 |
dnl Check for NASM (for assembly blit routines)
|
slouken@0
|
641 |
AC_ARG_ENABLE(nasm,
|
slouken@1637
|
642 |
AC_HELP_STRING([--enable-nasm], [use nasm assembly blitters on x86 [[default=yes]]]),
|
slouken@0
|
643 |
, enable_nasm=yes)
|
slouken@1402
|
644 |
if test x$enable_video = xyes -a x$enable_assembly = xyes -a x$enable_nasm = xyes; then
|
icculus@2112
|
645 |
CompileNASM()
|
icculus@2112
|
646 |
{
|
icculus@2112
|
647 |
# Usage: CompileNASM <filename>
|
icculus@2112
|
648 |
AC_MSG_CHECKING(to see if $NASM supports $1)
|
icculus@2112
|
649 |
if $NASM $NASMFLAGS $1 -o $1.o >&AS_MESSAGE_LOG_FD 2>&1; then
|
icculus@2112
|
650 |
CompileNASM_ret="yes"
|
icculus@2112
|
651 |
else
|
icculus@2112
|
652 |
CompileNASM_ret="no"
|
icculus@2112
|
653 |
fi
|
icculus@2112
|
654 |
rm -f $1 $1.o
|
icculus@2112
|
655 |
AC_MSG_RESULT($CompileNASM_ret)
|
icculus@2112
|
656 |
test "$CompileNASM_ret" = "yes"
|
icculus@2112
|
657 |
}
|
icculus@2112
|
658 |
|
icculus@2112
|
659 |
if test x"$NASMFLAGS" = x; then
|
icculus@2112
|
660 |
case $ARCH in
|
icculus@2112
|
661 |
win32)
|
icculus@2112
|
662 |
NASMFLAGS="-f win32"
|
icculus@2112
|
663 |
;;
|
icculus@2112
|
664 |
openbsd)
|
icculus@2112
|
665 |
NASMFLAGS="-f aoutb"
|
icculus@2112
|
666 |
;;
|
icculus@2112
|
667 |
macosx)
|
icculus@2112
|
668 |
NASMFLAGS="-f macho"
|
icculus@2112
|
669 |
;;
|
icculus@2112
|
670 |
*)
|
icculus@2112
|
671 |
NASMFLAGS="-f elf"
|
icculus@2112
|
672 |
;;
|
icculus@2112
|
673 |
esac
|
icculus@2112
|
674 |
fi
|
icculus@2112
|
675 |
|
slouken@1871
|
676 |
AC_PATH_PROG(NASM, yasm)
|
icculus@2112
|
677 |
echo "%ifidn __OUTPUT_FORMAT__,elf" > unquoted-sections
|
icculus@2112
|
678 |
echo "section .note.GNU-stack noalloc noexec nowrite progbits" >> unquoted-sections
|
icculus@2112
|
679 |
echo "%endif" >> unquoted-sections
|
icculus@2112
|
680 |
CompileNASM unquoted-sections || NASM=""
|
icculus@2112
|
681 |
|
slouken@1871
|
682 |
if test "x$NASM" = x -o "x$NASM" = x'"$NASM"'; then
|
icculus@2112
|
683 |
$as_unset ac_cv_path_NASM
|
slouken@1871
|
684 |
AC_PATH_PROG(NASM, nasm)
|
slouken@1871
|
685 |
fi
|
slouken@1871
|
686 |
if test "x$NASM" != x -a "x$NASM" != x'"$NASM"'; then
|
slouken@1361
|
687 |
AC_DEFINE(SDL_HERMES_BLITTERS)
|
slouken@1361
|
688 |
SOURCES="$SOURCES $srcdir/src/hermes/*.asm"
|
icculus@2128
|
689 |
NASMFLAGS="$NASMFLAGS -I $srcdir/src/hermes/"
|
slouken@1871
|
690 |
|
slouken@1871
|
691 |
dnl See if hidden visibility is supported
|
icculus@2112
|
692 |
echo "GLOBAL _bar:function hidden" > symbol-visibility
|
icculus@2112
|
693 |
echo "_bar:" >> symbol-visibility
|
icculus@2112
|
694 |
CompileNASM symbol-visibility && NASMFLAGS="$NASMFLAGS -DHIDDEN_VISIBILITY"
|
slouken@1871
|
695 |
|
slouken@1361
|
696 |
AC_SUBST(NASM)
|
slouken@0
|
697 |
AC_SUBST(NASMFLAGS)
|
slouken@1361
|
698 |
|
slouken@1550
|
699 |
case "$host" in
|
slouken@886
|
700 |
# this line is needed for QNX, because it's not defined the __ELF__
|
slouken@1361
|
701 |
*-*-qnx*)
|
slouken@1521
|
702 |
EXTRA_CFLAGS="$EXTRA_CFLAGS -D__ELF__";;
|
slouken@1361
|
703 |
*-*-solaris*)
|
slouken@1521
|
704 |
EXTRA_CFLAGS="$EXTRA_CFLAGS -D__ELF__";;
|
slouken@1361
|
705 |
esac
|
slouken@1361
|
706 |
fi
|
slouken@1361
|
707 |
fi
|
slouken@1361
|
708 |
}
|
slouken@1361
|
709 |
|
slouken@1361
|
710 |
dnl Check for altivec instruction support using gas syntax
|
slouken@1361
|
711 |
CheckAltivec()
|
slouken@1361
|
712 |
{
|
slouken@1361
|
713 |
AC_ARG_ENABLE(altivec,
|
slouken@1637
|
714 |
AC_HELP_STRING([--enable-altivec], [use altivec assembly blitters on PPC [[default=yes]]]),
|
slouken@1361
|
715 |
, enable_altivec=yes)
|
slouken@1402
|
716 |
if test x$enable_video = xyes -a x$enable_assembly = xyes -a x$enable_altivec = xyes; then
|
slouken@1361
|
717 |
have_altivec_h_hdr=no
|
slouken@1361
|
718 |
AC_CHECK_HEADER(altivec.h, have_altivec_h_hdr=yes)
|
slouken@1361
|
719 |
|
slouken@1361
|
720 |
save_CFLAGS="$CFLAGS"
|
slouken@1361
|
721 |
have_gcc_altivec=no
|
slouken@1361
|
722 |
AC_MSG_CHECKING(for Altivec with GCC -maltivec option)
|
slouken@1361
|
723 |
altivec_CFLAGS="-maltivec"
|
slouken@1361
|
724 |
CFLAGS="$save_CFLAGS $altivec_CFLAGS"
|
slouken@886
|
725 |
|
slouken@1361
|
726 |
if test x$have_altivec_h_hdr = xyes; then
|
slouken@1361
|
727 |
AC_TRY_COMPILE([
|
slouken@1361
|
728 |
#include <altivec.h>
|
slouken@1361
|
729 |
vector unsigned int vzero() {
|
slouken@1361
|
730 |
return vec_splat_u32(0);
|
slouken@1361
|
731 |
}
|
slouken@1361
|
732 |
],[
|
slouken@1361
|
733 |
],[
|
slouken@1361
|
734 |
have_gcc_altivec=yes
|
slouken@1361
|
735 |
])
|
slouken@1361
|
736 |
AC_MSG_RESULT($have_gcc_altivec)
|
slouken@1361
|
737 |
else
|
slouken@1361
|
738 |
AC_TRY_COMPILE([
|
slouken@1361
|
739 |
vector unsigned int vzero() {
|
slouken@1361
|
740 |
return vec_splat_u32(0);
|
slouken@1361
|
741 |
}
|
slouken@1361
|
742 |
],[
|
slouken@1361
|
743 |
],[
|
slouken@1361
|
744 |
have_gcc_altivec=yes
|
slouken@1361
|
745 |
])
|
slouken@1361
|
746 |
AC_MSG_RESULT($have_gcc_altivec)
|
slouken@1361
|
747 |
fi
|
slouken@886
|
748 |
|
slouken@1361
|
749 |
if test x$have_gcc_altivec = xno; then
|
slouken@1361
|
750 |
AC_MSG_CHECKING(for Altivec with GCC -faltivec option)
|
slouken@1361
|
751 |
altivec_CFLAGS="-faltivec"
|
slouken@1361
|
752 |
CFLAGS="$save_CFLAGS $altivec_CFLAGS"
|
slouken@1361
|
753 |
if test x$have_altivec_h_hdr = xyes; then
|
slouken@1361
|
754 |
AC_TRY_COMPILE([
|
slouken@1361
|
755 |
#include <altivec.h>
|
slouken@1361
|
756 |
vector unsigned int vzero() {
|
slouken@1361
|
757 |
return vec_splat_u32(0);
|
slouken@1361
|
758 |
}
|
slouken@1361
|
759 |
],[
|
slouken@1361
|
760 |
],[
|
slouken@1361
|
761 |
have_gcc_altivec=yes
|
slouken@1361
|
762 |
])
|
slouken@1361
|
763 |
AC_MSG_RESULT($have_gcc_altivec)
|
slouken@1361
|
764 |
else
|
slouken@1361
|
765 |
AC_TRY_COMPILE([
|
slouken@1361
|
766 |
vector unsigned int vzero() {
|
slouken@1361
|
767 |
return vec_splat_u32(0);
|
slouken@1361
|
768 |
}
|
slouken@1361
|
769 |
],[
|
slouken@1361
|
770 |
],[
|
slouken@1361
|
771 |
have_gcc_altivec=yes
|
slouken@1361
|
772 |
])
|
slouken@1361
|
773 |
AC_MSG_RESULT($have_gcc_altivec)
|
slouken@1361
|
774 |
fi
|
slouken@1361
|
775 |
fi
|
slouken@1361
|
776 |
CFLAGS="$save_CFLAGS"
|
slouken@1361
|
777 |
|
slouken@1361
|
778 |
if test x$have_gcc_altivec = xyes; then
|
slouken@1361
|
779 |
AC_DEFINE(SDL_ALTIVEC_BLITTERS)
|
slouken@1361
|
780 |
if test x$have_altivec_h_hdr = xyes; then
|
slouken@1361
|
781 |
AC_DEFINE(HAVE_ALTIVEC_H)
|
slouken@1361
|
782 |
fi
|
slouken@1521
|
783 |
EXTRA_CFLAGS="$EXTRA_CFLAGS $altivec_CFLAGS"
|
slouken@0
|
784 |
fi
|
slouken@0
|
785 |
fi
|
slouken@0
|
786 |
}
|
slouken@0
|
787 |
|
icculus@1573
|
788 |
dnl See if GCC's -fvisibility=hidden is supported (gcc4 and later, usually).
|
icculus@1573
|
789 |
dnl Details of this flag are here: http://gcc.gnu.org/wiki/Visibility
|
icculus@1573
|
790 |
CheckVisibilityHidden()
|
icculus@1573
|
791 |
{
|
icculus@1573
|
792 |
AC_MSG_CHECKING(for GCC -fvisibility=hidden option)
|
icculus@1573
|
793 |
have_gcc_fvisibility=no
|
icculus@1573
|
794 |
|
icculus@1573
|
795 |
visibility_CFLAGS="-fvisibility=hidden"
|
icculus@1573
|
796 |
save_CFLAGS="$CFLAGS"
|
icculus@1573
|
797 |
CFLAGS="$save_CFLAGS $visibility_CFLAGS"
|
icculus@1573
|
798 |
AC_TRY_COMPILE([
|
slouken@1745
|
799 |
#if !defined(__GNUC__) || __GNUC__ < 4
|
slouken@1745
|
800 |
#error SDL only uses visibility attributes in GCC 4 or newer
|
slouken@1745
|
801 |
#endif
|
icculus@1573
|
802 |
],[
|
icculus@1573
|
803 |
],[
|
icculus@1573
|
804 |
have_gcc_fvisibility=yes
|
icculus@1573
|
805 |
])
|
icculus@1573
|
806 |
AC_MSG_RESULT($have_gcc_fvisibility)
|
icculus@1573
|
807 |
CFLAGS="$save_CFLAGS"
|
icculus@1573
|
808 |
|
icculus@1573
|
809 |
if test x$have_gcc_fvisibility = xyes; then
|
slouken@1574
|
810 |
EXTRA_CFLAGS="$EXTRA_CFLAGS $visibility_CFLAGS"
|
icculus@1573
|
811 |
fi
|
icculus@1573
|
812 |
}
|
icculus@1573
|
813 |
|
icculus@1573
|
814 |
|
icculus@1140
|
815 |
dnl Do the iPod thing
|
icculus@1140
|
816 |
CheckIPod()
|
icculus@1140
|
817 |
{
|
icculus@1140
|
818 |
AC_ARG_ENABLE(ipod,
|
slouken@1361
|
819 |
AC_HELP_STRING([--enable-ipod], [configure SDL to work with iPodLinux [default=yes on arm-elf]]),
|
slouken@1361
|
820 |
, enable_ipod=yes)
|
icculus@1140
|
821 |
|
icculus@1140
|
822 |
if test x$enable_ipod = xyes; then
|
slouken@1521
|
823 |
EXTRA_CFLAGS="$EXTRA_CFLAGS -DIPOD"
|
slouken@1361
|
824 |
AC_DEFINE(SDL_VIDEO_DRIVER_IPOD)
|
slouken@1361
|
825 |
SOURCES="$SOURCES $srcdir/src/video/ipod/*.c"
|
icculus@1140
|
826 |
fi
|
slouken@1361
|
827 |
}
|
icculus@1140
|
828 |
|
slouken@30
|
829 |
dnl Find the nanox include and library directories
|
slouken@30
|
830 |
CheckNANOX()
|
slouken@30
|
831 |
{
|
slouken@292
|
832 |
AC_ARG_ENABLE(video-nanox,
|
slouken@1637
|
833 |
AC_HELP_STRING([--enable-video-nanox], [use nanox video driver [[default=no]]]),
|
slouken@292
|
834 |
, enable_video_nanox=no)
|
slouken@30
|
835 |
|
slouken@292
|
836 |
if test x$enable_video = xyes -a x$enable_video_nanox = xyes; then
|
slouken@1361
|
837 |
AC_ARG_ENABLE(nanox-debug,
|
slouken@1637
|
838 |
AC_HELP_STRING([--enable-nanox-debug], [print debug messages [[default=no]]]),
|
slouken@1361
|
839 |
, enable_nanox_debug=no)
|
slouken@292
|
840 |
if test x$enable_nanox_debug = xyes; then
|
slouken@1521
|
841 |
EXTRA_CFLAGS="$EXTRA_CFLAGS -DENABLE_NANOX_DEBUG"
|
slouken@292
|
842 |
fi
|
slouken@30
|
843 |
|
slouken@1361
|
844 |
AC_ARG_ENABLE(nanox-share-memory,
|
slouken@1637
|
845 |
AC_HELP_STRING([--enable-nanox-share-memory], [use share memory [[default=no]]]),
|
slouken@1361
|
846 |
, enable_nanox_share_memory=no)
|
slouken@1361
|
847 |
if test x$enable_nanox_share_memory = xyes; then
|
slouken@1521
|
848 |
EXTRA_CFLAGS="$EXTRA_CFLAGS -DNANOX_SHARE_MEMORY"
|
slouken@471
|
849 |
fi
|
slouken@30
|
850 |
|
slouken@1361
|
851 |
AC_ARG_ENABLE(nanox_direct_fb,
|
slouken@1637
|
852 |
AC_HELP_STRING([--enable-nanox-direct-fb], [use direct framebuffer access [[default=no]]]),
|
slouken@1361
|
853 |
, enable_nanox_direct_fb=no)
|
slouken@1361
|
854 |
if test x$enable_nanox_direct_fb = xyes; then
|
slouken@1521
|
855 |
EXTRA_CFLAGS="$EXTRA_CFLAGS -DENABLE_NANOX_DIRECT_FB"
|
slouken@1361
|
856 |
fi
|
slouken@1361
|
857 |
|
slouken@1361
|
858 |
AC_DEFINE(SDL_VIDEO_DRIVER_NANOX)
|
slouken@1361
|
859 |
SOURCES="$SOURCES $srcdir/src/video/nanox/*.c"
|
slouken@1521
|
860 |
EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lnano-X"
|
slouken@1361
|
861 |
have_video=yes
|
slouken@292
|
862 |
fi
|
slouken@30
|
863 |
}
|
slouken@30
|
864 |
|
slouken@0
|
865 |
dnl Find the X11 include and library directories
|
slouken@0
|
866 |
CheckX11()
|
slouken@0
|
867 |
{
|
slouken@0
|
868 |
AC_ARG_ENABLE(video-x11,
|
slouken@1637
|
869 |
AC_HELP_STRING([--enable-video-x11], [use X11 video driver [[default=yes]]]),
|
slouken@0
|
870 |
, enable_video_x11=yes)
|
slouken@0
|
871 |
if test x$enable_video = xyes -a x$enable_video_x11 = xyes; then
|
slouken@1806
|
872 |
case "$host" in
|
slouken@1807
|
873 |
*-*-darwin*)
|
slouken@1807
|
874 |
# This isn't necessary for X11, but fixes GLX detection
|
slouken@1808
|
875 |
if test "x$x_includes" = xNONE && test "x$x_libraries" = xNONE; then
|
slouken@1806
|
876 |
x_includes="/usr/X11R6/include"
|
slouken@1806
|
877 |
x_libraries="/usr/X11R6/lib"
|
slouken@1806
|
878 |
fi
|
slouken@1806
|
879 |
;;
|
slouken@1806
|
880 |
esac
|
slouken@0
|
881 |
AC_PATH_X
|
slouken@0
|
882 |
AC_PATH_XTRA
|
slouken@0
|
883 |
if test x$have_x = xyes; then
|
slouken@1879
|
884 |
# Only allow dynamically loaded X11 if the X11 function pointers
|
slouken@1879
|
885 |
# will not end up in the global namespace, which causes problems
|
slouken@1879
|
886 |
# with other libraries calling X11 functions.
|
slouken@1879
|
887 |
x11_symbols_private=$have_gcc_fvisibility
|
slouken@1879
|
888 |
|
icculus@1168
|
889 |
AC_ARG_ENABLE(x11-shared,
|
slouken@1879
|
890 |
AC_HELP_STRING([--enable-x11-shared], [dynamically load X11 support [[default=maybe]]]),
|
slouken@1879
|
891 |
, enable_x11_shared=maybe)
|
icculus@1168
|
892 |
|
slouken@1550
|
893 |
case "$host" in
|
icculus@1589
|
894 |
*-*-darwin*) # Latest Mac OS X actually ships with Xrandr/Xrender libs...
|
slouken@1879
|
895 |
x11_symbols_private=yes
|
icculus@1174
|
896 |
x11_lib='/usr/X11R6/lib/libX11.6.dylib'
|
icculus@1174
|
897 |
x11ext_lib='/usr/X11R6/lib/libXext.6.dylib'
|
slouken@1592
|
898 |
xrender_lib='/usr/X11R6/lib/libXrender.1.dylib'
|
icculus@1589
|
899 |
xrandr_lib='/usr/X11R6/lib/libXrandr.2.dylib'
|
icculus@1174
|
900 |
;;
|
slouken@1384
|
901 |
*-*-osf*)
|
slouken@1384
|
902 |
x11_lib='libX11.so'
|
slouken@1384
|
903 |
x11ext_lib='libXext.so'
|
slouken@1384
|
904 |
;;
|
slouken@1384
|
905 |
*-*-irix*) # IRIX 6.5 requires that we use /usr/lib32
|
icculus@1299
|
906 |
x11_lib='libX11.so'
|
icculus@1299
|
907 |
x11ext_lib='libXext.so'
|
icculus@1299
|
908 |
;;
|
icculus@1174
|
909 |
*)
|
slouken@1569
|
910 |
x11_lib_spec=[`echo $X_LIBS | sed 's/.*-L\([^ ]*\).*/\1/'`]
|
slouken@1571
|
911 |
for path in $x11_lib_path /usr/lib /usr/X11/lib /usr/X11R6/lib; do
|
slouken@1571
|
912 |
if test "x$x11_lib" = "x"; then
|
slouken@1606
|
913 |
x11_lib=[`ls -- $path/libX11.so.[0-9] 2>/dev/null | sort -r | sed 's/.*\/\(.*\)/\1/; q'`]
|
slouken@1879
|
914 |
if test "x$x11_lib" = "x"; then
|
slouken@1879
|
915 |
x11_lib=[`ls -- $path/libX11.so.[0-9]* 2>/dev/null | sort -r | sed 's/.*\/\(.*\)/\1/; q'`]
|
slouken@1879
|
916 |
fi
|
slouken@1571
|
917 |
fi
|
slouken@1571
|
918 |
if test "x$x11ext_lib" = "x"; then
|
slouken@1606
|
919 |
x11ext_lib=[`ls -- $path/libXext.so.[0-9] 2>/dev/null | sort -r | sed 's/.*\/\(.*\)/\1/; q'`]
|
slouken@1879
|
920 |
if test "x$x11ext_lib" = "x"; then
|
slouken@1879
|
921 |
x11ext_lib=[`ls -- $path/libXext.so.[0-9]* 2>/dev/null | sort -r | sed 's/.*\/\(.*\)/\1/; q'`]
|
slouken@1879
|
922 |
fi
|
slouken@1571
|
923 |
fi
|
icculus@1589
|
924 |
if test "x$xrender_lib" = "x"; then
|
slouken@1606
|
925 |
xrender_lib=[`ls -- $path/libXrender.so.[0-9] 2>/dev/null | sort -r | sed 's/.*\/\(.*\)/\1/; q'`]
|
slouken@1879
|
926 |
if test "x$xrender_lib" = "x"; then
|
slouken@1879
|
927 |
xrender_lib=[`ls -- $path/libXrender.so.[0-9]* 2>/dev/null | sort -r | sed 's/.*\/\(.*\)/\1/; q'`]
|
slouken@1879
|
928 |
fi
|
icculus@1589
|
929 |
fi
|
icculus@1589
|
930 |
if test "x$xrandr_lib" = "x"; then
|
slouken@1606
|
931 |
xrandr_lib=[`ls -- $path/libXrandr.so.[0-9] 2>/dev/null | sort -r | sed 's/.*\/\(.*\)/\1/; q'`]
|
slouken@1879
|
932 |
if test "x$xrandr_lib" = "x"; then
|
slouken@1879
|
933 |
xrandr_lib=[`ls -- $path/libXrandr.so.[0-9]* 2>/dev/null | sort -r | sed 's/.*\/\(.*\)/\1/; q'`]
|
slouken@1879
|
934 |
fi
|
icculus@1589
|
935 |
fi
|
slouken@1569
|
936 |
done
|
icculus@1174
|
937 |
;;
|
icculus@1174
|
938 |
esac
|
icculus@1168
|
939 |
|
slouken@1361
|
940 |
X_CFLAGS="$X_CFLAGS -DXTHREADS"
|
slouken@1361
|
941 |
if test x$ac_cv_func_shmat != xyes; then
|
slouken@1361
|
942 |
X_CFLAGS="$X_CFLAGS -DNO_SHARED_MEMORY"
|
slouken@1361
|
943 |
fi
|
slouken@1799
|
944 |
CFLAGS="$CFLAGS $X_CFLAGS"
|
slouken@1799
|
945 |
LDFLAGS="$LDFLAGS $X_LIBS"
|
slouken@1468
|
946 |
|
slouken@1468
|
947 |
AC_DEFINE(SDL_VIDEO_DRIVER_X11)
|
slouken@1468
|
948 |
SOURCES="$SOURCES $srcdir/src/video/x11/*.c"
|
bob@2185
|
949 |
SOURCES="$SOURCES $srcdir/src/video/Xext/XmuStdCmap/*.c"
|
slouken@1521
|
950 |
EXTRA_CFLAGS="$EXTRA_CFLAGS $X_CFLAGS"
|
slouken@1879
|
951 |
|
slouken@1879
|
952 |
if test x$enable_x11_shared = xmaybe; then
|
slouken@1879
|
953 |
enable_x11_shared=$x11_symbols_private
|
slouken@1879
|
954 |
fi
|
icculus@1173
|
955 |
if test x$have_loadso != xyes && \
|
icculus@1168
|
956 |
test x$enable_x11_shared = xyes; then
|
slouken@1467
|
957 |
AC_MSG_WARN([You must have SDL_LoadObject() support for dynamic X11 loading])
|
icculus@1875
|
958 |
enable_x11_shared=no
|
icculus@1168
|
959 |
fi
|
slouken@1879
|
960 |
if test x$x11_symbols_private != xyes && \
|
icculus@1875
|
961 |
test x$enable_x11_shared = xyes; then
|
icculus@1875
|
962 |
AC_MSG_WARN([You must have gcc4 (-fvisibility=hidden) for dynamic X11 loading])
|
icculus@1875
|
963 |
enable_x11_shared=no
|
icculus@1875
|
964 |
fi
|
icculus@1875
|
965 |
|
icculus@1173
|
966 |
if test x$have_loadso = xyes && \
|
icculus@1170
|
967 |
test x$enable_x11_shared = xyes && test x$x11_lib != x && test x$x11ext_lib != x; then
|
icculus@1174
|
968 |
echo "-- dynamic libX11 -> $x11_lib"
|
icculus@1174
|
969 |
echo "-- dynamic libX11ext -> $x11ext_lib"
|
slouken@1361
|
970 |
AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC, "$x11_lib")
|
slouken@1361
|
971 |
AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC_XEXT, "$x11ext_lib")
|
icculus@1168
|
972 |
else
|
icculus@1589
|
973 |
enable_x11_shared=no
|
slouken@1521
|
974 |
EXTRA_LDFLAGS="$EXTRA_LDFLAGS $X_LIBS -lX11 -lXext"
|
slouken@0
|
975 |
fi
|
slouken@1361
|
976 |
have_video=yes
|
slouken@0
|
977 |
|
slouken@0
|
978 |
AC_ARG_ENABLE(video-x11-vm,
|
slouken@1637
|
979 |
AC_HELP_STRING([--enable-video-x11-vm], [use X11 VM extension for fullscreen [[default=yes]]]),
|
slouken@0
|
980 |
, enable_video_x11_vm=yes)
|
slouken@0
|
981 |
if test x$enable_video_x11_vm = xyes; then
|
slouken@1361
|
982 |
AC_DEFINE(SDL_VIDEO_DRIVER_X11_VIDMODE)
|
slouken@1361
|
983 |
SOURCES="$SOURCES $srcdir/src/video/Xext/Xxf86vm/*.c"
|
slouken@0
|
984 |
fi
|
slouken@0
|
985 |
AC_ARG_ENABLE(video-x11-xv,
|
slouken@1637
|
986 |
AC_HELP_STRING([--enable-video-x11-xv], [use X11 XvImage extension for video [[default=yes]]]),
|
slouken@0
|
987 |
, enable_video_x11_xv=yes)
|
slouken@0
|
988 |
if test x$enable_video_x11_xv = xyes; then
|
slouken@1361
|
989 |
AC_DEFINE(SDL_VIDEO_DRIVER_X11_XV)
|
slouken@1361
|
990 |
SOURCES="$SOURCES $srcdir/src/video/Xext/Xv/*.c"
|
slouken@0
|
991 |
fi
|
slouken@227
|
992 |
AC_ARG_ENABLE(video-x11-xinerama,
|
slouken@1637
|
993 |
AC_HELP_STRING([--enable-video-x11-xinerama], [enable X11 Xinerama support [[default=yes]]]),
|
slouken@227
|
994 |
, enable_video_x11_xinerama=yes)
|
slouken@227
|
995 |
if test x$enable_video_x11_xinerama = xyes; then
|
slouken@1361
|
996 |
AC_DEFINE(SDL_VIDEO_DRIVER_X11_XINERAMA)
|
slouken@1361
|
997 |
SOURCES="$SOURCES $srcdir/src/video/Xext/Xinerama/*.c"
|
slouken@227
|
998 |
fi
|
slouken@242
|
999 |
AC_ARG_ENABLE(video-x11-xme,
|
slouken@1637
|
1000 |
AC_HELP_STRING([--enable-video-x11-xme], [enable Xi Graphics XME for fullscreen [[default=yes]]]),
|
slouken@242
|
1001 |
, enable_video_x11_xme=yes)
|
slouken@242
|
1002 |
if test x$enable_video_x11_xme = xyes; then
|
slouken@1361
|
1003 |
AC_DEFINE(SDL_VIDEO_DRIVER_X11_XME)
|
slouken@1361
|
1004 |
SOURCES="$SOURCES $srcdir/src/video/Xext/XME/*.c"
|
slouken@242
|
1005 |
fi
|
icculus@1589
|
1006 |
AC_ARG_ENABLE(video-x11-xrandr,
|
slouken@1637
|
1007 |
AC_HELP_STRING([--enable-video-x11-xrandr], [enable X11 Xrandr extension for fullscreen [[default=yes]]]),
|
icculus@1589
|
1008 |
, enable_video_x11_xrandr=yes)
|
icculus@1589
|
1009 |
if test x$enable_video_x11_xrandr = xyes; then
|
icculus@1589
|
1010 |
definitely_enable_video_x11_xrandr=no
|
icculus@1589
|
1011 |
AC_CHECK_HEADER(X11/extensions/Xrandr.h,
|
icculus@1589
|
1012 |
have_xrandr_h_hdr=yes,
|
icculus@1589
|
1013 |
have_xrandr_h_hdr=no,
|
icculus@1589
|
1014 |
[#include <X11/Xlib.h>
|
icculus@1589
|
1015 |
])
|
icculus@1589
|
1016 |
if test x$have_xrandr_h_hdr = xyes; then
|
icculus@1589
|
1017 |
if test x$enable_x11_shared = xyes && test x$xrandr_lib != x ; then
|
icculus@1589
|
1018 |
echo "-- dynamic libXrender -> $xrender_lib"
|
icculus@1589
|
1019 |
echo "-- dynamic libXrandr -> $xrandr_lib"
|
icculus@1589
|
1020 |
AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC_XRENDER, "$xrender_lib")
|
icculus@1589
|
1021 |
AC_DEFINE_UNQUOTED(SDL_VIDEO_DRIVER_X11_DYNAMIC_XRANDR, "$xrandr_lib")
|
icculus@1589
|
1022 |
definitely_enable_video_x11_xrandr=yes
|
icculus@1589
|
1023 |
else
|
icculus@1589
|
1024 |
AC_CHECK_LIB(Xrender, XRenderQueryExtension, have_xrender_lib=yes)
|
icculus@1589
|
1025 |
AC_CHECK_LIB(Xrandr, XRRQueryExtension, have_xrandr_lib=yes)
|
icculus@1589
|
1026 |
if test x$have_xrender_lib = xyes && test x$have_xrandr_lib = xyes ; then
|
icculus@1589
|
1027 |
EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lXrandr -lXrender"
|
icculus@1589
|
1028 |
definitely_enable_video_x11_xrandr=yes
|
icculus@1589
|
1029 |
fi
|
icculus@1589
|
1030 |
fi
|
icculus@1589
|
1031 |
fi
|
icculus@1589
|
1032 |
fi
|
icculus@1589
|
1033 |
if test x$definitely_enable_video_x11_xrandr = xyes; then
|
icculus@1589
|
1034 |
AC_DEFINE(SDL_VIDEO_DRIVER_X11_XRANDR)
|
icculus@1589
|
1035 |
fi
|
slouken@1783
|
1036 |
AC_ARG_ENABLE(video-x11-dpms,
|
slouken@1783
|
1037 |
AC_HELP_STRING([--enable-video-x11-dpms], [enable X11 DPMS extension [[default=yes]]]),
|
slouken@1783
|
1038 |
, enable_video_x11_dpms=yes)
|
slouken@1783
|
1039 |
if test x$enable_video_x11_dpms = xyes; then
|
slouken@1783
|
1040 |
AC_CHECK_HEADER(X11/extensions/dpms.h,
|
slouken@1783
|
1041 |
have_dpms_h_hdr=yes,
|
slouken@1783
|
1042 |
have_dpms_h_hdr=no,
|
slouken@1783
|
1043 |
[#include <X11/Xlib.h>
|
slouken@1783
|
1044 |
])
|
slouken@1783
|
1045 |
if test x$have_dpms_h_hdr = xyes; then
|
slouken@1783
|
1046 |
AC_DEFINE(SDL_VIDEO_DRIVER_X11_DPMS)
|
slouken@1783
|
1047 |
fi
|
slouken@1783
|
1048 |
fi
|
slouken@0
|
1049 |
fi
|
slouken@0
|
1050 |
fi
|
slouken@0
|
1051 |
}
|
slouken@279
|
1052 |
|
slouken@1361
|
1053 |
dnl Check for QNX photon video driver
|
slouken@0
|
1054 |
CheckPHOTON()
|
slouken@0
|
1055 |
{
|
slouken@0
|
1056 |
AC_ARG_ENABLE(video-photon,
|
slouken@1637
|
1057 |
AC_HELP_STRING([--enable-video-photon], [use QNX Photon video driver [[default=yes]]]),
|
slouken@0
|
1058 |
, enable_video_photon=yes)
|
slouken@0
|
1059 |
if test x$enable_video = xyes -a x$enable_video_photon = xyes; then
|
slouken@0
|
1060 |
AC_MSG_CHECKING(for QNX Photon support)
|
slouken@0
|
1061 |
video_photon=no
|
slouken@0
|
1062 |
AC_TRY_COMPILE([
|
slouken@0
|
1063 |
#include <Ph.h>
|
slouken@0
|
1064 |
#include <Pt.h>
|
slouken@0
|
1065 |
#include <photon/Pg.h>
|
slouken@0
|
1066 |
#include <photon/PdDirect.h>
|
slouken@0
|
1067 |
],[
|
slouken@0
|
1068 |
PgDisplaySettings_t *visual;
|
slouken@0
|
1069 |
],[
|
slouken@0
|
1070 |
video_photon=yes
|
slouken@0
|
1071 |
])
|
slouken@0
|
1072 |
AC_MSG_RESULT($video_photon)
|
slouken@0
|
1073 |
if test x$video_photon = xyes; then
|
slouken@1361
|
1074 |
AC_DEFINE(SDL_VIDEO_DRIVER_PHOTON)
|
slouken@1361
|
1075 |
SOURCES="$SOURCES $srcdir/src/video/photon/*.c"
|
slouken@1521
|
1076 |
EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lph"
|
slouken@1361
|
1077 |
have_video=yes
|
slouken@1361
|
1078 |
|
slouken@279
|
1079 |
CheckOpenGLQNX
|
slouken@0
|
1080 |
fi
|
slouken@0
|
1081 |
fi
|
slouken@0
|
1082 |
}
|
slouken@0
|
1083 |
|
slouken@1361
|
1084 |
dnl Set up the BWindow video driver if enabled
|
slouken@1361
|
1085 |
CheckBWINDOW()
|
slouken@1361
|
1086 |
{
|
slouken@1361
|
1087 |
if test x$enable_video = xyes; then
|
slouken@1361
|
1088 |
AC_DEFINE(SDL_VIDEO_DRIVER_BWINDOW)
|
slouken@1361
|
1089 |
SOURCES="$SOURCES $srcdir/src/video/bwindow/*.cc"
|
slouken@1361
|
1090 |
have_video=yes
|
slouken@1361
|
1091 |
fi
|
slouken@1361
|
1092 |
}
|
slouken@1361
|
1093 |
|
slouken@1931
|
1094 |
dnl Set up the Cocoa video driver for Mac OS X (but not Darwin)
|
slouken@1361
|
1095 |
CheckCOCOA()
|
slouken@1361
|
1096 |
{
|
slouken@1361
|
1097 |
AC_ARG_ENABLE(video-cocoa,
|
slouken@1931
|
1098 |
AC_HELP_STRING([--enable-video-cocoa], [use Cocoa video driver [[default=yes]]]),
|
slouken@1361
|
1099 |
, enable_video_cocoa=yes)
|
slouken@1361
|
1100 |
if test x$enable_video = xyes -a x$enable_video_cocoa = xyes; then
|
slouken@1361
|
1101 |
save_CFLAGS="$CFLAGS"
|
slouken@1361
|
1102 |
dnl work around that we don't have Objective-C support in autoconf
|
slouken@1361
|
1103 |
CFLAGS="$CFLAGS -x objective-c"
|
slouken@1361
|
1104 |
AC_MSG_CHECKING(for Cocoa framework)
|
slouken@1361
|
1105 |
have_cocoa=no
|
slouken@1361
|
1106 |
AC_TRY_COMPILE([
|
slouken@1361
|
1107 |
#import <Cocoa/Cocoa.h>
|
slouken@1361
|
1108 |
],[
|
slouken@1361
|
1109 |
],[
|
slouken@1361
|
1110 |
have_cocoa=yes
|
slouken@1361
|
1111 |
])
|
slouken@1361
|
1112 |
AC_MSG_RESULT($have_cocoa)
|
slouken@1361
|
1113 |
CFLAGS="$save_CFLAGS"
|
slouken@1361
|
1114 |
if test x$have_cocoa = xyes; then
|
slouken@1931
|
1115 |
AC_DEFINE(SDL_VIDEO_DRIVER_COCOA)
|
slouken@1931
|
1116 |
SOURCES="$SOURCES $srcdir/src/video/cocoa/*.m"
|
slouken@1361
|
1117 |
have_video=yes
|
slouken@1361
|
1118 |
fi
|
slouken@1361
|
1119 |
fi
|
slouken@1361
|
1120 |
}
|
slouken@1361
|
1121 |
|
slouken@0
|
1122 |
dnl Find the framebuffer console includes
|
slouken@0
|
1123 |
CheckFBCON()
|
slouken@0
|
1124 |
{
|
slouken@0
|
1125 |
AC_ARG_ENABLE(video-fbcon,
|
slouken@2021
|
1126 |
AC_HELP_STRING([--enable-video-fbcon], [use framebuffer console video driver [[default=no]]]),
|
slouken@2021
|
1127 |
, enable_video_fbcon=no)
|
slouken@0
|
1128 |
if test x$enable_video = xyes -a x$enable_video_fbcon = xyes; then
|
slouken@0
|
1129 |
AC_MSG_CHECKING(for framebuffer console support)
|
slouken@0
|
1130 |
video_fbcon=no
|
slouken@0
|
1131 |
AC_TRY_COMPILE([
|
slouken@0
|
1132 |
#include <linux/fb.h>
|
slouken@0
|
1133 |
#include <linux/kd.h>
|
slouken@0
|
1134 |
#include <linux/keyboard.h>
|
slouken@0
|
1135 |
],[
|
slouken@0
|
1136 |
],[
|
slouken@0
|
1137 |
video_fbcon=yes
|
slouken@0
|
1138 |
])
|
slouken@0
|
1139 |
AC_MSG_RESULT($video_fbcon)
|
slouken@0
|
1140 |
if test x$video_fbcon = xyes; then
|
icculus@2093
|
1141 |
AC_CHECK_FUNCS(getpagesize)
|
slouken@1361
|
1142 |
AC_DEFINE(SDL_VIDEO_DRIVER_FBCON)
|
slouken@1361
|
1143 |
SOURCES="$SOURCES $srcdir/src/video/fbcon/*.c"
|
slouken@1361
|
1144 |
have_video=yes
|
slouken@0
|
1145 |
fi
|
slouken@0
|
1146 |
fi
|
slouken@0
|
1147 |
}
|
slouken@0
|
1148 |
|
slouken@167
|
1149 |
dnl Find DirectFB
|
slouken@167
|
1150 |
CheckDirectFB()
|
slouken@167
|
1151 |
{
|
slouken@167
|
1152 |
AC_ARG_ENABLE(video-directfb,
|
slouken@1637
|
1153 |
AC_HELP_STRING([--enable-video-directfb], [use DirectFB video driver [[default=yes]]]),
|
slouken@1588
|
1154 |
, enable_video_directfb=yes)
|
slouken@167
|
1155 |
if test x$enable_video = xyes -a x$enable_video_directfb = xyes; then
|
slouken@167
|
1156 |
video_directfb=no
|
slouken@167
|
1157 |
|
slouken@1588
|
1158 |
DIRECTFB_REQUIRED_VERSION=0.9.15
|
slouken@1588
|
1159 |
|
slouken@1602
|
1160 |
AC_PATH_PROG(DIRECTFBCONFIG, directfb-config, no)
|
slouken@1602
|
1161 |
if test x$DIRECTFBCONFIG = xno; then
|
slouken@1588
|
1162 |
AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
|
slouken@1602
|
1163 |
AC_MSG_CHECKING(for DirectFB $DIRECTFB_REQUIRED_VERSION support)
|
slouken@1602
|
1164 |
if test x$PKG_CONFIG != xno; then
|
slouken@1602
|
1165 |
if $PKG_CONFIG --atleast-pkgconfig-version 0.7 && $PKG_CONFIG --atleast-version $DIRECTFB_REQUIRED_VERSION directfb; then
|
slouken@1588
|
1166 |
DIRECTFB_CFLAGS=`$PKG_CONFIG --cflags directfb`
|
slouken@1588
|
1167 |
DIRECTFB_LIBS=`$PKG_CONFIG --libs directfb`
|
slouken@1588
|
1168 |
video_directfb=yes
|
slouken@1588
|
1169 |
fi
|
slouken@167
|
1170 |
fi
|
slouken@1602
|
1171 |
AC_MSG_RESULT($video_directfb)
|
slouken@1588
|
1172 |
else
|
slouken@1588
|
1173 |
AC_MSG_CHECKING(for DirectFB $DIRECTFB_REQUIRED_VERSION support)
|
slouken@1588
|
1174 |
set -- `echo $DIRECTFB_REQUIRED_VERSION | sed 's/\./ /g'`
|
slouken@1588
|
1175 |
NEED_VERSION=`expr $1 \* 10000 + $2 \* 100 + $3`
|
slouken@1588
|
1176 |
set -- `directfb-config --version | sed 's/\./ /g'`
|
slouken@1588
|
1177 |
HAVE_VERSION=`expr $1 \* 10000 + $2 \* 100 + $3`
|
slouken@1588
|
1178 |
if test $HAVE_VERSION -ge $NEED_VERSION; then
|
slouken@1588
|
1179 |
DIRECTFB_CFLAGS=`$DIRECTFBCONFIG --cflags`
|
slouken@1588
|
1180 |
DIRECTFB_LIBS=`$DIRECTFBCONFIG --libs`
|
slouken@167
|
1181 |
video_directfb=yes
|
slouken@167
|
1182 |
fi
|
slouken@1588
|
1183 |
AC_MSG_RESULT($video_directfb)
|
slouken@167
|
1184 |
fi
|
slouken@167
|
1185 |
|
slouken@167
|
1186 |
if test x$video_directfb = xyes; then
|
slouken@1361
|
1187 |
AC_DEFINE(SDL_VIDEO_DRIVER_DIRECTFB)
|
slouken@1361
|
1188 |
SOURCES="$SOURCES $srcdir/src/video/directfb/*.c"
|
slouken@1521
|
1189 |
EXTRA_CFLAGS="$EXTRA_CFLAGS $DIRECTFB_CFLAGS"
|
slouken@1521
|
1190 |
EXTRA_LDFLAGS="$EXTRA_LDFLAGS $DIRECTFB_LIBS"
|
slouken@1361
|
1191 |
have_video=yes
|
slouken@167
|
1192 |
fi
|
slouken@167
|
1193 |
fi
|
slouken@167
|
1194 |
}
|
slouken@167
|
1195 |
|
slouken@70
|
1196 |
dnl See if we're running on PlayStation 2 hardware
|
slouken@70
|
1197 |
CheckPS2GS()
|
slouken@70
|
1198 |
{
|
slouken@72
|
1199 |
AC_ARG_ENABLE(video-ps2gs,
|
slouken@1637
|
1200 |
AC_HELP_STRING([--enable-video-ps2gs], [use PlayStation 2 GS video driver [[default=yes]]]),
|
slouken@72
|
1201 |
, enable_video_ps2gs=yes)
|
slouken@70
|
1202 |
if test x$enable_video = xyes -a x$enable_video_ps2gs = xyes; then
|
slouken@72
|
1203 |
AC_MSG_CHECKING(for PlayStation 2 GS support)
|
slouken@70
|
1204 |
video_ps2gs=no
|
slouken@70
|
1205 |
AC_TRY_COMPILE([
|
slouken@70
|
1206 |
#include <linux/ps2/dev.h>
|
slouken@70
|
1207 |
#include <linux/ps2/gs.h>
|
slouken@70
|
1208 |
],[
|
slouken@70
|
1209 |
],[
|
slouken@70
|
1210 |
video_ps2gs=yes
|
slouken@70
|
1211 |
])
|
slouken@72
|
1212 |
AC_MSG_RESULT($video_ps2gs)
|
slouken@70
|
1213 |
if test x$video_ps2gs = xyes; then
|
slouken@1361
|
1214 |
AC_DEFINE(SDL_VIDEO_DRIVER_PS2GS)
|
slouken@1361
|
1215 |
SOURCES="$SOURCES $srcdir/src/video/ps2gs/*.c"
|
slouken@1361
|
1216 |
have_video=yes
|
slouken@70
|
1217 |
fi
|
slouken@70
|
1218 |
fi
|
slouken@70
|
1219 |
}
|
slouken@70
|
1220 |
|
slouken@0
|
1221 |
dnl Find the SVGAlib includes and libraries
|
slouken@0
|
1222 |
CheckSVGA()
|
slouken@0
|
1223 |
{
|
slouken@0
|
1224 |
AC_ARG_ENABLE(video-svga,
|
slouken@1637
|
1225 |
AC_HELP_STRING([--enable-video-svga], [use SVGAlib video driver [[default=yes]]]),
|
slouken@1555
|
1226 |
, enable_video_svga=yes)
|
slouken@0
|
1227 |
if test x$enable_video = xyes -a x$enable_video_svga = xyes; then
|
slouken@0
|
1228 |
AC_MSG_CHECKING(for SVGAlib (1.4.0+) support)
|
slouken@0
|
1229 |
video_svga=no
|
slouken@0
|
1230 |
AC_TRY_COMPILE([
|
slouken@0
|
1231 |
#include <vga.h>
|
slouken@0
|
1232 |
#include <vgamouse.h>
|
slouken@0
|
1233 |
#include <vgakeyboard.h>
|
slouken@0
|
1234 |
],[
|
slouken@0
|
1235 |
if ( SCANCODE_RIGHTWIN && SCANCODE_LEFTWIN ) {
|
slouken@0
|
1236 |
exit(0);
|
slouken@0
|
1237 |
}
|
slouken@0
|
1238 |
],[
|
slouken@0
|
1239 |
video_svga=yes
|
slouken@0
|
1240 |
])
|
slouken@0
|
1241 |
AC_MSG_RESULT($video_svga)
|
slouken@0
|
1242 |
if test x$video_svga = xyes; then
|
slouken@1361
|
1243 |
AC_DEFINE(SDL_VIDEO_DRIVER_SVGALIB)
|
slouken@1361
|
1244 |
SOURCES="$SOURCES $srcdir/src/video/svga/*.c"
|
slouken@1556
|
1245 |
EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lvga"
|
slouken@1361
|
1246 |
have_video=yes
|
slouken@0
|
1247 |
fi
|
slouken@0
|
1248 |
fi
|
slouken@0
|
1249 |
}
|
slouken@0
|
1250 |
|
slouken@75
|
1251 |
dnl Find the VGL includes and libraries
|
slouken@75
|
1252 |
CheckVGL()
|
slouken@75
|
1253 |
{
|
slouken@75
|
1254 |
AC_ARG_ENABLE(video-vgl,
|
slouken@1637
|
1255 |
AC_HELP_STRING([--enable-video-vgl], [use VGL video driver [[default=yes]]]),
|
slouken@1588
|
1256 |
, enable_video_vgl=yes)
|
slouken@75
|
1257 |
if test x$enable_video = xyes -a x$enable_video_vgl = xyes; then
|
slouken@75
|
1258 |
AC_MSG_CHECKING(for libVGL support)
|
slouken@75
|
1259 |
video_vgl=no
|
slouken@75
|
1260 |
AC_TRY_COMPILE([
|
slouken@75
|
1261 |
#include <sys/fbio.h>
|
slouken@75
|
1262 |
#include <sys/consio.h>
|
slouken@75
|
1263 |
#include <sys/kbio.h>
|
slouken@75
|
1264 |
#include <vgl.h>
|
slouken@75
|
1265 |
],[
|
slouken@75
|
1266 |
VGLBitmap bitmap;
|
slouken@1836
|
1267 |
bitmap.Type = VIDBUF32;
|
slouken@1836
|
1268 |
bitmap.PixelBytes = 4;
|
slouken@144
|
1269 |
exit(bitmap.Bitmap);
|
slouken@75
|
1270 |
],[
|
slouken@75
|
1271 |
video_vgl=yes
|
slouken@75
|
1272 |
])
|
slouken@75
|
1273 |
AC_MSG_RESULT($video_vgl)
|
slouken@75
|
1274 |
if test x$video_vgl = xyes; then
|
slouken@1361
|
1275 |
AC_DEFINE(SDL_VIDEO_DRIVER_VGL)
|
slouken@1361
|
1276 |
SOURCES="$SOURCES $srcdir/src/video/vgl/*.c"
|
slouken@1521
|
1277 |
EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lvgl"
|
slouken@1361
|
1278 |
have_video=yes
|
slouken@75
|
1279 |
fi
|
slouken@75
|
1280 |
fi
|
slouken@75
|
1281 |
}
|
slouken@75
|
1282 |
|
slouken@1361
|
1283 |
dnl Set up the wscons video driver if enabled
|
slouken@1361
|
1284 |
CheckWscons()
|
slouken@1361
|
1285 |
{
|
slouken@1361
|
1286 |
AC_ARG_ENABLE(video-wscons,
|
slouken@1637
|
1287 |
AC_HELP_STRING([--enable-video-wscons], [use wscons video driver [[default=yes]]]),
|
slouken@1361
|
1288 |
, enable_video_wscons=yes)
|
slouken@1361
|
1289 |
if test x$enable_video = xyes -a x$enable_video_wscons = xyes; then
|
slouken@1361
|
1290 |
AC_MSG_CHECKING(for wscons support)
|
slouken@1361
|
1291 |
video_wscons=no
|
slouken@1361
|
1292 |
AC_TRY_COMPILE([
|
slouken@1597
|
1293 |
#include <sys/time.h>
|
slouken@1597
|
1294 |
#include <dev/wscons/wsconsio.h>
|
slouken@1597
|
1295 |
#include <dev/wscons/wsdisplay_usl_io.h>
|
slouken@1361
|
1296 |
],[
|
slouken@1597
|
1297 |
int wsmode = WSDISPLAYIO_MODE_DUMBFB;
|
slouken@1361
|
1298 |
],[
|
slouken@1361
|
1299 |
video_wscons=yes
|
slouken@1361
|
1300 |
])
|
slouken@1361
|
1301 |
AC_MSG_RESULT($video_wscons)
|
slouken@1361
|
1302 |
if test x$video_wscons = xyes; then
|
slouken@1361
|
1303 |
AC_DEFINE(SDL_VIDEO_DRIVER_WSCONS)
|
slouken@1361
|
1304 |
SOURCES="$SOURCES $srcdir/src/video/wscons/*.c"
|
slouken@1361
|
1305 |
have_video=yes
|
slouken@1361
|
1306 |
fi
|
slouken@1361
|
1307 |
fi
|
slouken@1361
|
1308 |
}
|
slouken@1361
|
1309 |
|
slouken@1361
|
1310 |
dnl Set up the Atari Bios keyboard driver
|
slouken@1361
|
1311 |
CheckAtariBiosEvent()
|
slouken@1361
|
1312 |
{
|
slouken@1361
|
1313 |
SOURCES="$SOURCES $srcdir/src/video/ataricommon/*.c"
|
patmandin@1477
|
1314 |
SOURCES="$SOURCES $srcdir/src/video/ataricommon/*.S"
|
slouken@1361
|
1315 |
}
|
slouken@1361
|
1316 |
|
slouken@281
|
1317 |
dnl Set up the Atari Xbios driver
|
slouken@281
|
1318 |
CheckAtariXbiosVideo()
|
slouken@281
|
1319 |
{
|
patmandin@2085
|
1320 |
AC_ARG_ENABLE(video-xbios,
|
slouken@1637
|
1321 |
AC_HELP_STRING([--enable-video-xbios], [use Atari Xbios video driver [[default=yes]]]),
|
slouken@281
|
1322 |
, enable_video_xbios=yes)
|
slouken@281
|
1323 |
video_xbios=no
|
slouken@281
|
1324 |
if test x$enable_video = xyes -a x$enable_video_xbios = xyes; then
|
slouken@281
|
1325 |
video_xbios=yes
|
slouken@1361
|
1326 |
AC_DEFINE(SDL_VIDEO_DRIVER_XBIOS)
|
slouken@1361
|
1327 |
SOURCES="$SOURCES $srcdir/src/video/xbios/*.c"
|
slouken@1361
|
1328 |
have_video=yes
|
slouken@281
|
1329 |
fi
|
slouken@281
|
1330 |
}
|
slouken@281
|
1331 |
|
slouken@281
|
1332 |
dnl Set up the Atari Gem driver
|
slouken@281
|
1333 |
CheckAtariGemVideo()
|
slouken@281
|
1334 |
{
|
patmandin@2085
|
1335 |
AC_ARG_ENABLE(video-gem,
|
slouken@1637
|
1336 |
AC_HELP_STRING([--enable-video-gem], [use Atari Gem video driver [[default=yes]]]),
|
slouken@281
|
1337 |
, enable_video_gem=yes)
|
slouken@281
|
1338 |
if test x$enable_video = xyes -a x$enable_video_gem = xyes; then
|
slouken@281
|
1339 |
video_gem=no
|
slouken@281
|
1340 |
AC_CHECK_HEADER(gem.h, have_gem_hdr=yes)
|
slouken@281
|
1341 |
AC_CHECK_LIB(gem, appl_init, have_gem_lib=yes)
|
slouken@281
|
1342 |
if test x$have_gem_hdr = xyes -a x$have_gem_lib = xyes; then
|
slouken@1366
|
1343 |
video_gem=yes
|
slouken@1361
|
1344 |
AC_DEFINE(SDL_VIDEO_DRIVER_GEM)
|
slouken@1361
|
1345 |
SOURCES="$SOURCES $srcdir/src/video/gem/*.c"
|
patmandin@1825
|
1346 |
SDL_LIBS="$SDL_LIBS -lgem"
|
slouken@1361
|
1347 |
have_video=yes
|
slouken@281
|
1348 |
fi
|
slouken@281
|
1349 |
fi
|
slouken@281
|
1350 |
}
|
slouken@281
|
1351 |
|
slouken@1
|
1352 |
dnl rcg04172001 Set up the Null video driver.
|
slouken@1
|
1353 |
CheckDummyVideo()
|
slouken@1
|
1354 |
{
|
slouken@1
|
1355 |
AC_ARG_ENABLE(video-dummy,
|
slouken@1637
|
1356 |
AC_HELP_STRING([--enable-video-dummy], [use dummy video driver [[default=yes]]]),
|
slouken@86
|
1357 |
, enable_video_dummy=yes)
|
slouken@1
|
1358 |
if test x$enable_video_dummy = xyes; then
|
slouken@1361
|
1359 |
AC_DEFINE(SDL_VIDEO_DRIVER_DUMMY)
|
slouken@1361
|
1360 |
SOURCES="$SOURCES $srcdir/src/video/dummy/*.c"
|
slouken@1361
|
1361 |
have_video=yes
|
slouken@1
|
1362 |
fi
|
slouken@1
|
1363 |
}
|
slouken@1
|
1364 |
|
slouken@0
|
1365 |
dnl Check to see if OpenGL support is desired
|
slouken@0
|
1366 |
AC_ARG_ENABLE(video-opengl,
|
slouken@1952
|
1367 |
AC_HELP_STRING([--enable-video-opengl], [include OpenGL support [[default=yes]]]),
|
slouken@0
|
1368 |
, enable_video_opengl=yes)
|
slouken@0
|
1369 |
|
slouken@0
|
1370 |
dnl Find OpenGL
|
icculus@1191
|
1371 |
CheckOpenGLX11()
|
slouken@0
|
1372 |
{
|
slouken@0
|
1373 |
if test x$enable_video = xyes -a x$enable_video_opengl = xyes; then
|
slouken@0
|
1374 |
AC_MSG_CHECKING(for OpenGL (GLX) support)
|
slouken@0
|
1375 |
video_opengl=no
|
slouken@0
|
1376 |
AC_TRY_COMPILE([
|
slouken@0
|
1377 |
#include <GL/gl.h>
|
slouken@0
|
1378 |
#include <GL/glx.h>
|
icculus@2125
|
1379 |
#include <GL/glu.h>
|
slouken@0
|
1380 |
],[
|
slouken@0
|
1381 |
],[
|
slouken@0
|
1382 |
video_opengl=yes
|
slouken@0
|
1383 |
])
|
slouken@0
|
1384 |
AC_MSG_RESULT($video_opengl)
|
slouken@0
|
1385 |
if test x$video_opengl = xyes; then
|
slouken@1361
|
1386 |
AC_DEFINE(SDL_VIDEO_OPENGL)
|
slouken@1361
|
1387 |
AC_DEFINE(SDL_VIDEO_OPENGL_GLX)
|
slouken@1952
|
1388 |
AC_DEFINE(SDL_VIDEO_RENDER_OGL)
|
slouken@0
|
1389 |
fi
|
slouken@0
|
1390 |
fi
|
slouken@0
|
1391 |
}
|
slouken@0
|
1392 |
|
slouken@279
|
1393 |
dnl Find QNX RtP OpenGL
|
slouken@279
|
1394 |
CheckOpenGLQNX()
|
slouken@279
|
1395 |
{
|
slouken@279
|
1396 |
if test x$enable_video = xyes -a x$enable_video_opengl = xyes; then
|
slouken@279
|
1397 |
AC_MSG_CHECKING(for OpenGL (Photon) support)
|
slouken@279
|
1398 |
video_opengl=no
|
slouken@279
|
1399 |
AC_TRY_COMPILE([
|
slouken@279
|
1400 |
#include <GL/gl.h>
|
slouken@279
|
1401 |
],[
|
slouken@279
|
1402 |
],[
|
slouken@279
|
1403 |
video_opengl=yes
|
slouken@279
|
1404 |
])
|
slouken@279
|
1405 |
AC_MSG_RESULT($video_opengl)
|
slouken@279
|
1406 |
if test x$video_opengl = xyes; then
|
slouken@1361
|
1407 |
AC_DEFINE(SDL_VIDEO_OPENGL)
|
slouken@1952
|
1408 |
AC_DEFINE(SDL_VIDEO_RENDER_OGL)
|
slouken@1521
|
1409 |
EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lGL"
|
slouken@279
|
1410 |
fi
|
slouken@279
|
1411 |
fi
|
slouken@279
|
1412 |
}
|
slouken@279
|
1413 |
|
slouken@1361
|
1414 |
dnl Check for Win32 OpenGL
|
slouken@1361
|
1415 |
CheckWIN32GL()
|
slouken@1361
|
1416 |
{
|
slouken@1361
|
1417 |
if test x$enable_video = xyes -a x$enable_video_opengl = xyes; then
|
slouken@1361
|
1418 |
AC_DEFINE(SDL_VIDEO_OPENGL)
|
slouken@1361
|
1419 |
AC_DEFINE(SDL_VIDEO_OPENGL_WGL)
|
slouken@1952
|
1420 |
AC_DEFINE(SDL_VIDEO_RENDER_OGL)
|
slouken@1361
|
1421 |
fi
|
slouken@1361
|
1422 |
}
|
slouken@1361
|
1423 |
|
slouken@0
|
1424 |
dnl Check for BeOS OpenGL
|
slouken@0
|
1425 |
CheckBeGL()
|
slouken@0
|
1426 |
{
|
slouken@0
|
1427 |
if test x$enable_video = xyes -a x$enable_video_opengl = xyes; then
|
slouken@1361
|
1428 |
AC_DEFINE(SDL_VIDEO_OPENGL)
|
slouken@1952
|
1429 |
AC_DEFINE(SDL_VIDEO_OPENGL_BGL)
|
slouken@1952
|
1430 |
AC_DEFINE(SDL_VIDEO_RENDER_OGL)
|
slouken@1521
|
1431 |
EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lGL"
|
slouken@0
|
1432 |
fi
|
slouken@0
|
1433 |
}
|
slouken@0
|
1434 |
|
slouken@0
|
1435 |
dnl Check for MacOS OpenGL
|
slouken@0
|
1436 |
CheckMacGL()
|
slouken@0
|
1437 |
{
|
slouken@0
|
1438 |
if test x$enable_video = xyes -a x$enable_video_opengl = xyes; then
|
slouken@1361
|
1439 |
AC_DEFINE(SDL_VIDEO_OPENGL)
|
slouken@1952
|
1440 |
AC_DEFINE(SDL_VIDEO_OPENGL_CGL)
|
slouken@1952
|
1441 |
AC_DEFINE(SDL_VIDEO_RENDER_OGL)
|
slouken@1550
|
1442 |
case "$host" in
|
slouken@0
|
1443 |
*-*-darwin*)
|
slouken@1625
|
1444 |
if test x$enable_video_cocoa = xyes; then
|
slouken@1625
|
1445 |
EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,OpenGL"
|
slouken@1625
|
1446 |
fi
|
slouken@0
|
1447 |
esac
|
slouken@0
|
1448 |
fi
|
slouken@0
|
1449 |
}
|
slouken@0
|
1450 |
|
patmandin@978
|
1451 |
dnl Check for Mesa offscreen rendering
|
patmandin@989
|
1452 |
CheckAtariOSMesa()
|
patmandin@978
|
1453 |
{
|
patmandin@989
|
1454 |
if test "x$enable_video" = "xyes" -a "x$enable_video_opengl" = "xyes"; then
|
patmandin@991
|
1455 |
AC_CHECK_HEADER(GL/osmesa.h, have_osmesa_hdr=yes)
|
patmandin@991
|
1456 |
AC_CHECK_LIB(OSMesa, OSMesaCreateContext, have_osmesa_lib=yes, have_osmesa_lib=no, -lm)
|
patmandin@991
|
1457 |
|
patmandin@991
|
1458 |
# Static linking to -lOSMesa
|
patmandin@989
|
1459 |
AC_PATH_PROG(OSMESA_CONFIG, osmesa-config, no)
|
patmandin@989
|
1460 |
if test "x$OSMESA_CONFIG" = "xno" -o "x$enable_atari_ldg" = "xno"; then
|
patmandin@991
|
1461 |
# -lOSMesa is really the static library
|
patmandin@989
|
1462 |
if test "x$have_osmesa_hdr" = "xyes" -a "x$have_osmesa_lib" = "xyes"; then
|
slouken@1361
|
1463 |
OSMESA_LIBS="-lOSMesa"
|
patmandin@989
|
1464 |
fi
|
patmandin@989
|
1465 |
else
|
patmandin@991
|
1466 |
# -lOSMesa is a loader for OSMesa.ldg
|
patmandin@989
|
1467 |
OSMESA_CFLAGS=`$OSMESA_CONFIG --cflags`
|
patmandin@989
|
1468 |
OSMESA_LIBS=`$OSMESA_CONFIG --libs`
|
patmandin@978
|
1469 |
fi
|
slouken@1361
|
1470 |
AC_DEFINE(SDL_VIDEO_OPENGL)
|
slouken@1361
|
1471 |
AC_DEFINE(SDL_VIDEO_OPENGL_OSMESA)
|
slouken@1952
|
1472 |
AC_DEFINE(SDL_VIDEO_RENDER_OGL)
|
patmandin@1825
|
1473 |
SDL_CFLAGS="$SDL_CFLAGS $OSMESA_CFLAGS"
|
patmandin@1825
|
1474 |
SDL_LIBS="$SDL_LIBS $OSMESA_LIBS"
|
patmandin@991
|
1475 |
|
patmandin@991
|
1476 |
AC_ARG_ENABLE(osmesa-shared,
|
slouken@1637
|
1477 |
AC_HELP_STRING([--enable-osmesa-shared], [dynamically load OSMesa OpenGL support [[default=yes]]]),
|
patmandin@991
|
1478 |
, enable_osmesa_shared=yes)
|
patmandin@991
|
1479 |
if test "x$enable_osmesa_shared" = "xyes" -a "x$enable_atari_ldg" = "xyes"; then
|
patmandin@991
|
1480 |
# Dynamic linking
|
patmandin@991
|
1481 |
if test "x$have_osmesa_hdr" = "xyes"; then
|
slouken@1361
|
1482 |
AC_DEFINE(SDL_VIDEO_OPENGL_OSMESA_DYNAMIC)
|
patmandin@991
|
1483 |
fi
|
slouken@1361
|
1484 |
fi
|
patmandin@978
|
1485 |
fi
|
patmandin@978
|
1486 |
}
|
patmandin@978
|
1487 |
|
slouken@0
|
1488 |
dnl See if we can use the new unified event interface in Linux 2.4
|
slouken@0
|
1489 |
CheckInputEvents()
|
slouken@0
|
1490 |
{
|
slouken@0
|
1491 |
dnl Check for Linux 2.4 unified input event interface support
|
slouken@0
|
1492 |
AC_ARG_ENABLE(input-events,
|
slouken@1637
|
1493 |
AC_HELP_STRING([--enable-input-events], [use Linux 2.4 unified input interface [[default=yes]]]),
|
slouken@211
|
1494 |
, enable_input_events=yes)
|
slouken@0
|
1495 |
if test x$enable_input_events = xyes; then
|
slouken@0
|
1496 |
AC_MSG_CHECKING(for Linux 2.4 unified input interface)
|
slouken@0
|
1497 |
use_input_events=no
|
slouken@0
|
1498 |
AC_TRY_COMPILE([
|
slouken@0
|
1499 |
#include <linux/input.h>
|
slouken@0
|
1500 |
],[
|
slouken@0
|
1501 |
#ifndef EVIOCGNAME
|
slouken@0
|
1502 |
#error EVIOCGNAME() ioctl not available
|
slouken@0
|
1503 |
#endif
|
slouken@0
|
1504 |
],[
|
slouken@0
|
1505 |
use_input_events=yes
|
slouken@0
|
1506 |
])
|
slouken@0
|
1507 |
AC_MSG_RESULT($use_input_events)
|
slouken@0
|
1508 |
if test x$use_input_events = xyes; then
|
slouken@1361
|
1509 |
AC_DEFINE(SDL_INPUT_LINUXEV)
|
slouken@0
|
1510 |
fi
|
slouken@0
|
1511 |
fi
|
slouken@0
|
1512 |
}
|
slouken@0
|
1513 |
|
icculus@1201
|
1514 |
dnl See if we can use the Touchscreen input library
|
icculus@1201
|
1515 |
CheckTslib()
|
icculus@1201
|
1516 |
{
|
icculus@1201
|
1517 |
AC_ARG_ENABLE(input-tslib,
|
slouken@1637
|
1518 |
AC_HELP_STRING([--enable-input-tslib], [use the Touchscreen library for input [[default=yes]]]),
|
icculus@1201
|
1519 |
, enable_input_tslib=yes)
|
icculus@1201
|
1520 |
if test x$enable_input_tslib = xyes; then
|
icculus@1201
|
1521 |
AC_MSG_CHECKING(for Touchscreen library support)
|
icculus@1201
|
1522 |
enable_input_tslib=no
|
icculus@1201
|
1523 |
AC_TRY_COMPILE([
|
icculus@1201
|
1524 |
#include "tslib.h"
|
icculus@1201
|
1525 |
],[
|
icculus@1201
|
1526 |
],[
|
icculus@1201
|
1527 |
enable_input_tslib=yes
|
icculus@1201
|
1528 |
])
|
icculus@1201
|
1529 |
AC_MSG_RESULT($enable_input_tslib)
|
icculus@1201
|
1530 |
if test x$enable_input_tslib = xyes; then
|
slouken@1361
|
1531 |
AC_DEFINE(SDL_INPUT_TSLIB)
|
slouken@1521
|
1532 |
EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lts"
|
icculus@1201
|
1533 |
fi
|
icculus@1201
|
1534 |
fi
|
icculus@1201
|
1535 |
}
|
icculus@1201
|
1536 |
|
slouken@399
|
1537 |
dnl See if we can use GNU pth library for threads
|
slouken@399
|
1538 |
CheckPTH()
|
slouken@399
|
1539 |
{
|
slouken@399
|
1540 |
dnl Check for pth support
|
slouken@399
|
1541 |
AC_ARG_ENABLE(pth,
|
slouken@1637
|
1542 |
AC_HELP_STRING([--enable-pth], [use GNU pth library for multi-threading [[default=yes]]]),
|
slouken@399
|
1543 |
, enable_pth=yes)
|
slouken@399
|
1544 |
if test x$enable_threads = xyes -a x$enable_pth = xyes; then
|
slouken@399
|
1545 |
AC_PATH_PROG(PTH_CONFIG, pth-config, no)
|
slouken@399
|
1546 |
if test "$PTH_CONFIG" = "no"; then
|
slouken@399
|
1547 |
use_pth=no
|
slouken@399
|
1548 |
else
|
slouken@399
|
1549 |
use_pth=yes
|
slouken@399
|
1550 |
fi
|
slouken@399
|
1551 |
AC_MSG_CHECKING(pth)
|
slouken@1361
|
1552 |
AC_MSG_RESULT($use_pth)
|
slouken@399
|
1553 |
if test "x$use_pth" = xyes; then
|
slouken@1361
|
1554 |
AC_DEFINE(SDL_THREAD_PTH)
|
slouken@1361
|
1555 |
SOURCES="$SOURCES $srcdir/src/thread/pth/*.c"
|
slouken@1361
|
1556 |
SOURCES="$SOURCES $srcdir/src/thread/generic/SDL_syssem.c"
|
slouken@1361
|
1557 |
SDL_CFLAGS="$SDL_CFLAGS `$PTH_CONFIG --cflags`"
|
slouken@1361
|
1558 |
SDL_LIBS="$SDL_LIBS `$PTH_CONFIG --libs --all`"
|
slouken@1361
|
1559 |
have_threads=yes
|
slouken@399
|
1560 |
fi
|
slouken@399
|
1561 |
fi
|
slouken@399
|
1562 |
}
|
slouken@399
|
1563 |
|
slouken@0
|
1564 |
dnl See what type of thread model to use on Linux and Solaris
|
slouken@0
|
1565 |
CheckPTHREAD()
|
slouken@0
|
1566 |
{
|
slouken@0
|
1567 |
dnl Check for pthread support
|
slouken@0
|
1568 |
AC_ARG_ENABLE(pthreads,
|
slouken@1637
|
1569 |
AC_HELP_STRING([--enable-pthreads], [use POSIX threads for multi-threading [[default=yes]]]),
|
slouken@0
|
1570 |
, enable_pthreads=yes)
|
slouken@0
|
1571 |
dnl This is used on Linux for glibc binary compatibility (Doh!)
|
slouken@0
|
1572 |
AC_ARG_ENABLE(pthread-sem,
|
slouken@1637
|
1573 |
AC_HELP_STRING([--enable-pthread-sem], [use pthread semaphores [[default=yes]]]),
|
slouken@0
|
1574 |
, enable_pthread_sem=yes)
|
slouken@1550
|
1575 |
case "$host" in
|
slouken@1820
|
1576 |
*-*-linux*|*-*-uclinux*)
|
slouken@1361
|
1577 |
pthread_cflags="-D_REENTRANT"
|
slouken@1324
|
1578 |
pthread_lib="-lpthread"
|
slouken@1324
|
1579 |
;;
|
slouken@0
|
1580 |
*-*-bsdi*)
|
slouken@0
|
1581 |
pthread_cflags="-D_REENTRANT -D_THREAD_SAFE"
|
slouken@0
|
1582 |
pthread_lib=""
|
slouken@0
|
1583 |
;;
|
slouken@0
|
1584 |
*-*-darwin*)
|
slouken@0
|
1585 |
pthread_cflags="-D_THREAD_SAFE"
|
slouken@0
|
1586 |
# causes Carbon.p complaints?
|
slouken@0
|
1587 |
# pthread_cflags="-D_REENTRANT -D_THREAD_SAFE"
|
slouken@0
|
1588 |
;;
|
slouken@1565
|
1589 |
*-*-freebsd*|*-*-dragonfly*)
|
slouken@0
|
1590 |
pthread_cflags="-D_REENTRANT -D_THREAD_SAFE"
|
slouken@0
|
1591 |
pthread_lib="-pthread"
|
slouken@0
|
1592 |
;;
|
slouken@43
|
1593 |
*-*-netbsd*)
|
slouken@1383
|
1594 |
pthread_cflags="-D_REENTRANT -D_THREAD_SAFE"
|
slouken@2158
|
1595 |
pthread_lib="-lpthread"
|
slouken@43
|
1596 |
;;
|
slouken@0
|
1597 |
*-*-openbsd*)
|
slouken@0
|
1598 |
pthread_cflags="-D_REENTRANT"
|
slouken@0
|
1599 |
pthread_lib="-pthread"
|
slouken@0
|
1600 |
;;
|
slouken@0
|
1601 |
*-*-solaris*)
|
slouken@0
|
1602 |
pthread_cflags="-D_REENTRANT"
|
slouken@0
|
1603 |
pthread_lib="-lpthread -lposix4"
|
slouken@0
|
1604 |
;;
|
slouken@0
|
1605 |
*-*-sysv5*)
|
slouken@0
|
1606 |
pthread_cflags="-D_REENTRANT -Kthread"
|
slouken@0
|
1607 |
pthread_lib=""
|
slouken@0
|
1608 |
;;
|
slouken@0
|
1609 |
*-*-irix*)
|
slouken@0
|
1610 |
pthread_cflags="-D_SGI_MP_SOURCE"
|
slouken@0
|
1611 |
pthread_lib="-lpthread"
|
slouken@0
|
1612 |
;;
|
slouken@0
|
1613 |
*-*-aix*)
|
slouken@0
|
1614 |
pthread_cflags="-D_REENTRANT -mthreads"
|
slouken@0
|
1615 |
pthread_lib="-lpthread"
|
slouken@0
|
1616 |
;;
|
icculus@425
|
1617 |
*-*-hpux11*)
|
icculus@425
|
1618 |
pthread_cflags="-D_REENTRANT"
|
icculus@425
|
1619 |
pthread_lib="-L/usr/lib -lpthread"
|
icculus@425
|
1620 |
;;
|
slouken@0
|
1621 |
*-*-qnx*)
|
slouken@0
|
1622 |
pthread_cflags=""
|
slouken@0
|
1623 |
pthread_lib=""
|
slouken@0
|
1624 |
;;
|
slouken@873
|
1625 |
*-*-osf*)
|
slouken@1019
|
1626 |
pthread_cflags="-D_REENTRANT"
|
slouken@873
|
1627 |
if test x$ac_cv_prog_gcc = xyes; then
|
slouken@873
|
1628 |
pthread_lib="-lpthread -lrt"
|
slouken@873
|
1629 |
else
|
slouken@1019
|
1630 |
pthread_lib="-lpthread -lexc -lrt"
|
slouken@873
|
1631 |
fi
|
slouken@873
|
1632 |
;;
|
slouken@0
|
1633 |
*)
|
slouken@0
|
1634 |
pthread_cflags="-D_REENTRANT"
|
slouken@0
|
1635 |
pthread_lib="-lpthread"
|
slouken@0
|
1636 |
;;
|
slouken@0
|
1637 |
esac
|
icculus@1140
|
1638 |
if test x$enable_threads = xyes -a x$enable_pthreads = xyes -a x$enable_ipod != xyes; then
|
slouken@415
|
1639 |
# Save the original compiler flags and libraries
|
slouken@415
|
1640 |
ac_save_cflags="$CFLAGS"; ac_save_libs="$LIBS"
|
slouken@415
|
1641 |
# Add the pthread compiler flags and libraries
|
slouken@415
|
1642 |
CFLAGS="$CFLAGS $pthread_cflags"; LIBS="$LIBS $pthread_lib"
|
slouken@415
|
1643 |
# Check to see if we have pthread support on this system
|
slouken@0
|
1644 |
AC_MSG_CHECKING(for pthreads)
|
slouken@0
|
1645 |
use_pthreads=no
|
slouken@0
|
1646 |
AC_TRY_LINK([
|
slouken@0
|
1647 |
#include <pthread.h>
|
slouken@0
|
1648 |
],[
|
slouken@0
|
1649 |
pthread_attr_t type;
|
slouken@0
|
1650 |
pthread_attr_init(&type);
|
slouken@0
|
1651 |
],[
|
slouken@0
|
1652 |
use_pthreads=yes
|
slouken@0
|
1653 |
])
|
slouken@0
|
1654 |
AC_MSG_RESULT($use_pthreads)
|
slouken@415
|
1655 |
# Restore the compiler flags and libraries
|
slouken@415
|
1656 |
CFLAGS="$ac_save_cflags"; LIBS="$ac_save_libs"
|
slouken@1361
|
1657 |
|
slouken@415
|
1658 |
# Do futher testing if we have pthread support...
|
slouken@0
|
1659 |
if test x$use_pthreads = xyes; then
|
slouken@1361
|
1660 |
AC_DEFINE(SDL_THREAD_PTHREAD)
|
slouken@1521
|
1661 |
EXTRA_CFLAGS="$EXTRA_CFLAGS $pthread_cflags"
|
slouken@1521
|
1662 |
EXTRA_LDFLAGS="$EXTRA_LDFLAGS $pthread_lib"
|
slouken@0
|
1663 |
SDL_CFLAGS="$SDL_CFLAGS $pthread_cflags"
|
slouken@0
|
1664 |
SDL_LIBS="$SDL_LIBS $pthread_lib"
|
slouken@0
|
1665 |
|
slouken@1438
|
1666 |
# Save the original compiler flags and libraries
|
slouken@1438
|
1667 |
ac_save_cflags="$CFLAGS"; ac_save_libs="$LIBS"
|
slouken@1438
|
1668 |
# Add the pthread compiler flags and libraries
|
slouken@1438
|
1669 |
CFLAGS="$CFLAGS $pthread_cflags"; LIBS="$LIBS $pthread_lib"
|
slouken@1438
|
1670 |
|
slouken@0
|
1671 |
# Check to see if recursive mutexes are available
|
slouken@0
|
1672 |
AC_MSG_CHECKING(for recursive mutexes)
|
slouken@0
|
1673 |
has_recursive_mutexes=no
|
slouken@1324
|
1674 |
if test x$has_recursive_mutexes = xno; then
|
slouken@1324
|
1675 |
AC_TRY_COMPILE([
|
slouken@1324
|
1676 |
#include <pthread.h>
|
slouken@1324
|
1677 |
],[
|
slouken@1324
|
1678 |
pthread_mutexattr_t attr;
|
slouken@1324
|
1679 |
pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE);
|
slouken@1324
|
1680 |
],[
|
slouken@1324
|
1681 |
has_recursive_mutexes=yes
|
slouken@1361
|
1682 |
AC_DEFINE(SDL_THREAD_PTHREAD_RECURSIVE_MUTEX)
|
slouken@1324
|
1683 |
])
|
slouken@1324
|
1684 |
fi
|
slouken@1324
|
1685 |
if test x$has_recursive_mutexes = xno; then
|
slouken@1324
|
1686 |
AC_TRY_COMPILE([
|
slouken@1324
|
1687 |
#include <pthread.h>
|
slouken@1324
|
1688 |
],[
|
slouken@1324
|
1689 |
pthread_mutexattr_t attr;
|
slouken@1324
|
1690 |
pthread_mutexattr_setkind_np(&attr, PTHREAD_MUTEX_RECURSIVE_NP);
|
slouken@1324
|
1691 |
],[
|
slouken@1324
|
1692 |
has_recursive_mutexes=yes
|
slouken@1361
|
1693 |
AC_DEFINE(SDL_THREAD_PTHREAD_RECURSIVE_MUTEX_NP)
|
slouken@1324
|
1694 |
])
|
slouken@1324
|
1695 |
fi
|
slouken@0
|
1696 |
AC_MSG_RESULT($has_recursive_mutexes)
|
slouken@0
|
1697 |
|
slouken@94
|
1698 |
# Check to see if pthread semaphore support is missing
|
slouken@94
|
1699 |
if test x$enable_pthread_sem = xyes; then
|
slouken@94
|
1700 |
AC_MSG_CHECKING(for pthread semaphores)
|
slouken@94
|
1701 |
have_pthread_sem=no
|
slouken@94
|
1702 |
AC_TRY_COMPILE([
|
slouken@94
|
1703 |
#include <pthread.h>
|
slouken@94
|
1704 |
#include <semaphore.h>
|
slouken@94
|
1705 |
],[
|
slouken@94
|
1706 |
],[
|
slouken@94
|
1707 |
have_pthread_sem=yes
|
slouken@94
|
1708 |
])
|
slouken@94
|
1709 |
AC_MSG_RESULT($have_pthread_sem)
|
slouken@94
|
1710 |
fi
|
slouken@94
|
1711 |
|
slouken@1438
|
1712 |
# Restore the compiler flags and libraries
|
slouken@1438
|
1713 |
CFLAGS="$ac_save_cflags"; LIBS="$ac_save_libs"
|
slouken@1438
|
1714 |
|
slouken@1361
|
1715 |
# Basic thread creation functions
|
slouken@1361
|
1716 |
SOURCES="$SOURCES $srcdir/src/thread/pthread/SDL_systhread.c"
|
slouken@0
|
1717 |
|
slouken@1361
|
1718 |
# Semaphores
|
slouken@1361
|
1719 |
# We can fake these with mutexes and condition variables if necessary
|
slouken@1361
|
1720 |
if test x$have_pthread_sem = xyes; then
|
slouken@1361
|
1721 |
SOURCES="$SOURCES $srcdir/src/thread/pthread/SDL_syssem.c"
|
slouken@1361
|
1722 |
else
|
slouken@1361
|
1723 |
SOURCES="$SOURCES $srcdir/src/thread/generic/SDL_syssem.c"
|
slouken@1361
|
1724 |
fi
|
slouken@399
|
1725 |
|
slouken@1361
|
1726 |
# Mutexes
|
slouken@1361
|
1727 |
# We can fake these with semaphores if necessary
|
slouken@1361
|
1728 |
SOURCES="$SOURCES $srcdir/src/thread/pthread/SDL_sysmutex.c"
|
slouken@399
|
1729 |
|
slouken@1361
|
1730 |
# Condition variables
|
slouken@1361
|
1731 |
# We can fake these with semaphores and mutexes if necessary
|
slouken@1361
|
1732 |
SOURCES="$SOURCES $srcdir/src/thread/pthread/SDL_syscond.c"
|
slouken@185
|
1733 |
|
slouken@1361
|
1734 |
have_threads=yes
|
slouken@1361
|
1735 |
else
|
slouken@1361
|
1736 |
CheckPTH
|
slouken@814
|
1737 |
fi
|
slouken@814
|
1738 |
fi
|
slouken@814
|
1739 |
}
|
slouken@814
|
1740 |
|
slouken@0
|
1741 |
dnl Determine whether the compiler can produce Win32 executables
|
slouken@0
|
1742 |
CheckWIN32()
|
slouken@0
|
1743 |
{
|
slouken@0
|
1744 |
AC_MSG_CHECKING(Win32 compiler)
|
slouken@0
|
1745 |
have_win32_gcc=no
|
slouken@0
|
1746 |
AC_TRY_COMPILE([
|
slouken@0
|
1747 |
#include <windows.h>
|
slouken@0
|
1748 |
],[
|
slouken@0
|
1749 |
],[
|
slouken@0
|
1750 |
have_win32_gcc=yes
|
slouken@0
|
1751 |
])
|
slouken@0
|
1752 |
AC_MSG_RESULT($have_win32_gcc)
|
slouken@0
|
1753 |
if test x$have_win32_gcc != xyes; then
|
slouken@0
|
1754 |
AC_MSG_ERROR([
|
slouken@0
|
1755 |
*** Your compiler ($CC) does not produce Win32 executables!
|
slouken@0
|
1756 |
])
|
slouken@0
|
1757 |
fi
|
slouken@0
|
1758 |
|
slouken@0
|
1759 |
dnl See if the user wants to redirect standard output to files
|
slouken@0
|
1760 |
AC_ARG_ENABLE(stdio-redirect,
|
slouken@1637
|
1761 |
AC_HELP_STRING([--enable-stdio-redirect], [Redirect STDIO to files on Win32 [[default=yes]]]),
|
slouken@0
|
1762 |
, enable_stdio_redirect=yes)
|
slouken@0
|
1763 |
if test x$enable_stdio_redirect != xyes; then
|
slouken@1521
|
1764 |
EXTRA_CFLAGS="$EXTRA_CFLAGS -DNO_STDIO_REDIRECT"
|
slouken@1361
|
1765 |
fi
|
slouken@0
|
1766 |
}
|
slouken@0
|
1767 |
|
slouken@0
|
1768 |
dnl Find the DirectX includes and libraries
|
slouken@0
|
1769 |
CheckDIRECTX()
|
slouken@0
|
1770 |
{
|
slouken@0
|
1771 |
AC_ARG_ENABLE(directx,
|
slouken@1637
|
1772 |
AC_HELP_STRING([--enable-directx], [use DirectX for Win32 audio/video [[default=yes]]]),
|
slouken@0
|
1773 |
, enable_directx=yes)
|
slouken@0
|
1774 |
if test x$enable_directx = xyes; then
|
slouken@1895
|
1775 |
AC_CHECK_HEADER(d3d9.h, have_d3d=yes)
|
slouken@1361
|
1776 |
AC_CHECK_HEADER(dsound.h, have_dsound=yes)
|
slouken@1361
|
1777 |
AC_CHECK_HEADER(dinput.h, use_dinput=yes)
|
icculus@1187
|
1778 |
fi
|
icculus@1187
|
1779 |
}
|
icculus@1187
|
1780 |
|
slouken@294
|
1781 |
dnl Check for the dlfcn.h interface for dynamically loading objects
|
slouken@294
|
1782 |
CheckDLOPEN()
|
slouken@294
|
1783 |
{
|
slouken@731
|
1784 |
AC_ARG_ENABLE(sdl-dlopen,
|
slouken@1637
|
1785 |
AC_HELP_STRING([--enable-sdl-dlopen], [use dlopen for shared object loading [[default=yes]]]),
|
slouken@731
|
1786 |
, enable_sdl_dlopen=yes)
|
slouken@731
|
1787 |
if test x$enable_sdl_dlopen = xyes; then
|
slouken@294
|
1788 |
AC_MSG_CHECKING(for dlopen)
|
slouken@1361
|
1789 |
have_dlopen=no
|
slouken@294
|
1790 |
AC_TRY_COMPILE([
|
slouken@294
|
1791 |
#include <dlfcn.h>
|
slouken@294
|
1792 |
],[
|
slouken@1638
|
1793 |
#if defined(MAC_OS_X_VERSION_MIN_REQUIRED) && MAC_OS_X_VERSION_MIN_REQUIRED <= 1020
|
slouken@1638
|
1794 |
#error Use dlcompat for Mac OS X 10.2 compatibility
|
slouken@1638
|
1795 |
#endif
|
slouken@294
|
1796 |
],[
|
slouken@1361
|
1797 |
have_dlopen=yes
|
slouken@294
|
1798 |
])
|
slouken@1361
|
1799 |
AC_MSG_RESULT($have_dlopen)
|
slouken@294
|
1800 |
|
slouken@1361
|
1801 |
if test x$have_dlopen = xyes; then
|
slouken@1521
|
1802 |
AC_CHECK_LIB(c, dlopen, EXTRA_LDFLAGS="$EXTRA_LDFLAGS",
|
slouken@1521
|
1803 |
AC_CHECK_LIB(dl, dlopen, EXTRA_LDFLAGS="$EXTRA_LDFLAGS -ldl",
|
slouken@1521
|
1804 |
AC_CHECK_LIB(ltdl, dlopen, EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lltdl")))
|
slouken@1361
|
1805 |
AC_CHECK_LIB(dl, dlvsym, have_dlvsym=yes)
|
slouken@1361
|
1806 |
if test x$have_dlvsym = xyes; then
|
slouken@1361
|
1807 |
AC_DEFINE(HAVE_DLVSYM)
|
slouken@1361
|
1808 |
fi
|
slouken@1361
|
1809 |
AC_DEFINE(SDL_LOADSO_DLOPEN)
|
slouken@1361
|
1810 |
SOURCES="$SOURCES $srcdir/src/loadso/dlopen/*.c"
|
slouken@1361
|
1811 |
have_loadso=yes
|
slouken@294
|
1812 |
fi
|
slouken@294
|
1813 |
fi
|
slouken@294
|
1814 |
}
|
slouken@294
|
1815 |
|
patmandin@651
|
1816 |
dnl Set up the Atari LDG (shared object loader)
|
patmandin@651
|
1817 |
CheckAtariLdg()
|
patmandin@651
|
1818 |
{
|
patmandin@651
|
1819 |
AC_ARG_ENABLE(atari-ldg,
|
slouken@1637
|
1820 |
AC_HELP_STRING([--enable-atari-ldg], [use Atari LDG for shared object loading [[default=yes]]]),
|
patmandin@651
|
1821 |
, enable_atari_ldg=yes)
|
patmandin@651
|
1822 |
if test x$video_gem = xyes -a x$enable_atari_ldg = xyes; then
|
patmandin@651
|
1823 |
AC_CHECK_HEADER(ldg.h, have_ldg_hdr=yes)
|
patmandin@651
|
1824 |
AC_CHECK_LIB(ldg, ldg_open, have_ldg_lib=yes, have_ldg_lib=no, -lgem)
|
patmandin@651
|
1825 |
if test x$have_ldg_hdr = xyes -a x$have_ldg_lib = xyes; then
|
slouken@1361
|
1826 |
AC_DEFINE(SDL_LOADSO_LDG)
|
slouken@1361
|
1827 |
SOURCES="$SOURCES $srcdir/src/loadso/mint/*.c"
|
patmandin@1825
|
1828 |
SDL_LIBS="$SDL_LIBS -lldg -lgem"
|
icculus@1173
|
1829 |
have_loadso=yes
|
patmandin@651
|
1830 |
fi
|
patmandin@651
|
1831 |
fi
|
patmandin@651
|
1832 |
}
|
patmandin@651
|
1833 |
|
slouken@381
|
1834 |
dnl Check for the usbhid(3) library on *BSD
|
slouken@381
|
1835 |
CheckUSBHID()
|
slouken@381
|
1836 |
{
|
slouken@381
|
1837 |
if test x$enable_joystick = xyes; then
|
slouken@1565
|
1838 |
AC_CHECK_LIB(usbhid, hid_init, have_libusbhid=yes)
|
slouken@1565
|
1839 |
if test x$have_libusbhid = xyes; then
|
slouken@1565
|
1840 |
AC_CHECK_HEADER(usbhid.h, [USB_CFLAGS="-DHAVE_USBHID_H"])
|
slouken@1565
|
1841 |
AC_CHECK_HEADER(libusbhid.h, [USB_CFLAGS="-DHAVE_LIBUSBHID_H"])
|
slouken@1565
|
1842 |
USB_LIBS="$USB_LIBS -lusbhid"
|
slouken@1565
|
1843 |
else
|
slouken@1565
|
1844 |
AC_CHECK_HEADER(usb.h, [USB_CFLAGS="-DHAVE_USB_H"])
|
slouken@1565
|
1845 |
AC_CHECK_HEADER(libusb.h, [USB_CFLAGS="-DHAVE_LIBUSB_H"])
|
slouken@1565
|
1846 |
AC_CHECK_LIB(usb, hid_init, [USB_LIBS="$USB_LIBS -lusb"])
|
slouken@1565
|
1847 |
fi
|
slouken@1361
|
1848 |
|
slouken@1361
|
1849 |
save_CFLAGS="$CFLAGS"
|
slouken@1361
|
1850 |
CFLAGS="$CFLAGS $USB_CFLAGS"
|
slouken@381
|
1851 |
|
slouken@381
|
1852 |
AC_MSG_CHECKING(for usbhid)
|
slouken@381
|
1853 |
have_usbhid=no
|
slouken@381
|
1854 |
AC_TRY_COMPILE([
|
slouken@404
|
1855 |
#include <sys/types.h>
|
slouken@403
|
1856 |
#if defined(HAVE_USB_H)
|
slouken@403
|
1857 |
#include <usb.h>
|
slouken@403
|
1858 |
#endif
|
slouken@1565
|
1859 |
#ifdef __DragonFly__
|
slouken@1565
|
1860 |
# include <bus/usb/usb.h>
|
slouken@1565
|
1861 |
# include <bus/usb/usbhid.h>
|
slouken@1565
|
1862 |
#else
|
slouken@1565
|
1863 |
# include <dev/usb/usb.h>
|
slouken@1565
|
1864 |
# include <dev/usb/usbhid.h>
|
slouken@1565
|
1865 |
#endif
|
slouken@381
|
1866 |
#if defined(HAVE_USBHID_H)
|
slouken@381
|
1867 |
#include <usbhid.h>
|
slouken@381
|
1868 |
#elif defined(HAVE_LIBUSB_H)
|
slouken@381
|
1869 |
#include <libusb.h>
|
slouken@381
|
1870 |
#elif defined(HAVE_LIBUSBHID_H)
|
slouken@381
|
1871 |
#include <libusbhid.h>
|
slouken@404
|
1872 |
#endif
|
slouken@381
|
1873 |
],[
|
slouken@381
|
1874 |
struct report_desc *repdesc;
|
slouken@381
|
1875 |
struct usb_ctl_report *repbuf;
|
slouken@402
|
1876 |
hid_kind_t hidkind;
|
slouken@381
|
1877 |
],[
|
slouken@381
|
1878 |
have_usbhid=yes
|
slouken@381
|
1879 |
])
|
slouken@381
|
1880 |
AC_MSG_RESULT($have_usbhid)
|
slouken@381
|
1881 |
|
slouken@381
|
1882 |
if test x$have_usbhid = xyes; then
|
slouken@381
|
1883 |
AC_MSG_CHECKING(for ucr_data member of usb_ctl_report)
|
slouken@381
|
1884 |
have_usbhid_ucr_data=no
|
slouken@381
|
1885 |
AC_TRY_COMPILE([
|
slouken@404
|
1886 |
#include <sys/types.h>
|
slouken@404
|
1887 |
#if defined(HAVE_USB_H)
|
slouken@404
|
1888 |
#include <usb.h>
|
slouken@404
|
1889 |
#endif
|
slouken@1565
|
1890 |
#ifdef __DragonFly__
|
slouken@1565
|
1891 |
# include <bus/usb/usb.h>
|
slouken@1565
|
1892 |
# include <bus/usb/usbhid.h>
|
slouken@1565
|
1893 |
#else
|
slouken@1565
|
1894 |
# include <dev/usb/usb.h>
|
slouken@1565
|
1895 |
# include <dev/usb/usbhid.h>
|
slouken@1565
|
1896 |
#endif
|
slouken@381
|
1897 |
#if defined(HAVE_USBHID_H)
|
slouken@381
|
1898 |
#include <usbhid.h>
|
slouken@381
|
1899 |
#elif defined(HAVE_LIBUSB_H)
|
slouken@381
|
1900 |
#include <libusb.h>
|
slouken@381
|
1901 |
#elif defined(HAVE_LIBUSBHID_H)
|
slouken@381
|
1902 |
#include <libusbhid.h>
|
slouken@381
|
1903 |
#endif
|
slouken@381
|
1904 |
],[
|
slouken@381
|
1905 |
struct usb_ctl_report buf;
|
slouken@381
|
1906 |
if (buf.ucr_data) { }
|
slouken@381
|
1907 |
],[
|
slouken@381
|
1908 |
have_usbhid_ucr_data=yes
|
slouken@381
|
1909 |
])
|
slouken@381
|
1910 |
if test x$have_usbhid_ucr_data = xyes; then
|
slouken@1361
|
1911 |
USB_CFLAGS="$USB_CFLAGS -DUSBHID_UCR_DATA"
|
slouken@381
|
1912 |
fi
|
slouken@381
|
1913 |
AC_MSG_RESULT($have_usbhid_ucr_data)
|
slouken@407
|
1914 |
|
slouken@1361
|
1915 |
AC_MSG_CHECKING(for new usbhid API)
|
slouken@407
|
1916 |
have_usbhid_new=no
|
slouken@407
|
1917 |
AC_TRY_COMPILE([
|
slouken@407
|
1918 |
#include <sys/types.h>
|
slouken@407
|
1919 |
#if defined(HAVE_USB_H)
|
slouken@407
|
1920 |
#include <usb.h>
|
slouken@407
|
1921 |
#endif
|
slouken@2158
|
1922 |
#ifdef __DragonFly__
|
slouken@2158
|
1923 |
#include <bus/usb/usb.h>
|
slouken@2158
|
1924 |
#include <bus/usb/usbhid.h>
|
slouken@2158
|
1925 |
#else
|
slouken@407
|
1926 |
#include <dev/usb/usb.h>
|
slouken@407
|
1927 |
#include <dev/usb/usbhid.h>
|
slouken@2158
|
1928 |
#endif
|
slouken@407
|
1929 |
#if defined(HAVE_USBHID_H)
|
slouken@407
|
1930 |
#include <usbhid.h>
|
slouken@407
|
1931 |
#elif defined(HAVE_LIBUSB_H)
|
slouken@407
|
1932 |
#include <libusb.h>
|
slouken@407
|
1933 |
#elif defined(HAVE_LIBUSBHID_H)
|
slouken@407
|
1934 |
#include <libusbhid.h>
|
slouken@407
|
1935 |
#endif
|
slouken@407
|
1936 |
],[
|
slouken@407
|
1937 |
report_desc_t d;
|
slouken@1361
|
1938 |
hid_start_parse(d, 1, 1);
|
slouken@407
|
1939 |
],[
|
slouken@407
|
1940 |
have_usbhid_new=yes
|
slouken@407
|
1941 |
])
|
slouken@407
|
1942 |
if test x$have_usbhid_new = xyes; then
|
slouken@1361
|
1943 |
USB_CFLAGS="$USB_CFLAGS -DUSBHID_NEW"
|
slouken@407
|
1944 |
fi
|
slouken@407
|
1945 |
AC_MSG_RESULT($have_usbhid_new)
|
slouken@381
|
1946 |
|
slouken@1565
|
1947 |
AC_MSG_CHECKING(for struct joystick in machine/joystick.h)
|
slouken@1565
|
1948 |
have_machine_joystick=no
|
slouken@1565
|
1949 |
AC_TRY_COMPILE([
|
slouken@1565
|
1950 |
#include <machine/joystick.h>
|
slouken@1565
|
1951 |
],[
|
slouken@1565
|
1952 |
struct joystick t;
|
slouken@1565
|
1953 |
],[
|
slouken@1565
|
1954 |
have_machine_joystick=yes
|
slouken@1565
|
1955 |
])
|
slouken@1565
|
1956 |
if test x$have_machine_joystick = xyes; then
|
slouken@1565
|
1957 |
AC_DEFINE(SDL_JOYSTICK_USBHID_MACHINE_JOYSTICK_H)
|
slouken@1565
|
1958 |
fi
|
slouken@1565
|
1959 |
AC_MSG_RESULT($have_machine_joystick)
|
slouken@1565
|
1960 |
|
slouken@1361
|
1961 |
AC_DEFINE(SDL_JOYSTICK_USBHID)
|
slouken@1361
|
1962 |
SOURCES="$SOURCES $srcdir/src/joystick/bsd/*.c"
|
slouken@1521
|
1963 |
EXTRA_CFLAGS="$EXTRA_CFLAGS $USB_CFLAGS"
|
slouken@1521
|
1964 |
EXTRA_LDFLAGS="$EXTRA_LDFLAGS $USB_LIBS"
|
slouken@1361
|
1965 |
have_joystick=yes
|
slouken@381
|
1966 |
fi
|
slouken@1361
|
1967 |
CFLAGS="$save_CFLAGS"
|
slouken@381
|
1968 |
fi
|
slouken@381
|
1969 |
}
|
slouken@381
|
1970 |
|
slouken@1361
|
1971 |
dnl Check for clock_gettime()
|
slouken@1361
|
1972 |
CheckClockGettime()
|
slouken@795
|
1973 |
{
|
slouken@1361
|
1974 |
AC_ARG_ENABLE(clock_gettime,
|
slouken@1637
|
1975 |
AC_HELP_STRING([--enable-clock_gettime], [use clock_gettime() instead of gettimeofday() on UNIX [[default=no]]]),
|
slouken@1361
|
1976 |
, enable_clock_gettime=no)
|
slouken@1361
|
1977 |
if test x$enable_clock_gettime = xyes; then
|
slouken@1361
|
1978 |
AC_CHECK_LIB(rt, clock_gettime, have_clock_gettime=yes)
|
slouken@1361
|
1979 |
if test x$have_clock_gettime = xyes; then
|
slouken@1361
|
1980 |
AC_DEFINE(HAVE_CLOCK_GETTIME)
|
slouken@1521
|
1981 |
EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lrt"
|
icculus@1175
|
1982 |
fi
|
slouken@795
|
1983 |
fi
|
slouken@795
|
1984 |
}
|
slouken@795
|
1985 |
|
slouken@1062
|
1986 |
dnl Check for a valid linux/version.h
|
slouken@1062
|
1987 |
CheckLinuxVersion()
|
slouken@1062
|
1988 |
{
|
slouken@1062
|
1989 |
AC_CHECK_HEADER(linux/version.h, have_linux_version_h=yes)
|
slouken@1062
|
1990 |
if test x$have_linux_version_h = xyes; then
|
slouken@1521
|
1991 |
EXTRA_CFLAGS="$EXTRA_CFLAGS -DHAVE_LINUX_VERSION_H"
|
slouken@1062
|
1992 |
fi
|
slouken@1062
|
1993 |
}
|
slouken@1062
|
1994 |
|
slouken@1127
|
1995 |
dnl Check if we want to use RPATH
|
slouken@1127
|
1996 |
CheckRPATH()
|
slouken@1127
|
1997 |
{
|
slouken@1127
|
1998 |
AC_ARG_ENABLE(rpath,
|
slouken@1637
|
1999 |
AC_HELP_STRING([--enable-rpath], [use an rpath when linking SDL [[default=yes]]]),
|
slouken@1127
|
2000 |
, enable_rpath=yes)
|
slouken@1127
|
2001 |
}
|
slouken@1127
|
2002 |
|
slouken@1550
|
2003 |
dnl Set up the configuration based on the host platform!
|
slouken@1550
|
2004 |
case "$host" in
|
slouken@1361
|
2005 |
arm-*-elf*) # FIXME: Can we get more specific for iPodLinux?
|
slouken@1361
|
2006 |
ARCH=linux
|
slouken@1361
|
2007 |
CheckDummyVideo
|
slouken@1361
|
2008 |
CheckIPod
|
slouken@1361
|
2009 |
# Set up files for the timer library
|
icculus@1140
|
2010 |
if test x$enable_timers = xyes; then
|
slouken@1361
|
2011 |
AC_DEFINE(SDL_TIMER_UNIX)
|
slouken@1361
|
2012 |
SOURCES="$SOURCES $srcdir/src/timer/unix/*.c"
|
slouken@1361
|
2013 |
have_timers=yes
|
icculus@1140
|
2014 |
fi
|
slouken@1361
|
2015 |
;;
|
slouken@1820
|
2016 |
*-*-linux*|*-*-uclinux*|*-*-gnu*|*-*-k*bsd*-gnu|*-*-bsdi*|*-*-freebsd*|*-*-dragonfly*|*-*-netbsd*|*-*-openbsd*|*-*-sysv5*|*-*-solaris*|*-*-hpux*|*-*-irix*|*-*-aix*|*-*-osf*)
|
slouken@1550
|
2017 |
case "$host" in
|
slouken@1361
|
2018 |
*-*-linux*) ARCH=linux ;;
|
slouken@1820
|
2019 |
*-*-uclinux*) ARCH=linux ;;
|
slouken@1361
|
2020 |
*-*-kfreebsd*-gnu) ARCH=kfreebsd-gnu ;;
|
slouken@1361
|
2021 |
*-*-knetbsd*-gnu) ARCH=knetbsd-gnu ;;
|
slouken@1361
|
2022 |
*-*-kopenbsd*-gnu) ARCH=kopenbsd-gnu ;;
|
slouken@1361
|
2023 |
*-*-gnu*) ARCH=gnu ;; # must be last of the gnu variants
|
slouken@1361
|
2024 |
*-*-bsdi*) ARCH=bsdi ;;
|
slouken@1361
|
2025 |
*-*-freebsd*) ARCH=freebsd ;;
|
slouken@1565
|
2026 |
*-*-dragonfly*) ARCH=freebsd ;;
|
slouken@1361
|
2027 |
*-*-netbsd*) ARCH=netbsd ;;
|
slouken@1361
|
2028 |
*-*-openbsd*) ARCH=openbsd ;;
|
slouken@1361
|
2029 |
*-*-sysv5*) ARCH=sysv5 ;;
|
slouken@1361
|
2030 |
*-*-solaris*) ARCH=solaris ;;
|
slouken@1361
|
2031 |
*-*-hpux*) ARCH=hpux ;;
|
slouken@1361
|
2032 |
*-*-irix*) ARCH=irix ;;
|
slouken@1361
|
2033 |
*-*-aix*) ARCH=aix ;;
|
slouken@1361
|
2034 |
*-*-osf*) ARCH=osf ;;
|
slouken@795
|
2035 |
esac
|
icculus@1573
|
2036 |
CheckVisibilityHidden
|
slouken@1
|
2037 |
CheckDummyVideo
|
slouken@68
|
2038 |
CheckDiskAudio
|
icculus@1532
|
2039 |
CheckDummyAudio
|
slouken@371
|
2040 |
CheckDLOPEN
|
slouken@0
|
2041 |
CheckNASM
|
slouken@1361
|
2042 |
CheckAltivec
|
slouken@0
|
2043 |
CheckOSS
|
slouken@1361
|
2044 |
CheckDMEDIA
|
slouken@1438
|
2045 |
CheckMME
|
slouken@0
|
2046 |
CheckALSA
|
slouken@0
|
2047 |
CheckARTSC
|
slouken@0
|
2048 |
CheckESD
|
slouken@0
|
2049 |
CheckNAS
|
slouken@0
|
2050 |
CheckX11
|
slouken@30
|
2051 |
CheckNANOX
|
slouken@0
|
2052 |
CheckFBCON
|
slouken@167
|
2053 |
CheckDirectFB
|
slouken@70
|
2054 |
CheckPS2GS
|
slouken@0
|
2055 |
CheckSVGA
|
slouken@1361
|
2056 |
CheckVGL
|
slouken@1361
|
2057 |
CheckWscons
|
icculus@1191
|
2058 |
CheckOpenGLX11
|
slouken@0
|
2059 |
CheckInputEvents
|
icculus@1201
|
2060 |
CheckTslib
|
slouken@1361
|
2061 |
CheckUSBHID
|
slouken@0
|
2062 |
CheckPTHREAD
|
slouken@1361
|
2063 |
CheckClockGettime
|
slouken@1062
|
2064 |
CheckLinuxVersion
|
slouken@1127
|
2065 |
CheckRPATH
|
slouken@1361
|
2066 |
# Set up files for the audio library
|
slouken@1361
|
2067 |
if test x$enable_audio = xyes; then
|
slouken@1361
|
2068 |
case $ARCH in
|
slouken@1565
|
2069 |
sysv5|solaris|hpux)
|
slouken@1361
|
2070 |
AC_DEFINE(SDL_AUDIO_DRIVER_SUNAUDIO)
|
slouken@1361
|
2071 |
SOURCES="$SOURCES $srcdir/src/audio/sun/*.c"
|
slouken@1361
|
2072 |
have_audio=yes
|
slouken@1361
|
2073 |
;;
|
slouken@1565
|
2074 |
netbsd|openbsd)
|
slouken@1567
|
2075 |
AC_DEFINE(SDL_AUDIO_DRIVER_BSD)
|
slouken@1567
|
2076 |
SOURCES="$SOURCES $srcdir/src/audio/bsd/*.c"
|
slouken@1361
|
2077 |
have_audio=yes
|
slouken@1361
|
2078 |
;;
|
slouken@1361
|
2079 |
aix)
|
icculus@2049
|
2080 |
AC_DEFINE(SDL_AUDIO_DRIVER_PAUDIO)
|
slouken@1361
|
2081 |
SOURCES="$SOURCES $srcdir/src/audio/paudio/*.c"
|
slouken@1361
|
2082 |
have_audio=yes
|
slouken@1361
|
2083 |
;;
|
slouken@1361
|
2084 |
esac
|
slouken@371
|
2085 |
fi
|
slouken@0
|
2086 |
# Set up files for the joystick library
|
slouken@0
|
2087 |
if test x$enable_joystick = xyes; then
|
slouken@1361
|
2088 |
case $ARCH in
|
slouken@1361
|
2089 |
linux)
|
slouken@1361
|
2090 |
AC_DEFINE(SDL_JOYSTICK_LINUX)
|
slouken@1361
|
2091 |
SOURCES="$SOURCES $srcdir/src/joystick/linux/*.c"
|
slouken@1361
|
2092 |
have_joystick=yes
|
slouken@1361
|
2093 |
;;
|
slouken@1361
|
2094 |
esac
|
slouken@0
|
2095 |
fi
|
slouken@0
|
2096 |
# Set up files for the cdrom library
|
slouken@0
|
2097 |
if test x$enable_cdrom = xyes; then
|
slouken@1361
|
2098 |
case $ARCH in
|
slouken@1361
|
2099 |
linux|solaris)
|
slouken@1361
|
2100 |
AC_DEFINE(SDL_CDROM_LINUX)
|
slouken@1361
|
2101 |
SOURCES="$SOURCES $srcdir/src/cdrom/linux/*.c"
|
slouken@1361
|
2102 |
have_cdrom=yes
|
slouken@1361
|
2103 |
;;
|
slouken@1361
|
2104 |
*freebsd*)
|
slouken@1361
|
2105 |
AC_DEFINE(SDL_CDROM_FREEBSD)
|
slouken@1361
|
2106 |
SOURCES="$SOURCES $srcdir/src/cdrom/freebsd/*.c"
|
slouken@1361
|
2107 |
have_cdrom=yes
|
slouken@1361
|
2108 |
;;
|
slouken@1383
|
2109 |
*openbsd*|*netbsd*)
|
slouken@1361
|
2110 |
AC_DEFINE(SDL_CDROM_OPENBSD)
|
slouken@1361
|
2111 |
SOURCES="$SOURCES $srcdir/src/cdrom/openbsd/*.c"
|
slouken@1361
|
2112 |
have_cdrom=yes
|
slouken@1361
|
2113 |
;;
|
slouken@1361
|
2114 |
bsdi)
|
slouken@1361
|
2115 |
AC_DEFINE(SDL_CDROM_BSDI)
|
slouken@1361
|
2116 |
SOURCES="$SOURCES $srcdir/src/cdrom/bsdi/*.c"
|
slouken@1361
|
2117 |
have_cdrom=yes
|
slouken@1361
|
2118 |
;;
|
slouken@1361
|
2119 |
aix)
|
slouken@1361
|
2120 |
AC_DEFINE(SDL_CDROM_AIX)
|
slouken@1361
|
2121 |
SOURCES="$SOURCES $srcdir/src/cdrom/aix/*.c"
|
slouken@1361
|
2122 |
have_cdrom=yes
|
slouken@1361
|
2123 |
;;
|
slouken@1361
|
2124 |
osf)
|
slouken@1361
|
2125 |
AC_DEFINE(SDL_CDROM_OSF)
|
slouken@1361
|
2126 |
SOURCES="$SOURCES $srcdir/src/cdrom/osf/*.c"
|
slouken@1361
|
2127 |
have_cdrom=yes
|
slouken@1361
|
2128 |
;;
|
slouken@1361
|
2129 |
esac
|
slouken@0
|
2130 |
fi
|
slouken@0
|
2131 |
# Set up files for the thread library
|
slouken@1361
|
2132 |
if test x$enable_threads = xyes -a x$use_pthreads != xyes -a x$use_pth != xyes -a x$ARCH = xirix; then
|
slouken@1361
|
2133 |
AC_DEFINE(SDL_THREAD_SPROC)
|
slouken@1361
|
2134 |
SOURCES="$SOURCES $srcdir/src/thread/irix/*.c"
|
slouken@1361
|
2135 |
SOURCES="$SOURCES $srcdir/src/thread/generic/SDL_sysmutex.c"
|
slouken@1361
|
2136 |
SOURCES="$SOURCES $srcdir/src/thread/generic/SDL_syscond.c"
|
slouken@1361
|
2137 |
have_threads=yes
|
slouken@0
|
2138 |
fi
|
slouken@0
|
2139 |
# Set up files for the timer library
|
slouken@0
|
2140 |
if test x$enable_timers = xyes; then
|
slouken@1361
|
2141 |
AC_DEFINE(SDL_TIMER_UNIX)
|
slouken@1361
|
2142 |
SOURCES="$SOURCES $srcdir/src/timer/unix/*.c"
|
slouken@1361
|
2143 |
have_timers=yes
|
slouken@0
|
2144 |
fi
|
slouken@0
|
2145 |
;;
|
slouken@0
|
2146 |
*-*-qnx*)
|
slouken@0
|
2147 |
ARCH=qnx
|
slouken@1
|
2148 |
CheckDummyVideo
|
slouken@68
|
2149 |
CheckDiskAudio
|
icculus@1532
|
2150 |
CheckDummyAudio
|
slouken@886
|
2151 |
# CheckNASM
|
slouken@371
|
2152 |
CheckDLOPEN
|
slouken@0
|
2153 |
CheckNAS
|
slouken@0
|
2154 |
CheckPHOTON
|
slouken@0
|
2155 |
CheckX11
|
icculus@1191
|
2156 |
CheckOpenGLX11
|
slouken@0
|
2157 |
CheckPTHREAD
|
slouken@0
|
2158 |
# Set up files for the audio library
|
slouken@0
|
2159 |
if test x$enable_audio = xyes; then
|
slouken@1361
|
2160 |
AC_DEFINE(SDL_AUDIO_DRIVER_QNXNTO)
|
slouken@1361
|
2161 |
SOURCES="$SOURCES $srcdir/src/audio/nto/*.c"
|
slouken@1521
|
2162 |
EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lasound"
|
slouken@1361
|
2163 |
have_audio=yes
|
slouken@0
|
2164 |
fi
|
slouken@0
|
2165 |
# Set up files for the cdrom library
|
slouken@0
|
2166 |
if test x$enable_cdrom = xyes; then
|
slouken@1361
|
2167 |
AC_DEFINE(SDL_CDROM_QNX)
|
slouken@1361
|
2168 |
SOURCES="$SOURCES $srcdir/src/cdrom/qnx/*.c"
|
slouken@1361
|
2169 |
have_cdrom=yes
|
slouken@0
|
2170 |
fi
|
slouken@0
|
2171 |
# Set up files for the timer library
|
slouken@0
|
2172 |
if test x$enable_timers = xyes; then
|
slouken@1361
|
2173 |
AC_DEFINE(SDL_TIMER_UNIX)
|
slouken@1361
|
2174 |
SOURCES="$SOURCES $srcdir/src/timer/unix/*.c"
|
slouken@1361
|
2175 |
have_timers=yes
|
slouken@0
|
2176 |
fi
|
slouken@0
|
2177 |
;;
|
slouken@0
|
2178 |
*-*-cygwin* | *-*-mingw32*)
|
slouken@0
|
2179 |
ARCH=win32
|
slouken@1550
|
2180 |
if test "$build" != "$host"; then # cross-compiling
|
slouken@0
|
2181 |
# Default cross-compile location
|
slouken@2148
|
2182 |
ac_default_prefix=/usr/local/cross-tools/i386-mingw32
|
slouken@0
|
2183 |
else
|
slouken@0
|
2184 |
# Look for the location of the tools and install there
|
slouken@750
|
2185 |
if test "$BUILD_PREFIX" != ""; then
|
slouken@1
|
2186 |
ac_default_prefix=$BUILD_PREFIX
|
slouken@1
|
2187 |
fi
|
slouken@0
|
2188 |
fi
|
slouken@1
|
2189 |
CheckDummyVideo
|
slouken@68
|
2190 |
CheckDiskAudio
|
icculus@1532
|
2191 |
CheckDummyAudio
|
slouken@0
|
2192 |
CheckWIN32
|
slouken@1361
|
2193 |
CheckWIN32GL
|
slouken@0
|
2194 |
CheckDIRECTX
|
slouken@0
|
2195 |
CheckNASM
|
slouken@1895
|
2196 |
# Set up files for the video library
|
slouken@1895
|
2197 |
if test x$enable_video = xyes; then
|
slouken@1895
|
2198 |
AC_DEFINE(SDL_VIDEO_DRIVER_WIN32)
|
slouken@1895
|
2199 |
SOURCES="$SOURCES $srcdir/src/video/win32/*.c"
|
slouken@1895
|
2200 |
have_video=yes
|
slouken@1895
|
2201 |
AC_ARG_ENABLE(render-gdi,
|
slouken@1895
|
2202 |
AC_HELP_STRING([--enable-render-gdi], [enable the GDI render driver [[default=yes]]]),
|
slouken@1895
|
2203 |
, enable_render_gdi=yes)
|
slouken@1895
|
2204 |
if test x$enable_render_gdi = xyes; then
|
slouken@1895
|
2205 |
AC_DEFINE(SDL_VIDEO_RENDER_GDI)
|
slouken@1895
|
2206 |
fi
|
slouken@1895
|
2207 |
AC_ARG_ENABLE(render-d3d,
|
slouken@1895
|
2208 |
AC_HELP_STRING([--enable-render-d3d], [enable the Direct3D render driver [[default=yes]]]),
|
slouken@1895
|
2209 |
, enable_render_d3d=yes)
|
slouken@1895
|
2210 |
if test x$enable_render_d3d = xyes -a x$have_d3d = xyes; then
|
slouken@1895
|
2211 |
AC_DEFINE(SDL_VIDEO_RENDER_D3D)
|
slouken@1895
|
2212 |
fi
|
slouken@1895
|
2213 |
fi
|
slouken@0
|
2214 |
# Set up files for the audio library
|
slouken@0
|
2215 |
if test x$enable_audio = xyes; then
|
icculus@2070
|
2216 |
AC_DEFINE(SDL_AUDIO_DRIVER_WINWAVEOUT)
|
slouken@1361
|
2217 |
SOURCES="$SOURCES $srcdir/src/audio/windib/*.c"
|
slouken@1895
|
2218 |
if test x$have_dsound = xyes; then
|
slouken@1361
|
2219 |
AC_DEFINE(SDL_AUDIO_DRIVER_DSOUND)
|
slouken@1361
|
2220 |
SOURCES="$SOURCES $srcdir/src/audio/windx5/*.c"
|
slouken@0
|
2221 |
fi
|
slouken@1361
|
2222 |
have_audio=yes
|
slouken@0
|
2223 |
fi
|
slouken@0
|
2224 |
# Set up files for the joystick library
|
slouken@0
|
2225 |
if test x$enable_joystick = xyes; then
|
slouken@1895
|
2226 |
if test x$have_dinput = xyes; then
|
slouken@1895
|
2227 |
AC_DEFINE(SDL_JOYSTICK_DINPUT)
|
slouken@1895
|
2228 |
SOURCES="$SOURCES $srcdir/src/joystick/win32/SDL_dxjoystick.c"
|
slouken@1895
|
2229 |
else
|
slouken@1895
|
2230 |
AC_DEFINE(SDL_JOYSTICK_WINMM)
|
slouken@1895
|
2231 |
SOURCES="$SOURCES $srcdir/src/joystick/win32/SDL_mmjoystick.c"
|
slouken@1895
|
2232 |
fi
|
slouken@1361
|
2233 |
have_joystick=yes
|
slouken@0
|
2234 |
fi
|
slouken@0
|
2235 |
# Set up files for the cdrom library
|
slouken@0
|
2236 |
if test x$enable_cdrom = xyes; then
|
slouken@1361
|
2237 |
AC_DEFINE(SDL_CDROM_WIN32)
|
slouken@1361
|
2238 |
SOURCES="$SOURCES $srcdir/src/cdrom/win32/*.c"
|
slouken@1361
|
2239 |
have_cdrom=yes
|
slouken@0
|
2240 |
fi
|
slouken@0
|
2241 |
# Set up files for the thread library
|
slouken@0
|
2242 |
if test x$enable_threads = xyes; then
|
slouken@1361
|
2243 |
AC_DEFINE(SDL_THREAD_WIN32)
|
slouken@1361
|
2244 |
SOURCES="$SOURCES $srcdir/src/thread/win32/SDL_sysmutex.c"
|
slouken@1361
|
2245 |
SOURCES="$SOURCES $srcdir/src/thread/win32/SDL_syssem.c"
|
slouken@1361
|
2246 |
SOURCES="$SOURCES $srcdir/src/thread/win32/SDL_systhread.c"
|
slouken@1361
|
2247 |
SOURCES="$SOURCES $srcdir/src/thread/generic/SDL_syscond.c"
|
slouken@1361
|
2248 |
have_threads=yes
|
slouken@0
|
2249 |
fi
|
slouken@0
|
2250 |
# Set up files for the timer library
|
slouken@0
|
2251 |
if test x$enable_timers = xyes; then
|
slouken@1361
|
2252 |
AC_DEFINE(SDL_TIMER_WIN32)
|
slouken@1361
|
2253 |
SOURCES="$SOURCES $srcdir/src/timer/win32/*.c"
|
slouken@1361
|
2254 |
have_timers=yes
|
slouken@1361
|
2255 |
fi
|
slouken@1361
|
2256 |
# Set up files for the shared object loading library
|
slouken@1361
|
2257 |
if test x$enable_loadso = xyes; then
|
slouken@1361
|
2258 |
AC_DEFINE(SDL_LOADSO_WIN32)
|
slouken@1361
|
2259 |
SOURCES="$SOURCES $srcdir/src/loadso/win32/*.c"
|
slouken@1361
|
2260 |
have_loadso=yes
|
slouken@1361
|
2261 |
fi
|
slouken@1361
|
2262 |
# Set up the system libraries we need
|
slouken@2148
|
2263 |
EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lunicows -luser32 -lgdi32 -lmsimg32 -lwinmm"
|
slouken@0
|
2264 |
# The Win32 platform requires special setup
|
slouken@2204
|
2265 |
SOURCES="$SOURCES $srcdir/src/main/win32/*.rc"
|
slouken@1397
|
2266 |
SDLMAIN_SOURCES="$srcdir/src/main/win32/*.c"
|
slouken@0
|
2267 |
SDL_CFLAGS="$SDL_CFLAGS -Dmain=SDL_main"
|
slouken@1363
|
2268 |
SDL_LIBS="-lmingw32 -lSDLmain $SDL_LIBS -mwindows"
|
slouken@0
|
2269 |
;;
|
slouken@0
|
2270 |
*-*-beos*)
|
slouken@0
|
2271 |
ARCH=beos
|
slouken@0
|
2272 |
ac_default_prefix=/boot/develop/tools/gnupro
|
slouken@1
|
2273 |
CheckDummyVideo
|
slouken@68
|
2274 |
CheckDiskAudio
|
icculus@1532
|
2275 |
CheckDummyAudio
|
slouken@0
|
2276 |
CheckNASM
|
slouken@0
|
2277 |
CheckBWINDOW
|
slouken@0
|
2278 |
CheckBeGL
|
slouken@0
|
2279 |
# Set up files for the audio library
|
slouken@0
|
2280 |
if test x$enable_audio = xyes; then
|
icculus@2049
|
2281 |
AC_DEFINE(SDL_AUDIO_DRIVER_BEOSAUDIO)
|
slouken@1361
|
2282 |
SOURCES="$SOURCES $srcdir/src/audio/baudio/*.cc"
|
slouken@1361
|
2283 |
have_audio=yes
|
slouken@0
|
2284 |
fi
|
slouken@0
|
2285 |
# Set up files for the joystick library
|
slouken@0
|
2286 |
if test x$enable_joystick = xyes; then
|
slouken@1361
|
2287 |
AC_DEFINE(SDL_JOYSTICK_BEOS)
|
slouken@1361
|
2288 |
SOURCES="$SOURCES $srcdir/src/joystick/beos/*.cc"
|
slouken@1361
|
2289 |
have_joystick=yes
|
slouken@0
|
2290 |
fi
|
slouken@0
|
2291 |
# Set up files for the cdrom library
|
slouken@0
|
2292 |
if test x$enable_cdrom = xyes; then
|
slouken@1361
|
2293 |
AC_DEFINE(SDL_CDROM_BEOS)
|
slouken@1361
|
2294 |
SOURCES="$SOURCES $srcdir/src/cdrom/beos/*.cc"
|
slouken@1361
|
2295 |
have_cdrom=yes
|
slouken@0
|
2296 |
fi
|
slouken@0
|
2297 |
# Set up files for the thread library
|
slouken@0
|
2298 |
if test x$enable_threads = xyes; then
|
slouken@1361
|
2299 |
AC_DEFINE(SDL_THREAD_BEOS)
|
slouken@1361
|
2300 |
SOURCES="$SOURCES $srcdir/src/thread/beos/*.c"
|
slouken@1361
|
2301 |
SOURCES="$SOURCES $srcdir/src/thread/generic/SDL_sysmutex.c"
|
slouken@1361
|
2302 |
SOURCES="$SOURCES $srcdir/src/thread/generic/SDL_syscond.c"
|
slouken@1361
|
2303 |
have_threads=yes
|
slouken@0
|
2304 |
fi
|
slouken@0
|
2305 |
# Set up files for the timer library
|
slouken@0
|
2306 |
if test x$enable_timers = xyes; then
|
slouken@1361
|
2307 |
AC_DEFINE(SDL_TIMER_BEOS)
|
slouken@1361
|
2308 |
SOURCES="$SOURCES $srcdir/src/timer/beos/*.c"
|
slouken@1361
|
2309 |
have_timers=yes
|
slouken@1361
|
2310 |
fi
|
slouken@1361
|
2311 |
# Set up files for the shared object loading library
|
slouken@1361
|
2312 |
if test x$enable_loadso = xyes; then
|
slouken@1361
|
2313 |
AC_DEFINE(SDL_LOADSO_BEOS)
|
slouken@1361
|
2314 |
SOURCES="$SOURCES $srcdir/src/loadso/beos/*.c"
|
slouken@1361
|
2315 |
have_loadso=yes
|
slouken@0
|
2316 |
fi
|
slouken@1367
|
2317 |
# The BeOS platform requires special setup.
|
slouken@1367
|
2318 |
SOURCES="$srcdir/src/main/beos/*.cc $SOURCES"
|
slouken@1521
|
2319 |
EXTRA_LDFLAGS="$EXTRA_LDFLAGS -lroot -lbe -lmedia -lgame -ldevice -ltextencoding"
|
slouken@0
|
2320 |
;;
|
slouken@0
|
2321 |
*-*-darwin* )
|
icculus@1133
|
2322 |
# This could be either full "Mac OS X", or plain "Darwin" which is
|
slouken@158
|
2323 |
# just the OS X kernel sans upper layers like Carbon and Cocoa.
|
icculus@1133
|
2324 |
# Next line is broken, and a few files below require Mac OS X (full)
|
slouken@158
|
2325 |
ARCH=macosx
|
slouken@1624
|
2326 |
|
slouken@1628
|
2327 |
# Mac OS X builds with both the Carbon and OSX APIs at the moment
|
slouken@1638
|
2328 |
EXTRA_CFLAGS="$EXTRA_CFLAGS -DTARGET_API_MAC_CARBON"
|
slouken@1638
|
2329 |
EXTRA_CFLAGS="$EXTRA_CFLAGS -DTARGET_API_MAC_OSX"
|
slouken@1628
|
2330 |
|
slouken@1628
|
2331 |
# HACK: Reset EXTRA_LDFLAGS; the only thing it contains at this point
|
slouken@1628
|
2332 |
# is -lm which is not needed under Mac OS X. But for some reasons it
|
slouken@1628
|
2333 |
# also tends to contain spurious -L switches, which we don't want to
|
slouken@1628
|
2334 |
# use here or in sdl-config. Hence we reset it.
|
slouken@1624
|
2335 |
EXTRA_LDFLAGS=""
|
slouken@1624
|
2336 |
|
slouken@1742
|
2337 |
CheckVisibilityHidden
|
slouken@1
|
2338 |
CheckDummyVideo
|
slouken@68
|
2339 |
CheckDiskAudio
|
icculus@1532
|
2340 |
CheckDummyAudio
|
slouken@1638
|
2341 |
CheckDLOPEN
|
slouken@2139
|
2342 |
CheckNASM
|
slouken@1889
|
2343 |
|
slouken@1648
|
2344 |
# Set up files for the shared object loading library
|
slouken@1648
|
2345 |
# (this needs to be done before the dynamic X11 check)
|
slouken@1648
|
2346 |
if test x$enable_loadso = xyes -a x$have_dlopen != xyes; then
|
slouken@1648
|
2347 |
AC_DEFINE(SDL_LOADSO_DLCOMPAT)
|
slouken@1648
|
2348 |
SOURCES="$SOURCES $srcdir/src/loadso/macosx/*.c"
|
slouken@1648
|
2349 |
have_loadso=yes
|
slouken@1648
|
2350 |
fi
|
slouken@1648
|
2351 |
|
icculus@1133
|
2352 |
CheckCOCOA
|
icculus@1174
|
2353 |
CheckX11
|
slouken@0
|
2354 |
CheckMacGL
|
icculus@1191
|
2355 |
CheckOpenGLX11
|
slouken@0
|
2356 |
CheckPTHREAD
|
icculus@1047
|
2357 |
CheckAltivec
|
icculus@1445
|
2358 |
|
icculus@1445
|
2359 |
# Need this or things might misbuild on a G3.
|
slouken@1521
|
2360 |
EXTRA_CFLAGS="$EXTRA_CFLAGS -force_cpusubtype_ALL"
|
icculus@1445
|
2361 |
|
slouken@0
|
2362 |
# Set up files for the audio library
|
slouken@0
|
2363 |
if test x$enable_audio = xyes; then
|
slouken@1361
|
2364 |
AC_DEFINE(SDL_AUDIO_DRIVER_COREAUDIO)
|
slouken@1361
|
2365 |
SOURCES="$SOURCES $srcdir/src/audio/macosx/*.c"
|
slouken@1361
|
2366 |
AC_DEFINE(SDL_AUDIO_DRIVER_SNDMGR)
|
slouken@1361
|
2367 |
SOURCES="$SOURCES $srcdir/src/audio/macrom/*.c"
|
slouken@1361
|
2368 |
have_audio=yes
|
slouken@0
|
2369 |
fi
|
slouken@0
|
2370 |
# Set up files for the joystick library
|
slouken@0
|
2371 |
if test x$enable_joystick = xyes; then
|
slouken@1361
|
2372 |
AC_DEFINE(SDL_JOYSTICK_IOKIT)
|
slouken@1361
|
2373 |
SOURCES="$SOURCES $srcdir/src/joystick/darwin/*.c"
|
slouken@1361
|
2374 |
have_joystick=yes
|
slouken@0
|
2375 |
fi
|
slouken@0
|
2376 |
# Set up files for the cdrom library
|
slouken@0
|
2377 |
if test x$enable_cdrom = xyes; then
|
slouken@1361
|
2378 |
AC_DEFINE(SDL_CDROM_MACOSX)
|
slouken@1361
|
2379 |
SOURCES="$SOURCES $srcdir/src/cdrom/macosx/*.c"
|
slouken@1361
|
2380 |
have_cdrom=yes
|
slouken@0
|
2381 |
fi
|
slouken@0
|
2382 |
# Set up files for the timer library
|
slouken@0
|
2383 |
if test x$enable_timers = xyes; then
|
slouken@1361
|
2384 |
AC_DEFINE(SDL_TIMER_UNIX)
|
slouken@1361
|
2385 |
SOURCES="$SOURCES $srcdir/src/timer/unix/*.c"
|
slouken@1361
|
2386 |
have_timers=yes
|
slouken@1361
|
2387 |
fi
|
slouken@1621
|
2388 |
# The Mac OS X platform requires special setup.
|
slouken@1521
|
2389 |
EXTRA_CFLAGS="$EXTRA_CFLAGS -fpascal-strings"
|
slouken@1910
|
2390 |
EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,Cocoa"
|
slouken@1910
|
2391 |
EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,Carbon"
|
icculus@2104
|
2392 |
EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,IOKit"
|
slouken@1361
|
2393 |
# If either the audio or CD driver is used, add the AudioUnit framework
|
slouken@1361
|
2394 |
if test x$enable_audio = xyes -o x$enable_cdrom = xyes; then
|
icculus@2049
|
2395 |
EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,CoreAudio -framework,AudioToolbox -Wl,-framework,AudioUnit"
|
slouken@1361
|
2396 |
fi
|
slouken@0
|
2397 |
;;
|
slouken@281
|
2398 |
*-*-mint*)
|
slouken@281
|
2399 |
ARCH=mint
|
slouken@281
|
2400 |
CheckDummyVideo
|
slouken@281
|
2401 |
CheckDiskAudio
|
icculus@1532
|
2402 |
CheckDummyAudio
|
slouken@281
|
2403 |
CheckAtariBiosEvent
|
slouken@281
|
2404 |
CheckAtariXbiosVideo
|
slouken@281
|
2405 |
CheckAtariGemVideo
|
slouken@398
|
2406 |
CheckAtariAudio
|
patmandin@651
|
2407 |
CheckAtariLdg
|
slouken@1361
|
2408 |
CheckAtariOSMesa
|
slouken@281
|
2409 |
CheckPTH
|
slouken@281
|
2410 |
# Set up files for the audio library
|
slouken@398
|
2411 |
if test x$enable_threads = xyes -a x$enable_pth = xyes; then
|
slouken@398
|
2412 |
if test x$enable_audio = xyes; then
|
slouken@1361
|
2413 |
AC_DEFINE(SDL_AUDIO_DRIVER_SUNAUDIO)
|
slouken@1361
|
2414 |
SOURCES="$SOURCES $srcdir/src/audio/sun/*.c"
|
slouken@1361
|
2415 |
have_audio=yes
|
slouken@398
|
2416 |
fi
|
slouken@281
|
2417 |
fi
|
slouken@281
|
2418 |
# Set up files for the joystick library
|
slouken@281
|
2419 |
if test x$enable_joystick = xyes; then
|
slouken@1361
|
2420 |
AC_DEFINE(SDL_JOYSTICK_MINT)
|
slouken@1361
|
2421 |
SOURCES="$SOURCES $srcdir/src/joystick/mint/*.c"
|
slouken@1361
|
2422 |
have_joystick=yes
|
slouken@281
|
2423 |
fi
|
slouken@281
|
2424 |
# Set up files for the cdrom library
|
slouken@281
|
2425 |
if test x$enable_cdrom = xyes; then
|
slouken@1361
|
2426 |
AC_DEFINE(SDL_CDROM_MINT)
|
slouken@1361
|
2427 |
SOURCES="$SOURCES $srcdir/src/cdrom/mint/*.c"
|
slouken@1361
|
2428 |
have_cdrom=yes
|
slouken@281
|
2429 |
fi
|
slouken@281
|
2430 |
# Set up files for the timer library
|
slouken@281
|
2431 |
if test x$enable_timers = xyes; then
|
slouken@557
|
2432 |
if test x$enable_threads = xyes -a x$enable_pth = xyes; then
|
slouken@1361
|
2433 |
AC_DEFINE(SDL_TIMER_UNIX)
|
slouken@1361
|
2434 |
SOURCES="$SOURCES $srcdir/src/timer/unix/*.c"
|
slouken@557
|
2435 |
else
|
slouken@1361
|
2436 |
AC_DEFINE(SDL_TIMER_MINT)
|
slouken@1361
|
2437 |
SOURCES="$SOURCES $srcdir/src/timer/mint/*.c"
|
patmandin@1477
|
2438 |
SOURCES="$SOURCES $srcdir/src/timer/mint/*.S"
|
slouken@557
|
2439 |
fi
|
slouken@1361
|
2440 |
have_timers=yes
|
slouken@281
|
2441 |
fi
|
slouken@281
|
2442 |
;;
|
slouken@1035
|
2443 |
*-riscos)
|
slouken@687
|
2444 |
ARCH=riscos
|
slouken@1361
|
2445 |
CheckOSS
|
slouken@1361
|
2446 |
CheckPTHREAD
|
slouken@955
|
2447 |
# Set up files for the video library
|
slouken@955
|
2448 |
if test x$enable_video = xyes; then
|
slouken@1361
|
2449 |
AC_DEFINE(SDL_VIDEO_DRIVER_RISCOS)
|
slouken@1361
|
2450 |
SOURCES="$SOURCES $srcdir/src/video/riscos/*.c"
|
slouken@1459
|
2451 |
SOURCES="$SOURCES $srcdir/src/video/riscos/*.S"
|
slouken@1361
|
2452 |
have_video=yes
|
slouken@955
|
2453 |
fi
|
slouken@955
|
2454 |
# Set up files for the joystick library
|
slouken@955
|
2455 |
if test x$enable_joystick = xyes; then
|
slouken@1361
|
2456 |
AC_DEFINE(SDL_JOYSTICK_RISCOS)
|
slouken@1361
|
2457 |
SOURCES="$SOURCES $srcdir/src/joystick/riscos/*.c"
|
slouken@1361
|
2458 |
have_joystick=yes
|
slouken@955
|
2459 |
fi
|
slouken@955
|
2460 |
# Set up files for the timer library
|
slouken@955
|
2461 |
if test x$enable_timers = xyes; then
|
slouken@1361
|
2462 |
AC_DEFINE(SDL_TIMER_RISCOS)
|
slouken@1361
|
2463 |
SOURCES="$SOURCES $srcdir/src/timer/riscos/*.c"
|
slouken@1361
|
2464 |
have_timers=yes
|
slouken@955
|
2465 |
fi
|
slouken@1361
|
2466 |
# The RISC OS platform requires special setup.
|
slouken@1521
|
2467 |
EXTRA_LDFLAGS="$EXTRA_LDFLAGS -ljpeg -ltiff -lpng -lz"
|
slouken@687
|
2468 |
;;
|
slouken@0
|
2469 |
*)
|
slouken@1361
|
2470 |
AC_MSG_ERROR([
|
slouken@1550
|
2471 |
*** Unsupported host: Please add to configure.in
|
slouken@1361
|
2472 |
])
|
slouken@0
|
2473 |
;;
|
slouken@0
|
2474 |
esac
|
slouken@0
|
2475 |
|
slouken@1361
|
2476 |
# Verify that we have all the platform specific files we need
|
icculus@2066
|
2477 |
|
icculus@2066
|
2478 |
if test x$enable_joystick = xyes; then
|
icculus@2066
|
2479 |
if test x$have_joystick != xyes; then
|
icculus@2066
|
2480 |
# Wants joystick subsystem, but doesn't have a platform-specific backend...
|
slouken@1361
|
2481 |
SOURCES="$SOURCES $srcdir/src/joystick/dummy/*.c"
|
icculus@2066
|
2482 |
fi
|
slouken@1361
|
2483 |
fi
|
slouken@1361
|
2484 |
if test x$have_cdrom != xyes; then
|
slouken@1361
|
2485 |
if test x$enable_cdrom = xyes; then
|
slouken@1361
|
2486 |
AC_DEFINE(SDL_CDROM_DISABLED)
|
slouken@1361
|
2487 |
fi
|
slouken@1361
|
2488 |
SOURCES="$SOURCES $srcdir/src/cdrom/dummy/*.c"
|
slouken@1361
|
2489 |
fi
|
slouken@1361
|
2490 |
if test x$have_threads != xyes; then
|
slouken@1361
|
2491 |
if test x$enable_threads = xyes; then
|
slouken@1361
|
2492 |
AC_DEFINE(SDL_THREADS_DISABLED)
|
slouken@1361
|
2493 |
fi
|
slouken@1361
|
2494 |
SOURCES="$SOURCES $srcdir/src/thread/generic/*.c"
|
slouken@1361
|
2495 |
fi
|
slouken@1361
|
2496 |
if test x$have_timers != xyes; then
|
slouken@1361
|
2497 |
if test x$enable_timers = xyes; then
|
slouken@1361
|
2498 |
AC_DEFINE(SDL_TIMERS_DISABLED)
|
slouken@1361
|
2499 |
fi
|
slouken@1361
|
2500 |
SOURCES="$SOURCES $srcdir/src/timer/dummy/*.c"
|
slouken@1361
|
2501 |
fi
|
slouken@1361
|
2502 |
if test x$have_loadso != xyes; then
|
slouken@1361
|
2503 |
if test x$enable_loadso = xyes; then
|
slouken@1361
|
2504 |
AC_DEFINE(SDL_LOADSO_DISABLED)
|
slouken@1361
|
2505 |
fi
|
slouken@1361
|
2506 |
SOURCES="$SOURCES $srcdir/src/loadso/dummy/*.c"
|
slouken@1361
|
2507 |
fi
|
slouken@1397
|
2508 |
if test x$SDLMAIN_SOURCES = x; then
|
slouken@1397
|
2509 |
SDLMAIN_SOURCES="$srcdir/src/main/dummy/*.c"
|
slouken@1397
|
2510 |
fi
|
slouken@0
|
2511 |
|
slouken@1361
|
2512 |
OBJECTS=`echo $SOURCES | sed 's,[[^ ]]*/\([[^ ]]*\)\.asm,$(objects)/\1.lo,g'`
|
slouken@1361
|
2513 |
OBJECTS=`echo $OBJECTS | sed 's,[[^ ]]*/\([[^ ]]*\)\.cc,$(objects)/\1.lo,g'`
|
slouken@1361
|
2514 |
OBJECTS=`echo $OBJECTS | sed 's,[[^ ]]*/\([[^ ]]*\)\.m,$(objects)/\1.lo,g'`
|
slouken@1361
|
2515 |
OBJECTS=`echo $OBJECTS | sed 's,[[^ ]]*/\([[^ ]]*\)\.c,$(objects)/\1.lo,g'`
|
slouken@1459
|
2516 |
OBJECTS=`echo $OBJECTS | sed 's,[[^ ]]*/\([[^ ]]*\)\.S,$(objects)/\1.lo,g'`
|
slouken@2204
|
2517 |
OBJECTS=`echo $OBJECTS | sed 's,[[^ ]]*/\([[^ ]]*\)\.rc,$(objects)/\1.o,g'`
|
slouken@0
|
2518 |
|
slouken@1397
|
2519 |
SDLMAIN_OBJECTS=`echo $SDLMAIN_SOURCES | sed 's,[[^ ]]*/\([[^ ]]*\)\.cc,$(objects)/\1.o,g'`
|
slouken@1397
|
2520 |
SDLMAIN_OBJECTS=`echo $SDLMAIN_OBJECTS | sed 's,[[^ ]]*/\([[^ ]]*\)\.c,$(objects)/\1.o,g'`
|
slouken@1397
|
2521 |
|
slouken@0
|
2522 |
# Set runtime shared library paths as needed
|
slouken@0
|
2523 |
|
slouken@1127
|
2524 |
if test "x$enable_rpath" = "xyes"; then
|
slouken@1565
|
2525 |
if test $ARCH = bsdi -o $ARCH = freebsd -o $ARCH = irix -o $ARCH = linux -o $ARCH = netbsd; then
|
slouken@2040
|
2526 |
SDL_RLD_FLAGS="-Wl,-rpath,\${libdir}"
|
slouken@1127
|
2527 |
fi
|
slouken@1127
|
2528 |
if test $ARCH = solaris; then
|
slouken@2040
|
2529 |
SDL_RLD_FLAGS="-R\${libdir}"
|
slouken@1127
|
2530 |
fi
|
slouken@1127
|
2531 |
else
|
slouken@1127
|
2532 |
SDL_RLD_FLAGS=""
|
slouken@0
|
2533 |
fi
|
slouken@387
|
2534 |
|
slouken@387
|
2535 |
case "$ARCH" in
|
slouken@387
|
2536 |
macosx)
|
slouken@807
|
2537 |
# Evil hack to allow static linking on Mac OS X
|
slouken@2040
|
2538 |
SDL_STATIC_LIBS="\${libdir}/libSDL.a $EXTRA_LDFLAGS"
|
slouken@807
|
2539 |
;;
|
slouken@807
|
2540 |
*)
|
slouken@807
|
2541 |
SDL_STATIC_LIBS="$SDL_LIBS"
|
slouken@807
|
2542 |
;;
|
slouken@807
|
2543 |
esac
|
slouken@807
|
2544 |
|
slouken@0
|
2545 |
dnl Expand the cflags and libraries needed by apps using SDL
|
slouken@0
|
2546 |
AC_SUBST(SDL_CFLAGS)
|
slouken@0
|
2547 |
AC_SUBST(SDL_LIBS)
|
slouken@807
|
2548 |
AC_SUBST(SDL_STATIC_LIBS)
|
slouken@0
|
2549 |
AC_SUBST(SDL_RLD_FLAGS)
|
slouken@1361
|
2550 |
if test x$enable_shared = xyes; then
|
slouken@1361
|
2551 |
ENABLE_SHARED_TRUE=
|
slouken@1361
|
2552 |
ENABLE_SHARED_FALSE="#"
|
slouken@1361
|
2553 |
else
|
slouken@1361
|
2554 |
ENABLE_SHARED_TRUE="#"
|
slouken@1361
|
2555 |
ENABLE_SHARED_FALSE=
|
slouken@1361
|
2556 |
fi
|
slouken@1361
|
2557 |
if test x$enable_static = xyes; then
|
slouken@1361
|
2558 |
ENABLE_STATIC_TRUE=
|
slouken@1361
|
2559 |
ENABLE_STATIC_FALSE="#"
|
slouken@1361
|
2560 |
else
|
slouken@1361
|
2561 |
ENABLE_STATIC_TRUE="#"
|
slouken@1361
|
2562 |
ENABLE_STATIC_FALSE=
|
slouken@1361
|
2563 |
fi
|
slouken@1361
|
2564 |
AC_SUBST(ENABLE_SHARED_TRUE)
|
slouken@1361
|
2565 |
AC_SUBST(ENABLE_SHARED_FALSE)
|
slouken@1361
|
2566 |
AC_SUBST(ENABLE_STATIC_TRUE)
|
slouken@1361
|
2567 |
AC_SUBST(ENABLE_STATIC_FALSE)
|
slouken@0
|
2568 |
|
slouken@1361
|
2569 |
dnl Expand the sources and objects needed to build the library
|
slouken@1361
|
2570 |
AC_SUBST(ac_aux_dir)
|
slouken@1361
|
2571 |
AC_SUBST(INCLUDE)
|
slouken@1361
|
2572 |
AC_SUBST(SOURCES)
|
slouken@1361
|
2573 |
AC_SUBST(OBJECTS)
|
slouken@1397
|
2574 |
AC_SUBST(SDLMAIN_SOURCES)
|
slouken@1397
|
2575 |
AC_SUBST(SDLMAIN_OBJECTS)
|
slouken@1361
|
2576 |
AC_SUBST(BUILD_CFLAGS)
|
slouken@1521
|
2577 |
AC_SUBST(EXTRA_CFLAGS)
|
slouken@1393
|
2578 |
AC_SUBST(BUILD_LDFLAGS)
|
slouken@1521
|
2579 |
AC_SUBST(EXTRA_LDFLAGS)
|
slouken@2204
|
2580 |
AC_SUBST(WINDRES)
|
slouken@158
|
2581 |
|
slouken@0
|
2582 |
AC_OUTPUT([
|
slouken@1865
|
2583 |
Makefile sdl-config SDL.spec SDL.qpg sdl.pc
|
slouken@1361
|
2584 |
], [
|
slouken@1361
|
2585 |
: >build-deps
|
slouken@1640
|
2586 |
if test x"$MAKE" = x; then MAKE=make; fi; $MAKE depend
|
slouken@1361
|
2587 |
])
|