author | Sam Lantinga <slouken@lokigames.com> |
Sat, 16 Jun 2001 06:35:36 +0000 | |
changeset 72 | 4210b3e74800 |
parent 70 | f590dd383b5d |
child 75 | b0ae59d0f3ee |
permissions | -rw-r--r-- |
0 | 1 |
dnl Process this file with autoconf to produce a configure script. |
2 |
AC_INIT(README) |
|
3 |
||
4 |
dnl Set various version strings - taken gratefully from the GTk sources |
|
5 |
# |
|
6 |
# Making releases: |
|
7 |
# Edit include/SDL/SDL_version.h and change the version, then: |
|
8 |
# SDL_MICRO_VERSION += 1; |
|
9 |
# SDL_INTERFACE_AGE += 1; |
|
10 |
# SDL_BINARY_AGE += 1; |
|
11 |
# if any functions have been added, set SDL_INTERFACE_AGE to 0. |
|
12 |
# if backwards compatibility has been broken, |
|
13 |
# set SDL_BINARY_AGE and SDL_INTERFACE_AGE to 0. |
|
14 |
# |
|
15 |
SDL_MAJOR_VERSION=1 |
|
16 |
SDL_MINOR_VERSION=2 |
|
1
cf2af46e9e2a
Changes since SDL 1.2.0 release
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
17 |
SDL_MICRO_VERSION=1 |
cf2af46e9e2a
Changes since SDL 1.2.0 release
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
18 |
SDL_INTERFACE_AGE=1 |
cf2af46e9e2a
Changes since SDL 1.2.0 release
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
19 |
SDL_BINARY_AGE=1 |
0 | 20 |
SDL_VERSION=$SDL_MAJOR_VERSION.$SDL_MINOR_VERSION.$SDL_MICRO_VERSION |
21 |
||
22 |
AC_SUBST(SDL_MAJOR_VERSION) |
|
23 |
AC_SUBST(SDL_MINOR_VERSION) |
|
24 |
AC_SUBST(SDL_MICRO_VERSION) |
|
25 |
AC_SUBST(SDL_INTERFACE_AGE) |
|
26 |
AC_SUBST(SDL_BINARY_AGE) |
|
27 |
AC_SUBST(SDL_VERSION) |
|
28 |
||
29 |
# libtool versioning |
|
30 |
LT_RELEASE=$SDL_MAJOR_VERSION.$SDL_MINOR_VERSION |
|
31 |
LT_CURRENT=`expr $SDL_MICRO_VERSION - $SDL_INTERFACE_AGE` |
|
32 |
LT_REVISION=$SDL_INTERFACE_AGE |
|
33 |
LT_AGE=`expr $SDL_BINARY_AGE - $SDL_INTERFACE_AGE` |
|
34 |
||
35 |
AC_SUBST(LT_RELEASE) |
|
36 |
AC_SUBST(LT_CURRENT) |
|
37 |
AC_SUBST(LT_REVISION) |
|
38 |
AC_SUBST(LT_AGE) |
|
39 |
||
40 |
dnl Detect the canonical host and target build environment |
|
41 |
AC_CANONICAL_HOST |
|
42 |
AC_CANONICAL_TARGET |
|
43 |
||
51
fba28d77901f
Disabled /dev/event joystick interface by default
Sam Lantinga <slouken@lokigames.com>
parents:
47
diff
changeset
|
44 |
dnl Setup for automake |
fba28d77901f
Disabled /dev/event joystick interface by default
Sam Lantinga <slouken@lokigames.com>
parents:
47
diff
changeset
|
45 |
AM_INIT_AUTOMAKE(SDL, $SDL_VERSION) |
fba28d77901f
Disabled /dev/event joystick interface by default
Sam Lantinga <slouken@lokigames.com>
parents:
47
diff
changeset
|
46 |
|
0 | 47 |
dnl Check for tools |
48 |
||
49 |
AC_LIBTOOL_WIN32_DLL |
|
50 |
AM_PROG_LIBTOOL |
|
51 |
AC_PROG_MAKE_SET |
|
52 |
AC_PROG_CC |
|
53 |
AC_C_INLINE |
|
54 |
AC_C_CONST |
|
55 |
case "$target" in |
|
56 |
*-*-beos*) |
|
57 |
AC_PROG_CXX |
|
58 |
;; |
|
59 |
*-*-aix*) |
|
60 |
AC_PROG_CXX |
|
61 |
;; |
|
62 |
# This is stupid, but necessary on some versions of Linux (joysticks) |
|
63 |
*-*-linux*) |
|
64 |
AC_PROG_CXX |
|
65 |
;; |
|
47
45b1c4303f87
Added initial support for Quartz video (thanks Darrell!)
Sam Lantinga <slouken@lokigames.com>
parents:
43
diff
changeset
|
66 |
*-*-darwin*) |
45b1c4303f87
Added initial support for Quartz video (thanks Darrell!)
Sam Lantinga <slouken@lokigames.com>
parents:
43
diff
changeset
|
67 |
OBJC="???" |
45b1c4303f87
Added initial support for Quartz video (thanks Darrell!)
Sam Lantinga <slouken@lokigames.com>
parents:
43
diff
changeset
|
68 |
AC_SUBST(OBJC) |
45b1c4303f87
Added initial support for Quartz video (thanks Darrell!)
Sam Lantinga <slouken@lokigames.com>
parents:
43
diff
changeset
|
69 |
;; |
0 | 70 |
esac |
71 |
AC_PROG_INSTALL |
|
72 |
AC_FUNC_ALLOCA |
|
73 |
||
74 |
dnl The alpha architecture needs special flags for binary portability |
|
75 |
case "$target" in |
|
76 |
alpha*-*-linux*) |
|
77 |
if test x$ac_cv_prog_gcc = xyes; then |
|
78 |
CFLAGS="$CFLAGS -mcpu=ev4 -Wa,-mall" |
|
79 |
fi |
|
80 |
;; |
|
81 |
esac |
|
82 |
||
83 |
dnl Add compiler-specific optimization flags |
|
84 |
||
85 |
dnl See if the user wants aggressive optimizations of the code |
|
86 |
AC_ARG_ENABLE(debug, |
|
87 |
[ --enable-debug Disable aggressive optimizations [default=yes]], |
|
88 |
, enable_debug=yes) |
|
89 |
if test x$enable_debug != xyes; then |
|
90 |
if test x$ac_cv_prog_gcc = xyes; then |
|
91 |
CFLAGS="$CFLAGS -fexpensive-optimizations" |
|
92 |
# Ack! This breaks the MMX YV12 conversion on gcc 2.95.2 |
|
93 |
# CFLAGS="$CFLAGS -fomit-frame-pointer" |
|
94 |
fi |
|
95 |
case "$target" in |
|
96 |
i486-*-*) |
|
97 |
if test x$ac_cv_prog_gcc = xyes; then |
|
98 |
CFLAGS="$CFLAGS -march=486" |
|
99 |
fi |
|
100 |
;; |
|
101 |
i?86-*-*) |
|
102 |
if test x$ac_cv_prog_gcc = xyes; then |
|
103 |
CFLAGS="$CFLAGS -march=pentium -mcpu=pentiumpro" |
|
104 |
fi |
|
105 |
;; |
|
106 |
*-*-osf*) |
|
107 |
if test x$ac_cv_prog_gcc != xyes; then |
|
108 |
CFLAGS="-g3 -fast -arch host" |
|
109 |
fi |
|
110 |
;; |
|
111 |
esac |
|
112 |
fi |
|
113 |
||
114 |
dnl Add verbose warnings by default, and allow ANSI compliance checking |
|
115 |
AC_ARG_ENABLE(strict-ansi, |
|
116 |
[ --enable-strict-ansi Enable strict ANSI compliance build [default=no]], |
|
117 |
, enable_strict_ansi=no) |
|
118 |
if test x$ac_cv_prog_gcc = xyes; then |
|
119 |
CFLAGS="$CFLAGS -Wall" |
|
120 |
if test x$enable_strict_ansi = xyes; then |
|
121 |
CFLAGS="$CFLAGS -ansi -pedantic -D_XOPEN_SOURCE" |
|
122 |
fi |
|
123 |
fi |
|
124 |
||
125 |
dnl Initialize the compiler and linker flags for SDL applications |
|
126 |
||
127 |
SDL_CFLAGS="" |
|
128 |
SDL_LIBS="-lSDL" |
|
129 |
||
130 |
dnl Add the math library for the new gamma correction support |
|
131 |
||
132 |
case "$target" in |
|
133 |
*-*-cygwin* | *-*-mingw32*) |
|
134 |
MATHLIB="" |
|
135 |
;; |
|
136 |
*-*-beos*) |
|
137 |
MATHLIB="" |
|
138 |
;; |
|
139 |
*-*-darwin*) |
|
140 |
MATHLIB="" |
|
141 |
;; |
|
142 |
*) |
|
143 |
MATHLIB="-lm" |
|
144 |
;; |
|
145 |
esac |
|
146 |
SYSTEM_LIBS="$SYSTEM_LIBS $MATHLIB" |
|
147 |
||
148 |
dnl Enable/disable various subsystems of the SDL library |
|
149 |
||
150 |
AC_ARG_ENABLE(audio, |
|
151 |
[ --enable-audio Enable the audio subsystem [default=yes]], |
|
152 |
, enable_audio=yes) |
|
153 |
if test x$enable_audio = xyes; then |
|
154 |
SDL_EXTRADIRS="$SDL_EXTRADIRS audio" |
|
155 |
SDL_EXTRALIBS="$SDL_EXTRALIBS audio/libaudio.la" |
|
156 |
else |
|
157 |
CFLAGS="$CFLAGS -DDISABLE_AUDIO" |
|
158 |
fi |
|
159 |
AC_ARG_ENABLE(video, |
|
160 |
[ --enable-video Enable the video subsystem [default=yes]], |
|
161 |
, enable_video=yes) |
|
162 |
if test x$enable_video = xyes; then |
|
163 |
SDL_EXTRADIRS="$SDL_EXTRADIRS video" |
|
164 |
SDL_EXTRALIBS="$SDL_EXTRALIBS video/libvideo.la" |
|
165 |
else |
|
166 |
CFLAGS="$CFLAGS -DDISABLE_VIDEO" |
|
167 |
fi |
|
168 |
AC_ARG_ENABLE(events, |
|
169 |
[ --enable-events Enable the events subsystem [default=yes]], |
|
170 |
, enable_events=yes) |
|
171 |
if test x$enable_video = xyes -a x$enable_events = xyes; then |
|
172 |
SDL_EXTRADIRS="$SDL_EXTRADIRS events" |
|
173 |
SDL_EXTRALIBS="$SDL_EXTRALIBS events/libevents.la" |
|
174 |
else |
|
175 |
CFLAGS="$CFLAGS -DDISABLE_EVENTS" |
|
176 |
fi |
|
177 |
AC_ARG_ENABLE(joystick, |
|
178 |
[ --enable-joystick Enable the joystick subsystem [default=yes]], |
|
179 |
, enable_joystick=yes) |
|
180 |
if test x$enable_joystick = xyes; then |
|
181 |
SDL_EXTRADIRS="$SDL_EXTRADIRS joystick" |
|
182 |
SDL_EXTRALIBS="$SDL_EXTRALIBS joystick/libjoystick.la" |
|
183 |
else |
|
184 |
CFLAGS="$CFLAGS -DDISABLE_JOYSTICK" |
|
185 |
fi |
|
186 |
AC_ARG_ENABLE(cdrom, |
|
187 |
[ --enable-cdrom Enable the cdrom subsystem [default=yes]], |
|
188 |
, enable_cdrom=yes) |
|
189 |
if test x$enable_cdrom = xyes; then |
|
190 |
SDL_EXTRADIRS="$SDL_EXTRADIRS cdrom" |
|
191 |
SDL_EXTRALIBS="$SDL_EXTRALIBS cdrom/libcdrom.la" |
|
192 |
else |
|
193 |
CFLAGS="$CFLAGS -DDISABLE_CDROM" |
|
194 |
fi |
|
195 |
AC_ARG_ENABLE(threads, |
|
196 |
[ --enable-threads Enable the threading subsystem [default=yes]], |
|
197 |
, enable_threads=yes) |
|
198 |
SDL_EXTRADIRS="$SDL_EXTRADIRS thread" |
|
199 |
SDL_EXTRALIBS="$SDL_EXTRALIBS thread/libthread.la" |
|
200 |
if test x$enable_threads != xyes; then |
|
201 |
CFLAGS="$CFLAGS -DDISABLE_THREADS" |
|
202 |
COPY_ARCH_SRC(src/thread, generic, SDL_systhread.c) |
|
203 |
COPY_ARCH_SRC(src/thread, generic, SDL_systhread_c.h) |
|
204 |
COPY_ARCH_SRC(src/thread, generic, SDL_sysmutex.c) |
|
205 |
COPY_ARCH_SRC(src/thread, generic, SDL_sysmutex_c.h) |
|
206 |
COPY_ARCH_SRC(src/thread, generic, SDL_syssem.c) |
|
207 |
COPY_ARCH_SRC(src/thread, generic, SDL_syssem_c.h) |
|
208 |
COPY_ARCH_SRC(src/thread, generic, SDL_syscond.c) |
|
209 |
COPY_ARCH_SRC(src/thread, generic, SDL_syscond_c.h) |
|
210 |
fi |
|
211 |
AC_ARG_ENABLE(timers, |
|
212 |
[ --enable-timers Enable the timer subsystem [default=yes]], |
|
213 |
, enable_timers=yes) |
|
214 |
if test x$enable_timers = xyes; then |
|
215 |
SDL_EXTRADIRS="$SDL_EXTRADIRS timer" |
|
216 |
SDL_EXTRALIBS="$SDL_EXTRALIBS timer/libtimer.la" |
|
217 |
else |
|
218 |
CFLAGS="$CFLAGS -DDISABLE_TIMERS" |
|
219 |
fi |
|
220 |
AC_ARG_ENABLE(endian, |
|
221 |
[ --enable-endian Enable the endian subsystem [default=yes]], |
|
222 |
, enable_endian=yes) |
|
223 |
if test x$enable_endian = xyes; then |
|
224 |
SDL_EXTRADIRS="$SDL_EXTRADIRS endian" |
|
225 |
SDL_EXTRALIBS="$SDL_EXTRALIBS endian/libendian.la" |
|
226 |
else |
|
227 |
CFLAGS="$CFLAGS -DDISABLE_ENDIAN" |
|
228 |
fi |
|
229 |
AC_ARG_ENABLE(file, |
|
230 |
[ --enable-file Enable the file subsystem [default=yes]], |
|
231 |
, enable_file=yes) |
|
232 |
if test x$enable_file = xyes; then |
|
233 |
SDL_EXTRADIRS="$SDL_EXTRADIRS file" |
|
234 |
SDL_EXTRALIBS="$SDL_EXTRALIBS file/libfile.la" |
|
235 |
else |
|
236 |
CFLAGS="$CFLAGS -DDISABLE_FILE" |
|
237 |
fi |
|
238 |
||
239 |
dnl See if the OSS audio interface is supported |
|
240 |
CheckOSS() |
|
241 |
{ |
|
242 |
AC_ARG_ENABLE(oss, |
|
243 |
[ --enable-oss support the OSS audio API [default=yes]], |
|
244 |
, enable_oss=yes) |
|
245 |
if test x$enable_audio = xyes -a x$enable_oss = xyes; then |
|
246 |
AC_MSG_CHECKING(for OSS audio support) |
|
247 |
have_oss=no |
|
248 |
AC_TRY_COMPILE([ |
|
249 |
#include <sys/soundcard.h> |
|
250 |
],[ |
|
41
8de9e8baaecc
*** empty log message ***
Sam Lantinga <slouken@lokigames.com>
parents:
39
diff
changeset
|
251 |
int arg = SNDCTL_DSP_SETFRAGMENT; |
0 | 252 |
],[ |
253 |
have_oss=yes |
|
254 |
]) |
|
255 |
AC_MSG_RESULT($have_oss) |
|
256 |
if test x$have_oss = xyes; then |
|
257 |
CFLAGS="$CFLAGS -DOSS_SUPPORT" |
|
258 |
AUDIO_SUBDIRS="$AUDIO_SUBDIRS dsp" |
|
259 |
AUDIO_DRIVERS="$AUDIO_DRIVERS dsp/libaudio_dsp.la" |
|
260 |
AUDIO_SUBDIRS="$AUDIO_SUBDIRS dma" |
|
261 |
AUDIO_DRIVERS="$AUDIO_DRIVERS dma/libaudio_dma.la" |
|
262 |
fi |
|
263 |
fi |
|
264 |
} |
|
265 |
||
266 |
dnl See if the ALSA audio interface is supported |
|
267 |
CheckALSA() |
|
268 |
{ |
|
269 |
AC_ARG_ENABLE(alsa, |
|
270 |
[ --enable-alsa support the ALSA audio API [default=yes]], |
|
271 |
, enable_alsa=yes) |
|
272 |
if test x$enable_audio = xyes -a x$enable_alsa = xyes; then |
|
273 |
have_alsa=no |
|
274 |
AC_CHECK_HEADER(sys/asoundlib.h, have_alsa_hdr=yes) |
|
275 |
AC_CHECK_LIB(asound, snd_pcm_open, have_alsa_lib=yes) |
|
276 |
if test x$have_alsa_hdr = xyes -a x$have_alsa_lib = xyes; then |
|
277 |
CFLAGS="$CFLAGS -DALSA_SUPPORT" |
|
278 |
SYSTEM_LIBS="$SYSTEM_LIBS -lasound" |
|
279 |
AUDIO_SUBDIRS="$AUDIO_SUBDIRS alsa" |
|
280 |
AUDIO_DRIVERS="$AUDIO_DRIVERS alsa/libaudio_alsa.la" |
|
281 |
fi |
|
282 |
fi |
|
283 |
} |
|
284 |
||
37
3ad7157c6cfa
Added native OpenBSD audio driver (thanks vedge!)
Sam Lantinga <slouken@lokigames.com>
parents:
35
diff
changeset
|
285 |
dnl Check whether we want to use OpenBSD native audio or not |
3ad7157c6cfa
Added native OpenBSD audio driver (thanks vedge!)
Sam Lantinga <slouken@lokigames.com>
parents:
35
diff
changeset
|
286 |
CheckOPENBSDAUDIO() |
3ad7157c6cfa
Added native OpenBSD audio driver (thanks vedge!)
Sam Lantinga <slouken@lokigames.com>
parents:
35
diff
changeset
|
287 |
{ |
3ad7157c6cfa
Added native OpenBSD audio driver (thanks vedge!)
Sam Lantinga <slouken@lokigames.com>
parents:
35
diff
changeset
|
288 |
AC_ARG_ENABLE(openbsdaudio, |
3ad7157c6cfa
Added native OpenBSD audio driver (thanks vedge!)
Sam Lantinga <slouken@lokigames.com>
parents:
35
diff
changeset
|
289 |
[ --enable-openbsdaudio OpenBSD native audio support [default=no]], |
3ad7157c6cfa
Added native OpenBSD audio driver (thanks vedge!)
Sam Lantinga <slouken@lokigames.com>
parents:
35
diff
changeset
|
290 |
, enable_openbsdaudio=no) |
3ad7157c6cfa
Added native OpenBSD audio driver (thanks vedge!)
Sam Lantinga <slouken@lokigames.com>
parents:
35
diff
changeset
|
291 |
if test x$enable_audio = xyes -a x$enable_openbsdaudio = xyes; then |
3ad7157c6cfa
Added native OpenBSD audio driver (thanks vedge!)
Sam Lantinga <slouken@lokigames.com>
parents:
35
diff
changeset
|
292 |
SYSTEM_LIBS="$SYSTEM_LIBS $ESD_LIBS" |
3ad7157c6cfa
Added native OpenBSD audio driver (thanks vedge!)
Sam Lantinga <slouken@lokigames.com>
parents:
35
diff
changeset
|
293 |
AUDIO_SUBDIRS="$AUDIO_SUBDIRS openbsd" |
3ad7157c6cfa
Added native OpenBSD audio driver (thanks vedge!)
Sam Lantinga <slouken@lokigames.com>
parents:
35
diff
changeset
|
294 |
AUDIO_DRIVERS="$AUDIO_DRIVERS openbsd/libaudio_openbsd.la" |
3ad7157c6cfa
Added native OpenBSD audio driver (thanks vedge!)
Sam Lantinga <slouken@lokigames.com>
parents:
35
diff
changeset
|
295 |
fi |
3ad7157c6cfa
Added native OpenBSD audio driver (thanks vedge!)
Sam Lantinga <slouken@lokigames.com>
parents:
35
diff
changeset
|
296 |
} |
3ad7157c6cfa
Added native OpenBSD audio driver (thanks vedge!)
Sam Lantinga <slouken@lokigames.com>
parents:
35
diff
changeset
|
297 |
|
0 | 298 |
dnl Find the ESD includes and libraries |
299 |
CheckESD() |
|
300 |
{ |
|
301 |
AC_ARG_ENABLE(esd, |
|
302 |
[ --enable-esd support the Enlightened Sound Daemon [default=yes]], |
|
303 |
, enable_esd=yes) |
|
304 |
if test x$enable_audio = xyes -a x$enable_esd = xyes; then |
|
305 |
AM_PATH_ESD(0.2.8, [ |
|
306 |
CFLAGS="$CFLAGS -DESD_SUPPORT $ESD_CFLAGS" |
|
307 |
SYSTEM_LIBS="$SYSTEM_LIBS $ESD_LIBS" |
|
308 |
AUDIO_SUBDIRS="$AUDIO_SUBDIRS esd" |
|
309 |
AUDIO_DRIVERS="$AUDIO_DRIVERS esd/libaudio_esd.la" |
|
310 |
]) |
|
311 |
fi |
|
312 |
} |
|
313 |
||
314 |
CheckARTSC() |
|
315 |
{ |
|
316 |
AC_ARG_ENABLE(arts, |
|
317 |
[ --enable-arts support the Analog Real Time Synthesizer [default=yes]], |
|
318 |
, enable_arts=yes) |
|
319 |
if test x$enable_audio = xyes -a x$enable_arts = xyes; then |
|
320 |
AC_PATH_PROG(ARTSCCONFIG, artsc-config) |
|
321 |
if test x$ARTSCCONFIG = x -o x$ARTSCCONFIG = x'"$ARTSCCONFIG"'; then |
|
322 |
: # arts isn't installed |
|
323 |
else |
|
324 |
ARTSC_CFLAGS=`$ARTSCCONFIG --cflags` |
|
325 |
ARTSC_LIBS=`$ARTSCCONFIG --libs` |
|
326 |
AC_MSG_CHECKING(for aRts development environment) |
|
327 |
audio_arts=no |
|
328 |
save_CFLAGS="$CFLAGS" |
|
329 |
CFLAGS="$CFLAGS $ARTSC_CFLAGS" |
|
330 |
AC_TRY_COMPILE([ |
|
331 |
#include <artsc.h> |
|
332 |
],[ |
|
333 |
arts_stream_t stream; |
|
334 |
],[ |
|
335 |
audio_arts=yes |
|
336 |
]) |
|
337 |
CFLAGS="$save_CFLAGS" |
|
338 |
AC_MSG_RESULT($audio_arts) |
|
339 |
if test x$audio_arts = xyes; then |
|
340 |
CFLAGS="$CFLAGS -DARTSC_SUPPORT $ARTSC_CFLAGS" |
|
341 |
SYSTEM_LIBS="$SYSTEM_LIBS $ARTSC_LIBS" |
|
342 |
AUDIO_SUBDIRS="$AUDIO_SUBDIRS arts" |
|
343 |
AUDIO_DRIVERS="$AUDIO_DRIVERS arts/libaudio_arts.la" |
|
344 |
fi |
|
345 |
fi |
|
346 |
fi |
|
347 |
} |
|
348 |
||
349 |
dnl See if the NAS audio interface is supported |
|
350 |
CheckNAS() |
|
351 |
{ |
|
352 |
AC_ARG_ENABLE(nas, |
|
16
735e5a8696d0
Added --disable-dga configure option to disable DGA entirely
Sam Lantinga <slouken@lokigames.com>
parents:
1
diff
changeset
|
353 |
[ --enable-nas support the NAS audio API [default=yes]], |
41
8de9e8baaecc
*** empty log message ***
Sam Lantinga <slouken@lokigames.com>
parents:
39
diff
changeset
|
354 |
, enable_nas=yes) |
0 | 355 |
if test x$enable_audio = xyes -a x$enable_nas = xyes; then |
41
8de9e8baaecc
*** empty log message ***
Sam Lantinga <slouken@lokigames.com>
parents:
39
diff
changeset
|
356 |
AC_MSG_CHECKING(for NAS audio support) |
8de9e8baaecc
*** empty log message ***
Sam Lantinga <slouken@lokigames.com>
parents:
39
diff
changeset
|
357 |
have_nas=no |
8de9e8baaecc
*** empty log message ***
Sam Lantinga <slouken@lokigames.com>
parents:
39
diff
changeset
|
358 |
if test -r /usr/X11R6/include/audio/audiolib.h; then |
8de9e8baaecc
*** empty log message ***
Sam Lantinga <slouken@lokigames.com>
parents:
39
diff
changeset
|
359 |
have_nas=yes |
8de9e8baaecc
*** empty log message ***
Sam Lantinga <slouken@lokigames.com>
parents:
39
diff
changeset
|
360 |
fi |
8de9e8baaecc
*** empty log message ***
Sam Lantinga <slouken@lokigames.com>
parents:
39
diff
changeset
|
361 |
AC_MSG_RESULT($have_nas) |
8de9e8baaecc
*** empty log message ***
Sam Lantinga <slouken@lokigames.com>
parents:
39
diff
changeset
|
362 |
if test x$have_nas = xyes; then |
8de9e8baaecc
*** empty log message ***
Sam Lantinga <slouken@lokigames.com>
parents:
39
diff
changeset
|
363 |
CFLAGS="$CFLAGS -DNAS_SUPPORT" |
8de9e8baaecc
*** empty log message ***
Sam Lantinga <slouken@lokigames.com>
parents:
39
diff
changeset
|
364 |
SYSTEM_LIBS="$SYSTEM_LIBS -laudio -lXt" |
8de9e8baaecc
*** empty log message ***
Sam Lantinga <slouken@lokigames.com>
parents:
39
diff
changeset
|
365 |
AUDIO_SUBDIRS="$AUDIO_SUBDIRS nas" |
8de9e8baaecc
*** empty log message ***
Sam Lantinga <slouken@lokigames.com>
parents:
39
diff
changeset
|
366 |
AUDIO_DRIVERS="$AUDIO_DRIVERS nas/libaudio_nas.la" |
8de9e8baaecc
*** empty log message ***
Sam Lantinga <slouken@lokigames.com>
parents:
39
diff
changeset
|
367 |
fi |
0 | 368 |
fi |
369 |
} |
|
370 |
||
68
ac6645260d31
Added an audio driver that writes to disk (thanks Ryan!)
Sam Lantinga <slouken@lokigames.com>
parents:
53
diff
changeset
|
371 |
|
ac6645260d31
Added an audio driver that writes to disk (thanks Ryan!)
Sam Lantinga <slouken@lokigames.com>
parents:
53
diff
changeset
|
372 |
dnl rcg07142001 See if the user wants the disk writer audio driver... |
ac6645260d31
Added an audio driver that writes to disk (thanks Ryan!)
Sam Lantinga <slouken@lokigames.com>
parents:
53
diff
changeset
|
373 |
CheckDiskAudio() |
ac6645260d31
Added an audio driver that writes to disk (thanks Ryan!)
Sam Lantinga <slouken@lokigames.com>
parents:
53
diff
changeset
|
374 |
{ |
ac6645260d31
Added an audio driver that writes to disk (thanks Ryan!)
Sam Lantinga <slouken@lokigames.com>
parents:
53
diff
changeset
|
375 |
AC_ARG_ENABLE(diskaudio, |
ac6645260d31
Added an audio driver that writes to disk (thanks Ryan!)
Sam Lantinga <slouken@lokigames.com>
parents:
53
diff
changeset
|
376 |
[ --enable-diskaudio support the disk writer audio driver [default=no]], |
ac6645260d31
Added an audio driver that writes to disk (thanks Ryan!)
Sam Lantinga <slouken@lokigames.com>
parents:
53
diff
changeset
|
377 |
, enable_diskaudio=no) |
ac6645260d31
Added an audio driver that writes to disk (thanks Ryan!)
Sam Lantinga <slouken@lokigames.com>
parents:
53
diff
changeset
|
378 |
if test x$enable_audio = xyes -a x$enable_diskaudio = xyes; then |
ac6645260d31
Added an audio driver that writes to disk (thanks Ryan!)
Sam Lantinga <slouken@lokigames.com>
parents:
53
diff
changeset
|
379 |
CFLAGS="$CFLAGS -DDISKAUD_SUPPORT" |
ac6645260d31
Added an audio driver that writes to disk (thanks Ryan!)
Sam Lantinga <slouken@lokigames.com>
parents:
53
diff
changeset
|
380 |
AUDIO_SUBDIRS="$AUDIO_SUBDIRS disk" |
ac6645260d31
Added an audio driver that writes to disk (thanks Ryan!)
Sam Lantinga <slouken@lokigames.com>
parents:
53
diff
changeset
|
381 |
AUDIO_DRIVERS="$AUDIO_DRIVERS disk/libaudio_disk.la" |
ac6645260d31
Added an audio driver that writes to disk (thanks Ryan!)
Sam Lantinga <slouken@lokigames.com>
parents:
53
diff
changeset
|
382 |
fi |
ac6645260d31
Added an audio driver that writes to disk (thanks Ryan!)
Sam Lantinga <slouken@lokigames.com>
parents:
53
diff
changeset
|
383 |
} |
ac6645260d31
Added an audio driver that writes to disk (thanks Ryan!)
Sam Lantinga <slouken@lokigames.com>
parents:
53
diff
changeset
|
384 |
|
ac6645260d31
Added an audio driver that writes to disk (thanks Ryan!)
Sam Lantinga <slouken@lokigames.com>
parents:
53
diff
changeset
|
385 |
|
0 | 386 |
dnl See if we can use x86 assembly blitters |
387 |
CheckNASM() |
|
388 |
{ |
|
389 |
dnl Make sure we are running on an x86 platform |
|
390 |
case $target in |
|
391 |
i?86*) |
|
392 |
;; |
|
393 |
*) |
|
394 |
# Nope, bail early. |
|
395 |
return |
|
396 |
;; |
|
397 |
esac |
|
398 |
dnl Check for NASM (for assembly blit routines) |
|
399 |
AC_ARG_ENABLE(nasm, |
|
400 |
[ --enable-nasm use nasm assembly blitters on x86 [default=yes]], |
|
401 |
, enable_nasm=yes) |
|
402 |
if test x$enable_video = xyes -a x$enable_nasm = xyes; then |
|
403 |
AC_PATH_PROG(NASM, nasm) |
|
404 |
if test x$NASM = x -o x$NASM = x'"$NASM"'; then |
|
405 |
: # nasm isn't installed |
|
406 |
else |
|
407 |
CFLAGS="$CFLAGS -DUSE_ASMBLIT -I$srcdir/hermes" |
|
408 |
case $ARCH in |
|
409 |
win32) |
|
410 |
NASMFLAGS="-f win32" |
|
411 |
;; |
|
412 |
*) |
|
413 |
NASMFLAGS="-f elf" |
|
414 |
;; |
|
415 |
esac |
|
416 |
AC_SUBST(NASMFLAGS) |
|
417 |
CFLAGS="$CFLAGS -I\$(top_srcdir)/src/hermes" |
|
418 |
SDL_EXTRADIRS="$SDL_EXTRADIRS hermes" |
|
419 |
SDL_EXTRALIBS="$SDL_EXTRALIBS hermes/libhermes.la" |
|
420 |
fi |
|
421 |
fi |
|
422 |
} |
|
423 |
||
30
57bf11a5efd7
Added initial support for Nano-X (thanks Hsieh-Fu!)
Sam Lantinga <slouken@lokigames.com>
parents:
21
diff
changeset
|
424 |
dnl Find the nanox include and library directories |
57bf11a5efd7
Added initial support for Nano-X (thanks Hsieh-Fu!)
Sam Lantinga <slouken@lokigames.com>
parents:
21
diff
changeset
|
425 |
CheckNANOX() |
57bf11a5efd7
Added initial support for Nano-X (thanks Hsieh-Fu!)
Sam Lantinga <slouken@lokigames.com>
parents:
21
diff
changeset
|
426 |
{ |
57bf11a5efd7
Added initial support for Nano-X (thanks Hsieh-Fu!)
Sam Lantinga <slouken@lokigames.com>
parents:
21
diff
changeset
|
427 |
AC_ARG_ENABLE(video-nanox, |
57bf11a5efd7
Added initial support for Nano-X (thanks Hsieh-Fu!)
Sam Lantinga <slouken@lokigames.com>
parents:
21
diff
changeset
|
428 |
[ --enable-video-nanox use nanox video driver [default=no]], |
57bf11a5efd7
Added initial support for Nano-X (thanks Hsieh-Fu!)
Sam Lantinga <slouken@lokigames.com>
parents:
21
diff
changeset
|
429 |
, enable_video_nanox=no) |
57bf11a5efd7
Added initial support for Nano-X (thanks Hsieh-Fu!)
Sam Lantinga <slouken@lokigames.com>
parents:
21
diff
changeset
|
430 |
AC_ARG_ENABLE(nanox-debug, |
57bf11a5efd7
Added initial support for Nano-X (thanks Hsieh-Fu!)
Sam Lantinga <slouken@lokigames.com>
parents:
21
diff
changeset
|
431 |
[ --enable-nanox-debug print debug messages [default=no]], |
57bf11a5efd7
Added initial support for Nano-X (thanks Hsieh-Fu!)
Sam Lantinga <slouken@lokigames.com>
parents:
21
diff
changeset
|
432 |
, enable_nanox_debug=no) |
57bf11a5efd7
Added initial support for Nano-X (thanks Hsieh-Fu!)
Sam Lantinga <slouken@lokigames.com>
parents:
21
diff
changeset
|
433 |
AC_ARG_ENABLE(nanox-share-memory, |
57bf11a5efd7
Added initial support for Nano-X (thanks Hsieh-Fu!)
Sam Lantinga <slouken@lokigames.com>
parents:
21
diff
changeset
|
434 |
[ --enable-nanox-share-memory use share memory [default=no]], |
57bf11a5efd7
Added initial support for Nano-X (thanks Hsieh-Fu!)
Sam Lantinga <slouken@lokigames.com>
parents:
21
diff
changeset
|
435 |
, enable_nanox_share_memory=no) |
57bf11a5efd7
Added initial support for Nano-X (thanks Hsieh-Fu!)
Sam Lantinga <slouken@lokigames.com>
parents:
21
diff
changeset
|
436 |
|
57bf11a5efd7
Added initial support for Nano-X (thanks Hsieh-Fu!)
Sam Lantinga <slouken@lokigames.com>
parents:
21
diff
changeset
|
437 |
AC_ARG_WITH(nanox_pixel_type, |
57bf11a5efd7
Added initial support for Nano-X (thanks Hsieh-Fu!)
Sam Lantinga <slouken@lokigames.com>
parents:
21
diff
changeset
|
438 |
[ --with-nanox-pixel-type=[rgb/0888/888/565/555/332/pal]]) |
57bf11a5efd7
Added initial support for Nano-X (thanks Hsieh-Fu!)
Sam Lantinga <slouken@lokigames.com>
parents:
21
diff
changeset
|
439 |
|
57bf11a5efd7
Added initial support for Nano-X (thanks Hsieh-Fu!)
Sam Lantinga <slouken@lokigames.com>
parents:
21
diff
changeset
|
440 |
if test x$enable_video = xyes -a x$enable_video_nanox = xyes; then |
57bf11a5efd7
Added initial support for Nano-X (thanks Hsieh-Fu!)
Sam Lantinga <slouken@lokigames.com>
parents:
21
diff
changeset
|
441 |
if test x$enable_nanox_debug = xyes; then |
57bf11a5efd7
Added initial support for Nano-X (thanks Hsieh-Fu!)
Sam Lantinga <slouken@lokigames.com>
parents:
21
diff
changeset
|
442 |
CFLAGS="$CFLAGS -DENABLE_NANOX_DEBUG" |
57bf11a5efd7
Added initial support for Nano-X (thanks Hsieh-Fu!)
Sam Lantinga <slouken@lokigames.com>
parents:
21
diff
changeset
|
443 |
fi |
57bf11a5efd7
Added initial support for Nano-X (thanks Hsieh-Fu!)
Sam Lantinga <slouken@lokigames.com>
parents:
21
diff
changeset
|
444 |
|
57bf11a5efd7
Added initial support for Nano-X (thanks Hsieh-Fu!)
Sam Lantinga <slouken@lokigames.com>
parents:
21
diff
changeset
|
445 |
if test x$enable_nanox_share_memory = xyes; then |
57bf11a5efd7
Added initial support for Nano-X (thanks Hsieh-Fu!)
Sam Lantinga <slouken@lokigames.com>
parents:
21
diff
changeset
|
446 |
CFLAGS="$CFLAGS -DNANOX_SHARE_MEMORY" |
57bf11a5efd7
Added initial support for Nano-X (thanks Hsieh-Fu!)
Sam Lantinga <slouken@lokigames.com>
parents:
21
diff
changeset
|
447 |
fi |
57bf11a5efd7
Added initial support for Nano-X (thanks Hsieh-Fu!)
Sam Lantinga <slouken@lokigames.com>
parents:
21
diff
changeset
|
448 |
|
57bf11a5efd7
Added initial support for Nano-X (thanks Hsieh-Fu!)
Sam Lantinga <slouken@lokigames.com>
parents:
21
diff
changeset
|
449 |
case "$with_nanox_pixel_type" in |
57bf11a5efd7
Added initial support for Nano-X (thanks Hsieh-Fu!)
Sam Lantinga <slouken@lokigames.com>
parents:
21
diff
changeset
|
450 |
rgb) CFLAGS="$CFLAGS -DNANOX_PIXEL_RGB" ;; |
57bf11a5efd7
Added initial support for Nano-X (thanks Hsieh-Fu!)
Sam Lantinga <slouken@lokigames.com>
parents:
21
diff
changeset
|
451 |
0888) CFLAGS="$CFLAGS -DNANOX_PIXEL_0888" ;; |
57bf11a5efd7
Added initial support for Nano-X (thanks Hsieh-Fu!)
Sam Lantinga <slouken@lokigames.com>
parents:
21
diff
changeset
|
452 |
888) CFLAGS="$CFLAGS -DNANOX_PIXEL_888" ;; |
57bf11a5efd7
Added initial support for Nano-X (thanks Hsieh-Fu!)
Sam Lantinga <slouken@lokigames.com>
parents:
21
diff
changeset
|
453 |
565) CFLAGS="$CFLAGS -DNANOX_PIXEL_565" ;; |
57bf11a5efd7
Added initial support for Nano-X (thanks Hsieh-Fu!)
Sam Lantinga <slouken@lokigames.com>
parents:
21
diff
changeset
|
454 |
555) CFLAGS="$CFLAGS -DNANOX_PIXEL_555" ;; |
57bf11a5efd7
Added initial support for Nano-X (thanks Hsieh-Fu!)
Sam Lantinga <slouken@lokigames.com>
parents:
21
diff
changeset
|
455 |
332) CFLAGS="$CFLAGS -DNANOX_PIXEL_332" ;; |
57bf11a5efd7
Added initial support for Nano-X (thanks Hsieh-Fu!)
Sam Lantinga <slouken@lokigames.com>
parents:
21
diff
changeset
|
456 |
pal) CFLAGS="$CFLAGS -DNANOX_PIXEL_PAL" ;; |
57bf11a5efd7
Added initial support for Nano-X (thanks Hsieh-Fu!)
Sam Lantinga <slouken@lokigames.com>
parents:
21
diff
changeset
|
457 |
*) AC_MSG_ERROR([Invalid nanox_pixel_type]);; |
57bf11a5efd7
Added initial support for Nano-X (thanks Hsieh-Fu!)
Sam Lantinga <slouken@lokigames.com>
parents:
21
diff
changeset
|
458 |
esac |
57bf11a5efd7
Added initial support for Nano-X (thanks Hsieh-Fu!)
Sam Lantinga <slouken@lokigames.com>
parents:
21
diff
changeset
|
459 |
|
57bf11a5efd7
Added initial support for Nano-X (thanks Hsieh-Fu!)
Sam Lantinga <slouken@lokigames.com>
parents:
21
diff
changeset
|
460 |
CFLAGS="$CFLAGS $X_CFLAGS -DENABLE_NANOX" |
57bf11a5efd7
Added initial support for Nano-X (thanks Hsieh-Fu!)
Sam Lantinga <slouken@lokigames.com>
parents:
21
diff
changeset
|
461 |
SYSTEM_LIBS="$SYSTEM_LIBS -lnano-X" |
57bf11a5efd7
Added initial support for Nano-X (thanks Hsieh-Fu!)
Sam Lantinga <slouken@lokigames.com>
parents:
21
diff
changeset
|
462 |
VIDEO_SUBDIRS="$VIDEO_SUBDIRS nanox" |
57bf11a5efd7
Added initial support for Nano-X (thanks Hsieh-Fu!)
Sam Lantinga <slouken@lokigames.com>
parents:
21
diff
changeset
|
463 |
VIDEO_DRIVERS="$VIDEO_DRIVERS nanox/libvideo_nanox.la" |
57bf11a5efd7
Added initial support for Nano-X (thanks Hsieh-Fu!)
Sam Lantinga <slouken@lokigames.com>
parents:
21
diff
changeset
|
464 |
fi |
57bf11a5efd7
Added initial support for Nano-X (thanks Hsieh-Fu!)
Sam Lantinga <slouken@lokigames.com>
parents:
21
diff
changeset
|
465 |
} |
57bf11a5efd7
Added initial support for Nano-X (thanks Hsieh-Fu!)
Sam Lantinga <slouken@lokigames.com>
parents:
21
diff
changeset
|
466 |
|
0 | 467 |
dnl Find the X11 include and library directories |
468 |
CheckX11() |
|
469 |
{ |
|
470 |
AC_ARG_ENABLE(video-x11, |
|
471 |
[ --enable-video-x11 use X11 video driver [default=yes]], |
|
472 |
, enable_video_x11=yes) |
|
473 |
if test x$enable_video = xyes -a x$enable_video_x11 = xyes; then |
|
474 |
AC_PATH_X |
|
475 |
AC_PATH_XTRA |
|
476 |
if test x$have_x = xyes; then |
|
477 |
CFLAGS="$CFLAGS $X_CFLAGS -DENABLE_X11" |
|
478 |
if test x$ac_cv_func_shmat != xyes; then |
|
479 |
CFLAGS="$CFLAGS -DNO_SHARED_MEMORY" |
|
480 |
fi |
|
481 |
SYSTEM_LIBS="$SYSTEM_LIBS $X_LIBS -lX11 -lXext" |
|
482 |
VIDEO_SUBDIRS="$VIDEO_SUBDIRS x11" |
|
483 |
VIDEO_DRIVERS="$VIDEO_DRIVERS x11/libvideo_x11.la" |
|
484 |
||
485 |
AC_ARG_ENABLE(video-x11-vm, |
|
486 |
[ --enable-video-x11-vm use X11 VM extension for fullscreen [default=yes]], |
|
487 |
, enable_video_x11_vm=yes) |
|
488 |
if test x$enable_video_x11_vm = xyes; then |
|
489 |
AC_MSG_CHECKING(for XFree86 VidMode 1.0 support) |
|
490 |
video_x11_vm=no |
|
491 |
AC_TRY_COMPILE([ |
|
492 |
#include <X11/Xlib.h> |
|
493 |
#include <X11/extensions/xf86vmode.h> |
|
494 |
],[ |
|
495 |
],[ |
|
496 |
video_x11_vm=yes |
|
497 |
]) |
|
498 |
AC_MSG_RESULT($video_x11_vm) |
|
499 |
if test x$video_x11_vm = xyes; then |
|
500 |
CFLAGS="$CFLAGS -DXFREE86_VM" |
|
501 |
# Check for nasty XFree86 4.0/Glide hack |
|
502 |
AC_ARG_ENABLE(xfree86_glidehack, |
|
503 |
[ --enable-xfree86-glidehack Alternate vidmode lib for old Glide [default=no]], |
|
504 |
, enable_xfreeglidehack=no) |
|
505 |
if test x$enable_xfree86_glidehack = xyes; then |
|
506 |
ac_save_libs="$LIBS" |
|
507 |
LIBS="$LIBS $X_LIBS -lX11 -lXext" |
|
508 |
if test x$xfree86_glidehack = x; then |
|
509 |
AC_CHECK_LIB(Xxf86vm, XF40VidModeQueryExtension, xfree86_glidehack=Xxf86vm) |
|
510 |
fi |
|
511 |
if test x$xfree86_glidehack = x; then |
|
512 |
AC_CHECK_LIB(Xxf86vm40, XF40VidModeQueryExtension, xfree86_glidehack=Xxf86vm40) |
|
513 |
fi |
|
514 |
LIBS="$ac_save_libs" |
|
515 |
fi |
|
516 |
if test x$xfree86_glidehack != x; then |
|
517 |
CFLAGS="$CFLAGS -DXFREE86_VM_DYNAMIC_HACK" |
|
518 |
SYSTEM_LIBS="$SYSTEM_LIBS -l$xfree86_glidehack" |
|
519 |
else |
|
520 |
SYSTEM_LIBS="$SYSTEM_LIBS -lXxf86vm" |
|
521 |
fi |
|
522 |
AC_MSG_CHECKING(for XFree86 VidMode gamma support) |
|
523 |
video_x11_vmgamma=no |
|
524 |
AC_TRY_COMPILE([ |
|
525 |
#include <X11/Xlib.h> |
|
526 |
#include <X11/extensions/xf86vmode.h> |
|
527 |
],[ |
|
528 |
XF86VidModeGamma gamma; |
|
529 |
],[ |
|
530 |
video_x11_vmgamma=yes |
|
531 |
]) |
|
532 |
AC_MSG_RESULT($video_x11_vmgamma) |
|
533 |
if test x$video_x11_vmgamma = xyes; then |
|
534 |
CFLAGS="$CFLAGS -DXFREE86_VMGAMMA" |
|
535 |
fi |
|
536 |
fi |
|
537 |
fi |
|
16
735e5a8696d0
Added --disable-dga configure option to disable DGA entirely
Sam Lantinga <slouken@lokigames.com>
parents:
1
diff
changeset
|
538 |
AC_ARG_ENABLE(dga, |
735e5a8696d0
Added --disable-dga configure option to disable DGA entirely
Sam Lantinga <slouken@lokigames.com>
parents:
1
diff
changeset
|
539 |
[ --enable-dga allow use of X11 DGA code [default=yes]], |
735e5a8696d0
Added --disable-dga configure option to disable DGA entirely
Sam Lantinga <slouken@lokigames.com>
parents:
1
diff
changeset
|
540 |
, enable_dga=yes) |
0 | 541 |
AC_ARG_ENABLE(video-x11-dgamouse, |
542 |
[ --enable-video-x11-dgamouse use X11 DGA for mouse events [default=yes]], |
|
543 |
, enable_video_x11_dgamouse=yes) |
|
16
735e5a8696d0
Added --disable-dga configure option to disable DGA entirely
Sam Lantinga <slouken@lokigames.com>
parents:
1
diff
changeset
|
544 |
if test x$enable_dga = xyes; then |
735e5a8696d0
Added --disable-dga configure option to disable DGA entirely
Sam Lantinga <slouken@lokigames.com>
parents:
1
diff
changeset
|
545 |
AC_MSG_CHECKING(for XFree86 DGA 1.0 support) |
735e5a8696d0
Added --disable-dga configure option to disable DGA entirely
Sam Lantinga <slouken@lokigames.com>
parents:
1
diff
changeset
|
546 |
video_x11_dga=no |
735e5a8696d0
Added --disable-dga configure option to disable DGA entirely
Sam Lantinga <slouken@lokigames.com>
parents:
1
diff
changeset
|
547 |
AC_TRY_COMPILE([ |
735e5a8696d0
Added --disable-dga configure option to disable DGA entirely
Sam Lantinga <slouken@lokigames.com>
parents:
1
diff
changeset
|
548 |
#include <X11/Xlib.h> |
735e5a8696d0
Added --disable-dga configure option to disable DGA entirely
Sam Lantinga <slouken@lokigames.com>
parents:
1
diff
changeset
|
549 |
#include <X11/extensions/xf86dga.h> |
735e5a8696d0
Added --disable-dga configure option to disable DGA entirely
Sam Lantinga <slouken@lokigames.com>
parents:
1
diff
changeset
|
550 |
],[ |
735e5a8696d0
Added --disable-dga configure option to disable DGA entirely
Sam Lantinga <slouken@lokigames.com>
parents:
1
diff
changeset
|
551 |
],[ |
735e5a8696d0
Added --disable-dga configure option to disable DGA entirely
Sam Lantinga <slouken@lokigames.com>
parents:
1
diff
changeset
|
552 |
video_x11_dga=yes |
735e5a8696d0
Added --disable-dga configure option to disable DGA entirely
Sam Lantinga <slouken@lokigames.com>
parents:
1
diff
changeset
|
553 |
]) |
735e5a8696d0
Added --disable-dga configure option to disable DGA entirely
Sam Lantinga <slouken@lokigames.com>
parents:
1
diff
changeset
|
554 |
AC_MSG_RESULT($video_x11_dga) |
735e5a8696d0
Added --disable-dga configure option to disable DGA entirely
Sam Lantinga <slouken@lokigames.com>
parents:
1
diff
changeset
|
555 |
if test x$video_x11_dga = xyes; then |
735e5a8696d0
Added --disable-dga configure option to disable DGA entirely
Sam Lantinga <slouken@lokigames.com>
parents:
1
diff
changeset
|
556 |
CFLAGS="$CFLAGS -DXFREE86_DGAMOUSE" |
735e5a8696d0
Added --disable-dga configure option to disable DGA entirely
Sam Lantinga <slouken@lokigames.com>
parents:
1
diff
changeset
|
557 |
if test x$enable_video_x11_dgamouse = xyes; then |
735e5a8696d0
Added --disable-dga configure option to disable DGA entirely
Sam Lantinga <slouken@lokigames.com>
parents:
1
diff
changeset
|
558 |
CFLAGS="$CFLAGS -DDEFAULT_DGAMOUSE" |
735e5a8696d0
Added --disable-dga configure option to disable DGA entirely
Sam Lantinga <slouken@lokigames.com>
parents:
1
diff
changeset
|
559 |
fi |
735e5a8696d0
Added --disable-dga configure option to disable DGA entirely
Sam Lantinga <slouken@lokigames.com>
parents:
1
diff
changeset
|
560 |
SYSTEM_LIBS="$SYSTEM_LIBS -lXxf86dga" |
0 | 561 |
fi |
562 |
fi |
|
563 |
AC_ARG_ENABLE(video-x11-xv, |
|
564 |
[ --enable-video-x11-xv use X11 XvImage extension for video [default=yes]], |
|
565 |
, enable_video_x11_xv=yes) |
|
566 |
if test x$enable_video_x11_xv = xyes; then |
|
567 |
AC_MSG_CHECKING(for XFree86 XvImage support) |
|
568 |
video_x11_xv=no |
|
569 |
AC_TRY_COMPILE([ |
|
570 |
#include <X11/Xlib.h> |
|
571 |
#include <sys/ipc.h> |
|
572 |
#include <sys/shm.h> |
|
573 |
#include <X11/extensions/XShm.h> |
|
574 |
#include <X11/extensions/Xvlib.h> |
|
575 |
],[ |
|
576 |
XvImage *image; |
|
577 |
],[ |
|
578 |
video_x11_xv=yes |
|
579 |
]) |
|
580 |
AC_MSG_RESULT($video_x11_xv) |
|
581 |
if test x$video_x11_xv = xyes; then |
|
582 |
CFLAGS="$CFLAGS -DXFREE86_XV" |
|
583 |
SYSTEM_LIBS="$SYSTEM_LIBS -lXv" |
|
584 |
fi |
|
585 |
fi |
|
586 |
fi |
|
587 |
fi |
|
588 |
} |
|
589 |
CheckPHOTON() |
|
590 |
{ |
|
591 |
AC_ARG_ENABLE(video-photon, |
|
72
4210b3e74800
Fixed the PS2 GS detection
Sam Lantinga <slouken@lokigames.com>
parents:
70
diff
changeset
|
592 |
[ --enable-video-photon use QNX Photon video driver [default=yes]], |
0 | 593 |
, enable_video_photon=yes) |
594 |
if test x$enable_video = xyes -a x$enable_video_photon = xyes; then |
|
595 |
AC_MSG_CHECKING(for QNX Photon support) |
|
596 |
video_photon=no |
|
597 |
AC_TRY_COMPILE([ |
|
598 |
#include <Ph.h> |
|
599 |
#include <Pt.h> |
|
600 |
#include <photon/Pg.h> |
|
601 |
#include <photon/PdDirect.h> |
|
602 |
],[ |
|
603 |
PgDisplaySettings_t *visual; |
|
604 |
],[ |
|
605 |
video_photon=yes |
|
606 |
]) |
|
607 |
AC_MSG_RESULT($video_photon) |
|
608 |
if test x$video_photon = xyes; then |
|
19
8cc4dbfab9ab
Date: Thu, 19 Apr 2001 08:36:54 +0300
Sam Lantinga <slouken@lokigames.com>
parents:
16
diff
changeset
|
609 |
CFLAGS="$CFLAGS -DENABLE_PHOTON" |
0 | 610 |
SYSTEM_LIBS="$SYSTEM_LIBS -lph" |
611 |
VIDEO_SUBDIRS="$VIDEO_SUBDIRS photon" |
|
612 |
VIDEO_DRIVERS="$VIDEO_DRIVERS photon/libvideo_photon.la" |
|
613 |
fi |
|
614 |
fi |
|
615 |
} |
|
616 |
||
617 |
dnl Find the X11 DGA 2.0 include and library directories |
|
618 |
CheckDGA() |
|
619 |
{ |
|
620 |
AC_ARG_ENABLE(video-dga, |
|
621 |
[ --enable-video-dga use DGA 2.0 video driver [default=yes]], |
|
622 |
, enable_video_dga=yes) |
|
623 |
if test x$video_x11_dga = xyes -a x$enable_video_dga = xyes; then |
|
624 |
AC_MSG_CHECKING(for XFree86 DGA 2.0 support) |
|
625 |
video_x11_dga2=no |
|
626 |
AC_TRY_COMPILE([ |
|
627 |
#include <X11/Xlib.h> |
|
628 |
#include <X11/extensions/xf86dga.h> |
|
629 |
],[ |
|
630 |
XDGAEvent xevent; |
|
631 |
],[ |
|
632 |
video_x11_dga2=yes |
|
633 |
]) |
|
634 |
AC_MSG_RESULT($video_x11_dga2) |
|
635 |
if test x$video_x11_dga2 = xyes; then |
|
636 |
CFLAGS="$CFLAGS -DENABLE_DGA" |
|
637 |
VIDEO_SUBDIRS="$VIDEO_SUBDIRS dga" |
|
638 |
VIDEO_DRIVERS="$VIDEO_DRIVERS dga/libvideo_dga.la" |
|
639 |
fi |
|
640 |
fi |
|
641 |
} |
|
642 |
||
643 |
dnl Find the framebuffer console includes |
|
644 |
CheckFBCON() |
|
645 |
{ |
|
646 |
AC_ARG_ENABLE(video-fbcon, |
|
647 |
[ --enable-video-fbcon use framebuffer console video driver [default=yes]], |
|
648 |
, enable_video_fbcon=yes) |
|
649 |
if test x$enable_video = xyes -a x$enable_video_fbcon = xyes; then |
|
650 |
AC_MSG_CHECKING(for framebuffer console support) |
|
651 |
video_fbcon=no |
|
652 |
AC_TRY_COMPILE([ |
|
653 |
#include <linux/fb.h> |
|
654 |
#include <linux/kd.h> |
|
655 |
#include <linux/keyboard.h> |
|
656 |
],[ |
|
657 |
],[ |
|
658 |
video_fbcon=yes |
|
659 |
]) |
|
660 |
AC_MSG_RESULT($video_fbcon) |
|
661 |
if test x$video_fbcon = xyes; then |
|
662 |
CFLAGS="$CFLAGS -DENABLE_FBCON" |
|
663 |
VIDEO_SUBDIRS="$VIDEO_SUBDIRS fbcon" |
|
664 |
VIDEO_DRIVERS="$VIDEO_DRIVERS fbcon/libvideo_fbcon.la" |
|
665 |
fi |
|
666 |
fi |
|
667 |
} |
|
668 |
||
70
f590dd383b5d
Added Linux PlayStation 2 Graphics Synthesizer support
Sam Lantinga <slouken@lokigames.com>
parents:
68
diff
changeset
|
669 |
dnl See if we're running on PlayStation 2 hardware |
f590dd383b5d
Added Linux PlayStation 2 Graphics Synthesizer support
Sam Lantinga <slouken@lokigames.com>
parents:
68
diff
changeset
|
670 |
CheckPS2GS() |
f590dd383b5d
Added Linux PlayStation 2 Graphics Synthesizer support
Sam Lantinga <slouken@lokigames.com>
parents:
68
diff
changeset
|
671 |
{ |
72
4210b3e74800
Fixed the PS2 GS detection
Sam Lantinga <slouken@lokigames.com>
parents:
70
diff
changeset
|
672 |
AC_ARG_ENABLE(video-ps2gs, |
4210b3e74800
Fixed the PS2 GS detection
Sam Lantinga <slouken@lokigames.com>
parents:
70
diff
changeset
|
673 |
[ --enable-video-ps2gs use PlayStation 2 GS video driver [default=yes]], |
4210b3e74800
Fixed the PS2 GS detection
Sam Lantinga <slouken@lokigames.com>
parents:
70
diff
changeset
|
674 |
, enable_video_ps2gs=yes) |
70
f590dd383b5d
Added Linux PlayStation 2 Graphics Synthesizer support
Sam Lantinga <slouken@lokigames.com>
parents:
68
diff
changeset
|
675 |
if test x$enable_video = xyes -a x$enable_video_ps2gs = xyes; then |
72
4210b3e74800
Fixed the PS2 GS detection
Sam Lantinga <slouken@lokigames.com>
parents:
70
diff
changeset
|
676 |
AC_MSG_CHECKING(for PlayStation 2 GS support) |
70
f590dd383b5d
Added Linux PlayStation 2 Graphics Synthesizer support
Sam Lantinga <slouken@lokigames.com>
parents:
68
diff
changeset
|
677 |
video_ps2gs=no |
f590dd383b5d
Added Linux PlayStation 2 Graphics Synthesizer support
Sam Lantinga <slouken@lokigames.com>
parents:
68
diff
changeset
|
678 |
AC_TRY_COMPILE([ |
f590dd383b5d
Added Linux PlayStation 2 Graphics Synthesizer support
Sam Lantinga <slouken@lokigames.com>
parents:
68
diff
changeset
|
679 |
#include <linux/ps2/dev.h> |
f590dd383b5d
Added Linux PlayStation 2 Graphics Synthesizer support
Sam Lantinga <slouken@lokigames.com>
parents:
68
diff
changeset
|
680 |
#include <linux/ps2/gs.h> |
f590dd383b5d
Added Linux PlayStation 2 Graphics Synthesizer support
Sam Lantinga <slouken@lokigames.com>
parents:
68
diff
changeset
|
681 |
],[ |
f590dd383b5d
Added Linux PlayStation 2 Graphics Synthesizer support
Sam Lantinga <slouken@lokigames.com>
parents:
68
diff
changeset
|
682 |
],[ |
f590dd383b5d
Added Linux PlayStation 2 Graphics Synthesizer support
Sam Lantinga <slouken@lokigames.com>
parents:
68
diff
changeset
|
683 |
video_ps2gs=yes |
f590dd383b5d
Added Linux PlayStation 2 Graphics Synthesizer support
Sam Lantinga <slouken@lokigames.com>
parents:
68
diff
changeset
|
684 |
]) |
72
4210b3e74800
Fixed the PS2 GS detection
Sam Lantinga <slouken@lokigames.com>
parents:
70
diff
changeset
|
685 |
AC_MSG_RESULT($video_ps2gs) |
70
f590dd383b5d
Added Linux PlayStation 2 Graphics Synthesizer support
Sam Lantinga <slouken@lokigames.com>
parents:
68
diff
changeset
|
686 |
if test x$video_ps2gs = xyes; then |
f590dd383b5d
Added Linux PlayStation 2 Graphics Synthesizer support
Sam Lantinga <slouken@lokigames.com>
parents:
68
diff
changeset
|
687 |
CFLAGS="$CFLAGS -DENABLE_PS2GS" |
f590dd383b5d
Added Linux PlayStation 2 Graphics Synthesizer support
Sam Lantinga <slouken@lokigames.com>
parents:
68
diff
changeset
|
688 |
VIDEO_SUBDIRS="$VIDEO_SUBDIRS ps2gs" |
f590dd383b5d
Added Linux PlayStation 2 Graphics Synthesizer support
Sam Lantinga <slouken@lokigames.com>
parents:
68
diff
changeset
|
689 |
VIDEO_DRIVERS="$VIDEO_DRIVERS ps2gs/libvideo_ps2gs.la" |
f590dd383b5d
Added Linux PlayStation 2 Graphics Synthesizer support
Sam Lantinga <slouken@lokigames.com>
parents:
68
diff
changeset
|
690 |
fi |
f590dd383b5d
Added Linux PlayStation 2 Graphics Synthesizer support
Sam Lantinga <slouken@lokigames.com>
parents:
68
diff
changeset
|
691 |
fi |
f590dd383b5d
Added Linux PlayStation 2 Graphics Synthesizer support
Sam Lantinga <slouken@lokigames.com>
parents:
68
diff
changeset
|
692 |
} |
f590dd383b5d
Added Linux PlayStation 2 Graphics Synthesizer support
Sam Lantinga <slouken@lokigames.com>
parents:
68
diff
changeset
|
693 |
|
0 | 694 |
dnl Find the GGI includes |
695 |
CheckGGI() |
|
696 |
{ |
|
697 |
AC_ARG_ENABLE(video-ggi, |
|
698 |
[ --enable-video-ggi use GGI video driver [default=no]], |
|
699 |
, enable_video_ggi=no) |
|
700 |
if test x$enable_video = xyes -a x$enable_video_ggi = xyes; then |
|
701 |
AC_MSG_CHECKING(for GGI support) |
|
702 |
video_ggi=no |
|
703 |
AC_TRY_COMPILE([ |
|
704 |
#include <ggi/ggi.h> |
|
705 |
#include <ggi/gii.h> |
|
706 |
],[ |
|
707 |
],[ |
|
708 |
video_ggi=yes |
|
709 |
]) |
|
710 |
AC_MSG_RESULT($video_ggi) |
|
711 |
if test x$video_ggi = xyes; then |
|
712 |
CFLAGS="$CFLAGS $X_CFLAGS -DENABLE_GGI" |
|
713 |
SYSTEM_LIBS="$SYSTEM_LIBS -lggi -lgii -lgg" |
|
714 |
||
715 |
VIDEO_SUBDIRS="$VIDEO_SUBDIRS ggi" |
|
716 |
VIDEO_DRIVERS="$VIDEO_DRIVERS ggi/libvideo_ggi.la" |
|
717 |
fi |
|
718 |
fi |
|
719 |
} |
|
720 |
||
721 |
dnl Find the SVGAlib includes and libraries |
|
722 |
CheckSVGA() |
|
723 |
{ |
|
724 |
AC_ARG_ENABLE(video-svga, |
|
725 |
[ --enable-video-svga use SVGAlib video driver [default=no]], |
|
726 |
, enable_video_svga=no) |
|
727 |
if test x$enable_video = xyes -a x$enable_video_svga = xyes; then |
|
728 |
AC_MSG_CHECKING(for SVGAlib (1.4.0+) support) |
|
729 |
video_svga=no |
|
730 |
AC_TRY_COMPILE([ |
|
731 |
#include <vga.h> |
|
732 |
#include <vgamouse.h> |
|
733 |
#include <vgakeyboard.h> |
|
734 |
],[ |
|
735 |
if ( SCANCODE_RIGHTWIN && SCANCODE_LEFTWIN ) { |
|
736 |
exit(0); |
|
737 |
} |
|
738 |
],[ |
|
739 |
video_svga=yes |
|
740 |
]) |
|
741 |
AC_MSG_RESULT($video_svga) |
|
742 |
if test x$video_svga = xyes; then |
|
743 |
CFLAGS="$CFLAGS -DENABLE_SVGALIB" |
|
744 |
SYSTEM_LIBS="$SYSTEM_LIBS -lvga" |
|
745 |
||
746 |
VIDEO_SUBDIRS="$VIDEO_SUBDIRS svga" |
|
747 |
VIDEO_DRIVERS="$VIDEO_DRIVERS svga/libvideo_svga.la" |
|
748 |
fi |
|
749 |
fi |
|
750 |
} |
|
751 |
||
752 |
dnl Find the AAlib includes |
|
753 |
CheckAAlib() |
|
754 |
{ |
|
755 |
AC_ARG_ENABLE(video-aalib, |
|
756 |
[ --enable-video-aalib use AAlib video driver [default=no]], |
|
757 |
, enable_video_aalib=no) |
|
758 |
if test x$enable_video = xyes -a x$enable_video_aalib = xyes; then |
|
759 |
AC_MSG_CHECKING(for AAlib support) |
|
760 |
video_aalib=no |
|
761 |
AC_TRY_COMPILE([ |
|
762 |
#include <aalib.h> |
|
763 |
],[ |
|
764 |
],[ |
|
765 |
video_aalib=yes |
|
766 |
]) |
|
767 |
AC_MSG_RESULT($video_aalib) |
|
768 |
if test x$video_aalib = xyes; then |
|
769 |
CFLAGS="$CFLAGS -DENABLE_AALIB" |
|
770 |
SYSTEM_LIBS="$SYSTEM_LIBS -laa" |
|
771 |
||
772 |
VIDEO_SUBDIRS="$VIDEO_SUBDIRS aalib" |
|
773 |
VIDEO_DRIVERS="$VIDEO_DRIVERS aalib/libvideo_aa.la" |
|
774 |
fi |
|
775 |
fi |
|
776 |
} |
|
777 |
||
1
cf2af46e9e2a
Changes since SDL 1.2.0 release
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
778 |
dnl rcg04172001 Set up the Null video driver. |
cf2af46e9e2a
Changes since SDL 1.2.0 release
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
779 |
CheckDummyVideo() |
cf2af46e9e2a
Changes since SDL 1.2.0 release
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
780 |
{ |
cf2af46e9e2a
Changes since SDL 1.2.0 release
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
781 |
AC_ARG_ENABLE(video-dummy, |
16
735e5a8696d0
Added --disable-dga configure option to disable DGA entirely
Sam Lantinga <slouken@lokigames.com>
parents:
1
diff
changeset
|
782 |
[ --enable-video-dummy use dummy video driver [default=no]], |
1
cf2af46e9e2a
Changes since SDL 1.2.0 release
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
783 |
, enable_video_dummy=no) |
cf2af46e9e2a
Changes since SDL 1.2.0 release
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
784 |
if test x$enable_video_dummy = xyes; then |
cf2af46e9e2a
Changes since SDL 1.2.0 release
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
785 |
CFLAGS="$CFLAGS -DENABLE_DUMMYVIDEO" |
cf2af46e9e2a
Changes since SDL 1.2.0 release
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
786 |
VIDEO_SUBDIRS="$VIDEO_SUBDIRS dummy" |
cf2af46e9e2a
Changes since SDL 1.2.0 release
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
787 |
VIDEO_DRIVERS="$VIDEO_DRIVERS dummy/libvideo_null.la" |
cf2af46e9e2a
Changes since SDL 1.2.0 release
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
788 |
fi |
cf2af46e9e2a
Changes since SDL 1.2.0 release
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
789 |
} |
cf2af46e9e2a
Changes since SDL 1.2.0 release
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
790 |
|
0 | 791 |
dnl Check to see if OpenGL support is desired |
792 |
AC_ARG_ENABLE(video-opengl, |
|
793 |
[ --enable-video-opengl include OpenGL context creation [default=yes]], |
|
794 |
, enable_video_opengl=yes) |
|
795 |
||
796 |
dnl Find OpenGL |
|
797 |
CheckOpenGL() |
|
798 |
{ |
|
799 |
if test x$enable_video = xyes -a x$enable_video_opengl = xyes; then |
|
800 |
AC_MSG_CHECKING(for OpenGL (GLX) support) |
|
801 |
video_opengl=no |
|
802 |
AC_TRY_COMPILE([ |
|
803 |
#include <GL/gl.h> |
|
804 |
#include <GL/glx.h> |
|
805 |
#include <dlfcn.h> /* For loading extensions */ |
|
806 |
],[ |
|
807 |
],[ |
|
808 |
video_opengl=yes |
|
809 |
]) |
|
810 |
AC_MSG_RESULT($video_opengl) |
|
811 |
if test x$video_opengl = xyes; then |
|
812 |
CFLAGS="$CFLAGS -DHAVE_OPENGL" |
|
813 |
AC_CHECK_LIB(dl, dlopen, SYSTEM_LIBS="$SYSTEM_LIBS -ldl") |
|
814 |
fi |
|
815 |
fi |
|
816 |
} |
|
817 |
||
818 |
dnl Check for BeOS OpenGL |
|
819 |
CheckBeGL() |
|
820 |
{ |
|
821 |
if test x$enable_video = xyes -a x$enable_video_opengl = xyes; then |
|
822 |
CFLAGS="$CFLAGS -DHAVE_OPENGL" |
|
823 |
SYSTEM_LIBS="$SYSTEM_LIBS -lGL" |
|
824 |
fi |
|
825 |
} |
|
826 |
||
827 |
dnl Check for MacOS OpenGL |
|
828 |
CheckMacGL() |
|
829 |
{ |
|
830 |
if test x$enable_video = xyes -a x$enable_video_opengl = xyes; then |
|
831 |
CFLAGS="$CFLAGS -DHAVE_OPENGL" |
|
832 |
case "$target" in |
|
833 |
*-*-darwin*) |
|
834 |
SDL_LIBS="$SDL_LIBS -framework OpenGL -framework AGL" |
|
835 |
esac |
|
836 |
fi |
|
837 |
} |
|
838 |
||
839 |
dnl See if we can use the new unified event interface in Linux 2.4 |
|
840 |
CheckInputEvents() |
|
841 |
{ |
|
842 |
dnl Check for Linux 2.4 unified input event interface support |
|
843 |
AC_ARG_ENABLE(input-events, |
|
51
fba28d77901f
Disabled /dev/event joystick interface by default
Sam Lantinga <slouken@lokigames.com>
parents:
47
diff
changeset
|
844 |
[ --enable-input-events use Linux 2.4 unified input interface [default=no]], |
fba28d77901f
Disabled /dev/event joystick interface by default
Sam Lantinga <slouken@lokigames.com>
parents:
47
diff
changeset
|
845 |
, enable_input_events=no) |
0 | 846 |
if test x$enable_input_events = xyes; then |
847 |
AC_MSG_CHECKING(for Linux 2.4 unified input interface) |
|
848 |
use_input_events=no |
|
849 |
AC_TRY_COMPILE([ |
|
850 |
#include <linux/input.h> |
|
851 |
],[ |
|
852 |
#ifndef EVIOCGNAME |
|
853 |
#error EVIOCGNAME() ioctl not available |
|
854 |
#endif |
|
855 |
],[ |
|
856 |
use_input_events=yes |
|
857 |
]) |
|
858 |
AC_MSG_RESULT($use_input_events) |
|
859 |
if test x$use_input_events = xyes; then |
|
860 |
CFLAGS="$CFLAGS -DUSE_INPUT_EVENTS" |
|
861 |
fi |
|
862 |
fi |
|
863 |
} |
|
864 |
||
865 |
dnl See what type of thread model to use on Linux and Solaris |
|
866 |
CheckPTHREAD() |
|
867 |
{ |
|
868 |
dnl Check for pthread support |
|
869 |
AC_ARG_ENABLE(pthreads, |
|
870 |
[ --enable-pthreads use POSIX threads for multi-threading [default=yes]], |
|
871 |
, enable_pthreads=yes) |
|
872 |
dnl This is used on Linux for glibc binary compatibility (Doh!) |
|
873 |
AC_ARG_ENABLE(pthread-sem, |
|
874 |
[ --enable-pthread-sem use pthread semaphores [default=yes]], |
|
875 |
, enable_pthread_sem=yes) |
|
876 |
ac_save_libs="$LIBS" |
|
877 |
case "$target" in |
|
878 |
*-*-bsdi*) |
|
879 |
pthread_cflags="-D_REENTRANT -D_THREAD_SAFE" |
|
880 |
pthread_lib="" |
|
881 |
;; |
|
882 |
*-*-darwin*) |
|
883 |
pthread_cflags="-D_THREAD_SAFE" |
|
884 |
# causes Carbon.p complaints? |
|
885 |
# pthread_cflags="-D_REENTRANT -D_THREAD_SAFE" |
|
886 |
;; |
|
887 |
*-*-freebsd*) |
|
888 |
pthread_cflags="-D_REENTRANT -D_THREAD_SAFE" |
|
889 |
pthread_lib="-pthread" |
|
890 |
;; |
|
43
8cc154626be9
I found the pthread package for NetBSD
Sam Lantinga <slouken@lokigames.com>
parents:
42
diff
changeset
|
891 |
*-*-netbsd*) |
8cc154626be9
I found the pthread package for NetBSD
Sam Lantinga <slouken@lokigames.com>
parents:
42
diff
changeset
|
892 |
pthread_cflags="-I/usr/pkg/include -D_REENTRANT" |
8cc154626be9
I found the pthread package for NetBSD
Sam Lantinga <slouken@lokigames.com>
parents:
42
diff
changeset
|
893 |
pthread_lib="-L/usr/pkg/lib -lpthread -lsem" |
8cc154626be9
I found the pthread package for NetBSD
Sam Lantinga <slouken@lokigames.com>
parents:
42
diff
changeset
|
894 |
;; |
0 | 895 |
*-*-openbsd*) |
896 |
pthread_cflags="-D_REENTRANT" |
|
897 |
pthread_lib="-pthread" |
|
898 |
;; |
|
899 |
*-*-solaris*) |
|
900 |
pthread_cflags="-D_REENTRANT" |
|
901 |
pthread_lib="-lpthread -lposix4" |
|
902 |
;; |
|
903 |
*-*-sysv5*) |
|
904 |
pthread_cflags="-D_REENTRANT -Kthread" |
|
905 |
pthread_lib="" |
|
906 |
;; |
|
907 |
*-*-irix*) |
|
908 |
pthread_cflags="-D_SGI_MP_SOURCE" |
|
909 |
pthread_lib="-lpthread" |
|
910 |
;; |
|
911 |
*-*-aix*) |
|
912 |
pthread_cflags="-D_REENTRANT -mthreads" |
|
913 |
pthread_lib="-lpthread" |
|
914 |
;; |
|
915 |
*-*-qnx*) |
|
916 |
pthread_cflags="" |
|
917 |
pthread_lib="" |
|
918 |
;; |
|
919 |
*) |
|
920 |
pthread_cflags="-D_REENTRANT" |
|
921 |
pthread_lib="-lpthread" |
|
922 |
;; |
|
923 |
esac |
|
924 |
LIBS="$LIBS $pthread_lib" |
|
925 |
if test x$enable_threads = xyes -a x$enable_pthreads = xyes; then |
|
926 |
AC_MSG_CHECKING(for pthreads) |
|
927 |
use_pthreads=no |
|
928 |
AC_TRY_LINK([ |
|
929 |
#include <pthread.h> |
|
930 |
],[ |
|
931 |
pthread_attr_t type; |
|
932 |
pthread_attr_init(&type); |
|
933 |
],[ |
|
934 |
use_pthreads=yes |
|
935 |
]) |
|
936 |
AC_MSG_RESULT($use_pthreads) |
|
937 |
if test x$use_pthreads = xyes; then |
|
938 |
CFLAGS="$CFLAGS $pthread_cflags -DSDL_USE_PTHREADS" |
|
939 |
SDL_CFLAGS="$SDL_CFLAGS $pthread_cflags" |
|
940 |
SDL_LIBS="$SDL_LIBS $pthread_lib" |
|
941 |
||
942 |
# Check to see if recursive mutexes are available |
|
943 |
AC_MSG_CHECKING(for recursive mutexes) |
|
944 |
has_recursive_mutexes=no |
|
945 |
AC_TRY_LINK([ |
|
946 |
#include <pthread.h> |
|
947 |
],[ |
|
948 |
pthread_mutexattr_t attr; |
|
949 |
#ifdef linux |
|
950 |
pthread_mutexattr_setkind_np(&attr, PTHREAD_MUTEX_RECURSIVE_NP); |
|
951 |
#else |
|
952 |
pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE); |
|
953 |
#endif |
|
954 |
],[ |
|
955 |
has_recursive_mutexes=yes |
|
956 |
]) |
|
957 |
# Some systems have broken recursive mutex implementations |
|
958 |
case "$target" in |
|
959 |
*-*-solaris*) |
|
960 |
has_recursive_mutexes=no |
|
961 |
;; |
|
962 |
esac |
|
963 |
AC_MSG_RESULT($has_recursive_mutexes) |
|
964 |
if test x$has_recursive_mutexes != xyes; then |
|
965 |
CFLAGS="$CFLAGS -DPTHREAD_NO_RECURSIVE_MUTEX" |
|
966 |
fi |
|
967 |
||
968 |
# Check to see if this is broken glibc 2.0 pthreads |
|
969 |
case "$target" in |
|
970 |
*-*-linux*) |
|
971 |
AC_MSG_CHECKING(for broken glibc 2.0 pthreads) |
|
972 |
glibc20_pthreads=no |
|
973 |
AC_TRY_COMPILE([ |
|
974 |
#include <features.h> |
|
975 |
#if (__GLIBC__ == 2) && (__GLIBC_MINOR__ == 0) |
|
976 |
#warning Working around a bug in glibc 2.0 pthreads |
|
977 |
#else |
|
978 |
#error pthread implementation okay |
|
979 |
#endif /* glibc 2.0 */ |
|
980 |
],[ |
|
981 |
],[ |
|
982 |
glibc20_pthreads=yes |
|
983 |
]) |
|
984 |
AC_MSG_RESULT($glibc20_pthreads) |
|
985 |
esac |
|
986 |
fi |
|
987 |
fi |
|
988 |
LIBS="$ac_save_libs" |
|
989 |
||
990 |
AC_MSG_CHECKING(whether semun is defined in /usr/include/sys/sem.h) |
|
991 |
have_semun=no |
|
992 |
AC_TRY_COMPILE([ |
|
993 |
#include <sys/types.h> |
|
994 |
#include <sys/sem.h> |
|
995 |
],[ |
|
996 |
union semun t; |
|
997 |
],[ |
|
998 |
have_semun=yes |
|
999 |
]) |
|
1000 |
AC_MSG_RESULT($have_semun) |
|
1001 |
if test x$have_semun = xyes; then |
|
1002 |
CFLAGS="$CFLAGS -DHAVE_SEMUN" |
|
1003 |
fi |
|
1004 |
||
1005 |
# See if we can use clone() on Linux directly |
|
1006 |
use_clone=no |
|
1007 |
if test x$enable_threads = xyes -a x$use_pthreads != xyes; then |
|
1008 |
case "$target" in |
|
1009 |
*-*-linux*) |
|
1010 |
use_clone=yes |
|
1011 |
;; |
|
1012 |
*) |
|
1013 |
CFLAGS="$CFLAGS -DFORK_HACK" |
|
1014 |
;; |
|
1015 |
esac |
|
1016 |
fi |
|
1017 |
AM_CONDITIONAL(USE_CLONE, test x$use_clone = xyes) |
|
1018 |
} |
|
1019 |
||
1020 |
dnl Determine whether the compiler can produce Win32 executables |
|
1021 |
CheckWIN32() |
|
1022 |
{ |
|
1023 |
AC_MSG_CHECKING(Win32 compiler) |
|
1024 |
have_win32_gcc=no |
|
1025 |
AC_TRY_COMPILE([ |
|
1026 |
#include <windows.h> |
|
1027 |
],[ |
|
1028 |
],[ |
|
1029 |
have_win32_gcc=yes |
|
1030 |
]) |
|
1031 |
AC_MSG_RESULT($have_win32_gcc) |
|
1032 |
if test x$have_win32_gcc != xyes; then |
|
1033 |
AC_MSG_ERROR([ |
|
1034 |
*** Your compiler ($CC) does not produce Win32 executables! |
|
1035 |
]) |
|
1036 |
fi |
|
1037 |
||
1038 |
dnl See if the user wants to redirect standard output to files |
|
1039 |
AC_ARG_ENABLE(stdio-redirect, |
|
1040 |
[ --enable-stdio-redirect Redirect STDIO to files on Win32 [default=yes]], |
|
1041 |
, enable_stdio_redirect=yes) |
|
1042 |
if test x$enable_stdio_redirect != xyes; then |
|
1043 |
CFLAGS="$CFLAGS -DNO_STDIO_REDIRECT" |
|
1044 |
fi |
|
1045 |
} |
|
1046 |
||
1047 |
dnl Find the DirectX includes and libraries |
|
1048 |
CheckDIRECTX() |
|
1049 |
{ |
|
1050 |
AC_ARG_ENABLE(directx, |
|
1051 |
[ --enable-directx use DirectX for Win32 audio/video [default=yes]], |
|
1052 |
, enable_directx=yes) |
|
1053 |
if test x$enable_directx = xyes; then |
|
1054 |
AC_MSG_CHECKING(for DirectX headers and libraries) |
|
1055 |
use_directx=no |
|
1056 |
AC_TRY_COMPILE([ |
|
1057 |
#include "src/video/windx5/directx.h" |
|
1058 |
],[ |
|
1059 |
],[ |
|
1060 |
use_directx=yes |
|
1061 |
]) |
|
1062 |
AC_MSG_RESULT($use_directx) |
|
1063 |
fi |
|
1064 |
AM_CONDITIONAL(USE_DIRECTX, test x$use_directx = xyes) |
|
1065 |
||
1066 |
CFLAGS="$CFLAGS -I\$(top_srcdir)/src/video/wincommon" |
|
1067 |
SYSTEM_LIBS="$SYSTEM_LIBS -luser32 -lgdi32 -lwinmm" |
|
1068 |
VIDEO_SUBDIRS="$VIDEO_SUBDIRS wincommon" |
|
1069 |
VIDEO_DRIVERS="$VIDEO_DRIVERS wincommon/libvideo_wincommon.la" |
|
1070 |
# Enable the DIB driver |
|
1071 |
CFLAGS="$CFLAGS -DENABLE_WINDIB" |
|
1072 |
VIDEO_SUBDIRS="$VIDEO_SUBDIRS windib" |
|
1073 |
VIDEO_DRIVERS="$VIDEO_DRIVERS windib/libvideo_windib.la" |
|
1074 |
# See if we should enable the DirectX driver |
|
1075 |
if test x$use_directx = xyes; then |
|
1076 |
CFLAGS="$CFLAGS -DENABLE_DIRECTX" |
|
1077 |
SYSTEM_LIBS="$SYSTEM_LIBS -ldxguid" |
|
1078 |
VIDEO_SUBDIRS="$VIDEO_SUBDIRS windx5" |
|
1079 |
VIDEO_DRIVERS="$VIDEO_DRIVERS windx5/libvideo_windx5.la" |
|
1080 |
fi |
|
1081 |
} |
|
1082 |
||
1083 |
dnl Set up the BWindow video driver on BeOS |
|
1084 |
CheckBWINDOW() |
|
1085 |
{ |
|
1086 |
CFLAGS="$CFLAGS -DENABLE_BWINDOW" |
|
1087 |
VIDEO_SUBDIRS="$VIDEO_SUBDIRS bwindow" |
|
1088 |
VIDEO_DRIVERS="$VIDEO_DRIVERS bwindow/libvideo_bwindow.la" |
|
1089 |
} |
|
1090 |
||
1091 |
dnl Set up the Mac toolbox video driver for Mac OS 7-9 |
|
1092 |
CheckTOOLBOX() |
|
1093 |
{ |
|
1094 |
VIDEO_SUBDIRS="$VIDEO_SUBDIRS maccommon" |
|
1095 |
VIDEO_DRIVERS="$VIDEO_DRIVERS maccommon/libvideo_maccommon.la" |
|
1096 |
VIDEO_SUBDIRS="$VIDEO_SUBDIRS macrom" |
|
1097 |
VIDEO_DRIVERS="$VIDEO_DRIVERS macrom/libvideo_macrom.la" |
|
1098 |
} |
|
1099 |
||
1100 |
dnl Set up the Mac toolbox video driver for Mac OS X |
|
1101 |
CheckCARBON() |
|
1102 |
{ |
|
1103 |
# "MACOSX" is not an official definition, but it's commonly |
|
1104 |
# accepted as a way to differentiate between what runs on X |
|
1105 |
# and what runs on older Macs - while in theory "Carbon" defns |
|
1106 |
# are consistent between the two, in practice Carbon is still |
|
1107 |
# changing. -sts Aug 2000 |
|
1108 |
mac_autoconf_target_workaround="MAC" |
|
1109 |
CFLAGS="$CFLAGS -I/System/Library/Frameworks/Carbon.framework/Headers \ |
|
1110 |
-fpascal-strings -DENABLE_TOOLBOX -DMACOSX -DTARGET_API_${mac_autoconf_target_workaround}_CARBON=1 -I\$(top_srcdir)/src/video/maccommon -I\$(top_srcdir)/src/video/macrom -I\$(top_srcdir)/src/video/macdsp" |
|
1111 |
VIDEO_SUBDIRS="$VIDEO_SUBDIRS maccommon" |
|
1112 |
VIDEO_DRIVERS="$VIDEO_DRIVERS maccommon/libvideo_maccommon.la" |
|
1113 |
VIDEO_SUBDIRS="$VIDEO_SUBDIRS macrom" |
|
1114 |
VIDEO_DRIVERS="$VIDEO_DRIVERS macrom/libvideo_macrom.la" |
|
1115 |
} |
|
1116 |
||
1117 |
dnl Set up the kernel statistics library for Solaris |
|
1118 |
CheckKSTAT() |
|
1119 |
{ |
|
1120 |
CFLAGS="$CFLAGS -DHAVE_KSTAT" |
|
1121 |
SYSTEM_LIBS="$SYSTEM_LIBS -lkstat" |
|
1122 |
} |
|
1123 |
||
1124 |
case "$target" in |
|
1125 |
*-*-linux*) |
|
1126 |
ARCH=linux |
|
1
cf2af46e9e2a
Changes since SDL 1.2.0 release
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
1127 |
CheckDummyVideo |
68
ac6645260d31
Added an audio driver that writes to disk (thanks Ryan!)
Sam Lantinga <slouken@lokigames.com>
parents:
53
diff
changeset
|
1128 |
CheckDiskAudio |
0 | 1129 |
CheckNASM |
1130 |
CheckOSS |
|
1131 |
CheckALSA |
|
1132 |
CheckARTSC |
|
1133 |
CheckESD |
|
1134 |
CheckNAS |
|
1135 |
CheckX11 |
|
30
57bf11a5efd7
Added initial support for Nano-X (thanks Hsieh-Fu!)
Sam Lantinga <slouken@lokigames.com>
parents:
21
diff
changeset
|
1136 |
CheckNANOX |
0 | 1137 |
CheckDGA |
1138 |
CheckFBCON |
|
70
f590dd383b5d
Added Linux PlayStation 2 Graphics Synthesizer support
Sam Lantinga <slouken@lokigames.com>
parents:
68
diff
changeset
|
1139 |
CheckPS2GS |
0 | 1140 |
CheckGGI |
1141 |
CheckSVGA |
|
1142 |
CheckAAlib |
|
1143 |
CheckOpenGL |
|
1144 |
CheckInputEvents |
|
1145 |
CheckPTHREAD |
|
1146 |
# Set up files for the main() stub |
|
1147 |
COPY_ARCH_SRC(src/main, linux, SDL_main.c) |
|
1148 |
# Set up files for the audio library |
|
1149 |
# We use the OSS and ALSA API's, not the Sun audio API |
|
1150 |
#if test x$enable_audio = xyes; then |
|
1151 |
# AUDIO_SUBDIRS="$AUDIO_SUBDIRS sun" |
|
1152 |
# AUDIO_DRIVERS="$AUDIO_DRIVERS sun/libaudio_sun.la" |
|
1153 |
#fi |
|
1154 |
# Set up files for the joystick library |
|
1155 |
if test x$enable_joystick = xyes; then |
|
1156 |
JOYSTICK_SUBDIRS="$JOYSTICK_SUBDIRS linux" |
|
1157 |
JOYSTICK_DRIVERS="$JOYSTICK_DRIVERS linux/libjoystick_linux.la" |
|
1158 |
fi |
|
1159 |
# Set up files for the cdrom library |
|
1160 |
if test x$enable_cdrom = xyes; then |
|
1161 |
COPY_ARCH_SRC(src/cdrom, linux, SDL_syscdrom.c) |
|
1162 |
fi |
|
1163 |
# Set up files for the thread library |
|
1164 |
if test x$enable_threads = xyes; then |
|
1165 |
if test x$use_pthreads != xyes; then |
|
1166 |
COPY_ARCH_SRC(src/thread, linux, clone.S) |
|
1167 |
fi |
|
1168 |
COPY_ARCH_SRC(src/thread, linux, SDL_systhread.c) |
|
1169 |
COPY_ARCH_SRC(src/thread, linux, SDL_systhread_c.h) |
|
1170 |
if test x$use_pthreads = xyes -a x$enable_pthread_sem != xyes; then |
|
1171 |
COPY_ARCH_SRC(src/thread, generic, SDL_syssem.c) |
|
1172 |
else |
|
1173 |
COPY_ARCH_SRC(src/thread, linux, SDL_syssem.c) |
|
1174 |
fi |
|
1175 |
COPY_ARCH_SRC(src/thread, generic, SDL_syssem_c.h) |
|
1176 |
if test x$glibc20_pthreads = xyes; then |
|
1177 |
COPY_ARCH_SRC(src/thread, generic, SDL_sysmutex.c) |
|
1178 |
COPY_ARCH_SRC(src/thread, generic, SDL_sysmutex_c.h) |
|
1179 |
COPY_ARCH_SRC(src/thread, generic, SDL_syscond.c) |
|
1180 |
COPY_ARCH_SRC(src/thread, generic, SDL_syscond_c.h) |
|
1181 |
else |
|
1182 |
COPY_ARCH_SRC(src/thread, linux, SDL_sysmutex.c) |
|
1183 |
COPY_ARCH_SRC(src/thread, linux, SDL_sysmutex_c.h) |
|
1184 |
COPY_ARCH_SRC(src/thread, linux, SDL_syscond.c) |
|
1185 |
COPY_ARCH_SRC(src/thread, generic, SDL_syscond_c.h) |
|
1186 |
fi |
|
1187 |
fi |
|
1188 |
# Set up files for the timer library |
|
1189 |
if test x$enable_timers = xyes; then |
|
1190 |
COPY_ARCH_SRC(src/timer, linux, SDL_systimer.c) |
|
1191 |
fi |
|
1192 |
;; |
|
1193 |
*-*-bsdi*) |
|
1194 |
ARCH=bsdi |
|
1
cf2af46e9e2a
Changes since SDL 1.2.0 release
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
1195 |
CheckDummyVideo |
68
ac6645260d31
Added an audio driver that writes to disk (thanks Ryan!)
Sam Lantinga <slouken@lokigames.com>
parents:
53
diff
changeset
|
1196 |
CheckDiskAudio |
0 | 1197 |
CheckNASM |
1198 |
CheckOSS |
|
35
d3bc792e136d
Added detection of Open Sound System on Solaris x86
Sam Lantinga <slouken@lokigames.com>
parents:
30
diff
changeset
|
1199 |
CheckARTSC |
d3bc792e136d
Added detection of Open Sound System on Solaris x86
Sam Lantinga <slouken@lokigames.com>
parents:
30
diff
changeset
|
1200 |
CheckESD |
0 | 1201 |
CheckNAS |
1202 |
CheckX11 |
|
1203 |
CheckDGA |
|
1204 |
CheckSVGA |
|
1205 |
CheckAAlib |
|
1206 |
CheckOpenGL |
|
1207 |
CheckPTHREAD |
|
1208 |
# Set up files for the main() stub |
|
1209 |
COPY_ARCH_SRC(src/main, linux, SDL_main.c) |
|
1210 |
# Set up files for the joystick library |
|
1211 |
# (No joystick support yet) |
|
1212 |
if test x$enable_joystick = xyes; then |
|
1213 |
JOYSTICK_SUBDIRS="$JOYSTICK_SUBDIRS dummy" |
|
1214 |
JOYSTICK_DRIVERS="$JOYSTICK_DRIVERS dummy/libjoystick_dummy.la" |
|
1215 |
fi |
|
1216 |
# Set up files for the cdrom library |
|
1217 |
# (No cdrom support yet) |
|
1218 |
if test x$enable_cdrom = xyes; then |
|
1219 |
COPY_ARCH_SRC(src/cdrom, dummy, SDL_syscdrom.c) |
|
74212992fb08
Initial revision
Sam Lantinga <slouk& |