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