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