Mercurial > sdl-ios-xcode
annotate configure.in @ 350:6dd188952b9e
Bump the version, so that it isn't forotten later. :)
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Sun, 14 Apr 2002 21:51:25 +0000 |
parents | 1d74ddc90cb2 |
children | 30935e76acb5 |
rev | line source |
---|---|
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 | |
350
6dd188952b9e
Bump the version, so that it isn't forotten later. :)
Sam Lantinga <slouken@libsdl.org>
parents:
329
diff
changeset
|
17 SDL_MICRO_VERSION=5 |
6dd188952b9e
Bump the version, so that it isn't forotten later. :)
Sam Lantinga <slouken@libsdl.org>
parents:
329
diff
changeset
|
18 SDL_INTERFACE_AGE=5 |
6dd188952b9e
Bump the version, so that it isn't forotten later. :)
Sam Lantinga <slouken@libsdl.org>
parents:
329
diff
changeset
|
19 SDL_BINARY_AGE=5 |
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 | |
258
ada53483727a
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
257
diff
changeset
|
58 ASFLAGS="" |
ada53483727a
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
257
diff
changeset
|
59 AC_SUBST(ASFLAGS) |
0 | 60 |
61 dnl The alpha architecture needs special flags for binary portability | |
62 case "$target" in | |
63 alpha*-*-linux*) | |
64 if test x$ac_cv_prog_gcc = xyes; then | |
65 CFLAGS="$CFLAGS -mcpu=ev4 -Wa,-mall" | |
66 fi | |
67 ;; | |
68 esac | |
69 | |
70 dnl Add compiler-specific optimization flags | |
71 | |
72 dnl See if the user wants aggressive optimizations of the code | |
73 AC_ARG_ENABLE(debug, | |
74 [ --enable-debug Disable aggressive optimizations [default=yes]], | |
75 , enable_debug=yes) | |
76 if test x$enable_debug != xyes; then | |
77 if test x$ac_cv_prog_gcc = xyes; then | |
78 CFLAGS="$CFLAGS -fexpensive-optimizations" | |
79 # Ack! This breaks the MMX YV12 conversion on gcc 2.95.2 | |
80 # CFLAGS="$CFLAGS -fomit-frame-pointer" | |
81 fi | |
82 case "$target" in | |
83 i486-*-*) | |
84 if test x$ac_cv_prog_gcc = xyes; then | |
85 CFLAGS="$CFLAGS -march=486" | |
86 fi | |
87 ;; | |
88 i?86-*-*) | |
89 if test x$ac_cv_prog_gcc = xyes; then | |
90 CFLAGS="$CFLAGS -march=pentium -mcpu=pentiumpro" | |
91 fi | |
92 ;; | |
93 *-*-osf*) | |
94 if test x$ac_cv_prog_gcc != xyes; then | |
95 CFLAGS="-g3 -fast -arch host" | |
96 fi | |
97 ;; | |
98 esac | |
99 fi | |
100 | |
101 dnl Add verbose warnings by default, and allow ANSI compliance checking | |
102 AC_ARG_ENABLE(strict-ansi, | |
103 [ --enable-strict-ansi Enable strict ANSI compliance build [default=no]], | |
104 , enable_strict_ansi=no) | |
105 if test x$ac_cv_prog_gcc = xyes; then | |
106 CFLAGS="$CFLAGS -Wall" | |
107 if test x$enable_strict_ansi = xyes; then | |
108 CFLAGS="$CFLAGS -ansi -pedantic -D_XOPEN_SOURCE" | |
109 fi | |
110 fi | |
111 | |
112 dnl Initialize the compiler and linker flags for SDL applications | |
113 | |
114 SDL_CFLAGS="" | |
115 SDL_LIBS="-lSDL" | |
116 | |
117 dnl Add the math library for the new gamma correction support | |
118 | |
119 case "$target" in | |
120 *-*-cygwin* | *-*-mingw32*) | |
121 MATHLIB="" | |
122 ;; | |
123 *-*-beos*) | |
124 MATHLIB="" | |
125 ;; | |
126 *-*-darwin*) | |
127 MATHLIB="" | |
128 ;; | |
129 *) | |
130 MATHLIB="-lm" | |
131 ;; | |
132 esac | |
133 SYSTEM_LIBS="$SYSTEM_LIBS $MATHLIB" | |
134 | |
135 dnl Enable/disable various subsystems of the SDL library | |
136 | |
137 AC_ARG_ENABLE(audio, | |
138 [ --enable-audio Enable the audio subsystem [default=yes]], | |
139 , enable_audio=yes) | |
140 if test x$enable_audio = xyes; then | |
141 SDL_EXTRADIRS="$SDL_EXTRADIRS audio" | |
142 SDL_EXTRALIBS="$SDL_EXTRALIBS audio/libaudio.la" | |
143 else | |
144 CFLAGS="$CFLAGS -DDISABLE_AUDIO" | |
145 fi | |
146 AC_ARG_ENABLE(video, | |
147 [ --enable-video Enable the video subsystem [default=yes]], | |
148 , enable_video=yes) | |
149 if test x$enable_video = xyes; then | |
150 SDL_EXTRADIRS="$SDL_EXTRADIRS video" | |
151 SDL_EXTRALIBS="$SDL_EXTRALIBS video/libvideo.la" | |
152 else | |
153 CFLAGS="$CFLAGS -DDISABLE_VIDEO" | |
154 fi | |
155 AC_ARG_ENABLE(events, | |
156 [ --enable-events Enable the events subsystem [default=yes]], | |
157 , enable_events=yes) | |
158 if test x$enable_video = xyes -a x$enable_events = xyes; then | |
159 SDL_EXTRADIRS="$SDL_EXTRADIRS events" | |
160 SDL_EXTRALIBS="$SDL_EXTRALIBS events/libevents.la" | |
161 else | |
162 CFLAGS="$CFLAGS -DDISABLE_EVENTS" | |
163 fi | |
164 AC_ARG_ENABLE(joystick, | |
165 [ --enable-joystick Enable the joystick subsystem [default=yes]], | |
166 , enable_joystick=yes) | |
167 if test x$enable_joystick = xyes; then | |
168 SDL_EXTRADIRS="$SDL_EXTRADIRS joystick" | |
169 SDL_EXTRALIBS="$SDL_EXTRALIBS joystick/libjoystick.la" | |
170 else | |
171 CFLAGS="$CFLAGS -DDISABLE_JOYSTICK" | |
172 fi | |
173 AC_ARG_ENABLE(cdrom, | |
174 [ --enable-cdrom Enable the cdrom subsystem [default=yes]], | |
175 , enable_cdrom=yes) | |
176 if test x$enable_cdrom = xyes; then | |
177 SDL_EXTRADIRS="$SDL_EXTRADIRS cdrom" | |
178 SDL_EXTRALIBS="$SDL_EXTRALIBS cdrom/libcdrom.la" | |
179 else | |
180 CFLAGS="$CFLAGS -DDISABLE_CDROM" | |
181 fi | |
182 AC_ARG_ENABLE(threads, | |
183 [ --enable-threads Enable the threading subsystem [default=yes]], | |
184 , enable_threads=yes) | |
185 SDL_EXTRADIRS="$SDL_EXTRADIRS thread" | |
186 SDL_EXTRALIBS="$SDL_EXTRALIBS thread/libthread.la" | |
187 if test x$enable_threads != xyes; then | |
188 CFLAGS="$CFLAGS -DDISABLE_THREADS" | |
189 COPY_ARCH_SRC(src/thread, generic, SDL_systhread.c) | |
190 COPY_ARCH_SRC(src/thread, generic, SDL_systhread_c.h) | |
191 COPY_ARCH_SRC(src/thread, generic, SDL_sysmutex.c) | |
192 COPY_ARCH_SRC(src/thread, generic, SDL_sysmutex_c.h) | |
193 COPY_ARCH_SRC(src/thread, generic, SDL_syssem.c) | |
194 COPY_ARCH_SRC(src/thread, generic, SDL_syssem_c.h) | |
195 COPY_ARCH_SRC(src/thread, generic, SDL_syscond.c) | |
196 COPY_ARCH_SRC(src/thread, generic, SDL_syscond_c.h) | |
197 fi | |
198 AC_ARG_ENABLE(timers, | |
199 [ --enable-timers Enable the timer subsystem [default=yes]], | |
200 , enable_timers=yes) | |
201 if test x$enable_timers = xyes; then | |
202 SDL_EXTRADIRS="$SDL_EXTRADIRS timer" | |
203 SDL_EXTRALIBS="$SDL_EXTRALIBS timer/libtimer.la" | |
204 else | |
205 CFLAGS="$CFLAGS -DDISABLE_TIMERS" | |
206 fi | |
207 AC_ARG_ENABLE(endian, | |
208 [ --enable-endian Enable the endian subsystem [default=yes]], | |
209 , enable_endian=yes) | |
210 if test x$enable_endian = xyes; then | |
211 SDL_EXTRADIRS="$SDL_EXTRADIRS endian" | |
212 SDL_EXTRALIBS="$SDL_EXTRALIBS endian/libendian.la" | |
213 else | |
214 CFLAGS="$CFLAGS -DDISABLE_ENDIAN" | |
215 fi | |
216 AC_ARG_ENABLE(file, | |
217 [ --enable-file Enable the file subsystem [default=yes]], | |
218 , enable_file=yes) | |
219 if test x$enable_file = xyes; then | |
220 SDL_EXTRADIRS="$SDL_EXTRADIRS file" | |
221 SDL_EXTRALIBS="$SDL_EXTRALIBS file/libfile.la" | |
222 else | |
223 CFLAGS="$CFLAGS -DDISABLE_FILE" | |
224 fi | |
225 | |
226 dnl See if the OSS audio interface is supported | |
227 CheckOSS() | |
228 { | |
229 AC_ARG_ENABLE(oss, | |
230 [ --enable-oss support the OSS audio API [default=yes]], | |
231 , enable_oss=yes) | |
232 if test x$enable_audio = xyes -a x$enable_oss = xyes; then | |
233 AC_MSG_CHECKING(for OSS audio support) | |
234 have_oss=no | |
94
ae6e6b73333f
Cleaned up the OpenBSD port, thanks to Peter Valchev
Sam Lantinga <slouken@lokigames.com>
parents:
86
diff
changeset
|
235 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
|
236 AC_TRY_COMPILE([ |
ae6e6b73333f
Cleaned up the OpenBSD port, thanks to Peter Valchev
Sam Lantinga <slouken@lokigames.com>
parents:
86
diff
changeset
|
237 #include <sys/soundcard.h> |
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 int arg = SNDCTL_DSP_SETFRAGMENT; |
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 have_oss=yes |
ae6e6b73333f
Cleaned up the OpenBSD port, thanks to Peter Valchev
Sam Lantinga <slouken@lokigames.com>
parents:
86
diff
changeset
|
242 ]) |
ae6e6b73333f
Cleaned up the OpenBSD port, thanks to Peter Valchev
Sam Lantinga <slouken@lokigames.com>
parents:
86
diff
changeset
|
243 fi |
ae6e6b73333f
Cleaned up the OpenBSD port, thanks to Peter Valchev
Sam Lantinga <slouken@lokigames.com>
parents:
86
diff
changeset
|
244 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
|
245 AC_TRY_COMPILE([ |
ae6e6b73333f
Cleaned up the OpenBSD port, thanks to Peter Valchev
Sam Lantinga <slouken@lokigames.com>
parents:
86
diff
changeset
|
246 #include <soundcard.h> |
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 int arg = SNDCTL_DSP_SETFRAGMENT; |
ae6e6b73333f
Cleaned up the OpenBSD port, thanks to Peter Valchev
Sam Lantinga <slouken@lokigames.com>
parents:
86
diff
changeset
|
249 ],[ |
ae6e6b73333f
Cleaned up the OpenBSD port, thanks to Peter Valchev
Sam Lantinga <slouken@lokigames.com>
parents:
86
diff
changeset
|
250 have_oss=yes |
ae6e6b73333f
Cleaned up the OpenBSD port, thanks to Peter Valchev
Sam Lantinga <slouken@lokigames.com>
parents:
86
diff
changeset
|
251 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
|
252 ]) |
ae6e6b73333f
Cleaned up the OpenBSD port, thanks to Peter Valchev
Sam Lantinga <slouken@lokigames.com>
parents:
86
diff
changeset
|
253 fi |
0 | 254 AC_MSG_RESULT($have_oss) |
255 if test x$have_oss = xyes; then | |
256 CFLAGS="$CFLAGS -DOSS_SUPPORT" | |
257 AUDIO_SUBDIRS="$AUDIO_SUBDIRS dsp" | |
258 AUDIO_DRIVERS="$AUDIO_DRIVERS dsp/libaudio_dsp.la" | |
259 AUDIO_SUBDIRS="$AUDIO_SUBDIRS dma" | |
260 AUDIO_DRIVERS="$AUDIO_DRIVERS dma/libaudio_dma.la" | |
261 fi | |
262 fi | |
263 } | |
264 | |
265 dnl See if the ALSA audio interface is supported | |
266 CheckALSA() | |
267 { | |
268 AC_ARG_ENABLE(alsa, | |
269 [ --enable-alsa support the ALSA audio API [default=yes]], | |
270 , enable_alsa=yes) | |
271 if test x$enable_audio = xyes -a x$enable_alsa = xyes; then | |
272 have_alsa=no | |
273 AC_CHECK_HEADER(sys/asoundlib.h, have_alsa_hdr=yes) | |
274 AC_CHECK_LIB(asound, snd_pcm_open, have_alsa_lib=yes) | |
275 if test x$have_alsa_hdr = xyes -a x$have_alsa_lib = xyes; then | |
276 CFLAGS="$CFLAGS -DALSA_SUPPORT" | |
277 SYSTEM_LIBS="$SYSTEM_LIBS -lasound" | |
278 AUDIO_SUBDIRS="$AUDIO_SUBDIRS alsa" | |
279 AUDIO_DRIVERS="$AUDIO_DRIVERS alsa/libaudio_alsa.la" | |
280 fi | |
281 fi | |
282 } | |
283 | |
37
3ad7157c6cfa
Added native OpenBSD audio driver (thanks vedge!)
Sam Lantinga <slouken@lokigames.com>
parents:
35
diff
changeset
|
284 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
|
285 CheckOPENBSDAUDIO() |
3ad7157c6cfa
Added native OpenBSD audio driver (thanks vedge!)
Sam Lantinga <slouken@lokigames.com>
parents:
35
diff
changeset
|
286 { |
3ad7157c6cfa
Added native OpenBSD audio driver (thanks vedge!)
Sam Lantinga <slouken@lokigames.com>
parents:
35
diff
changeset
|
287 AC_ARG_ENABLE(openbsdaudio, |
94
ae6e6b73333f
Cleaned up the OpenBSD port, thanks to Peter Valchev
Sam Lantinga <slouken@lokigames.com>
parents:
86
diff
changeset
|
288 [ --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
|
289 , enable_openbsdaudio=yes) |
37
3ad7157c6cfa
Added native OpenBSD audio driver (thanks vedge!)
Sam Lantinga <slouken@lokigames.com>
parents:
35
diff
changeset
|
290 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
|
291 CFLAGS="$CFLAGS -DOPENBSD_AUDIO_SUPPORT" |
37
3ad7157c6cfa
Added native OpenBSD audio driver (thanks vedge!)
Sam Lantinga <slouken@lokigames.com>
parents:
35
diff
changeset
|
292 AUDIO_SUBDIRS="$AUDIO_SUBDIRS openbsd" |
3ad7157c6cfa
Added native OpenBSD audio driver (thanks vedge!)
Sam Lantinga <slouken@lokigames.com>
parents:
35
diff
changeset
|
293 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
|
294 fi |
3ad7157c6cfa
Added native OpenBSD audio driver (thanks vedge!)
Sam Lantinga <slouken@lokigames.com>
parents:
35
diff
changeset
|
295 } |
3ad7157c6cfa
Added native OpenBSD audio driver (thanks vedge!)
Sam Lantinga <slouken@lokigames.com>
parents:
35
diff
changeset
|
296 |
148
8758b8d42cd9
Audio subsystem no longer assumes sun audio API on UNIX systems
Sam Lantinga <slouken@libsdl.org>
parents:
144
diff
changeset
|
297 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
|
298 CheckDMEDIA() |
8758b8d42cd9
Audio subsystem no longer assumes sun audio API on UNIX systems
Sam Lantinga <slouken@libsdl.org>
parents:
144
diff
changeset
|
299 { |
8758b8d42cd9
Audio subsystem no longer assumes sun audio API on UNIX systems
Sam Lantinga <slouken@libsdl.org>
parents:
144
diff
changeset
|
300 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
|
301 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
|
302 have_dmedia=no |
8758b8d42cd9
Audio subsystem no longer assumes sun audio API on UNIX systems
Sam Lantinga <slouken@libsdl.org>
parents:
144
diff
changeset
|
303 AC_TRY_COMPILE([ |
8758b8d42cd9
Audio subsystem no longer assumes sun audio API on UNIX systems
Sam Lantinga <slouken@libsdl.org>
parents:
144
diff
changeset
|
304 #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
|
305 ],[ |
8758b8d42cd9
Audio subsystem no longer assumes sun audio API on UNIX systems
Sam Lantinga <slouken@libsdl.org>
parents:
144
diff
changeset
|
306 ALport audio_port; |
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 have_dmedia=yes |
8758b8d42cd9
Audio subsystem no longer assumes sun audio API on UNIX systems
Sam Lantinga <slouken@libsdl.org>
parents:
144
diff
changeset
|
309 ]) |
8758b8d42cd9
Audio subsystem no longer assumes sun audio API on UNIX systems
Sam Lantinga <slouken@libsdl.org>
parents:
144
diff
changeset
|
310 # 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
|
311 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
|
312 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
|
313 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
|
314 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
|
315 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
|
316 fi |
8758b8d42cd9
Audio subsystem no longer assumes sun audio API on UNIX systems
Sam Lantinga <slouken@libsdl.org>
parents:
144
diff
changeset
|
317 fi |
8758b8d42cd9
Audio subsystem no longer assumes sun audio API on UNIX systems
Sam Lantinga <slouken@libsdl.org>
parents:
144
diff
changeset
|
318 } |
8758b8d42cd9
Audio subsystem no longer assumes sun audio API on UNIX systems
Sam Lantinga <slouken@libsdl.org>
parents:
144
diff
changeset
|
319 |
0 | 320 dnl Find the ESD includes and libraries |
321 CheckESD() | |
322 { | |
323 AC_ARG_ENABLE(esd, | |
324 [ --enable-esd support the Enlightened Sound Daemon [default=yes]], | |
325 , enable_esd=yes) | |
326 if test x$enable_audio = xyes -a x$enable_esd = xyes; then | |
294
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
327 use_esd=no |
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
328 AM_PATH_ESD(0.2.8, use_esd=yes) |
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
329 if test x$use_esd = xyes; then |
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
330 AC_ARG_ENABLE(esd-shared, |
296
fab1ddc4d7bf
Removed the API changes to preserve SDL 1.2 stability
Sam Lantinga <slouken@libsdl.org>
parents:
295
diff
changeset
|
331 [ --enable-esd-shared dynamically load ESD audio support [default=no]], |
fab1ddc4d7bf
Removed the API changes to preserve SDL 1.2 stability
Sam Lantinga <slouken@libsdl.org>
parents:
295
diff
changeset
|
332 , enable_esd_shared=no) |
294
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
333 esd_lib_spec=`echo $ESD_LIBS | sed 's/.*-L\([[^ ]]*\).*/\1\/libesd.so.*/'` |
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
334 esd_lib=`ls $esd_lib_spec | head -1 | sed 's/.*\/\(.*\)/\1/'` |
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
335 echo "-- $esd_lib_spec -> $esd_lib" |
296
fab1ddc4d7bf
Removed the API changes to preserve SDL 1.2 stability
Sam Lantinga <slouken@libsdl.org>
parents:
295
diff
changeset
|
336 if test x$enable_dlopen != xyes && \ |
fab1ddc4d7bf
Removed the API changes to preserve SDL 1.2 stability
Sam Lantinga <slouken@libsdl.org>
parents:
295
diff
changeset
|
337 test x$enable_esd_shared = xyes; then |
fab1ddc4d7bf
Removed the API changes to preserve SDL 1.2 stability
Sam Lantinga <slouken@libsdl.org>
parents:
295
diff
changeset
|
338 AC_MSG_ERROR([You must have dlopen() support and use the --enable-dlopen option]) |
fab1ddc4d7bf
Removed the API changes to preserve SDL 1.2 stability
Sam Lantinga <slouken@libsdl.org>
parents:
295
diff
changeset
|
339 fi |
294
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
340 if test x$enable_dlopen = xyes && \ |
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
341 test x$enable_esd_shared = xyes && test x$esd_lib != x; then |
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
342 CFLAGS="$CFLAGS -DESD_SUPPORT -DESD_DYNAMIC=\$(esd_lib) $ESD_CFLAGS" |
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
343 AC_SUBST(esd_lib) |
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
344 else |
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
345 CFLAGS="$CFLAGS -DESD_SUPPORT $ESD_CFLAGS" |
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
346 SYSTEM_LIBS="$SYSTEM_LIBS $ESD_LIBS" |
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
347 fi |
0 | 348 AUDIO_SUBDIRS="$AUDIO_SUBDIRS esd" |
349 AUDIO_DRIVERS="$AUDIO_DRIVERS esd/libaudio_esd.la" | |
294
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
350 fi |
0 | 351 fi |
352 } | |
353 | |
354 CheckARTSC() | |
355 { | |
356 AC_ARG_ENABLE(arts, | |
357 [ --enable-arts support the Analog Real Time Synthesizer [default=yes]], | |
358 , enable_arts=yes) | |
359 if test x$enable_audio = xyes -a x$enable_arts = xyes; then | |
360 AC_PATH_PROG(ARTSCCONFIG, artsc-config) | |
361 if test x$ARTSCCONFIG = x -o x$ARTSCCONFIG = x'"$ARTSCCONFIG"'; then | |
362 : # arts isn't installed | |
363 else | |
364 ARTSC_CFLAGS=`$ARTSCCONFIG --cflags` | |
365 ARTSC_LIBS=`$ARTSCCONFIG --libs` | |
366 AC_MSG_CHECKING(for aRts development environment) | |
367 audio_arts=no | |
368 save_CFLAGS="$CFLAGS" | |
369 CFLAGS="$CFLAGS $ARTSC_CFLAGS" | |
370 AC_TRY_COMPILE([ | |
371 #include <artsc.h> | |
372 ],[ | |
373 arts_stream_t stream; | |
374 ],[ | |
375 audio_arts=yes | |
376 ]) | |
377 CFLAGS="$save_CFLAGS" | |
378 AC_MSG_RESULT($audio_arts) | |
379 if test x$audio_arts = xyes; then | |
294
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
380 AC_ARG_ENABLE(arts-shared, |
296
fab1ddc4d7bf
Removed the API changes to preserve SDL 1.2 stability
Sam Lantinga <slouken@libsdl.org>
parents:
295
diff
changeset
|
381 [ --enable-arts-shared dynamically load aRts audio support [default=no]], |
fab1ddc4d7bf
Removed the API changes to preserve SDL 1.2 stability
Sam Lantinga <slouken@libsdl.org>
parents:
295
diff
changeset
|
382 , enable_arts_shared=no) |
300
8bdc210ed1de
Fixed dynamic arts support.
Sam Lantinga <slouken@libsdl.org>
parents:
296
diff
changeset
|
383 arts_lib_spec=`echo $ARTSC_LIBS | sed 's/.*-L\([[^ ]]*\).*/\1\/libartsc.so.*/'` |
294
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
384 arts_lib=`ls $arts_lib_spec | head -1 | sed 's/.*\/\(.*\)/\1/'` |
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
385 echo "-- $arts_lib_spec -> $arts_lib" |
296
fab1ddc4d7bf
Removed the API changes to preserve SDL 1.2 stability
Sam Lantinga <slouken@libsdl.org>
parents:
295
diff
changeset
|
386 if test x$enable_dlopen != xyes && \ |
fab1ddc4d7bf
Removed the API changes to preserve SDL 1.2 stability
Sam Lantinga <slouken@libsdl.org>
parents:
295
diff
changeset
|
387 test x$enable_arts_shared = xyes; then |
fab1ddc4d7bf
Removed the API changes to preserve SDL 1.2 stability
Sam Lantinga <slouken@libsdl.org>
parents:
295
diff
changeset
|
388 AC_MSG_ERROR([You must have dlopen() support and use the --enable-dlopen option]) |
fab1ddc4d7bf
Removed the API changes to preserve SDL 1.2 stability
Sam Lantinga <slouken@libsdl.org>
parents:
295
diff
changeset
|
389 fi |
294
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
390 if test x$enable_dlopen = xyes && \ |
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
391 test x$enable_arts_shared = xyes && test x$arts_lib != x; then |
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
392 CFLAGS="$CFLAGS -DARTSC_SUPPORT -DARTSC_DYNAMIC=\$(arts_lib) $ARTSC_CFLAGS" |
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
393 AC_SUBST(arts_lib) |
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
394 else |
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
395 CFLAGS="$CFLAGS -DARTSC_SUPPORT $ARTSC_CFLAGS" |
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
396 SYSTEM_LIBS="$SYSTEM_LIBS $ARTSC_LIBS" |
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
397 fi |
0 | 398 AUDIO_SUBDIRS="$AUDIO_SUBDIRS arts" |
399 AUDIO_DRIVERS="$AUDIO_DRIVERS arts/libaudio_arts.la" | |
400 fi | |
401 fi | |
402 fi | |
403 } | |
404 | |
405 dnl See if the NAS audio interface is supported | |
406 CheckNAS() | |
407 { | |
408 AC_ARG_ENABLE(nas, | |
292
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
409 [ --enable-nas support the NAS audio API [default=yes]], |
41
8de9e8baaecc
*** empty log message ***
Sam Lantinga <slouken@lokigames.com>
parents:
39
diff
changeset
|
410 , enable_nas=yes) |
0 | 411 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
|
412 AC_MSG_CHECKING(for NAS audio support) |
8de9e8baaecc
*** empty log message ***
Sam Lantinga <slouken@lokigames.com>
parents:
39
diff
changeset
|
413 have_nas=no |
8de9e8baaecc
*** empty log message ***
Sam Lantinga <slouken@lokigames.com>
parents:
39
diff
changeset
|
414 if test -r /usr/X11R6/include/audio/audiolib.h; then |
8de9e8baaecc
*** empty log message ***
Sam Lantinga <slouken@lokigames.com>
parents:
39
diff
changeset
|
415 have_nas=yes |
8de9e8baaecc
*** empty log message ***
Sam Lantinga <slouken@lokigames.com>
parents:
39
diff
changeset
|
416 fi |
8de9e8baaecc
*** empty log message ***
Sam Lantinga <slouken@lokigames.com>
parents:
39
diff
changeset
|
417 AC_MSG_RESULT($have_nas) |
8de9e8baaecc
*** empty log message ***
Sam Lantinga <slouken@lokigames.com>
parents:
39
diff
changeset
|
418 if test x$have_nas = xyes; then |
8de9e8baaecc
*** empty log message ***
Sam Lantinga <slouken@lokigames.com>
parents:
39
diff
changeset
|
419 CFLAGS="$CFLAGS -DNAS_SUPPORT" |
8de9e8baaecc
*** empty log message ***
Sam Lantinga <slouken@lokigames.com>
parents:
39
diff
changeset
|
420 SYSTEM_LIBS="$SYSTEM_LIBS -laudio -lXt" |
8de9e8baaecc
*** empty log message ***
Sam Lantinga <slouken@lokigames.com>
parents:
39
diff
changeset
|
421 AUDIO_SUBDIRS="$AUDIO_SUBDIRS nas" |
8de9e8baaecc
*** empty log message ***
Sam Lantinga <slouken@lokigames.com>
parents:
39
diff
changeset
|
422 AUDIO_DRIVERS="$AUDIO_DRIVERS nas/libaudio_nas.la" |
8de9e8baaecc
*** empty log message ***
Sam Lantinga <slouken@lokigames.com>
parents:
39
diff
changeset
|
423 fi |
0 | 424 fi |
425 } | |
426 | |
68
ac6645260d31
Added an audio driver that writes to disk (thanks Ryan!)
Sam Lantinga <slouken@lokigames.com>
parents:
53
diff
changeset
|
427 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
|
428 CheckDiskAudio() |
ac6645260d31
Added an audio driver that writes to disk (thanks Ryan!)
Sam Lantinga <slouken@lokigames.com>
parents:
53
diff
changeset
|
429 { |
ac6645260d31
Added an audio driver that writes to disk (thanks Ryan!)
Sam Lantinga <slouken@lokigames.com>
parents:
53
diff
changeset
|
430 AC_ARG_ENABLE(diskaudio, |
292
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
431 [ --enable-diskaudio support the disk writer audio driver [default=yes]], |
86
13e4c612098d
Dummy audio and video drivers are enabled (thanks Ryan!)
Sam Lantinga <slouken@lokigames.com>
parents:
76
diff
changeset
|
432 , enable_diskaudio=yes) |
68
ac6645260d31
Added an audio driver that writes to disk (thanks Ryan!)
Sam Lantinga <slouken@lokigames.com>
parents:
53
diff
changeset
|
433 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
|
434 CFLAGS="$CFLAGS -DDISKAUD_SUPPORT" |
ac6645260d31
Added an audio driver that writes to disk (thanks Ryan!)
Sam Lantinga <slouken@lokigames.com>
parents:
53
diff
changeset
|
435 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
|
436 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
|
437 fi |
ac6645260d31
Added an audio driver that writes to disk (thanks Ryan!)
Sam Lantinga <slouken@lokigames.com>
parents:
53
diff
changeset
|
438 } |
ac6645260d31
Added an audio driver that writes to disk (thanks Ryan!)
Sam Lantinga <slouken@lokigames.com>
parents:
53
diff
changeset
|
439 |
0 | 440 dnl See if we can use x86 assembly blitters |
212
5e8f81418e30
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
211
diff
changeset
|
441 # NASM is available from: http://nasm.octium.net/ |
0 | 442 CheckNASM() |
443 { | |
444 dnl Make sure we are running on an x86 platform | |
445 case $target in | |
446 i?86*) | |
447 ;; | |
448 *) | |
449 # Nope, bail early. | |
450 return | |
451 ;; | |
452 esac | |
453 dnl Check for NASM (for assembly blit routines) | |
454 AC_ARG_ENABLE(nasm, | |
455 [ --enable-nasm use nasm assembly blitters on x86 [default=yes]], | |
456 , enable_nasm=yes) | |
457 if test x$enable_video = xyes -a x$enable_nasm = xyes; then | |
458 AC_PATH_PROG(NASM, nasm) | |
459 if test x$NASM = x -o x$NASM = x'"$NASM"'; then | |
460 : # nasm isn't installed | |
461 else | |
462 CFLAGS="$CFLAGS -DUSE_ASMBLIT -I$srcdir/hermes" | |
463 case $ARCH in | |
464 win32) | |
465 NASMFLAGS="-f win32" | |
466 ;; | |
467 *) | |
468 NASMFLAGS="-f elf" | |
469 ;; | |
470 esac | |
471 AC_SUBST(NASMFLAGS) | |
472 CFLAGS="$CFLAGS -I\$(top_srcdir)/src/hermes" | |
473 SDL_EXTRADIRS="$SDL_EXTRADIRS hermes" | |
474 SDL_EXTRALIBS="$SDL_EXTRALIBS hermes/libhermes.la" | |
475 fi | |
476 fi | |
477 } | |
478 | |
30
57bf11a5efd7
Added initial support for Nano-X (thanks Hsieh-Fu!)
Sam Lantinga <slouken@lokigames.com>
parents:
21
diff
changeset
|
479 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
|
480 CheckNANOX() |
57bf11a5efd7
Added initial support for Nano-X (thanks Hsieh-Fu!)
Sam Lantinga <slouken@lokigames.com>
parents:
21
diff
changeset
|
481 { |
292
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
482 AC_ARG_ENABLE(video-nanox, |
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
483 [ --enable-video-nanox use nanox video driver [default=no]], |
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
484 , enable_video_nanox=no) |
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
485 AC_ARG_ENABLE(nanox-debug, |
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
486 [ --enable-nanox-debug print debug messages [default=no]], |
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
487 , enable_nanox_debug=no) |
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
488 AC_ARG_ENABLE(nanox-share-memory, |
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
489 [ --enable-nanox-share-memory use share memory [default=no]], |
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
490 , enable_nanox_share_memory=no) |
30
57bf11a5efd7
Added initial support for Nano-X (thanks Hsieh-Fu!)
Sam Lantinga <slouken@lokigames.com>
parents:
21
diff
changeset
|
491 |
292
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
492 AC_ARG_WITH(nanox_pixel_type, |
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
493 [ --with-nanox-pixel-type=[rgb/0888/888/565/555/332/pal]]) |
30
57bf11a5efd7
Added initial support for Nano-X (thanks Hsieh-Fu!)
Sam Lantinga <slouken@lokigames.com>
parents:
21
diff
changeset
|
494 |
292
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
495 if test x$enable_video = xyes -a x$enable_video_nanox = xyes; then |
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
496 if test x$enable_nanox_debug = xyes; then |
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
497 CFLAGS="$CFLAGS -DENABLE_NANOX_DEBUG" |
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
498 fi |
30
57bf11a5efd7
Added initial support for Nano-X (thanks Hsieh-Fu!)
Sam Lantinga <slouken@lokigames.com>
parents:
21
diff
changeset
|
499 |
292
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
500 if test x$enable_nanox_share_memory = xyes; then |
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
501 CFLAGS="$CFLAGS -DNANOX_SHARE_MEMORY" |
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
502 fi |
30
57bf11a5efd7
Added initial support for Nano-X (thanks Hsieh-Fu!)
Sam Lantinga <slouken@lokigames.com>
parents:
21
diff
changeset
|
503 |
292
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
504 case "$with_nanox_pixel_type" in |
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
505 rgb) CFLAGS="$CFLAGS -DNANOX_PIXEL_RGB" ;; |
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
506 0888) CFLAGS="$CFLAGS -DNANOX_PIXEL_0888" ;; |
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
507 888) CFLAGS="$CFLAGS -DNANOX_PIXEL_888" ;; |
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
508 565) CFLAGS="$CFLAGS -DNANOX_PIXEL_565" ;; |
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
509 555) CFLAGS="$CFLAGS -DNANOX_PIXEL_555" ;; |
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
510 332) CFLAGS="$CFLAGS -DNANOX_PIXEL_332" ;; |
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
511 pal) CFLAGS="$CFLAGS -DNANOX_PIXEL_PAL" ;; |
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
512 *) AC_MSG_ERROR([Invalid nanox_pixel_type]);; |
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
513 esac |
30
57bf11a5efd7
Added initial support for Nano-X (thanks Hsieh-Fu!)
Sam Lantinga <slouken@lokigames.com>
parents:
21
diff
changeset
|
514 |
292
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
515 CFLAGS="$CFLAGS $X_CFLAGS -DENABLE_NANOX" |
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
516 SYSTEM_LIBS="$SYSTEM_LIBS -lnano-X" |
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
517 VIDEO_SUBDIRS="$VIDEO_SUBDIRS nanox" |
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
518 VIDEO_DRIVERS="$VIDEO_DRIVERS nanox/libvideo_nanox.la" |
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
519 fi |
30
57bf11a5efd7
Added initial support for Nano-X (thanks Hsieh-Fu!)
Sam Lantinga <slouken@lokigames.com>
parents:
21
diff
changeset
|
520 } |
57bf11a5efd7
Added initial support for Nano-X (thanks Hsieh-Fu!)
Sam Lantinga <slouken@lokigames.com>
parents:
21
diff
changeset
|
521 |
0 | 522 dnl Find the X11 include and library directories |
523 CheckX11() | |
524 { | |
525 AC_ARG_ENABLE(video-x11, | |
526 [ --enable-video-x11 use X11 video driver [default=yes]], | |
527 , enable_video_x11=yes) | |
528 if test x$enable_video = xyes -a x$enable_video_x11 = xyes; then | |
529 AC_PATH_X | |
530 AC_PATH_XTRA | |
531 if test x$have_x = xyes; then | |
318
0910a3034576
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
302
diff
changeset
|
532 CFLAGS="$CFLAGS $X_CFLAGS -DENABLE_X11 -Iinclude -Isrc/video" |
0 | 533 if test x$ac_cv_func_shmat != xyes; then |
534 CFLAGS="$CFLAGS -DNO_SHARED_MEMORY" | |
535 fi | |
536 SYSTEM_LIBS="$SYSTEM_LIBS $X_LIBS -lX11 -lXext" | |
537 VIDEO_SUBDIRS="$VIDEO_SUBDIRS x11" | |
538 VIDEO_DRIVERS="$VIDEO_DRIVERS x11/libvideo_x11.la" | |
539 | |
540 AC_ARG_ENABLE(video-x11-vm, | |
541 [ --enable-video-x11-vm use X11 VM extension for fullscreen [default=yes]], | |
542 , enable_video_x11_vm=yes) | |
543 if test x$enable_video_x11_vm = xyes; then | |
544 AC_MSG_CHECKING(for XFree86 VidMode 1.0 support) | |
545 video_x11_vm=no | |
546 AC_TRY_COMPILE([ | |
547 #include <X11/Xlib.h> | |
292
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
548 #include <XFree86/extensions/xf86vmode.h> |
0 | 549 ],[ |
550 ],[ | |
551 video_x11_vm=yes | |
552 ]) | |
553 AC_MSG_RESULT($video_x11_vm) | |
554 if test x$video_x11_vm = xyes; then | |
555 CFLAGS="$CFLAGS -DXFREE86_VM" | |
292
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
556 VIDEO_SUBDIRS="$VIDEO_SUBDIRS XFree86/Xxf86vm" |
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
557 VIDEO_DRIVERS="$VIDEO_DRIVERS XFree86/Xxf86vm/libXFree86_Xxf86vm.la" |
0 | 558 AC_MSG_CHECKING(for XFree86 VidMode gamma support) |
559 video_x11_vmgamma=no | |
560 AC_TRY_COMPILE([ | |
561 #include <X11/Xlib.h> | |
292
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
562 #include <XFree86/extensions/xf86vmode.h> |
0 | 563 ],[ |
292
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
564 SDL_NAME(XF86VidModeGamma) gamma; |
0 | 565 ],[ |
566 video_x11_vmgamma=yes | |
567 ]) | |
568 AC_MSG_RESULT($video_x11_vmgamma) | |
569 if test x$video_x11_vmgamma = xyes; then | |
570 CFLAGS="$CFLAGS -DXFREE86_VMGAMMA" | |
571 fi | |
572 fi | |
573 fi | |
16
735e5a8696d0
Added --disable-dga configure option to disable DGA entirely
Sam Lantinga <slouken@lokigames.com>
parents:
1
diff
changeset
|
574 AC_ARG_ENABLE(dga, |
735e5a8696d0
Added --disable-dga configure option to disable DGA entirely
Sam Lantinga <slouken@lokigames.com>
parents:
1
diff
changeset
|
575 [ --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
|
576 , enable_dga=yes) |
0 | 577 AC_ARG_ENABLE(video-x11-dgamouse, |
578 [ --enable-video-x11-dgamouse use X11 DGA for mouse events [default=yes]], | |
579 , 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
|
580 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
|
581 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
|
582 video_x11_dga=no |
735e5a8696d0
Added --disable-dga configure option to disable DGA entirely
Sam Lantinga <slouken@lokigames.com>
parents:
1
diff
changeset
|
583 AC_TRY_COMPILE([ |
735e5a8696d0
Added --disable-dga configure option to disable DGA entirely
Sam Lantinga <slouken@lokigames.com>
parents:
1
diff
changeset
|
584 #include <X11/Xlib.h> |
292
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
585 #include <XFree86/extensions/xf86dga.h> |
16
735e5a8696d0
Added --disable-dga configure option to disable DGA entirely
Sam Lantinga <slouken@lokigames.com>
parents:
1
diff
changeset
|
586 ],[ |
735e5a8696d0
Added --disable-dga configure option to disable DGA entirely
Sam Lantinga <slouken@lokigames.com>
parents:
1
diff
changeset
|
587 ],[ |
735e5a8696d0
Added --disable-dga configure option to disable DGA entirely
Sam Lantinga <slouken@lokigames.com>
parents:
1
diff
changeset
|
588 video_x11_dga=yes |
735e5a8696d0
Added --disable-dga configure option to disable DGA entirely
Sam Lantinga <slouken@lokigames.com>
parents:
1
diff
changeset
|
589 ]) |
735e5a8696d0
Added --disable-dga configure option to disable DGA entirely
Sam Lantinga <slouken@lokigames.com>
parents:
1
diff
changeset
|
590 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
|
591 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
|
592 CFLAGS="$CFLAGS -DXFREE86_DGAMOUSE" |
735e5a8696d0
Added --disable-dga configure option to disable DGA entirely
Sam Lantinga <slouken@lokigames.com>
parents:
1
diff
changeset
|
593 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
|
594 CFLAGS="$CFLAGS -DDEFAULT_DGAMOUSE" |
735e5a8696d0
Added --disable-dga configure option to disable DGA entirely
Sam Lantinga <slouken@lokigames.com>
parents:
1
diff
changeset
|
595 fi |
292
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
596 VIDEO_SUBDIRS="$VIDEO_SUBDIRS XFree86/Xxf86dga" |
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
597 VIDEO_DRIVERS="$VIDEO_DRIVERS XFree86/Xxf86dga/libXFree86_Xxf86dga.la" |
0 | 598 fi |
599 fi | |
600 AC_ARG_ENABLE(video-x11-xv, | |
601 [ --enable-video-x11-xv use X11 XvImage extension for video [default=yes]], | |
602 , enable_video_x11_xv=yes) | |
603 if test x$enable_video_x11_xv = xyes; then | |
604 AC_MSG_CHECKING(for XFree86 XvImage support) | |
605 video_x11_xv=no | |
606 AC_TRY_COMPILE([ | |
607 #include <X11/Xlib.h> | |
608 #include <sys/ipc.h> | |
609 #include <sys/shm.h> | |
610 #include <X11/extensions/XShm.h> | |
292
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
611 #include <XFree86/extensions/Xvlib.h> |
0 | 612 ],[ |
292
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
613 SDL_NAME(XvImage) *image; |
0 | 614 ],[ |
615 video_x11_xv=yes | |
616 ]) | |
617 AC_MSG_RESULT($video_x11_xv) | |
618 if test x$video_x11_xv = xyes; then | |
619 CFLAGS="$CFLAGS -DXFREE86_XV" | |
292
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
620 VIDEO_SUBDIRS="$VIDEO_SUBDIRS XFree86/Xv" |
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
621 VIDEO_DRIVERS="$VIDEO_DRIVERS XFree86/Xv/libXFree86_Xv.la" |
0 | 622 fi |
623 fi | |
227
24878c14b391
Added X11 Xinerama support - fullscreen starts on screen 0
Sam Lantinga <slouken@libsdl.org>
parents:
222
diff
changeset
|
624 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
|
625 [ --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
|
626 , enable_video_x11_xinerama=yes) |
24878c14b391
Added X11 Xinerama support - fullscreen starts on screen 0
Sam Lantinga <slouken@libsdl.org>
parents:
222
diff
changeset
|
627 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
|
628 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
|
629 video_x11_xinerama=no |
24878c14b391
Added X11 Xinerama support - fullscreen starts on screen 0
Sam Lantinga <slouken@libsdl.org>
parents:
222
diff
changeset
|
630 AC_TRY_COMPILE([ |
24878c14b391
Added X11 Xinerama support - fullscreen starts on screen 0
Sam Lantinga <slouken@libsdl.org>
parents:
222
diff
changeset
|
631 #include <X11/Xlib.h> |
292
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
632 #include <XFree86/extensions/Xinerama.h> |
227
24878c14b391
Added X11 Xinerama support - fullscreen starts on screen 0
Sam Lantinga <slouken@libsdl.org>
parents:
222
diff
changeset
|
633 ],[ |
292
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
634 SDL_NAME(XineramaScreenInfo) *xinerama; |
227
24878c14b391
Added X11 Xinerama support - fullscreen starts on screen 0
Sam Lantinga <slouken@libsdl.org>
parents:
222
diff
changeset
|
635 ],[ |
24878c14b391
Added X11 Xinerama support - fullscreen starts on screen 0
Sam Lantinga <slouken@libsdl.org>
parents:
222
diff
changeset
|
636 video_x11_xinerama=yes |
24878c14b391
Added X11 Xinerama support - fullscreen starts on screen 0
Sam Lantinga <slouken@libsdl.org>
parents:
222
diff
changeset
|
637 ]) |
24878c14b391
Added X11 Xinerama support - fullscreen starts on screen 0
Sam Lantinga <slouken@libsdl.org>
parents:
222
diff
changeset
|
638 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
|
639 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
|
640 CFLAGS="$CFLAGS -DHAVE_XINERAMA" |
292
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
641 VIDEO_SUBDIRS="$VIDEO_SUBDIRS XFree86/Xinerama" |
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
642 VIDEO_DRIVERS="$VIDEO_DRIVERS XFree86/Xinerama/libXFree86_Xinerama.la" |
227
24878c14b391
Added X11 Xinerama support - fullscreen starts on screen 0
Sam Lantinga <slouken@libsdl.org>
parents:
222
diff
changeset
|
643 fi |
24878c14b391
Added X11 Xinerama support - fullscreen starts on screen 0
Sam Lantinga <slouken@libsdl.org>
parents:
222
diff
changeset
|
644 fi |
242
4bcb29d3769c
Added support for Xi Graphics XME fullscreen extension
Sam Lantinga <slouken@libsdl.org>
parents:
241
diff
changeset
|
645 AC_ARG_ENABLE(video-x11-xme, |
4bcb29d3769c
Added support for Xi Graphics XME fullscreen extension
Sam Lantinga <slouken@libsdl.org>
parents:
241
diff
changeset
|
646 [ --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
|
647 , enable_video_x11_xme=yes) |
4bcb29d3769c
Added support for Xi Graphics XME fullscreen extension
Sam Lantinga <slouken@libsdl.org>
parents:
241
diff
changeset
|
648 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
|
649 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
|
650 video_x11_xme=no |
4bcb29d3769c
Added support for Xi Graphics XME fullscreen extension
Sam Lantinga <slouken@libsdl.org>
parents:
241
diff
changeset
|
651 AC_TRY_COMPILE([ |
4bcb29d3769c
Added support for Xi Graphics XME fullscreen extension
Sam Lantinga <slouken@libsdl.org>
parents:
241
diff
changeset
|
652 #include <X11/Xlib.h> |
4bcb29d3769c
Added support for Xi Graphics XME fullscreen extension
Sam Lantinga <slouken@libsdl.org>
parents:
241
diff
changeset
|
653 #include <X11/extensions/xme.h> |
4bcb29d3769c
Added support for Xi Graphics XME fullscreen extension
Sam Lantinga <slouken@libsdl.org>
parents:
241
diff
changeset
|
654 ],[ |
4bcb29d3769c
Added support for Xi Graphics XME fullscreen extension
Sam Lantinga <slouken@libsdl.org>
parents:
241
diff
changeset
|
655 XiGMiscResolutionInfo *resolutions; |
4bcb29d3769c
Added support for Xi Graphics XME fullscreen extension
Sam Lantinga <slouken@libsdl.org>
parents:
241
diff
changeset
|
656 ],[ |
4bcb29d3769c
Added support for Xi Graphics XME fullscreen extension
Sam Lantinga <slouken@libsdl.org>
parents:
241
diff
changeset
|
657 video_x11_xme=yes |
4bcb29d3769c
Added support for Xi Graphics XME fullscreen extension
Sam Lantinga <slouken@libsdl.org>
parents:
241
diff
changeset
|
658 ]) |
4bcb29d3769c
Added support for Xi Graphics XME fullscreen extension
Sam Lantinga <slouken@libsdl.org>
parents:
241
diff
changeset
|
659 AC_MSG_RESULT($video_x11_xme) |
4bcb29d3769c
Added support for Xi Graphics XME fullscreen extension
Sam Lantinga <slouken@libsdl.org>
parents:
241
diff
changeset
|
660 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
|
661 CFLAGS="$CFLAGS -DHAVE_XIGXME" |
4bcb29d3769c
Added support for Xi Graphics XME fullscreen extension
Sam Lantinga <slouken@libsdl.org>
parents:
241
diff
changeset
|
662 SYSTEM_LIBS="$SYSTEM_LIBS -lxme" |
4bcb29d3769c
Added support for Xi Graphics XME fullscreen extension
Sam Lantinga <slouken@libsdl.org>
parents:
241
diff
changeset
|
663 fi |
4bcb29d3769c
Added support for Xi Graphics XME fullscreen extension
Sam Lantinga <slouken@libsdl.org>
parents:
241
diff
changeset
|
664 fi |
0 | 665 fi |
666 fi | |
667 } | |
279
04351f59b051
Mike Gorchak added some QNX tweaks, including OpenGL support
Sam Lantinga <slouken@libsdl.org>
parents:
278
diff
changeset
|
668 |
292
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
669 dnl Find the X11 DGA 2.0 include and library directories |
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
670 CheckDGA() |
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
671 { |
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
672 AC_ARG_ENABLE(video-dga, |
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
673 [ --enable-video-dga use DGA 2.0 video driver [default=yes]], |
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
674 , enable_video_dga=yes) |
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
675 if test x$video_x11_dga = xyes -a x$enable_video_dga = xyes; then |
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
676 save_CFLAGS="$CFLAGS"; CFLAGS="$CFLAGS -Isrc/video" |
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
677 AC_MSG_CHECKING(for XFree86 DGA 2.0 support) |
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
678 video_x11_dga2=no |
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
679 AC_TRY_COMPILE([ |
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
680 #include <X11/Xlib.h> |
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
681 #include <XFree86/extensions/xf86dga.h> |
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
682 ],[ |
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
683 SDL_NAME(XDGAEvent) xevent; |
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
684 ],[ |
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
685 video_x11_dga2=yes |
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
686 ]) |
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
687 AC_MSG_RESULT($video_x11_dga2) |
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
688 if test x$video_x11_dga2 = xyes; then |
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
689 CFLAGS="$CFLAGS -DENABLE_DGA" |
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
690 VIDEO_SUBDIRS="$VIDEO_SUBDIRS dga" |
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
691 VIDEO_DRIVERS="$VIDEO_DRIVERS dga/libvideo_dga.la" |
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
692 fi |
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
693 fi |
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
694 } |
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
695 |
0 | 696 CheckPHOTON() |
697 { | |
698 AC_ARG_ENABLE(video-photon, | |
72
4210b3e74800
Fixed the PS2 GS detection
Sam Lantinga <slouken@lokigames.com>
parents:
70
diff
changeset
|
699 [ --enable-video-photon use QNX Photon video driver [default=yes]], |
0 | 700 , enable_video_photon=yes) |
701 if test x$enable_video = xyes -a x$enable_video_photon = xyes; then | |
702 AC_MSG_CHECKING(for QNX Photon support) | |
703 video_photon=no | |
704 AC_TRY_COMPILE([ | |
705 #include <Ph.h> | |
706 #include <Pt.h> | |
707 #include <photon/Pg.h> | |
708 #include <photon/PdDirect.h> | |
709 ],[ | |
710 PgDisplaySettings_t *visual; | |
711 ],[ | |
712 video_photon=yes | |
713 ]) | |
714 AC_MSG_RESULT($video_photon) | |
715 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
|
716 CFLAGS="$CFLAGS -DENABLE_PHOTON" |
0 | 717 SYSTEM_LIBS="$SYSTEM_LIBS -lph" |
718 VIDEO_SUBDIRS="$VIDEO_SUBDIRS photon" | |
719 VIDEO_DRIVERS="$VIDEO_DRIVERS photon/libvideo_photon.la" | |
279
04351f59b051
Mike Gorchak added some QNX tweaks, including OpenGL support
Sam Lantinga <slouken@libsdl.org>
parents:
278
diff
changeset
|
720 CheckOpenGLQNX |
0 | 721 fi |
722 fi | |
723 } | |
724 | |
725 dnl Find the framebuffer console includes | |
726 CheckFBCON() | |
727 { | |
728 AC_ARG_ENABLE(video-fbcon, | |
729 [ --enable-video-fbcon use framebuffer console video driver [default=yes]], | |
730 , enable_video_fbcon=yes) | |
731 if test x$enable_video = xyes -a x$enable_video_fbcon = xyes; then | |
732 AC_MSG_CHECKING(for framebuffer console support) | |
733 video_fbcon=no | |
734 AC_TRY_COMPILE([ | |
735 #include <linux/fb.h> | |
736 #include <linux/kd.h> | |
737 #include <linux/keyboard.h> | |
738 ],[ | |
739 ],[ | |
740 video_fbcon=yes | |
741 ]) | |
742 AC_MSG_RESULT($video_fbcon) | |
743 if test x$video_fbcon = xyes; then | |
744 CFLAGS="$CFLAGS -DENABLE_FBCON" | |
745 VIDEO_SUBDIRS="$VIDEO_SUBDIRS fbcon" | |
746 VIDEO_DRIVERS="$VIDEO_DRIVERS fbcon/libvideo_fbcon.la" | |
747 fi | |
748 fi | |
749 } | |
750 | |
167
cb384ef627f6
Added support for DirectFB video on Linux (thanks Denis!)
Sam Lantinga <slouken@libsdl.org>
parents:
166
diff
changeset
|
751 dnl Find DirectFB |
cb384ef627f6
Added support for DirectFB video on Linux (thanks Denis!)
Sam Lantinga <slouken@libsdl.org>
parents:
166
diff
changeset
|
752 CheckDirectFB() |
cb384ef627f6
Added support for DirectFB video on Linux (thanks Denis!)
Sam Lantinga <slouken@libsdl.org>
parents:
166
diff
changeset
|
753 { |
cb384ef627f6
Added support for DirectFB video on Linux (thanks Denis!)
Sam Lantinga <slouken@libsdl.org>
parents:
166
diff
changeset
|
754 AC_ARG_ENABLE(video-directfb, |
cb384ef627f6
Added support for DirectFB video on Linux (thanks Denis!)
Sam Lantinga <slouken@libsdl.org>
parents:
166
diff
changeset
|
755 [ --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
|
756 , enable_video_directfb=yes) |
cb384ef627f6
Added support for DirectFB video on Linux (thanks Denis!)
Sam Lantinga <slouken@libsdl.org>
parents:
166
diff
changeset
|
757 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
|
758 video_directfb=no |
cb384ef627f6
Added support for DirectFB video on Linux (thanks Denis!)
Sam Lantinga <slouken@libsdl.org>
parents:
166
diff
changeset
|
759 |
cb384ef627f6
Added support for DirectFB video on Linux (thanks Denis!)
Sam Lantinga <slouken@libsdl.org>
parents:
166
diff
changeset
|
760 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
|
761 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
|
762 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
|
763 else |
cb384ef627f6
Added support for DirectFB video on Linux (thanks Denis!)
Sam Lantinga <slouken@libsdl.org>
parents:
166
diff
changeset
|
764 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
|
765 |
222
0a98dba2c700
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
219
diff
changeset
|
766 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
|
767 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
|
768 fi |
cb384ef627f6
Added support for DirectFB video on Linux (thanks Denis!)
Sam Lantinga <slouken@libsdl.org>
parents:
166
diff
changeset
|
769 |
286
3ea69fd0b095
Updated for DirectFB 0.9.9
Sam Lantinga <slouken@libsdl.org>
parents:
281
diff
changeset
|
770 DIRECTFB_REQUIRED_VERSION=0.9.9 |
167
cb384ef627f6
Added support for DirectFB video on Linux (thanks Denis!)
Sam Lantinga <slouken@libsdl.org>
parents:
166
diff
changeset
|
771 |
cb384ef627f6
Added support for DirectFB video on Linux (thanks Denis!)
Sam Lantinga <slouken@libsdl.org>
parents:
166
diff
changeset
|
772 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
|
773 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
|
774 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
|
775 video_directfb=yes |
cb384ef627f6
Added support for DirectFB video on Linux (thanks Denis!)
Sam Lantinga <slouken@libsdl.org>
parents:
166
diff
changeset
|
776 fi |
cb384ef627f6
Added support for DirectFB video on Linux (thanks Denis!)
Sam Lantinga <slouken@libsdl.org>
parents:
166
diff
changeset
|
777 fi |
cb384ef627f6
Added support for DirectFB video on Linux (thanks Denis!)
Sam Lantinga <slouken@libsdl.org>
parents:
166
diff
changeset
|
778 |
cb384ef627f6
Added support for DirectFB video on Linux (thanks Denis!)
Sam Lantinga <slouken@libsdl.org>
parents:
166
diff
changeset
|
779 AC_MSG_RESULT($video_directfb) |
cb384ef627f6
Added support for DirectFB video on Linux (thanks Denis!)
Sam Lantinga <slouken@libsdl.org>
parents:
166
diff
changeset
|
780 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
|
781 CFLAGS="$CFLAGS -DENABLE_DIRECTFB" |
cb384ef627f6
Added support for DirectFB video on Linux (thanks Denis!)
Sam Lantinga <slouken@libsdl.org>
parents:
166
diff
changeset
|
782 VIDEO_SUBDIRS="$VIDEO_SUBDIRS directfb" |
cb384ef627f6
Added support for DirectFB video on Linux (thanks Denis!)
Sam Lantinga <slouken@libsdl.org>
parents:
166
diff
changeset
|
783 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
|
784 |
cb384ef627f6
Added support for DirectFB video on Linux (thanks Denis!)
Sam Lantinga <slouken@libsdl.org>
parents:
166
diff
changeset
|
785 AC_SUBST(DIRECTFB_CFLAGS) |
cb384ef627f6
Added support for DirectFB video on Linux (thanks Denis!)
Sam Lantinga <slouken@libsdl.org>
parents:
166
diff
changeset
|
786 AC_SUBST(DIRECTFB_LIBS) |
cb384ef627f6
Added support for DirectFB video on Linux (thanks Denis!)
Sam Lantinga <slouken@libsdl.org>
parents:
166
diff
changeset
|
787 fi |
cb384ef627f6
Added support for DirectFB video on Linux (thanks Denis!)
Sam Lantinga <slouken@libsdl.org>
parents:
166
diff
changeset
|
788 fi |
cb384ef627f6
Added support for DirectFB video on Linux (thanks Denis!)
Sam Lantinga <slouken@libsdl.org>
parents:
166
diff
changeset
|
789 } |
cb384ef627f6
Added support for DirectFB video on Linux (thanks Denis!)
Sam Lantinga <slouken@libsdl.org>
parents:
166
diff
changeset
|
790 |
70
f590dd383b5d
Added Linux PlayStation 2 Graphics Synthesizer support
Sam Lantinga <slouken@lokigames.com>
parents:
68
diff
changeset
|
791 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
|
792 CheckPS2GS() |
f590dd383b5d
Added Linux PlayStation 2 Graphics Synthesizer support
Sam Lantinga <slouken@lokigames.com>
parents:
68
diff
changeset
|
793 { |
72
4210b3e74800
Fixed the PS2 GS detection
Sam Lantinga <slouken@lokigames.com>
parents:
70
diff
changeset
|
794 AC_ARG_ENABLE(video-ps2gs, |
4210b3e74800
Fixed the PS2 GS detection
Sam Lantinga <slouken@lokigames.com>
parents:
70
diff
changeset
|
795 [ --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
|
796 , enable_video_ps2gs=yes) |
70
f590dd383b5d
Added Linux PlayStation 2 Graphics Synthesizer support
Sam Lantinga <slouken@lokigames.com>
parents:
68
diff
changeset
|
797 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
|
798 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
|
799 video_ps2gs=no |
f590dd383b5d
Added Linux PlayStation 2 Graphics Synthesizer support
Sam Lantinga <slouken@lokigames.com>
parents:
68
diff
changeset
|
800 AC_TRY_COMPILE([ |
f590dd383b5d
Added Linux PlayStation 2 Graphics Synthesizer support
Sam Lantinga <slouken@lokigames.com>
parents:
68
diff
changeset
|
801 #include <linux/ps2/dev.h> |
f590dd383b5d
Added Linux PlayStation 2 Graphics Synthesizer support
Sam Lantinga <slouken@lokigames.com>
parents:
68
diff
changeset
|
802 #include <linux/ps2/gs.h> |
f590dd383b5d
Added Linux PlayStation 2 Graphics Synthesizer support
Sam Lantinga <slouken@lokigames.com>
parents:
68
diff
changeset
|
803 ],[ |
f590dd383b5d
Added Linux PlayStation 2 Graphics Synthesizer support
Sam Lantinga <slouken@lokigames.com>
parents:
68
diff
changeset
|
804 ],[ |
f590dd383b5d
Added Linux PlayStation 2 Graphics Synthesizer support
Sam Lantinga <slouken@lokigames.com>
parents:
68
diff
changeset
|
805 video_ps2gs=yes |
f590dd383b5d
Added Linux PlayStation 2 Graphics Synthesizer support
Sam Lantinga <slouken@lokigames.com>
parents:
68
diff
changeset
|
806 ]) |
72
4210b3e74800
Fixed the PS2 GS detection
Sam Lantinga <slouken@lokigames.com>
parents:
70
diff
changeset
|
807 AC_MSG_RESULT($video_ps2gs) |
70
f590dd383b5d
Added Linux PlayStation 2 Graphics Synthesizer support
Sam Lantinga <slouken@lokigames.com>
parents:
68
diff
changeset
|
808 if test x$video_ps2gs = xyes; then |
f590dd383b5d
Added Linux PlayStation 2 Graphics Synthesizer support
Sam Lantinga <slouken@lokigames.com>
parents:
68
diff
changeset
|
809 CFLAGS="$CFLAGS -DENABLE_PS2GS" |
f590dd383b5d
Added Linux PlayStation 2 Graphics Synthesizer support
Sam Lantinga <slouken@lokigames.com>
parents:
68
diff
changeset
|
810 VIDEO_SUBDIRS="$VIDEO_SUBDIRS ps2gs" |
f590dd383b5d
Added Linux PlayStation 2 Graphics Synthesizer support
Sam Lantinga <slouken@lokigames.com>
parents:
68
diff
changeset
|
811 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
|
812 fi |
f590dd383b5d
Added Linux PlayStation 2 Graphics Synthesizer support
Sam Lantinga <slouken@lokigames.com>
parents:
68
diff
changeset
|
813 fi |
f590dd383b5d
Added Linux PlayStation 2 Graphics Synthesizer support
Sam Lantinga <slouken@lokigames.com>
parents:
68
diff
changeset
|
814 } |
f590dd383b5d
Added Linux PlayStation 2 Graphics Synthesizer support
Sam Lantinga <slouken@lokigames.com>
parents:
68
diff
changeset
|
815 |
0 | 816 dnl Find the GGI includes |
817 CheckGGI() | |
818 { | |
819 AC_ARG_ENABLE(video-ggi, | |
820 [ --enable-video-ggi use GGI video driver [default=no]], | |
821 , enable_video_ggi=no) | |
822 if test x$enable_video = xyes -a x$enable_video_ggi = xyes; then | |
823 AC_MSG_CHECKING(for GGI support) | |
824 video_ggi=no | |
825 AC_TRY_COMPILE([ | |
826 #include <ggi/ggi.h> | |
827 #include <ggi/gii.h> | |
828 ],[ | |
829 ],[ | |
830 video_ggi=yes | |
831 ]) | |
832 AC_MSG_RESULT($video_ggi) | |
833 if test x$video_ggi = xyes; then | |
834 CFLAGS="$CFLAGS $X_CFLAGS -DENABLE_GGI" | |
835 SYSTEM_LIBS="$SYSTEM_LIBS -lggi -lgii -lgg" | |
836 | |
837 VIDEO_SUBDIRS="$VIDEO_SUBDIRS ggi" | |
838 VIDEO_DRIVERS="$VIDEO_DRIVERS ggi/libvideo_ggi.la" | |
839 fi | |
840 fi | |
841 } | |
842 | |
843 dnl Find the SVGAlib includes and libraries | |
844 CheckSVGA() | |
845 { | |
846 AC_ARG_ENABLE(video-svga, | |
847 [ --enable-video-svga use SVGAlib video driver [default=no]], | |
848 , enable_video_svga=no) | |
849 if test x$enable_video = xyes -a x$enable_video_svga = xyes; then | |
850 AC_MSG_CHECKING(for SVGAlib (1.4.0+) support) | |
851 video_svga=no | |
852 AC_TRY_COMPILE([ | |
853 #include <vga.h> | |
854 #include <vgamouse.h> | |
855 #include <vgakeyboard.h> | |
856 ],[ | |
857 if ( SCANCODE_RIGHTWIN && SCANCODE_LEFTWIN ) { | |
858 exit(0); | |
859 } | |
860 ],[ | |
861 video_svga=yes | |
862 ]) | |
863 AC_MSG_RESULT($video_svga) | |
864 if test x$video_svga = xyes; then | |
865 CFLAGS="$CFLAGS -DENABLE_SVGALIB" | |
866 SYSTEM_LIBS="$SYSTEM_LIBS -lvga" | |
867 | |
868 VIDEO_SUBDIRS="$VIDEO_SUBDIRS svga" | |
869 VIDEO_DRIVERS="$VIDEO_DRIVERS svga/libvideo_svga.la" | |
870 fi | |
871 fi | |
872 } | |
873 | |
75
b0ae59d0f3ee
Added patches from FreeBSD ports
Sam Lantinga <slouken@lokigames.com>
parents:
72
diff
changeset
|
874 dnl Find the VGL includes and libraries |
b0ae59d0f3ee
Added patches from FreeBSD ports
Sam Lantinga <slouken@lokigames.com>
parents:
72
diff
changeset
|
875 CheckVGL() |
b0ae59d0f3ee
Added patches from FreeBSD ports
Sam Lantinga <slouken@lokigames.com>
parents:
72
diff
changeset
|
876 { |
b0ae59d0f3ee
Added patches from FreeBSD ports
Sam Lantinga <slouken@lokigames.com>
parents:
72
diff
changeset
|
877 AC_ARG_ENABLE(video-vgl, |
b0ae59d0f3ee
Added patches from FreeBSD ports
Sam Lantinga <slouken@lokigames.com>
parents:
72
diff
changeset
|
878 [ --enable-video-vgl use VGL video driver [default=no]], |
b0ae59d0f3ee
Added patches from FreeBSD ports
Sam Lantinga <slouken@lokigames.com>
parents:
72
diff
changeset
|
879 , enable_video_vgl=no) |
b0ae59d0f3ee
Added patches from FreeBSD ports
Sam Lantinga <slouken@lokigames.com>
parents:
72
diff
changeset
|
880 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
|
881 AC_MSG_CHECKING(for libVGL support) |
b0ae59d0f3ee
Added patches from FreeBSD ports
Sam Lantinga <slouken@lokigames.com>
parents:
72
diff
changeset
|
882 video_vgl=no |
b0ae59d0f3ee
Added patches from FreeBSD ports
Sam Lantinga <slouken@lokigames.com>
parents:
72
diff
changeset
|
883 AC_TRY_COMPILE([ |
b0ae59d0f3ee
Added patches from FreeBSD ports
Sam Lantinga <slouken@lokigames.com>
parents:
72
diff
changeset
|
884 #include <sys/fbio.h> |
b0ae59d0f3ee
Added patches from FreeBSD ports
Sam Lantinga <slouken@lokigames.com>
parents:
72
diff
changeset
|
885 #include <sys/consio.h> |
b0ae59d0f3ee
Added patches from FreeBSD ports
Sam Lantinga <slouken@lokigames.com>
parents:
72
diff
changeset
|
886 #include <sys/kbio.h> |
b0ae59d0f3ee
Added patches from FreeBSD ports
Sam Lantinga <slouken@lokigames.com>
parents:
72
diff
changeset
|
887 #include <vgl.h> |
b0ae59d0f3ee
Added patches from FreeBSD ports
Sam Lantinga <slouken@lokigames.com>
parents:
72
diff
changeset
|
888 ],[ |
b0ae59d0f3ee
Added patches from FreeBSD ports
Sam Lantinga <slouken@lokigames.com>
parents:
72
diff
changeset
|
889 VGLBitmap bitmap; |
144
1cfa4282f2eb
Fixed VGL detection on FreeBSD (thanks David!)
Sam Lantinga <slouken@libsdl.org>
parents:
129
diff
changeset
|
890 exit(bitmap.Bitmap); |
75
b0ae59d0f3ee
Added patches from FreeBSD ports
Sam Lantinga <slouken@lokigames.com>
parents:
72
diff
changeset
|
891 ],[ |
b0ae59d0f3ee
Added patches from FreeBSD ports
Sam Lantinga <slouken@lokigames.com>
parents:
72
diff
changeset
|
892 video_vgl=yes |
b0ae59d0f3ee
Added patches from FreeBSD ports
Sam Lantinga <slouken@lokigames.com>
parents:
72
diff
changeset
|
893 ]) |
b0ae59d0f3ee
Added patches from FreeBSD ports
Sam Lantinga <slouken@lokigames.com>
parents:
72
diff
changeset
|
894 AC_MSG_RESULT($video_vgl) |
b0ae59d0f3ee
Added patches from FreeBSD ports
Sam Lantinga <slouken@lokigames.com>
parents:
72
diff
changeset
|
895 if test x$video_vgl = xyes; then |
b0ae59d0f3ee
Added patches from FreeBSD ports
Sam Lantinga <slouken@lokigames.com>
parents:
72
diff
changeset
|
896 CFLAGS="$CFLAGS -DENABLE_VGL" |
b0ae59d0f3ee
Added patches from FreeBSD ports
Sam Lantinga <slouken@lokigames.com>
parents:
72
diff
changeset
|
897 SYSTEM_LIBS="$SYSTEM_LIBS -lvgl" |
b0ae59d0f3ee
Added patches from FreeBSD ports
Sam Lantinga <slouken@lokigames.com>
parents:
72
diff
changeset
|
898 |
b0ae59d0f3ee
Added patches from FreeBSD ports
Sam Lantinga <slouken@lokigames.com>
parents:
72
diff
changeset
|
899 VIDEO_SUBDIRS="$VIDEO_SUBDIRS vgl" |
b0ae59d0f3ee
Added patches from FreeBSD ports
Sam Lantinga <slouken@lokigames.com>
parents:
72
diff
changeset
|
900 VIDEO_DRIVERS="$VIDEO_DRIVERS vgl/libvideo_vgl.la" |
b0ae59d0f3ee
Added patches from FreeBSD ports
Sam Lantinga <slouken@lokigames.com>
parents:
72
diff
changeset
|
901 fi |
b0ae59d0f3ee
Added patches from FreeBSD ports
Sam Lantinga <slouken@lokigames.com>
parents:
72
diff
changeset
|
902 fi |
b0ae59d0f3ee
Added patches from FreeBSD ports
Sam Lantinga <slouken@lokigames.com>
parents:
72
diff
changeset
|
903 } |
b0ae59d0f3ee
Added patches from FreeBSD ports
Sam Lantinga <slouken@lokigames.com>
parents:
72
diff
changeset
|
904 |
0 | 905 dnl Find the AAlib includes |
906 CheckAAlib() | |
907 { | |
908 AC_ARG_ENABLE(video-aalib, | |
909 [ --enable-video-aalib use AAlib video driver [default=no]], | |
910 , enable_video_aalib=no) | |
911 if test x$enable_video = xyes -a x$enable_video_aalib = xyes; then | |
912 AC_MSG_CHECKING(for AAlib support) | |
913 video_aalib=no | |
914 AC_TRY_COMPILE([ | |
915 #include <aalib.h> | |
916 ],[ | |
917 ],[ | |
918 video_aalib=yes | |
919 ]) | |
920 AC_MSG_RESULT($video_aalib) | |
921 if test x$video_aalib = xyes; then | |
922 CFLAGS="$CFLAGS -DENABLE_AALIB" | |
923 SYSTEM_LIBS="$SYSTEM_LIBS -laa" | |
924 | |
925 VIDEO_SUBDIRS="$VIDEO_SUBDIRS aalib" | |
926 VIDEO_DRIVERS="$VIDEO_DRIVERS aalib/libvideo_aa.la" | |
927 fi | |
928 fi | |
929 } | |
930 | |
281
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
931 dnl Set up the Atari Xbios driver |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
932 CheckAtariXbiosVideo() |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
933 { |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
934 AC_ARG_ENABLE(xbios, |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
935 [ --enable-video-xbios use Atari Xbios video driver [default=yes]], |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
936 , enable_video_xbios=yes) |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
937 video_xbios=no |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
938 if test x$enable_video = xyes -a x$enable_video_xbios = xyes; then |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
939 video_xbios=yes |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
940 CFLAGS="$CFLAGS -DENABLE_XBIOS" |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
941 VIDEO_SUBDIRS="$VIDEO_SUBDIRS xbios" |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
942 VIDEO_DRIVERS="$VIDEO_DRIVERS xbios/libvideo_xbios.la" |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
943 fi |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
944 } |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
945 |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
946 dnl Set up the Atari Gem driver |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
947 CheckAtariGemVideo() |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
948 { |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
949 AC_ARG_ENABLE(gem, |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
950 [ --enable-video-gem use Atari Gem video driver [default=yes]], |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
951 , enable_video_gem=yes) |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
952 if test x$enable_video = xyes -a x$enable_video_gem = xyes; then |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
953 video_gem=no |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
954 AC_CHECK_HEADER(gem.h, have_gem_hdr=yes) |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
955 AC_CHECK_LIB(gem, appl_init, have_gem_lib=yes) |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
956 if test x$have_gem_hdr = xyes -a x$have_gem_lib = xyes; then |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
957 video_gem=yes |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
958 CFLAGS="$CFLAGS -DENABLE_GEM" |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
959 SYSTEM_LIBS="$SYSTEM_LIBS -lgem" |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
960 VIDEO_SUBDIRS="$VIDEO_SUBDIRS gem" |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
961 VIDEO_DRIVERS="$VIDEO_DRIVERS gem/libvideo_gem.la" |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
962 fi |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
963 fi |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
964 } |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
965 |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
966 dnl Set up the Atari Bios keyboard driver |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
967 CheckAtariBiosEvent() |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
968 { |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
969 CFLAGS="$CFLAGS -I\$(top_srcdir)/src/video/ataricommon" |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
970 VIDEO_SUBDIRS="$VIDEO_SUBDIRS ataricommon" |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
971 VIDEO_DRIVERS="$VIDEO_DRIVERS ataricommon/libvideo_ataricommon.la" |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
972 } |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
973 |
1
cf2af46e9e2a
Changes since SDL 1.2.0 release
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
974 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
|
975 CheckDummyVideo() |
cf2af46e9e2a
Changes since SDL 1.2.0 release
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
976 { |
cf2af46e9e2a
Changes since SDL 1.2.0 release
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
977 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
|
978 [ --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
|
979 , enable_video_dummy=yes) |
1
cf2af46e9e2a
Changes since SDL 1.2.0 release
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
980 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
|
981 CFLAGS="$CFLAGS -DENABLE_DUMMYVIDEO" |
cf2af46e9e2a
Changes since SDL 1.2.0 release
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
982 VIDEO_SUBDIRS="$VIDEO_SUBDIRS dummy" |
cf2af46e9e2a
Changes since SDL 1.2.0 release
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
983 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
|
984 fi |
cf2af46e9e2a
Changes since SDL 1.2.0 release
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
985 } |
cf2af46e9e2a
Changes since SDL 1.2.0 release
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
986 |
0 | 987 dnl Check to see if OpenGL support is desired |
988 AC_ARG_ENABLE(video-opengl, | |
989 [ --enable-video-opengl include OpenGL context creation [default=yes]], | |
990 , enable_video_opengl=yes) | |
991 | |
992 dnl Find OpenGL | |
993 CheckOpenGL() | |
994 { | |
995 if test x$enable_video = xyes -a x$enable_video_opengl = xyes; then | |
996 AC_MSG_CHECKING(for OpenGL (GLX) support) | |
997 video_opengl=no | |
998 AC_TRY_COMPILE([ | |
999 #include <GL/gl.h> | |
1000 #include <GL/glx.h> | |
1001 #include <dlfcn.h> /* For loading extensions */ | |
1002 ],[ | |
1003 ],[ | |
1004 video_opengl=yes | |
1005 ]) | |
1006 AC_MSG_RESULT($video_opengl) | |
1007 if test x$video_opengl = xyes; then | |
1008 CFLAGS="$CFLAGS -DHAVE_OPENGL" | |
296
fab1ddc4d7bf
Removed the API changes to preserve SDL 1.2 stability
Sam Lantinga <slouken@libsdl.org>
parents:
295
diff
changeset
|
1009 if test x$use_dlopen != xyes; then |
fab1ddc4d7bf
Removed the API changes to preserve SDL 1.2 stability
Sam Lantinga <slouken@libsdl.org>
parents:
295
diff
changeset
|
1010 AC_CHECK_LIB(dl, dlopen, SYSTEM_LIBS="$SYSTEM_LIBS -ldl") |
fab1ddc4d7bf
Removed the API changes to preserve SDL 1.2 stability
Sam Lantinga <slouken@libsdl.org>
parents:
295
diff
changeset
|
1011 fi |
0 | 1012 fi |
1013 fi | |
1014 } | |
1015 | |
279
04351f59b051
Mike Gorchak added some QNX tweaks, including OpenGL support
Sam Lantinga <slouken@libsdl.org>
parents:
278
diff
changeset
|
1016 dnl Find QNX RtP OpenGL |
04351f59b051
Mike Gorchak added some QNX tweaks, including OpenGL support
Sam Lantinga <slouken@libsdl.org>
parents:
278
diff
changeset
|
1017 CheckOpenGLQNX() |
04351f59b051
Mike Gorchak added some QNX tweaks, including OpenGL support
Sam Lantinga <slouken@libsdl.org>
parents:
278
diff
changeset
|
1018 { |
04351f59b051
Mike Gorchak added some QNX tweaks, including OpenGL support
Sam Lantinga <slouken@libsdl.org>
parents:
278
diff
changeset
|
1019 if test x$enable_video = xyes -a x$enable_video_opengl = xyes; then |
04351f59b051
Mike Gorchak added some QNX tweaks, including OpenGL support
Sam Lantinga <slouken@libsdl.org>
parents:
278
diff
changeset
|
1020 AC_MSG_CHECKING(for OpenGL (Photon) support) |
04351f59b051
Mike Gorchak added some QNX tweaks, including OpenGL support
Sam Lantinga <slouken@libsdl.org>
parents:
278
diff
changeset
|
1021 video_opengl=no |
04351f59b051
Mike Gorchak added some QNX tweaks, including OpenGL support
Sam Lantinga <slouken@libsdl.org>
parents:
278
diff
changeset
|
1022 AC_TRY_COMPILE([ |
04351f59b051
Mike Gorchak added some QNX tweaks, including OpenGL support
Sam Lantinga <slouken@libsdl.org>
parents:
278
diff
changeset
|
1023 #include <GL/gl.h> |
04351f59b051
Mike Gorchak added some QNX tweaks, including OpenGL support
Sam Lantinga <slouken@libsdl.org>
parents:
278
diff
changeset
|
1024 ],[ |
04351f59b051
Mike Gorchak added some QNX tweaks, including OpenGL support
Sam Lantinga <slouken@libsdl.org>
parents:
278
diff
changeset
|
1025 ],[ |
04351f59b051
Mike Gorchak added some QNX tweaks, including OpenGL support
Sam Lantinga <slouken@libsdl.org>
parents:
278
diff
changeset
|
1026 video_opengl=yes |
04351f59b051
Mike Gorchak added some QNX tweaks, including OpenGL support
Sam Lantinga <slouken@libsdl.org>
parents:
278
diff
changeset
|
1027 ]) |
04351f59b051
Mike Gorchak added some QNX tweaks, including OpenGL support
Sam Lantinga <slouken@libsdl.org>
parents:
278
diff
changeset
|
1028 AC_MSG_RESULT($video_opengl) |
04351f59b051
Mike Gorchak added some QNX tweaks, including OpenGL support
Sam Lantinga <slouken@libsdl.org>
parents:
278
diff
changeset
|
1029 if test x$video_opengl = xyes; then |
04351f59b051
Mike Gorchak added some QNX tweaks, including OpenGL support
Sam Lantinga <slouken@libsdl.org>
parents:
278
diff
changeset
|
1030 CFLAGS="$CFLAGS -DHAVE_OPENGL" |
04351f59b051
Mike Gorchak added some QNX tweaks, including OpenGL support
Sam Lantinga <slouken@libsdl.org>
parents:
278
diff
changeset
|
1031 SYSTEM_LIBS="$SYSTEM_LIBS -lGL" |
04351f59b051
Mike Gorchak added some QNX tweaks, including OpenGL support
Sam Lantinga <slouken@libsdl.org>
parents:
278
diff
changeset
|
1032 fi |
04351f59b051
Mike Gorchak added some QNX tweaks, including OpenGL support
Sam Lantinga <slouken@libsdl.org>
parents:
278
diff
changeset
|
1033 fi |
04351f59b051
Mike Gorchak added some QNX tweaks, including OpenGL support
Sam Lantinga <slouken@libsdl.org>
parents:
278
diff
changeset
|
1034 } |
04351f59b051
Mike Gorchak added some QNX tweaks, including OpenGL support
Sam Lantinga <slouken@libsdl.org>
parents:
278
diff
changeset
|
1035 |
0 | 1036 dnl Check for BeOS OpenGL |
1037 CheckBeGL() | |
1038 { | |
1039 if test x$enable_video = xyes -a x$enable_video_opengl = xyes; then | |
1040 CFLAGS="$CFLAGS -DHAVE_OPENGL" | |
1041 SYSTEM_LIBS="$SYSTEM_LIBS -lGL" | |
1042 fi | |
1043 } | |
1044 | |
1045 dnl Check for MacOS OpenGL | |
1046 CheckMacGL() | |
1047 { | |
1048 if test x$enable_video = xyes -a x$enable_video_opengl = xyes; then | |
1049 CFLAGS="$CFLAGS -DHAVE_OPENGL" | |
1050 case "$target" in | |
1051 *-*-darwin*) | |
1052 SDL_LIBS="$SDL_LIBS -framework OpenGL -framework AGL" | |
1053 esac | |
1054 fi | |
1055 } | |
1056 | |
1057 dnl See if we can use the new unified event interface in Linux 2.4 | |
1058 CheckInputEvents() | |
1059 { | |
1060 dnl Check for Linux 2.4 unified input event interface support | |
1061 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
|
1062 [ --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
|
1063 , enable_input_events=yes) |
0 | 1064 if test x$enable_input_events = xyes; then |
1065 AC_MSG_CHECKING(for Linux 2.4 unified input interface) | |
1066 use_input_events=no | |
1067 AC_TRY_COMPILE([ | |
1068 #include <linux/input.h> | |
1069 ],[ | |
1070 #ifndef EVIOCGNAME | |
1071 #error EVIOCGNAME() ioctl not available | |
1072 #endif | |
1073 ],[ | |
1074 use_input_events=yes | |
1075 ]) | |
1076 AC_MSG_RESULT($use_input_events) | |
1077 if test x$use_input_events = xyes; then | |
1078 CFLAGS="$CFLAGS -DUSE_INPUT_EVENTS" | |
1079 fi | |
1080 fi | |
1081 } | |
1082 | |
1083 dnl See what type of thread model to use on Linux and Solaris | |
1084 CheckPTHREAD() | |
1085 { | |
1086 dnl Check for pthread support | |
1087 AC_ARG_ENABLE(pthreads, | |
1088 [ --enable-pthreads use POSIX threads for multi-threading [default=yes]], | |
1089 , enable_pthreads=yes) | |
1090 dnl This is used on Linux for glibc binary compatibility (Doh!) | |
1091 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
|
1092 [ --enable-pthread-sem use pthread semaphores [default=yes]], |
0 | 1093 , enable_pthread_sem=yes) |
1094 ac_save_libs="$LIBS" | |
1095 case "$target" in | |
1096 *-*-bsdi*) | |
1097 pthread_cflags="-D_REENTRANT -D_THREAD_SAFE" | |
1098 pthread_lib="" | |
1099 ;; | |
1100 *-*-darwin*) | |
1101 pthread_cflags="-D_THREAD_SAFE" | |
1102 # causes Carbon.p complaints? | |
1103 # pthread_cflags="-D_REENTRANT -D_THREAD_SAFE" | |
1104 ;; | |
1105 *-*-freebsd*) | |
1106 pthread_cflags="-D_REENTRANT -D_THREAD_SAFE" | |
1107 pthread_lib="-pthread" | |
1108 ;; | |
43
8cc154626be9
I found the pthread package for NetBSD
Sam Lantinga <slouken@lokigames.com>
parents:
42
diff
changeset
|
1109 *-*-netbsd*) |
8cc154626be9
I found the pthread package for NetBSD
Sam Lantinga <slouken@lokigames.com>
parents:
42
diff
changeset
|
1110 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
|
1111 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
|
1112 ;; |
0 | 1113 *-*-openbsd*) |
1114 pthread_cflags="-D_REENTRANT" | |
1115 pthread_lib="-pthread" | |
1116 ;; | |
1117 *-*-solaris*) | |
1118 pthread_cflags="-D_REENTRANT" | |
1119 pthread_lib="-lpthread -lposix4" | |
1120 ;; | |
1121 *-*-sysv5*) | |
1122 pthread_cflags="-D_REENTRANT -Kthread" | |
1123 pthread_lib="" | |
1124 ;; | |
1125 *-*-irix*) | |
1126 pthread_cflags="-D_SGI_MP_SOURCE" | |
1127 pthread_lib="-lpthread" | |
1128 ;; | |
1129 *-*-aix*) | |
1130 pthread_cflags="-D_REENTRANT -mthreads" | |
1131 pthread_lib="-lpthread" | |
1132 ;; | |
1133 *-*-qnx*) | |
1134 pthread_cflags="" | |
1135 pthread_lib="" | |
1136 ;; | |
1137 *) | |
1138 pthread_cflags="-D_REENTRANT" | |
1139 pthread_lib="-lpthread" | |
1140 ;; | |
1141 esac | |
1142 LIBS="$LIBS $pthread_lib" | |
1143 if test x$enable_threads = xyes -a x$enable_pthreads = xyes; then | |
1144 AC_MSG_CHECKING(for pthreads) | |
1145 use_pthreads=no | |
1146 AC_TRY_LINK([ | |
1147 #include <pthread.h> | |
1148 ],[ | |
1149 pthread_attr_t type; | |
1150 pthread_attr_init(&type); | |
1151 ],[ | |
1152 use_pthreads=yes | |
1153 ]) | |
1154 AC_MSG_RESULT($use_pthreads) | |
1155 if test x$use_pthreads = xyes; then | |
1156 CFLAGS="$CFLAGS $pthread_cflags -DSDL_USE_PTHREADS" | |
1157 SDL_CFLAGS="$SDL_CFLAGS $pthread_cflags" | |
1158 SDL_LIBS="$SDL_LIBS $pthread_lib" | |
1159 | |
1160 # Check to see if recursive mutexes are available | |
1161 AC_MSG_CHECKING(for recursive mutexes) | |
1162 has_recursive_mutexes=no | |
1163 AC_TRY_LINK([ | |
1164 #include <pthread.h> | |
1165 ],[ | |
1166 pthread_mutexattr_t attr; | |
1167 #ifdef linux | |
1168 pthread_mutexattr_setkind_np(&attr, PTHREAD_MUTEX_RECURSIVE_NP); | |
1169 #else | |
1170 pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE); | |
1171 #endif | |
1172 ],[ | |
1173 has_recursive_mutexes=yes | |
1174 ]) | |
1175 # Some systems have broken recursive mutex implementations | |
1176 case "$target" in | |
1177 *-*-solaris*) | |
1178 has_recursive_mutexes=no | |
1179 ;; | |
1180 esac | |
1181 AC_MSG_RESULT($has_recursive_mutexes) | |
1182 if test x$has_recursive_mutexes != xyes; then | |
1183 CFLAGS="$CFLAGS -DPTHREAD_NO_RECURSIVE_MUTEX" | |
1184 fi | |
1185 | |
94
ae6e6b73333f
Cleaned up the OpenBSD port, thanks to Peter Valchev
Sam Lantinga <slouken@lokigames.com>
parents:
86
diff
changeset
|
1186 # 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
|
1187 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
|
1188 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
|
1189 have_pthread_sem=no |
ae6e6b73333f
Cleaned up the OpenBSD port, thanks to Peter Valchev
Sam Lantinga <slouken@lokigames.com>
parents:
86
diff
changeset
|
1190 AC_TRY_COMPILE([ |
ae6e6b73333f
Cleaned up the OpenBSD port, thanks to Peter Valchev
Sam Lantinga <slouken@lokigames.com>
parents:
86
diff
changeset
|
1191 #include <pthread.h> |
ae6e6b73333f
Cleaned up the OpenBSD port, thanks to Peter Valchev
Sam Lantinga <slouken@lokigames.com>
parents:
86
diff
changeset
|
1192 #include <semaphore.h> |
ae6e6b73333f
Cleaned up the OpenBSD port, thanks to Peter Valchev
Sam Lantinga <slouken@lokigames.com>
parents:
86
diff
changeset
|
1193 ],[ |
ae6e6b73333f
Cleaned up the OpenBSD port, thanks to Peter Valchev
Sam Lantinga <slouken@lokigames.com>
parents:
86
diff
changeset
|
1194 ],[ |
ae6e6b73333f
Cleaned up the OpenBSD port, thanks to Peter Valchev
Sam Lantinga <slouken@lokigames.com>
parents:
86
diff
changeset
|
1195 have_pthread_sem=yes |
ae6e6b73333f
Cleaned up the OpenBSD port, thanks to Peter Valchev
Sam Lantinga <slouken@lokigames.com>
parents:
86
diff
changeset
|
1196 ]) |
ae6e6b73333f
Cleaned up the OpenBSD port, thanks to Peter Valchev
Sam Lantinga <slouken@lokigames.com>
parents:
86
diff
changeset
|
1197 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
|
1198 fi |
ae6e6b73333f
Cleaned up the OpenBSD port, thanks to Peter Valchev
Sam Lantinga <slouken@lokigames.com>
parents:
86
diff
changeset
|
1199 |
0 | 1200 # Check to see if this is broken glibc 2.0 pthreads |
1201 case "$target" in | |
1202 *-*-linux*) | |
1203 AC_MSG_CHECKING(for broken glibc 2.0 pthreads) | |
1204 glibc20_pthreads=no | |
1205 AC_TRY_COMPILE([ | |
1206 #include <features.h> | |
1207 #if (__GLIBC__ == 2) && (__GLIBC_MINOR__ == 0) | |
1208 #warning Working around a bug in glibc 2.0 pthreads | |
1209 #else | |
1210 #error pthread implementation okay | |
1211 #endif /* glibc 2.0 */ | |
1212 ],[ | |
1213 ],[ | |
1214 glibc20_pthreads=yes | |
1215 ]) | |
1216 AC_MSG_RESULT($glibc20_pthreads) | |
1217 esac | |
1218 fi | |
1219 fi | |
1220 LIBS="$ac_save_libs" | |
1221 | |
1222 AC_MSG_CHECKING(whether semun is defined in /usr/include/sys/sem.h) | |
1223 have_semun=no | |
1224 AC_TRY_COMPILE([ | |
1225 #include <sys/types.h> | |
1226 #include <sys/sem.h> | |
1227 ],[ | |
1228 union semun t; | |
1229 ],[ | |
1230 have_semun=yes | |
1231 ]) | |
1232 AC_MSG_RESULT($have_semun) | |
1233 if test x$have_semun = xyes; then | |
1234 CFLAGS="$CFLAGS -DHAVE_SEMUN" | |
1235 fi | |
1236 | |
1237 # See if we can use clone() on Linux directly | |
1238 use_clone=no | |
1239 if test x$enable_threads = xyes -a x$use_pthreads != xyes; then | |
1240 case "$target" in | |
1241 *-*-linux*) | |
1242 use_clone=yes | |
1243 ;; | |
1244 *) | |
1245 CFLAGS="$CFLAGS -DFORK_HACK" | |
1246 ;; | |
1247 esac | |
1248 fi | |
1249 AM_CONDITIONAL(USE_CLONE, test x$use_clone = xyes) | |
1250 } | |
1251 | |
185
34d316d5e744
Added support for the GNU Pth thread lib (thanks Mandin!)
Sam Lantinga <slouken@libsdl.org>
parents:
178
diff
changeset
|
1252 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
|
1253 CheckPTH() |
34d316d5e744
Added support for the GNU Pth thread lib (thanks Mandin!)
Sam Lantinga <slouken@libsdl.org>
parents:
178
diff
changeset
|
1254 { |
34d316d5e744
Added support for the GNU Pth thread lib (thanks Mandin!)
Sam Lantinga <slouken@libsdl.org>
parents:
178
diff
changeset
|
1255 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
|
1256 AC_ARG_ENABLE(pth, |
34d316d5e744
Added support for the GNU Pth thread lib (thanks Mandin!)
Sam Lantinga <slouken@libsdl.org>
parents:
178
diff
changeset
|
1257 [ --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
|
1258 , enable_pth=yes) |
34d316d5e744
Added support for the GNU Pth thread lib (thanks Mandin!)
Sam Lantinga <slouken@libsdl.org>
parents:
178
diff
changeset
|
1259 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
|
1260 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
|
1261 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
|
1262 use_pth=no |
34d316d5e744
Added support for the GNU Pth thread lib (thanks Mandin!)
Sam Lantinga <slouken@libsdl.org>
parents:
178
diff
changeset
|
1263 else |
34d316d5e744
Added support for the GNU Pth thread lib (thanks Mandin!)
Sam Lantinga <slouken@libsdl.org>
parents:
178
diff
changeset
|
1264 PTH_CFLAGS=`$PTH_CONFIG --cflags` |
321
af42e7c4c860
Fixes for GNU pthreads from Patrice
Sam Lantinga <slouken@libsdl.org>
parents:
318
diff
changeset
|
1265 PTH_LIBS=`$PTH_CONFIG --libs --all` |
185
34d316d5e744
Added support for the GNU Pth thread lib (thanks Mandin!)
Sam Lantinga <slouken@libsdl.org>
parents:
178
diff
changeset
|
1266 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
|
1267 SDL_LIBS="$SDL_LIBS $PTH_LIBS" |
329
1d74ddc90cb2
Patrice's fixes for GNU Pthread support
Sam Lantinga <slouken@libsdl.org>
parents:
321
diff
changeset
|
1268 CFLAGS="$CFLAGS -DENABLE_PTH" |
185
34d316d5e744
Added support for the GNU Pth thread lib (thanks Mandin!)
Sam Lantinga <slouken@libsdl.org>
parents:
178
diff
changeset
|
1269 use_pth=yes |
34d316d5e744
Added support for the GNU Pth thread lib (thanks Mandin!)
Sam Lantinga <slouken@libsdl.org>
parents:
178
diff
changeset
|
1270 fi |
34d316d5e744
Added support for the GNU Pth thread lib (thanks Mandin!)
Sam Lantinga <slouken@libsdl.org>
parents:
178
diff
changeset
|
1271 AC_MSG_CHECKING(pth) |
34d316d5e744
Added support for the GNU Pth thread lib (thanks Mandin!)
Sam Lantinga <slouken@libsdl.org>
parents:
178
diff
changeset
|
1272 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
|
1273 AC_MSG_RESULT(yes) |
34d316d5e744
Added support for the GNU Pth thread lib (thanks Mandin!)
Sam Lantinga <slouken@libsdl.org>
parents:
178
diff
changeset
|
1274 else |
34d316d5e744
Added support for the GNU Pth thread lib (thanks Mandin!)
Sam Lantinga <slouken@libsdl.org>
parents:
178
diff
changeset
|
1275 AC_MSG_RESULT(no) |
34d316d5e744
Added support for the GNU Pth thread lib (thanks Mandin!)
Sam Lantinga <slouken@libsdl.org>
parents:
178
diff
changeset
|
1276 fi |
34d316d5e744
Added support for the GNU Pth thread lib (thanks Mandin!)
Sam Lantinga <slouken@libsdl.org>
parents:
178
diff
changeset
|
1277 fi |
34d316d5e744
Added support for the GNU Pth thread lib (thanks Mandin!)
Sam Lantinga <slouken@libsdl.org>
parents:
178
diff
changeset
|
1278 } |
34d316d5e744
Added support for the GNU Pth thread lib (thanks Mandin!)
Sam Lantinga <slouken@libsdl.org>
parents:
178
diff
changeset
|
1279 |
0 | 1280 dnl Determine whether the compiler can produce Win32 executables |
1281 CheckWIN32() | |
1282 { | |
1283 AC_MSG_CHECKING(Win32 compiler) | |
1284 have_win32_gcc=no | |
1285 AC_TRY_COMPILE([ | |
1286 #include <windows.h> | |
1287 ],[ | |
1288 ],[ | |
1289 have_win32_gcc=yes | |
1290 ]) | |
1291 AC_MSG_RESULT($have_win32_gcc) | |
1292 if test x$have_win32_gcc != xyes; then | |
1293 AC_MSG_ERROR([ | |
1294 *** Your compiler ($CC) does not produce Win32 executables! | |
1295 ]) | |
1296 fi | |
1297 | |
1298 dnl See if the user wants to redirect standard output to files | |
1299 AC_ARG_ENABLE(stdio-redirect, | |
1300 [ --enable-stdio-redirect Redirect STDIO to files on Win32 [default=yes]], | |
1301 , enable_stdio_redirect=yes) | |
1302 if test x$enable_stdio_redirect != xyes; then | |
1303 CFLAGS="$CFLAGS -DNO_STDIO_REDIRECT" | |
1304 fi | |
1305 } | |
1306 | |
1307 dnl Find the DirectX includes and libraries | |
1308 CheckDIRECTX() | |
1309 { | |
1310 AC_ARG_ENABLE(directx, | |
1311 [ --enable-directx use DirectX for Win32 audio/video [default=yes]], | |
1312 , enable_directx=yes) | |
1313 if test x$enable_directx = xyes; then | |
1314 AC_MSG_CHECKING(for DirectX headers and libraries) | |
1315 use_directx=no | |
1316 AC_TRY_COMPILE([ | |
1317 #include "src/video/windx5/directx.h" | |
1318 ],[ | |
1319 ],[ | |
1320 use_directx=yes | |
1321 ]) | |
1322 AC_MSG_RESULT($use_directx) | |
1323 fi | |
1324 AM_CONDITIONAL(USE_DIRECTX, test x$use_directx = xyes) | |
1325 | |
1326 CFLAGS="$CFLAGS -I\$(top_srcdir)/src/video/wincommon" | |
1327 SYSTEM_LIBS="$SYSTEM_LIBS -luser32 -lgdi32 -lwinmm" | |
1328 VIDEO_SUBDIRS="$VIDEO_SUBDIRS wincommon" | |
1329 VIDEO_DRIVERS="$VIDEO_DRIVERS wincommon/libvideo_wincommon.la" | |
1330 # Enable the DIB driver | |
1331 CFLAGS="$CFLAGS -DENABLE_WINDIB" | |
1332 VIDEO_SUBDIRS="$VIDEO_SUBDIRS windib" | |
1333 VIDEO_DRIVERS="$VIDEO_DRIVERS windib/libvideo_windib.la" | |
1334 # See if we should enable the DirectX driver | |
1335 if test x$use_directx = xyes; then | |
1336 CFLAGS="$CFLAGS -DENABLE_DIRECTX" | |
1337 SYSTEM_LIBS="$SYSTEM_LIBS -ldxguid" | |
1338 VIDEO_SUBDIRS="$VIDEO_SUBDIRS windx5" | |
1339 VIDEO_DRIVERS="$VIDEO_DRIVERS windx5/libvideo_windx5.la" | |
1340 fi | |
1341 } | |
1342 | |
1343 dnl Set up the BWindow video driver on BeOS | |
1344 CheckBWINDOW() | |
1345 { | |
1346 CFLAGS="$CFLAGS -DENABLE_BWINDOW" | |
1347 VIDEO_SUBDIRS="$VIDEO_SUBDIRS bwindow" | |
1348 VIDEO_DRIVERS="$VIDEO_DRIVERS bwindow/libvideo_bwindow.la" | |
1349 } | |
1350 | |
1351 dnl Set up the Mac toolbox video driver for Mac OS 7-9 | |
1352 CheckTOOLBOX() | |
1353 { | |
1354 VIDEO_SUBDIRS="$VIDEO_SUBDIRS maccommon" | |
1355 VIDEO_DRIVERS="$VIDEO_DRIVERS maccommon/libvideo_maccommon.la" | |
1356 VIDEO_SUBDIRS="$VIDEO_SUBDIRS macrom" | |
1357 VIDEO_DRIVERS="$VIDEO_DRIVERS macrom/libvideo_macrom.la" | |
1358 } | |
1359 | |
1360 dnl Set up the Mac toolbox video driver for Mac OS X | |
1361 CheckCARBON() | |
1362 { | |
1363 # "MACOSX" is not an official definition, but it's commonly | |
1364 # accepted as a way to differentiate between what runs on X | |
1365 # and what runs on older Macs - while in theory "Carbon" defns | |
1366 # are consistent between the two, in practice Carbon is still | |
1367 # changing. -sts Aug 2000 | |
1368 mac_autoconf_target_workaround="MAC" | |
1369 CFLAGS="$CFLAGS -I/System/Library/Frameworks/Carbon.framework/Headers \ | |
1370 -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" | |
1371 VIDEO_SUBDIRS="$VIDEO_SUBDIRS maccommon" | |
1372 VIDEO_DRIVERS="$VIDEO_DRIVERS maccommon/libvideo_maccommon.la" | |
1373 VIDEO_SUBDIRS="$VIDEO_SUBDIRS macrom" | |
1374 VIDEO_DRIVERS="$VIDEO_DRIVERS macrom/libvideo_macrom.la" | |
1375 } | |
1376 | |
158
4382c38dfbee
Date: Tue, 21 Aug 2001 03:50:01 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
153
diff
changeset
|
1377 dnl Set up the Mac toolbox video driver for Mac OS X |
4382c38dfbee
Date: Tue, 21 Aug 2001 03:50:01 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
153
diff
changeset
|
1378 CheckQUARTZ() |
4382c38dfbee
Date: Tue, 21 Aug 2001 03:50:01 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
153
diff
changeset
|
1379 { |
4382c38dfbee
Date: Tue, 21 Aug 2001 03:50:01 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
153
diff
changeset
|
1380 # "MACOSX" is not an official definition, but it's commonly |
4382c38dfbee
Date: Tue, 21 Aug 2001 03:50:01 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
153
diff
changeset
|
1381 # accepted as a way to differentiate between what runs on X |
4382c38dfbee
Date: Tue, 21 Aug 2001 03:50:01 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
153
diff
changeset
|
1382 # and what runs on older Macs - while in theory "Carbon" defns |
4382c38dfbee
Date: Tue, 21 Aug 2001 03:50:01 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
153
diff
changeset
|
1383 # are consistent between the two, in practice Carbon is still |
4382c38dfbee
Date: Tue, 21 Aug 2001 03:50:01 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
153
diff
changeset
|
1384 # changing. -sts Aug 2000 |
166
39877400bd1e
Fixed Solaris nitpicks (thanks Mattias!)
Sam Lantinga <slouken@libsdl.org>
parents:
158
diff
changeset
|
1385 mac_autoconf_target_workaround="MAC" |
158
4382c38dfbee
Date: Tue, 21 Aug 2001 03:50:01 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
153
diff
changeset
|
1386 CFLAGS="$CFLAGS -I/System/Library/Frameworks/Carbon.framework/Headers \ |
4382c38dfbee
Date: Tue, 21 Aug 2001 03:50:01 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
153
diff
changeset
|
1387 -I/System/Library/Frameworks/Cocoa.framework/Headers -fpascal-strings \ |
166
39877400bd1e
Fixed Solaris nitpicks (thanks Mattias!)
Sam Lantinga <slouken@libsdl.org>
parents:
158
diff
changeset
|
1388 -DENABLE_QUARTZ -DMACOSX -DTARGET_API_${mac_autoconf_target_workaround}_CARBON=1 -I\$(top_srcdir)/src/video/quartz" |
158
4382c38dfbee
Date: Tue, 21 Aug 2001 03:50:01 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
153
diff
changeset
|
1389 VIDEO_SUBDIRS="$VIDEO_SUBDIRS quartz" |
4382c38dfbee
Date: Tue, 21 Aug 2001 03:50:01 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
153
diff
changeset
|
1390 VIDEO_DRIVERS="$VIDEO_DRIVERS quartz/libvideo_quartz.la" |
4382c38dfbee
Date: Tue, 21 Aug 2001 03:50:01 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
153
diff
changeset
|
1391 } |
4382c38dfbee
Date: Tue, 21 Aug 2001 03:50:01 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
153
diff
changeset
|
1392 |
294
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
1393 dnl Check for the dlfcn.h interface for dynamically loading objects |
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
1394 CheckDLOPEN() |
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
1395 { |
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
1396 AC_ARG_ENABLE(dlopen, |
296
fab1ddc4d7bf
Removed the API changes to preserve SDL 1.2 stability
Sam Lantinga <slouken@libsdl.org>
parents:
295
diff
changeset
|
1397 [ --enable-dlopen use dlopen for shared object loading [default=no]], |
fab1ddc4d7bf
Removed the API changes to preserve SDL 1.2 stability
Sam Lantinga <slouken@libsdl.org>
parents:
295
diff
changeset
|
1398 , enable_dlopen=no) |
294
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
1399 if test x$enable_dlopen = xyes; then |
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
1400 AC_MSG_CHECKING(for dlopen) |
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
1401 use_dlopen=no |
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
1402 AC_TRY_COMPILE([ |
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
1403 #include <dlfcn.h> |
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
1404 ],[ |
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
1405 ],[ |
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
1406 use_dlopen=yes |
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
1407 ]) |
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
1408 AC_MSG_RESULT($use_dlopen) |
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
1409 |
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
1410 if test x$use_dlopen = xyes; then |
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
1411 CFLAGS="$CFLAGS -DUSE_DLOPEN" |
296
fab1ddc4d7bf
Removed the API changes to preserve SDL 1.2 stability
Sam Lantinga <slouken@libsdl.org>
parents:
295
diff
changeset
|
1412 AC_CHECK_LIB(dl, dlopen, SYSTEM_LIBS="$SYSTEM_LIBS -ldl") |
294
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
1413 fi |
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
1414 fi |
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
1415 } |
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
1416 |
0 | 1417 case "$target" in |
1418 *-*-linux*) | |
1419 ARCH=linux | |
1
cf2af46e9e2a
Changes since SDL 1.2.0 release
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
1420 CheckDummyVideo |
68
ac6645260d31
Added an audio driver that writes to disk (thanks Ryan!)
Sam Lantinga <slouken@lokigames.com>
parents:
53
diff
changeset
|
1421 CheckDiskAudio |
294
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
1422 CheckDLOPEN |
0 | 1423 CheckNASM |
1424 CheckOSS | |
1425 CheckALSA | |
1426 CheckARTSC | |
1427 CheckESD | |
1428 CheckNAS | |
1429 CheckX11 | |
30
57bf11a5efd7
Added initial support for Nano-X (thanks Hsieh-Fu!)
Sam Lantinga <slouken@lokigames.com>
parents:
21
diff
changeset
|
1430 CheckNANOX |
0 | 1431 CheckDGA |
1432 CheckFBCON | |
167
cb384ef627f6
Added support for DirectFB video on Linux (thanks Denis!)
Sam Lantinga <slouken@libsdl.org>
parents:
166
diff
changeset
|
1433 CheckDirectFB |
70
f590dd383b5d
Added Linux PlayStation 2 Graphics Synthesizer support
Sam Lantinga <slouken@lokigames.com>
parents:
68
diff
changeset
|
1434 CheckPS2GS |
0 | 1435 CheckGGI |
1436 CheckSVGA | |
1437 CheckAAlib | |
1438 CheckOpenGL | |
1439 CheckInputEvents | |
1440 CheckPTHREAD | |
1441 # Set up files for the main() stub | |
1442 COPY_ARCH_SRC(src/main, linux, SDL_main.c) | |
1443 # Set up files for the audio library | |
1444 # We use the OSS and ALSA API's, not the Sun audio API | |
1445 #if test x$enable_audio = xyes; then | |
148
8758b8d42cd9
Audio subsystem no longer assumes sun audio API on UNIX systems
Sam Lantinga <slouken@libsdl.org>
parents:
144
diff
changeset
|
1446 # CFLAGS="$CFLAGS -DSUNAUDIO_SUPPORT" |
0 | 1447 # AUDIO_SUBDIRS="$AUDIO_SUBDIRS sun" |
1448 # AUDIO_DRIVERS="$AUDIO_DRIVERS sun/libaudio_sun.la" | |
1449 #fi | |
1450 # Set up files for the joystick library | |
1451 if test x$enable_joystick = xyes; then | |
1452 JOYSTICK_SUBDIRS="$JOYSTICK_SUBDIRS linux" | |
1453 JOYSTICK_DRIVERS="$JOYSTICK_DRIVERS linux/libjoystick_linux.la" | |
1454 fi | |
1455 # Set up files for the cdrom library | |
1456 if test x$enable_cdrom = xyes; then | |
153
2839f45bdba0
Fixed IDE and SCSI CD-ROM detection on BeOS (thanks Caz!)
Sam Lantinga <slouken@libsdl.org>
parents:
148
diff
changeset
|
1457 CDROM_SUBDIRS="$CDROM_SUBDIRS linux" |
2839f45bdba0
Fixed IDE and SCSI CD-ROM detection on BeOS (thanks Caz!)
Sam Lantinga <slouken@libsdl.org>
parents:
148
diff
changeset
|
1458 CDROM_DRIVERS="$CDROM_DRIVERS linux/libcdrom_linux.la" |
0 | 1459 fi |
1460 # Set up files for the thread library | |
1461 if test x$enable_threads = xyes; then | |
1462 if test x$use_pthreads != xyes; then | |
1463 COPY_ARCH_SRC(src/thread, linux, clone.S) | |
1464 fi | |
1465 COPY_ARCH_SRC(src/thread, linux, SDL_systhread.c) | |
1466 COPY_ARCH_SRC(src/thread, linux, SDL_systhread_c.h) | |
94
ae6e6b73333f
Cleaned up the OpenBSD port, thanks to Peter Valchev
Sam Lantinga <slouken@lokigames.com>
parents:
86
diff
changeset
|
1467 if test x$use_pthreads = xyes -a x$have_pthread_sem != xyes; then |
0 | 1468 COPY_ARCH_SRC(src/thread, generic, SDL_syssem.c) |
1469 else | |
1470 COPY_ARCH_SRC(src/thread, linux, SDL_syssem.c) | |
1471 fi | |
1472 COPY_ARCH_SRC(src/thread, generic, SDL_syssem_c.h) | |
1473 if test x$glibc20_pthreads = xyes; then | |
1474 COPY_ARCH_SRC(src/thread, generic, SDL_sysmutex.c) | |
1475 COPY_ARCH_SRC(src/thread, generic, SDL_sysmutex_c.h) | |
1476 COPY_ARCH_SRC(src/thread, generic, SDL_syscond.c) | |
1477 COPY_ARCH_SRC(src/thread, generic, SDL_syscond_c.h) | |
1478 else | |
1479 COPY_ARCH_SRC(src/thread, linux, SDL_sysmutex.c) | |
1480 COPY_ARCH_SRC(src/thread, linux, SDL_sysmutex_c.h) | |
1481 COPY_ARCH_SRC(src/thread, linux, SDL_syscond.c) | |
1482 COPY_ARCH_SRC(src/thread, generic, SDL_syscond_c.h) | |
1483 fi | |
1484 fi | |
1485 # Set up files for the timer library | |
1486 if test x$enable_timers = xyes; then | |
1487 COPY_ARCH_SRC(src/timer, linux, SDL_systimer.c) | |
1488 fi | |
1489 ;; | |
1490 *-*-bsdi*) | |
1491 ARCH=bsdi | |
1
cf2af46e9e2a
Changes since SDL 1.2.0 release
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
1492 CheckDummyVideo |
68
ac6645260d31
Added an audio driver that writes to disk (thanks Ryan!)
Sam Lantinga <slouken@lokigames.com>
parents:
53
diff
changeset
|
1493 CheckDiskAudio |
294
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
1494 CheckDLOPEN |
0 | 1495 CheckNASM |
1496 CheckOSS | |
35
d3bc792e136d
Added detection of Open Sound System on Solaris x86
Sam Lantinga <slouken@lokigames.com>
parents:
30
diff
changeset
|
1497 CheckARTSC |
d3bc792e136d
Added detection of Open Sound System on Solaris x86
Sam Lantinga <slouken@lokigames.com>
parents:
30
diff
changeset
|
1498 CheckESD |
0 | 1499 CheckNAS |
1500 CheckX11 | |
1501 CheckDGA | |
1502 CheckSVGA | |
1503 CheckAAlib | |
1504 CheckOpenGL | |
1505 CheckPTHREAD | |
1506 # Set up files for the main() stub | |
1507 COPY_ARCH_SRC(src/main, linux, SDL_main.c) | |
148
8758b8d42cd9
Audio subsystem no longer assumes sun audio API on UNIX systems
Sam Lantinga <slouken@libsdl.org>
parents:
144
diff
changeset
|
1508 # 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
|
1509 # We use the OSS and ALSA API's, not the Sun audio API |
8758b8d42cd9
Audio subsystem no longer assumes sun audio API on UNIX systems
Sam Lantinga <slouken@libsdl.org>
parents:
144
diff
changeset
|
1510 #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
|
1511 # CFLAGS="$CFLAGS -DSUNAUDIO_SUPPORT" |
8758b8d42cd9
Audio subsystem no longer assumes sun audio API on UNIX systems
Sam Lantinga <slouken@libsdl.org>
parents:
144
diff
changeset
|
1512 # AUDIO_SUBDIRS="$AUDIO_SUBDIRS sun" |
8758b8d42cd9
Audio subsystem no longer assumes sun audio API on UNIX systems
Sam Lantinga <slouken@libsdl.org>
parents:
144
diff
changeset
|
1513 # AUDIO_DRIVERS="$AUDIO_DRIVERS sun/libaudio_sun.la" |
8758b8d42cd9
Audio subsystem no longer assumes sun audio API on UNIX systems
Sam Lantinga <slouken@libsdl.org>
parents:
144
diff
changeset
|
1514 #fi |
0 | 1515 # Set up files for the joystick library |
1516 # (No joystick support yet) | |
1517 if test x$enable_joystick = xyes; then | |
1518 JOYSTICK_SUBDIRS="$JOYSTICK_SUBDIRS dummy" | |
1519 JOYSTICK_DRIVERS="$JOYSTICK_DRIVERS dummy/libjoystick_dummy.la" | |
1520 fi | |
1521 # Set up files for the cdrom library | |
1522 if test x$enable_cdrom = xyes; then | |
178
1fc1a101bf23
Added CD-ROM support for BSD/OS (thanks Steven!)
Sam Lantinga <slouken@libsdl.org>
parents:
174
diff
changeset
|
1523 CDROM_SUBDIRS="$CDROM_SUBDIRS bsdi" |
1fc1a101bf23
Added CD-ROM support for BSD/OS (thanks Steven!)
Sam Lantinga <slouken@libsdl.org>
parents:
174
diff
changeset
|
1524 CDROM_DRIVERS="$CDROM_DRIVERS bsdi/libcdrom_bsdi.la" |
0 | 1525 fi |
1526 # Set up files for the thread library | |
1527 if test x$enable_threads = xyes; then | |
1528 COPY_ARCH_SRC(src/thread, linux, SDL_systhread.c) | |
1529 COPY_ARCH_SRC(src/thread, linux, SDL_systhread_c.h) | |
1530 COPY_ARCH_SRC(src/thread, linux, SDL_sysmutex.c) | |
1531 COPY_ARCH_SRC(src/thread, linux, SDL_sysmutex_c.h) | |
191
c151cfc43c07
Changed SDLMain to SDL_main for MacOS X stuff
Sam Lantinga <slouken@libsdl.org>
parents:
185
diff
changeset
|
1532 COPY_ARCH_SRC(src/thread, bsdi, SDL_syssem.c) |
0 | 1533 COPY_ARCH_SRC(src/thread, generic, SDL_syssem_c.h) |
1534 COPY_ARCH_SRC(src/thread, linux, SDL_syscond.c) | |
1535 COPY_ARCH_SRC(src/thread, generic, SDL_syscond_c.h) | |
1536 fi | |
1537 # Set up files for the timer library | |
1538 if test x$enable_timers = xyes; then | |
1539 COPY_ARCH_SRC(src/timer, linux, SDL_systimer.c) | |
1540 fi | |
1541 ;; | |
1542 *-*-freebsd*) | |
1543 ARCH=freebsd | |
1
cf2af46e9e2a
Changes since SDL 1.2.0 release
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
1544 CheckDummyVideo |
68
ac6645260d31
Added an audio driver that writes to disk (thanks Ryan!)
Sam Lantinga <slouken@lokigames.com>
parents:
53
diff
changeset
|
1545 CheckDiskAudio |
294
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
1546 CheckDLOPEN |
129
db0bee1c5845
Applied Maxim's patch for VGL detection on FreeBSD
Sam Lantinga <slouken@libsdl.org>
parents:
126
diff
changeset
|
1547 CheckVGL |
0 | 1548 CheckNASM |
1549 CheckOSS | |
1550 CheckARTSC | |
1551 CheckESD | |
1552 CheckNAS | |
1553 CheckX11 | |
1554 CheckDGA | |
1555 CheckSVGA | |
1556 CheckAAlib | |
1557 CheckOpenGL | |
1558 CheckPTHREAD | |
1559 # Set up files for the main() stub | |
1560 COPY_ARCH_SRC(src/main, linux, SDL_main.c) | |
1561 # Set up files for the audio library | |
1562 # We use the OSS and ALSA API's, not the Sun audio API | |
1563 #if test x$enable_audio = xyes; then | |
148
8758b8d42cd9
Audio subsystem no longer assumes sun audio API on UNIX systems
Sam Lantinga <slouken@libsdl.org>
parents:
144
diff
changeset
|
1564 # CFLAGS="$CFLAGS -DSUNAUDIO_SUPPORT" |
0 | 1565 # AUDIO_SUBDIRS="$AUDIO_SUBDIRS sun" |
1566 # AUDIO_DRIVERS="$AUDIO_DRIVERS sun/libaudio_sun.la" | |
1567 #fi | |
1568 # Set up files for the joystick library | |
1569 if test x$enable_joystick = xyes; then | |
278
dcd9f7b50a1c
Added support for joysticks on *BSD (thanks Wilbern!)
Sam Lantinga <slouken@libsdl.org>
parents:
263
diff
changeset
|
1570 JOYSTICK_SUBDIRS="$JOYSTICK_SUBDIRS bsd" |
dcd9f7b50a1c
Added support for joysticks on *BSD (thanks Wilbern!)
Sam Lantinga <slouken@libsdl.org>
parents:
263
diff
changeset
|
1571 JOYSTICK_DRIVERS="$JOYSTICK_DRIVERS bsd/libjoystick_bsd.la" |
0 | 1572 fi |
1573 # Set up files for the cdrom library | |
1574 if test x$enable_cdrom = xyes; then | |
153
2839f45bdba0
Fixed IDE and SCSI CD-ROM detection on BeOS (thanks Caz!)
Sam Lantinga <slouken@libsdl.org>
parents:
148
diff
changeset
|
1575 CDROM_SUBDIRS="$CDROM_SUBDIRS freebsd" |
2839f45bdba0
Fixed IDE and SCSI CD-ROM detection on BeOS (thanks Caz!)
Sam Lantinga <slouken@libsdl.org>
parents:
148
diff
changeset
|
1576 CDROM_DRIVERS="$CDROM_DRIVERS freebsd/libcdrom_freebsd.la" |
0 | 1577 fi |
1578 # Set up files for the thread library | |
1579 if test x$enable_threads = xyes; then | |
1580 COPY_ARCH_SRC(src/thread, linux, SDL_systhread.c) | |
1581 COPY_ARCH_SRC(src/thread, linux, SDL_systhread_c.h) | |
1582 COPY_ARCH_SRC(src/thread, linux, SDL_sysmutex.c) | |
1583 COPY_ARCH_SRC(src/thread, linux, SDL_sysmutex_c.h) | |
94
ae6e6b73333f
Cleaned up the OpenBSD port, thanks to Peter Valchev
Sam Lantinga <slouken@lokigames.com>
parents:
86
diff
changeset
|
1584 if test x$use_pthreads = xyes -a x$have_pthread_sem != xyes; then |
0 | 1585 COPY_ARCH_SRC(src/thread, generic, SDL_syssem.c) |
1586 else | |
1587 COPY_ARCH_SRC(src/thread, linux, SDL_syssem.c) | |
1588 fi | |
1589 COPY_ARCH_SRC(src/thread, generic, SDL_syssem_c.h) | |
1590 COPY_ARCH_SRC(src/thread, linux, SDL_syscond.c) | |
1591 COPY_ARCH_SRC(src/thread, generic, SDL_syscond_c.h) | |
1592 fi | |
1593 # Set up files for the timer library | |
1594 if test x$enable_timers = xyes; then | |
1595 COPY_ARCH_SRC(src/timer, linux, SDL_systimer.c) | |
1596 fi | |
1597 ;; | |
1598 *-*-netbsd*) | |
1599 ARCH=netbsd | |
1
cf2af46e9e2a
Changes since SDL 1.2.0 release
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
1600 CheckDummyVideo |
68
ac6645260d31
Added an audio driver that writes to disk (thanks Ryan!)
Sam Lantinga <slouken@lokigames.com>
parents:
53
diff
changeset
|
1601 CheckDiskAudio |
294
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
1602 CheckDLOPEN |
0 | 1603 CheckNASM |
1604 CheckOSS | |
1605 CheckARTSC | |
1606 CheckESD | |
1607 CheckNAS | |
1608 CheckX11 | |
1609 CheckAAlib | |
1610 CheckOpenGL | |
1611 CheckPTHREAD | |
1612 # Set up files for the main() stub | |
1613 COPY_ARCH_SRC(src/main, linux, SDL_main.c) | |
1614 # Set up files for the audio library | |
1615 if test x$enable_audio = xyes; then | |
148
8758b8d42cd9
Audio subsystem no longer assumes sun audio API on UNIX systems
Sam Lantinga <slouken@libsdl.org>
parents:
144
diff
changeset
|
1616 CFLAGS="$CFLAGS -DSUNAUDIO_SUPPORT" |
0 | 1617 AUDIO_SUBDIRS="$AUDIO_SUBDIRS sun" |
1618 AUDIO_DRIVERS="$AUDIO_DRIVERS sun/libaudio_sun.la" | |
1619 fi | |
1620 # Set up files for the joystick library | |
1621 if test x$enable_joystick = xyes; then | |
278
dcd9f7b50a1c
Added support for joysticks on *BSD (thanks Wilbern!)
Sam Lantinga <slouken@libsdl.org>
parents:
263
diff
changeset
|
1622 JOYSTICK_SUBDIRS="$JOYSTICK_SUBDIRS bsd" |
dcd9f7b50a1c
Added support for joysticks on *BSD (thanks Wilbern!)
Sam Lantinga <slouken@libsdl.org>
parents:
263
diff
changeset
|
1623 JOYSTICK_DRIVERS="$JOYSTICK_DRIVERS bsd/libjoystick_bsd.la" |
0 | 1624 fi |
1625 # Set up files for the cdrom library | |
1626 if test x$enable_cdrom = xyes; then | |
153
2839f45bdba0
Fixed IDE and SCSI CD-ROM detection on BeOS (thanks Caz!)
Sam Lantinga <slouken@libsdl.org>
parents:
148
diff
changeset
|
1627 CDROM_SUBDIRS="$CDROM_SUBDIRS openbsd" |
2839f45bdba0
Fixed IDE and SCSI CD-ROM detection on BeOS (thanks Caz!)
Sam Lantinga <slouken@libsdl.org>
parents:
148
diff
changeset
|
1628 CDROM_DRIVERS="$CDROM_DRIVERS openbsd/libcdrom_openbsd.la" |
0 | 1629 fi |
1630 # Set up files for the thread library | |
1631 if test x$enable_threads = xyes; then | |
1632 COPY_ARCH_SRC(src/thread, linux, SDL_systhread.c) | |
1633 COPY_ARCH_SRC(src/thread, linux, SDL_systhread_c.h) | |
1634 COPY_ARCH_SRC(src/thread, linux, SDL_sysmutex.c) | |
1635 COPY_ARCH_SRC(src/thread, linux, SDL_sysmutex_c.h) | |
94
ae6e6b73333f
Cleaned up the OpenBSD port, thanks to Peter Valchev
Sam Lantinga <slouken@lokigames.com>
parents:
86
diff
changeset
|
1636 if test x$use_pthreads = xyes -a x$have_pthread_sem != xyes; then |
41
8de9e8baaecc
*** empty log message ***
Sam Lantinga <slouken@lokigames.com>
parents:
39
diff
changeset
|
1637 COPY_ARCH_SRC(src/thread, generic, SDL_syssem.c) |
8de9e8baaecc
*** empty log message ***
Sam Lantinga <slouken@lokigames.com>
parents:
39
diff
changeset
|
1638 else |
8de9e8baaecc
*** empty log message ***
Sam Lantinga <slouken@lokigames.com>
parents:
39
diff
changeset
|
1639 COPY_ARCH_SRC(src/thread, linux, SDL_syssem.c) |
8de9e8baaecc
*** empty log message ***
Sam Lantinga <slouken@lokigames.com>
parents:
39
diff
changeset
|
1640 fi |
0 | 1641 COPY_ARCH_SRC(src/thread, generic, SDL_syssem_c.h) |
1642 COPY_ARCH_SRC(src/thread, linux, SDL_syscond.c) | |
1643 COPY_ARCH_SRC(src/thread, generic, SDL_syscond_c.h) | |
1644 fi | |
1645 # Set up files for the timer library | |
1646 if test x$enable_timers = xyes; then | |
1647 COPY_ARCH_SRC(src/timer, linux, SDL_systimer.c) | |
1648 fi | |
1649 # NetBSD does not define "unix" | |
43
8cc154626be9
I found the pthread package for NetBSD
Sam Lantinga <slouken@lokigames.com>
parents:
42
diff
changeset
|
1650 CFLAGS="$CFLAGS -Dunix -D_POSIX_THREAD_SYSCALL_SOFT=1" |
0 | 1651 ;; |
1652 *-*-openbsd*) | |
1653 ARCH=openbsd | |
1
cf2af46e9e2a
Changes since SDL 1.2.0 release
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
1654 CheckDummyVideo |
68
ac6645260d31
Added an audio driver that writes to disk (thanks Ryan!)
Sam Lantinga <slouken@lokigames.com>
parents:
53
diff
changeset
|
1655 CheckDiskAudio |
294
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
1656 CheckDLOPEN |
94
ae6e6b73333f
Cleaned up the OpenBSD port, thanks to Peter Valchev
Sam Lantinga <slouken@lokigames.com>
parents:
86
diff
changeset
|
1657 CheckOPENBSDAUDIO |
0 | 1658 CheckNASM |
1659 CheckOSS | |
1660 CheckARTSC | |
1661 CheckESD | |
1662 CheckNAS | |
1663 CheckX11 | |
1664 CheckAAlib | |
1665 CheckOpenGL | |
1666 CheckPTHREAD | |
1667 # Set up files for the main() stub | |
1668 COPY_ARCH_SRC(src/main, linux, SDL_main.c) | |
1669 # Set up files for the audio library | |
94
ae6e6b73333f
Cleaned up the OpenBSD port, thanks to Peter Valchev
Sam Lantinga <slouken@lokigames.com>
parents:
86
diff
changeset
|
1670 # We use the OSS and native API's, not the Sun audio API |
ae6e6b73333f
Cleaned up the OpenBSD port, thanks to Peter Valchev
Sam Lantinga <slouken@lokigames.com>
parents:
86
diff
changeset
|
1671 #if test x$enable_audio = xyes; then |
148
8758b8d42cd9
Audio subsystem no longer assumes sun audio API on UNIX systems
Sam Lantinga <slouken@libsdl.org>
parents:
144
diff
changeset
|
1672 # CFLAGS="$CFLAGS -DSUNAUDIO_SUPPORT" |
94
ae6e6b73333f
Cleaned up the OpenBSD port, thanks to Peter Valchev
Sam Lantinga <slouken@lokigames.com>
parents:
86
diff
changeset
|
1673 # AUDIO_SUBDIRS="$AUDIO_SUBDIRS sun" |
ae6e6b73333f
Cleaned up the OpenBSD port, thanks to Peter Valchev
Sam Lantinga <slouken@lokigames.com>
parents:
86
diff
changeset
|
1674 # AUDIO_DRIVERS="$AUDIO_DRIVERS sun/libaudio_sun.la" |
ae6e6b73333f
Cleaned up the OpenBSD port, thanks to Peter Valchev
Sam Lantinga <slouken@lokigames.com>
parents:
86
diff
changeset
|
1675 #fi |
ae6e6b73333f
Cleaned up the OpenBSD port, thanks to Peter Valchev
Sam Lantinga <slouken@lokigames.com>
parents:
86
diff
changeset
|
1676 # OpenBSD needs linking with ossaudio emulation library |
ae6e6b73333f
Cleaned up the OpenBSD port, thanks to Peter Valchev
Sam Lantinga <slouken@lokigames.com>
parents:
86
diff
changeset
|
1677 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
|
1678 SYSTEM_LIBS="$SYSTEM_LIBS -lossaudio" |
ae6e6b73333f
Cleaned up the OpenBSD port, thanks to Peter Valchev
Sam Lantinga <slouken@lokigames.com>
parents:
86
diff
changeset
|
1679 fi |
0 | 1680 # Set up files for the joystick library |
1681 if test x$enable_joystick = xyes; then | |
278
dcd9f7b50a1c
Added support for joysticks on *BSD (thanks Wilbern!)
Sam Lantinga <slouken@libsdl.org>
parents:
263
diff
changeset
|
1682 JOYSTICK_SUBDIRS="$JOYSTICK_SUBDIRS bsd" |
dcd9f7b50a1c
Added support for joysticks on *BSD (thanks Wilbern!)
Sam Lantinga <slouken@libsdl.org>
parents:
263
diff
changeset
|
1683 JOYSTICK_DRIVERS="$JOYSTICK_DRIVERS bsd/libjoystick_bsd.la" |
0 | 1684 fi |
1685 # Set up files for the cdrom library | |
1686 if test x$enable_cdrom = xyes; then | |
153
2839f45bdba0
Fixed IDE and SCSI CD-ROM detection on BeOS (thanks Caz!)
Sam Lantinga <slouken@libsdl.org>
parents:
148
diff
changeset
|
1687 CDROM_SUBDIRS="$CDROM_SUBDIRS openbsd" |
2839f45bdba0
Fixed IDE and SCSI CD-ROM detection on BeOS (thanks Caz!)
Sam Lantinga <slouken@libsdl.org>
parents:
148
diff
changeset
|
1688 CDROM_DRIVERS="$CDROM_DRIVERS openbsd/libcdrom_openbsd.la" |
0 | 1689 fi |
1690 # Set up files for the thread library | |
1691 if test x$enable_threads = xyes; then | |
1692 COPY_ARCH_SRC(src/thread, linux, SDL_systhread.c) | |
1693 COPY_ARCH_SRC(src/thread, linux, SDL_systhread_c.h) | |
1694 COPY_ARCH_SRC(src/thread, linux, SDL_sysmutex.c) | |
1695 COPY_ARCH_SRC(src/thread, linux, SDL_sysmutex_c.h) | |
94
ae6e6b73333f
Cleaned up the OpenBSD port, thanks to Peter Valchev
Sam Lantinga <slouken@lokigames.com>
parents:
86
diff
changeset
|
1696 if test x$use_pthreads = xyes -a x$have_pthread_sem != xyes; then |
0 | 1697 COPY_ARCH_SRC(src/thread, generic, SDL_syssem.c) |
1698 else | |
1699 COPY_ARCH_SRC(src/thread, linux, SDL_syssem.c) | |
1700 fi | |
1701 COPY_ARCH_SRC(src/thread, generic, SDL_syssem_c.h) | |
1702 COPY_ARCH_SRC(src/thread, linux, SDL_syscond.c) | |
1703 COPY_ARCH_SRC(src/thread, generic, SDL_syscond_c.h) | |
1704 fi | |
1705 # Set up files for the timer library | |
1706 if test x$enable_timers = xyes; then | |
1707 COPY_ARCH_SRC(src/timer, linux, SDL_systimer.c) | |
1708 fi | |
37
3ad7157c6cfa
Added native OpenBSD audio driver (thanks vedge!)
Sam Lantinga <slouken@lokigames.com>
parents:
35
diff
changeset
|
1709 # OpenBSD does not define "unix" |
3ad7157c6cfa
Added native OpenBSD audio driver (thanks vedge!)
Sam Lantinga <slouken@lokigames.com>
parents:
35
diff
changeset
|
1710 CFLAGS="$CFLAGS -Dunix" |
0 | 1711 ;; |
1712 *-*-sysv5*) | |
1713 ARCH=sysv5 | |
1
cf2af46e9e2a
Changes since SDL 1.2.0 release
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
1714 CheckDummyVideo |
68
ac6645260d31
Added an audio driver that writes to disk (thanks Ryan!)
Sam Lantinga <slouken@lokigames.com>
parents:
53
diff
changeset
|
1715 CheckDiskAudio |
294
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
1716 CheckDLOPEN |
0 | 1717 CheckNASM |
1718 CheckOSS | |
1719 CheckARTSC | |
1720 CheckESD | |
1721 CheckNAS | |
1722 CheckX11 | |
1723 CheckAAlib | |
1724 CheckOpenGL | |
1725 CheckPTHREAD | |
1726 # Set up files for the main() stub | |
1727 COPY_ARCH_SRC(src/main, linux, SDL_main.c) | |
1728 # Set up files for the audio library | |
1729 if test x$enable_audio = xyes; then | |
148
8758b8d42cd9
Audio subsystem no longer assumes sun audio API on UNIX systems
Sam Lantinga <slouken@libsdl.org>
parents:
144
diff
changeset
|
1730 CFLAGS="$CFLAGS -DSUNAUDIO_SUPPORT" |
0 | 1731 AUDIO_SUBDIRS="$AUDIO_SUBDIRS sun" |
1732 AUDIO_DRIVERS="$AUDIO_DRIVERS sun/libaudio_sun.la" | |
1733 fi | |
1734 # Set up files for the joystick library | |
1735 # (No joystick support yet) | |
1736 if test x$enable_joystick = xyes; then | |
1737 JOYSTICK_SUBDIRS="$JOYSTICK_SUBDIRS dummy" | |
1738 JOYSTICK_DRIVERS="$JOYSTICK_DRIVERS dummy/libjoystick_dummy.la" | |
1739 fi | |
1740 # Set up files for the cdrom library | |
1741 if test x$enable_cdrom = xyes; then | |
153
2839f45bdba0
Fixed IDE and SCSI CD-ROM detection on BeOS (thanks Caz!)
Sam Lantinga <slouken@libsdl.org>
parents:
148
diff
changeset
|
1742 CDROM_SUBDIRS="$CDROM_SUBDIRS dummy" |
2839f45bdba0
Fixed IDE and SCSI CD-ROM detection on BeOS (thanks Caz!)
Sam Lantinga <slouken@libsdl.org>
parents:
148
diff
changeset
|
1743 CDROM_DRIVERS="$CDROM_DRIVERS dummy/libcdrom_dummy.la" |
0 | 1744 fi |
1745 # Set up files for the thread library | |
1746 if test x$enable_threads = xyes; then | |
1747 COPY_ARCH_SRC(src/thread, generic, SDL_systhread.c) | |
1748 COPY_ARCH_SRC(src/thread, generic, SDL_systhread_c.h) | |
1749 COPY_ARCH_SRC(src/thread, generic, SDL_sysmutex.c) | |
1750 COPY_ARCH_SRC(src/thread, generic, SDL_sysmutex_c.h) | |
1751 COPY_ARCH_SRC(src/thread, generic, SDL_syssem.c) | |
1752 COPY_ARCH_SRC(src/thread, generic, SDL_syssem_c.h) | |
1753 COPY_ARCH_SRC(src/thread, generic, SDL_syscond.c) | |
1754 COPY_ARCH_SRC(src/thread, generic, SDL_syscond_c.h) | |
1755 fi | |
1756 # Set up files for the timer library | |
1757 if test x$enable_timers = xyes; then | |
1758 COPY_ARCH_SRC(src/timer, linux, SDL_systimer.c) | |
1759 fi | |
1760 ;; | |
1761 *-*-solaris*) | |
1762 ARCH=solaris | |
1
cf2af46e9e2a
Changes since SDL 1.2.0 release
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
1763 CFLAGS="$CFLAGS -D__ELF__" # Fix for nasm on Solaris x86 |
cf2af46e9e2a
Changes since SDL 1.2.0 release
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
1764 CheckDummyVideo |
68
ac6645260d31
Added an audio driver that writes to disk (thanks Ryan!)
Sam Lantinga <slouken@lokigames.com>
parents:
53
diff
changeset
|
1765 CheckDiskAudio |
294
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
1766 CheckDLOPEN |
0 | 1767 CheckNASM |
35
d3bc792e136d
Added detection of Open Sound System on Solaris x86
Sam Lantinga <slouken@lokigames.com>
parents:
30
diff
changeset
|
1768 CheckOSS |
0 | 1769 CheckARTSC |
1770 CheckESD | |
1771 CheckNAS | |
1772 CheckX11 | |
1773 CheckAAlib | |
1774 CheckOpenGL | |
1775 CheckPTHREAD | |
1776 # Set up files for the main() stub | |
1777 COPY_ARCH_SRC(src/main, linux, SDL_main.c) | |
1778 # Set up files for the audio library | |
1779 if test x$enable_audio = xyes; then | |
148
8758b8d42cd9
Audio subsystem no longer assumes sun audio API on UNIX systems
Sam Lantinga <slouken@libsdl.org>
parents:
144
diff
changeset
|
1780 CFLAGS="$CFLAGS -DSUNAUDIO_SUPPORT" |
0 | 1781 AUDIO_SUBDIRS="$AUDIO_SUBDIRS sun" |
1782 AUDIO_DRIVERS="$AUDIO_DRIVERS sun/libaudio_sun.la" | |
1783 fi | |
1784 # Set up files for the joystick library | |
1785 # (No joystick support yet) | |
1786 if test x$enable_joystick = xyes; then | |
1787 JOYSTICK_SUBDIRS="$JOYSTICK_SUBDIRS dummy" | |
1788 JOYSTICK_DRIVERS="$JOYSTICK_DRIVERS dummy/libjoystick_dummy.la" | |
1789 fi | |
1790 # Set up files for the cdrom library | |
1791 if test x$enable_cdrom = xyes; then | |
153
2839f45bdba0
Fixed IDE and SCSI CD-ROM detection on BeOS (thanks Caz!)
Sam Lantinga <slouken@libsdl.org>
parents:
148
diff
changeset
|
1792 CDROM_SUBDIRS="$CDROM_SUBDIRS linux" |
2839f45bdba0
Fixed IDE and SCSI CD-ROM detection on BeOS (thanks Caz!)
Sam Lantinga <slouken@libsdl.org>
parents:
148
diff
changeset
|
1793 CDROM_DRIVERS="$CDROM_DRIVERS linux/libcdrom_linux.la" |
0 | 1794 fi |
1795 # Set up files for the thread library | |
1796 if test x$enable_threads = xyes; then | |
1797 COPY_ARCH_SRC(src/thread, linux, SDL_systhread.c) | |
1798 COPY_ARCH_SRC(src/thread, linux, SDL_systhread_c.h) | |
1799 COPY_ARCH_SRC(src/thread, linux, SDL_sysmutex.c) | |
1800 COPY_ARCH_SRC(src/thread, linux, SDL_sysmutex_c.h) | |
1801 COPY_ARCH_SRC(src/thread, linux, SDL_syssem.c) | |
1802 COPY_ARCH_SRC(src/thread, generic, SDL_syssem_c.h) | |
1803 COPY_ARCH_SRC(src/thread, generic, SDL_syscond.c) | |
1804 COPY_ARCH_SRC(src/thread, generic, SDL_syscond_c.h) | |
1805 fi | |
1806 # Set up files for the timer library | |
1807 if test x$enable_timers = xyes; then | |
1808 COPY_ARCH_SRC(src/timer, linux, SDL_systimer.c) | |
1809 fi | |
1810 ;; | |
1811 *-*-irix*) | |
1812 ARCH=irix | |
1
cf2af46e9e2a
Changes since SDL 1.2.0 release
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
1813 CheckDummyVideo |
68
ac6645260d31
Added an audio driver that writes to disk (thanks Ryan!)
Sam Lantinga <slouken@lokigames.com>
parents:
53
diff
changeset
|
1814 CheckDiskAudio |
294
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
1815 CheckDLOPEN |
148
8758b8d42cd9
Audio subsystem no longer assumes sun audio API on UNIX systems
Sam Lantinga <slouken@libsdl.org>
parents:
144
diff
changeset
|
1816 CheckDMEDIA |
8758b8d42cd9
Audio subsystem no longer assumes sun audio API on UNIX systems
Sam Lantinga <slouken@libsdl.org>
parents:
144
diff
changeset
|
1817 CheckESD |
0 | 1818 CheckNAS |
1819 CheckX11 | |
1820 CheckAAlib | |
1821 CheckOpenGL | |
1822 CheckPTHREAD | |
1823 # Set up files for the main() stub | |
1824 COPY_ARCH_SRC(src/main, linux, SDL_main.c) | |
148
8758b8d42cd9
Audio subsystem no longer assumes sun audio API on UNIX systems
Sam Lantinga <slouken@libsdl.org>
parents:
144
diff
changeset
|
1825 # We use the dmedia audio API, not the Sun audio API |
8758b8d42cd9
Audio subsystem no longer assumes sun audio API on UNIX systems
Sam Lantinga <slouken@libsdl.org>
parents:
144
diff
changeset
|
1826 #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
|
1827 # CFLAGS="$CFLAGS -DSUNAUDIO_SUPPORT" |
8758b8d42cd9
Audio subsystem no longer assumes sun audio API on UNIX systems
Sam Lantinga <slouken@libsdl.org>
parents:
144
diff
changeset
|
1828 # AUDIO_SUBDIRS="$AUDIO_SUBDIRS sun" |
8758b8d42cd9
Audio subsystem no longer assumes sun audio API on UNIX systems
Sam Lantinga <slouken@libsdl.org>
parents:
144
diff
changeset
|
1829 # AUDIO_DRIVERS="$AUDIO_DRIVERS sun/libaudio_sun.la" |
8758b8d42cd9
Audio subsystem no longer assumes sun audio API on UNIX systems
Sam Lantinga <slouken@libsdl.org>
parents:
144
diff
changeset
|
1830 #fi |
0 | 1831 # Set up files for the joystick library |
1832 # (No joystick support yet) | |
1833 if test x$enable_joystick = xyes; then | |
1834 JOYSTICK_SUBDIRS="$JOYSTICK_SUBDIRS dummy" | |
1835 JOYSTICK_DRIVERS="$JOYSTICK_DRIVERS dummy/libjoystick_dummy.la" | |
1836 fi | |
1837 # Set up files for the cdrom library | |
1838 # (No CD-ROM support yet) | |
1839 if test x$enable_cdrom = xyes; then | |
153
2839f45bdba0
Fixed IDE and SCSI CD-ROM detection on BeOS (thanks Caz!)
Sam Lantinga <slouken@libsdl.org>
parents:
148
diff
changeset
|
1840 CDROM_SUBDIRS="$CDROM_SUBDIRS dummy" |
2839f45bdba0
Fixed IDE and SCSI CD-ROM detection on BeOS (thanks Caz!)
Sam Lantinga <slouken@libsdl.org>
parents:
148
diff
changeset
|
1841 CDROM_DRIVERS="$CDROM_DRIVERS dummy/libcdrom_dummy.la" |
0 | 1842 fi |
1843 # Set up files for the thread library | |
1844 if test x$enable_threads = xyes; then | |
1845 if test x$use_pthreads = xyes; then | |
1846 COPY_ARCH_SRC(src/thread, linux, SDL_systhread.c) | |
1847 COPY_ARCH_SRC(src/thread, linux, SDL_systhread_c.h) | |
1848 COPY_ARCH_SRC(src/thread, linux, SDL_sysmutex.c) | |
1849 COPY_ARCH_SRC(src/thread, linux, SDL_sysmutex_c.h) | |
94
ae6e6b73333f
Cleaned up the OpenBSD port, thanks to Peter Valchev
Sam Lantinga <slouken@lokigames.com>
parents:
86
diff
changeset
|
1850 if test x$have_pthread_sem != xyes; then |
0 | 1851 COPY_ARCH_SRC(src/thread, generic, SDL_syssem.c) |
1852 else | |
1853 COPY_ARCH_SRC(src/thread, linux, SDL_syssem.c) | |
1854 fi | |
1855 COPY_ARCH_SRC(src/thread, generic, SDL_syssem_c.h) | |
1856 COPY_ARCH_SRC(src/thread, linux, SDL_syscond.c) | |
1857 COPY_ARCH_SRC(src/thread, generic, SDL_syscond_c.h) | |
1858 else | |
1859 COPY_ARCH_SRC(src/thread, irix, SDL_systhread.c) | |
1860 COPY_ARCH_SRC(src/thread, irix, SDL_systhread_c.h) | |
1861 COPY_ARCH_SRC(src/thread, linux, SDL_sysmutex.c) | |
1862 COPY_ARCH_SRC(src/thread, linux, SDL_sysmutex_c.h) | |
1863 COPY_ARCH_SRC(src/thread, linux, SDL_syssem.c) | |
1864 COPY_ARCH_SRC(src/thread, generic, SDL_syssem_c.h) | |
1865 COPY_ARCH_SRC(src/thread, generic, SDL_syscond.c) | |
1866 COPY_ARCH_SRC(src/thread, generic, SDL_syscond_c.h) | |
1867 fi | |
1868 fi | |
1869 # Set up files for the timer library | |
1870 if test x$enable_timers = xyes; then | |
1871 COPY_ARCH_SRC(src/timer, linux, SDL_systimer.c) | |
1872 fi | |
1873 ;; | |
1874 *-*-hpux*) | |
1875 ARCH=hpux | |
1
cf2af46e9e2a
Changes since SDL 1.2.0 release
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
1876 CheckDummyVideo |
68
ac6645260d31
Added an audio driver that writes to disk (thanks Ryan!)
Sam Lantinga <slouken@lokigames.com>
parents:
53
diff
changeset
|
1877 CheckDiskAudio |
294
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
1878 CheckDLOPEN |
35
d3bc792e136d
Added detection of Open Sound System on Solaris x86
Sam Lantinga <slouken@lokigames.com>
parents:
30
diff
changeset
|
1879 CheckOSS |
0 | 1880 CheckNAS |
1881 CheckX11 | |
1882 CheckGGI | |
1883 CheckAAlib | |
1884 CheckOpenGL | |
1885 CheckPTHREAD | |
1886 # Set up files for the main() stub | |
1887 COPY_ARCH_SRC(src/main, linux, SDL_main.c) | |
1888 # Set up files for the audio library | |
1889 if test x$enable_audio = xyes; then | |
148
8758b8d42cd9
Audio subsystem no longer assumes sun audio API on UNIX systems
Sam Lantinga <slouken@libsdl.org>
parents:
144
diff
changeset
|
1890 CFLAGS="$CFLAGS -DSUNAUDIO_SUPPORT" |
0 | 1891 AUDIO_SUBDIRS="$AUDIO_SUBDIRS sun" |
1892 AUDIO_DRIVERS="$AUDIO_DRIVERS sun/libaudio_sun.la" | |
1893 fi | |
1894 # Set up files for the joystick library | |
1895 # (No joystick support yet) | |
1896 if test x$enable_joystick = xyes; then | |
1897 JOYSTICK_SUBDIRS="$JOYSTICK_SUBDIRS dummy" | |
1898 JOYSTICK_DRIVERS="$JOYSTICK_DRIVERS dummy/libjoystick_dummy.la" | |
1899 fi | |
1900 # Set up files for the cdrom library | |
1901 # (No CD-ROM support yet) | |
1902 if test x$enable_cdrom = xyes; then | |
153
2839f45bdba0
Fixed IDE and SCSI CD-ROM detection on BeOS (thanks Caz!)
Sam Lantinga <slouken@libsdl.org>
parents:
148
diff
changeset
|
1903 CDROM_SUBDIRS="$CDROM_SUBDIRS dummy" |
2839f45bdba0
Fixed IDE and SCSI CD-ROM detection on BeOS (thanks Caz!)
Sam Lantinga <slouken@libsdl.org>
parents:
148
diff
changeset
|
1904 CDROM_DRIVERS="$CDROM_DRIVERS dummy/libcdrom_dummy.la" |
0 | 1905 fi |
1906 # Set up files for the thread library | |
1907 if test x$enable_threads = xyes; then | |
1908 COPY_ARCH_SRC(src/thread, linux, SDL_systhread.c) | |
1909 COPY_ARCH_SRC(src/thread, linux, SDL_systhread_c.h) | |
1910 COPY_ARCH_SRC(src/thread, linux, SDL_sysmutex.c) | |
1911 COPY_ARCH_SRC(src/thread, linux, SDL_sysmutex_c.h) | |
1912 COPY_ARCH_SRC(src/thread, linux, SDL_syssem.c) | |
1913 COPY_ARCH_SRC(src/thread, generic, SDL_syssem_c.h) | |
1914 COPY_ARCH_SRC(src/thread, linux, SDL_syscond.c) | |
1915 COPY_ARCH_SRC(src/thread, generic, SDL_syscond_c.h) | |
1916 fi | |
1917 # Set up files for the timer library | |
1918 if test x$enable_timers = xyes; then | |
1919 COPY_ARCH_SRC(src/timer, linux, SDL_systimer.c) | |
1920 fi | |
1921 ;; | |
1922 *-*-aix*) | |
1923 ARCH=aix | |
1
cf2af46e9e2a
Changes since SDL 1.2.0 release
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
1924 CheckDummyVideo |
68
ac6645260d31
Added an audio driver that writes to disk (thanks Ryan!)
Sam Lantinga <slouken@lokigames.com>
parents:
53
diff
changeset
|
1925 CheckDiskAudio |
294
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
1926 CheckDLOPEN |
35
d3bc792e136d
Added detection of Open Sound System on Solaris x86
Sam Lantinga <slouken@lokigames.com>
parents:
30
diff
changeset
|
1927 CheckOSS |
0 | 1928 CheckNAS |
1929 CheckX11 | |
1930 CheckGGI | |
1931 CheckAAlib | |
1932 CheckOpenGL | |
1933 CheckPTHREAD | |
1934 # Set up files for the main() stub | |
1935 COPY_ARCH_SRC(src/main, linux, SDL_main.c) | |
1936 # Set up files for the audio library | |
1937 if test x$enable_audio = xyes; then | |
1938 AUDIO_SUBDIRS="$AUDIO_SUBDIRS paudio" | |
1939 AUDIO_DRIVERS="$AUDIO_DRIVERS paudio/libaudio_paudio.la" | |
1940 fi | |
1941 # Set up files for the joystick library | |
1942 # (No joystick support yet) | |
1943 if test x$enable_joystick = xyes; then | |
1944 JOYSTICK_SUBDIRS="$JOYSTICK_SUBDIRS dummy" | |
1945 JOYSTICK_DRIVERS="$JOYSTICK_DRIVERS dummy/libjoystick_dummy.la" | |
1946 fi | |
1947 # Set up files for the cdrom library | |
1948 if test x$enable_cdrom = xyes; then | |
153
2839f45bdba0
Fixed IDE and SCSI CD-ROM detection on BeOS (thanks Caz!)
Sam Lantinga <slouken@libsdl.org>
parents:
148
diff
changeset
|
1949 CDROM_SUBDIRS="$CDROM_SUBDIRS aix" |
2839f45bdba0
Fixed IDE and SCSI CD-ROM detection on BeOS (thanks Caz!)
Sam Lantinga <slouken@libsdl.org>
parents:
148
diff
changeset
|
1950 CDROM_DRIVERS="$CDROM_DRIVERS aix/libcdrom_aix.la" |
0 | 1951 fi |
1952 # Set up files for the thread library | |
1953 if test x$enable_threads = xyes; then | |
1954 COPY_ARCH_SRC(src/thread, linux, SDL_systhread.c) | |
1955 COPY_ARCH_SRC(src/thread, linux, SDL_systhread_c.h) | |
1956 COPY_ARCH_SRC(src/thread, linux, SDL_sysmutex.c) | |
1957 COPY_ARCH_SRC(src/thread, linux, SDL_sysmutex_c.h) | |
1958 COPY_ARCH_SRC(src/thread, linux, SDL_syssem.c) | |
1959 COPY_ARCH_SRC(src/thread, generic, SDL_syssem_c.h) | |
1960 COPY_ARCH_SRC(src/thread, linux, SDL_syscond.c) | |
1961 COPY_ARCH_SRC(src/thread, generic, SDL_syscond_c.h) | |
1962 fi | |
1963 # Set up files for the timer library | |
1964 if test x$enable_timers = xyes; then | |
1965 COPY_ARCH_SRC(src/timer, linux, SDL_systimer.c) | |
1966 fi | |
1967 ;; | |
1968 *-*-osf*) | |
1969 ARCH=osf | |
1
cf2af46e9e2a
Changes since SDL 1.2.0 release
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
1970 CheckDummyVideo |
68
ac6645260d31
Added an audio driver that writes to disk (thanks Ryan!)
Sam Lantinga <slouken@lokigames.com>
parents:
53
diff
changeset
|
1971 CheckDiskAudio |
294
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
1972 CheckDLOPEN |
0 | 1973 CheckNAS |
1974 CheckX11 | |
1975 CheckGGI | |
1976 CheckAAlib | |
1977 CheckOpenGL | |
1978 CheckPTHREAD | |
1979 # Set up files for the main() stub | |
1980 COPY_ARCH_SRC(src/main, linux, SDL_main.c) | |
1981 # Set up files for the audio library | |
1982 if test x$enable_audio = xyes; then | |
148
8758b8d42cd9
Audio subsystem no longer assumes sun audio API on UNIX systems
Sam Lantinga <slouken@libsdl.org>
parents:
144
diff
changeset
|
1983 CFLAGS="$CFLAGS -DSUNAUDIO_SUPPORT" |
0 | 1984 AUDIO_SUBDIRS="$AUDIO_SUBDIRS sun" |
1985 AUDIO_DRIVERS="$AUDIO_DRIVERS sun/libaudio_sun.la" | |
1986 fi | |
1987 # Set up files for the joystick library | |
1988 # (No joystick support yet) | |
1989 if test x$enable_joystick = xyes; then | |
1990 JOYSTICK_SUBDIRS="$JOYSTICK_SUBDIRS dummy" | |
1991 JOYSTICK_DRIVERS="$JOYSTICK_DRIVERS dummy/libjoystick_dummy.la" | |
1992 fi | |
1993 # Set up files for the cdrom library | |
1994 # (No cdrom support yet) | |
1995 if test x$enable_cdrom = xyes; then | |
153
2839f45bdba0
Fixed IDE and SCSI CD-ROM detection on BeOS (thanks Caz!)
Sam Lantinga <slouken@libsdl.org>
parents:
148
diff
changeset
|
1996 CDROM_SUBDIRS="$CDROM_SUBDIRS dummy" |
2839f45bdba0
Fixed IDE and SCSI CD-ROM detection on BeOS (thanks Caz!)
Sam Lantinga <slouken@libsdl.org>
parents:
148
diff
changeset
|
1997 CDROM_DRIVERS="$CDROM_DRIVERS dummy/libcdrom_dummy.la" |
0 | 1998 fi |
1999 # Set up files for the thread library | |
2000 if test x$enable_threads = xyes; then | |
2001 COPY_ARCH_SRC(src/thread, linux, SDL_systhread.c) | |
2002 COPY_ARCH_SRC(src/thread, linux, SDL_systhread_c.h) | |
2003 COPY_ARCH_SRC(src/thread, linux, SDL_sysmutex.c) | |
2004 COPY_ARCH_SRC(src/thread, linux, SDL_sysmutex_c.h) | |
2005 COPY_ARCH_SRC(src/thread, generic, SDL_syssem.c) | |
2006 COPY_ARCH_SRC(src/thread, generic, SDL_syssem_c.h) | |
2007 COPY_ARCH_SRC(src/thread, linux, SDL_syscond.c) | |
2008 COPY_ARCH_SRC(src/thread, generic, SDL_syscond_c.h) | |
2009 fi | |
2010 # Set up files for the timer library | |
2011 if test x$enable_timers = xyes; then | |
2012 COPY_ARCH_SRC(src/timer, linux, SDL_systimer.c) | |
2013 fi | |
2014 ;; | |
2015 *-*-qnx*) | |
2016 ARCH=qnx | |
1
cf2af46e9e2a
Changes since SDL 1.2.0 release
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
2017 CheckDummyVideo |
68
ac6645260d31
Added an audio driver that writes to disk (thanks Ryan!)
Sam Lantinga <slouken@lokigames.com>
parents:
53
diff
changeset
|
2018 CheckDiskAudio |
294
d2d48e10f370
Added a new header file: SDL_loadso.h
Sam Lantinga <slouken@libsdl.org>
parents:
292
diff
changeset
|
2019 CheckDLOPEN |
0 | 2020 CheckNAS |
2021 CheckPHOTON | |
2022 CheckX11 | |
2023 CheckOpenGL | |
2024 CheckPTHREAD | |
2025 # Set up files for the main() stub | |
2026 COPY_ARCH_SRC(src/main, linux, SDL_main.c) | |
2027 # Set up files for the audio library | |
2028 if test x$enable_audio = xyes; then | |
2029 CFLAGS="$CFLAGS -DALSA_SUPPORT" | |
2030 SYSTEM_LIBS="$SYSTEM_LIBS -lasound" | |
2031 AUDIO_SUBDIRS="$AUDIO_SUBDIRS nto" | |
2032 AUDIO_DRIVERS="$AUDIO_DRIVERS nto/libaudio_nto.la" | |
2033 fi | |
2034 # Set up files for the joystick library | |
2035 if test x$enable_joystick = xyes; then | |
2036 # (No joystick support yet) | |
2037 JOYSTICK_SUBDIRS="$JOYSTICK_SUBDIRS dummy" | |
2038 JOYSTICK_DRIVERS="$JOYSTICK_DRIVERS dummy/libjoystick_dummy.la" | |
2039 fi | |
2040 # Set up files for the cdrom library | |
2041 if test x$enable_cdrom = xyes; then | |
153
2839f45bdba0
Fixed IDE and SCSI CD-ROM detection on BeOS (thanks Caz!)
Sam Lantinga <slouken@libsdl.org>
parents:
148
diff
changeset
|
2042 CDROM_SUBDIRS="$CDROM_SUBDIRS qnx" |
2839f45bdba0
Fixed IDE and SCSI CD-ROM detection on BeOS (thanks Caz!)
Sam Lantinga <slouken@libsdl.org>
parents:
148
diff
changeset
|
2043 CDROM_DRIVERS="$CDROM_DRIVERS qnx/libcdrom_qnx.la" |
0 | 2044 fi |
2045 # Set up files for the thread library | |
2046 if test x$enable_threads = xyes; then | |
2047 COPY_ARCH_SRC(src/thread, linux, SDL_systhread.c) | |
2048 COPY_ARCH_SRC(src/thread, linux, SDL_systhread_c.h) | |
2049 COPY_ARCH_SRC(src/thread, linux, SDL_sysmutex.c) | |
2050 COPY_ARCH_SRC(src/thread, linux, SDL_sysmutex_c.h) | |
2051 COPY_ARCH_SRC(src/thread, linux, SDL_syssem.c) | |
2052 COPY_ARCH_SRC(src/thread, generic, SDL_syssem_c.h) | |
2053 COPY_ARCH_SRC(src/thread, linux, SDL_syscond.c) | |
2054 COPY_ARCH_SRC(src/thread, generic, SDL_syscond_c.h) | |
2055 fi | |
2056 # Set up files for the timer library | |
2057 if test x$enable_timers = xyes; then | |
2058 COPY_ARCH_SRC(src/timer, linux, SDL_systimer.c) | |
2059 fi | |
2060 ;; | |
2061 *-*-cygwin* | *-*-mingw32*) | |
2062 ARCH=win32 | |
2063 if test "$build" != "$target"; then # cross-compiling | |
2064 # Default cross-compile location | |
2065 ac_default_prefix=/usr/local/cross-tools/i386-mingw32msvc | |
2066 else | |
2067 # Look for the location of the tools and install there | |
1
cf2af46e9e2a
Changes since SDL 1.2.0 release
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
2068 if [ "$BUILD_PREFIX" != "" ]; then |
cf2af46e9e2a
Changes since SDL 1.2.0 release
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
2069 ac_default_prefix=$BUILD_PREFIX |
cf2af46e9e2a
Changes since SDL 1.2.0 release
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
2070 fi |
0 | 2071 fi |
1
cf2af46e9e2a
Changes since SDL 1.2.0 release
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
2072 CheckDummyVideo |
68
ac6645260d31
Added an audio driver that writes to disk (thanks Ryan!)
Sam Lantinga <slouken@lokigames.com>
parents:
53
diff
changeset
|
2073 CheckDiskAudio |
0 | 2074 CheckWIN32 |
2075 CheckDIRECTX | |
2076 CheckNASM | |
2077 # Set up files for the main() stub | |
2078 COPY_ARCH_SRC(src/main, win32, SDL_main.c) | |
2079 # Set up files for the audio library | |
2080 if test x$enable_audio = xyes; then | |
2081 AUDIO_SUBDIRS="$AUDIO_SUBDIRS windib" | |
2082 AUDIO_DRIVERS="$AUDIO_DRIVERS windib/libaudio_windib.la" | |
2083 if test x$use_directx = xyes; then | |
41
8de9e8baaecc
*** empty log message ***
Sam Lantinga <slouken@lokigames.com>
parents:
39
diff
changeset
|
2084 AUDIO_SUBDIRS="$AUDIO_SUBDIRS windx5" |
8de9e8baaecc
*** empty log message ***
Sam Lantinga <slouken@lokigames.com>
parents:
39
diff
changeset
|
2085 AUDIO_DRIVERS="$AUDIO_DRIVERS windx5/libaudio_windx5.la" |
0 | 2086 fi |
2087 fi | |
2088 # Set up files for the joystick library | |
2089 if test x$enable_joystick = xyes; then | |
2090 JOYSTICK_SUBDIRS="$JOYSTICK_SUBDIRS win32" | |
2091 JOYSTICK_DRIVERS="$JOYSTICK_DRIVERS win32/libjoystick_winmm.la" | |
2092 fi | |
2093 # Set up files for the cdrom library | |
2094 if test x$enable_cdrom = xyes; then | |
153
2839f45bdba0
Fixed IDE and SCSI CD-ROM detection on BeOS (thanks Caz!)
Sam Lantinga <slouken@libsdl.org>
parents:
148
diff
changeset
|
2095 CDROM_SUBDIRS="$CDROM_SUBDIRS win32" |
2839f45bdba0
Fixed IDE and SCSI CD-ROM detection on BeOS (thanks Caz!)
Sam Lantinga <slouken@libsdl.org>
parents:
148
diff
changeset
|
2096 CDROM_DRIVERS="$CDROM_DRIVERS win32/libcdrom_win32.la" |
0 | 2097 fi |
2098 # Set up files for the thread library | |
2099 if test x$enable_threads = xyes; then | |
2100 COPY_ARCH_SRC(src/thread, win32, SDL_systhread.c) | |
2101 COPY_ARCH_SRC(src/thread, win32, SDL_systhread_c.h) | |
2102 COPY_ARCH_SRC(src/thread, win32, SDL_sysmutex.c) | |
2103 COPY_ARCH_SRC(src/thread, generic, SDL_sysmutex_c.h) | |
2104 COPY_ARCH_SRC(src/thread, win32, SDL_syssem.c) | |
2105 COPY_ARCH_SRC(src/thread, generic, SDL_syssem_c.h) | |
2106 COPY_ARCH_SRC(src/thread, generic, SDL_syscond.c) | |
2107 COPY_ARCH_SRC(src/thread, generic, SDL_syscond_c.h) | |
2108 fi | |
2109 # Set up files for the timer library | |
2110 if test x$enable_timers = xyes; then | |
2111 COPY_ARCH_SRC(src/timer, win32, SDL_systimer.c) | |
2112 fi | |
2113 # The Win32 platform requires special setup | |
2114 SDL_CFLAGS="$SDL_CFLAGS -Dmain=SDL_main" | |
1
cf2af46e9e2a
Changes since SDL 1.2.0 release
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
2115 case "$target" in |
cf2af46e9e2a
Changes since SDL 1.2.0 release
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
2116 *-*-cygwin*) |
263
63e391bd7085
Fixed building with Cygwin (thanks Michael)
Sam Lantinga <slouken@libsdl.org>
parents:
261
diff
changeset
|
2117 CFLAGS="$CFLAGS -I/usr/include/mingw -DWIN32 -Uunix -mno-cygwin" |
63e391bd7085
Fixed building with Cygwin (thanks Michael)
Sam Lantinga <slouken@libsdl.org>
parents:
261
diff
changeset
|
2118 SDL_CFLAGS="$SDL_CFLAGS -I/usr/include/mingw -DWIN32 -Uunix -mno-cygwin" |
1
cf2af46e9e2a
Changes since SDL 1.2.0 release
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
2119 LIBS="$LIBS -mno-cygwin" |
cf2af46e9e2a
Changes since SDL 1.2.0 release
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
2120 SDL_LIBS="-lmingw32 -lSDLmain $SDL_LIBS -mwindows -mno-cygwin" |
cf2af46e9e2a
Changes since SDL 1.2.0 release
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
2121 ;; |
cf2af46e9e2a
Changes since SDL 1.2.0 release
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
2122 *-*-mingw32*) |
cf2af46e9e2a
Changes since SDL 1.2.0 release
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
2123 SDL_LIBS="-lmingw32 -lSDLmain $SDL_LIBS -mwindows" |
cf2af46e9e2a
Changes since SDL 1.2.0 release
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
2124 ;; |
cf2af46e9e2a
Changes since SDL 1.2.0 release
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
2125 esac |
0 | 2126 ;; |
2127 *-*-beos*) | |
2128 ARCH=beos | |
2129 ac_default_prefix=/boot/develop/tools/gnupro | |
1
cf2af46e9e2a
Changes since SDL 1.2.0 release
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
2130 CheckDummyVideo |
68
ac6645260d31
Added an audio driver that writes to disk (thanks Ryan!)
Sam Lantinga <slouken@lokigames.com>
parents:
53
diff
changeset
|
2131 CheckDiskAudio |
0 | 2132 CheckNASM |
2133 CheckBWINDOW | |
2134 CheckBeGL | |
2135 # Set up files for the main() stub | |
2136 COPY_ARCH_SRC(src/main, linux, SDL_main.c) | |
2137 COPY_ARCH_SRC(src/main, beos, SDL_BeApp.cc) | |
2138 COPY_ARCH_SRC(src/main, beos, SDL_BeApp.h) | |
2139 # Set up files for the audio library | |
2140 if test x$enable_audio = xyes; then | |
2141 AUDIO_SUBDIRS="$AUDIO_SUBDIRS baudio" | |
2142 AUDIO_DRIVERS="$AUDIO_DRIVERS baudio/libaudio_baudio.la" | |
2143 fi | |
2144 # Set up files for the joystick library | |
2145 if test x$enable_joystick = xyes; then | |
2146 JOYSTICK_SUBDIRS="$JOYSTICK_SUBDIRS beos" | |
2147 JOYSTICK_DRIVERS="$JOYSTICK_DRIVERS beos/libjoystick_beos.la" | |
2148 fi | |
2149 # Set up files for the cdrom library | |
2150 if test x$enable_cdrom = xyes; then | |
153
2839f45bdba0
Fixed IDE and SCSI CD-ROM detection on BeOS (thanks Caz!)
Sam Lantinga <slouken@libsdl.org>
parents:
148
diff
changeset
|
2151 CDROM_SUBDIRS="$CDROM_SUBDIRS beos" |
2839f45bdba0
Fixed IDE and SCSI CD-ROM detection on BeOS (thanks Caz!)
Sam Lantinga <slouken@libsdl.org>
parents:
148
diff
changeset
|
2152 CDROM_DRIVERS="$CDROM_DRIVERS beos/libcdrom_beos.la" |
0 | 2153 fi |
2154 # Set up files for the thread library | |
2155 if test x$enable_threads = xyes; then | |
2156 COPY_ARCH_SRC(src/thread, beos, SDL_systhread.c) | |
2157 COPY_ARCH_SRC(src/thread, beos, SDL_systhread_c.h) | |
2158 COPY_ARCH_SRC(src/thread, generic, SDL_sysmutex.c) | |
2159 COPY_ARCH_SRC(src/thread, generic, SDL_sysmutex_c.h) | |
2160 COPY_ARCH_SRC(src/thread, beos, SDL_syssem.c) | |
2161 COPY_ARCH_SRC(src/thread, generic, SDL_syssem_c.h) | |
2162 COPY_ARCH_SRC(src/thread, generic, SDL_syscond.c) | |
2163 COPY_ARCH_SRC(src/thread, generic, SDL_syscond_c.h) | |
2164 fi | |
2165 # Set up files for the timer library | |
2166 if test x$enable_timers = xyes; then | |
2167 COPY_ARCH_SRC(src/timer, beos, SDL_systimer.c) | |
2168 fi | |
2169 # The BeOS platform requires special libraries | |
2170 SYSTEM_LIBS="$SYSTEM_LIBS -lroot -lbe -lmedia -lgame -ldevice -ltextencoding" | |
2171 ;; | |
2172 *-*-macos*) | |
2173 # This would be used if cross-compiling to MacOS 9. No way to | |
2174 # use it at present, but Apple is working on a X-to-9 compiler | |
2175 # for which this case would be handy. | |
2176 ARCH=macos | |
1
cf2af46e9e2a
Changes since SDL 1.2.0 release
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
2177 CheckDummyVideo |
68
ac6645260d31
Added an audio driver that writes to disk (thanks Ryan!)
Sam Lantinga <slouken@lokigames.com>
parents:
53
diff
changeset
|
2178 CheckDiskAudio |
0 | 2179 CheckTOOLBOX |
2180 CheckMacGL | |
2181 # Set up files for the main() stub | |
2182 COPY_ARCH_SRC(src/main, macos, SDL_main.c) | |
2183 # Set up files for the audio library | |
2184 if test x$enable_audio = xyes; then | |
2185 AUDIO_SUBDIRS="$AUDIO_SUBDIRS macrom" | |
2186 AUDIO_DRIVERS="$AUDIO_DRIVERS macrom/libaudio_macrom.la" | |
2187 fi | |
2188 # Set up files for the joystick library | |
2189 if test x$enable_joystick = xyes; then | |
2190 JOYSTICK_SUBDIRS="$JOYSTICK_SUBDIRS macos" | |
2191 JOYSTICK_DRIVERS="$JOYSTICK_DRIVERS macos/libjoystick_macos.la" | |
2192 fi | |
2193 # Set up files for the cdrom library | |
2194 if test x$enable_cdrom = xyes; then | |
153
2839f45bdba0
Fixed IDE and SCSI CD-ROM detection on BeOS (thanks Caz!)
Sam Lantinga <slouken@libsdl.org>
parents:
148
diff
changeset
|
2195 CDROM_SUBDIRS="$CDROM_SUBDIRS macos" |
2839f45bdba0
Fixed IDE and SCSI CD-ROM detection on BeOS (thanks Caz!)
Sam Lantinga <slouken@libsdl.org>
parents:
148
diff
changeset
|
2196 CDROM_DRIVERS="$CDROM_DRIVERS macos/libcdrom_macos.la" |
0 | 2197 fi |
2198 # Set up files for the thread library | |
2199 if test x$enable_threads = xyes; then | |
2200 COPY_ARCH_SRC(src/thread, macos, SDL_systhread.c) | |
2201 COPY_ARCH_SRC(src/thread, macos, SDL_systhread_c.h) | |
2202 COPY_ARCH_SRC(src/thread, generic, SDL_sysmutex.c) | |
2203 COPY_ARCH_SRC(src/thread, generic, SDL_sysmutex_c.h) | |
2204 COPY_ARCH_SRC(src/thread, macos, SDL_syssem.c) | |
2205 COPY_ARCH_SRC(src/thread, generic, SDL_syssem_c.h) | |
2206 COPY_ARCH_SRC(src/thread, generic, SDL_syscond.c) | |
2207 COPY_ARCH_SRC(src/thread, generic, SDL_syscond_c.h) | |
2208 fi | |
2209 # Set up files for the timer library | |
2210 if test x$enable_timers = xyes; then | |
2211 COPY_ARCH_SRC(src/timer, macos, SDL_systimer.c) | |
2212 fi | |
2213 # The MacOS platform requires special setup | |
2214 SDL_CFLAGS="$SDL_CFLAGS -Dmain=SDL_main" | |
2215 SDL_LIBS="-lSDLmain $SDL_LIBS" | |
2216 ;; | |
2217 *-*-darwin* ) | |
2218 # Strictly speaking, we want "Mac OS X", not "Darwin", which is | |
158
4382c38dfbee
Date: Tue, 21 Aug 2001 03:50:01 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
153
diff
changeset
|
2219 # just the OS X kernel sans upper layers like Carbon and Cocoa. |
4382c38dfbee
Date: Tue, 21 Aug 2001 03:50:01 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
153
diff
changeset
|
2220 # But config.guess comes back with "darwin", so go with the flow. |
4382c38dfbee
Date: Tue, 21 Aug 2001 03:50:01 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
153
diff
changeset
|
2221 ARCH=macosx |
1
cf2af46e9e2a
Changes since SDL 1.2.0 release
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
2222 CheckDummyVideo |
68
ac6645260d31
Added an audio driver that writes to disk (thanks Ryan!)
Sam Lantinga <slouken@lokigames.com>
parents:
53
diff
changeset
|
2223 CheckDiskAudio |
158
4382c38dfbee
Date: Tue, 21 Aug 2001 03:50:01 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
153
diff
changeset
|
2224 CheckQUARTZ |
0 | 2225 CheckMacGL |
2226 CheckPTHREAD | |
2227 # Set up files for the main() stub | |
194
ba9e0fcc2ae2
Oops, back out that SDL_main -> SDLMain conversion
Sam Lantinga <slouken@libsdl.org>
parents:
191
diff
changeset
|
2228 COPY_ARCH_SRC(src/main, macosx, SDLMain.m) |
ba9e0fcc2ae2
Oops, back out that SDL_main -> SDLMain conversion
Sam Lantinga <slouken@libsdl.org>
parents:
191
diff
changeset
|
2229 COPY_ARCH_SRC(src/main, macosx, SDLMain.h) |
0 | 2230 # Set up files for the audio library |
2231 if test x$enable_audio = xyes; then | |
2232 AUDIO_SUBDIRS="$AUDIO_SUBDIRS macrom" | |
2233 AUDIO_DRIVERS="$AUDIO_DRIVERS macrom/libaudio_macrom.la" | |
2234 fi | |
2235 # Set up files for the joystick library | |
2236 if test x$enable_joystick = xyes; then | |
172
37e3ca9254c7
Date: Sat, 8 Sep 2001 04:42:23 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
168
diff
changeset
|
2237 JOYSTICK_SUBDIRS="$JOYSTICK_SUBDIRS darwin" |
37e3ca9254c7
Date: Sat, 8 Sep 2001 04:42:23 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
168
diff
changeset
|
2238 JOYSTICK_DRIVERS="$JOYSTICK_DRIVERS darwin/libjoystick_darwin.la" |
196
c4c4b221a5e5
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
194
diff
changeset
|
2239 SDL_LIBS="$SDL_LIBS -framework IOKit" |
0 | 2240 fi |
2241 # Set up files for the cdrom library | |
2242 if test x$enable_cdrom = xyes; then | |
153
2839f45bdba0
Fixed IDE and SCSI CD-ROM detection on BeOS (thanks Caz!)
Sam Lantinga <slouken@libsdl.org>
parents:
148
diff
changeset
|
2243 CDROM_SUBDIRS="$CDROM_SUBDIRS dummy" |
2839f45bdba0
Fixed IDE and SCSI CD-ROM detection on BeOS (thanks Caz!)
Sam Lantinga <slouken@libsdl.org>
parents:
148
diff
changeset
|
2244 CDROM_DRIVERS="$CDROM_DRIVERS dummy/libcdrom_dummy.la" |
0 | 2245 fi |
2246 # Set up files for the thread library | |
2247 if test x$enable_threads = xyes; then | |
2248 COPY_ARCH_SRC(src/thread, linux, SDL_systhread.c) | |
2249 COPY_ARCH_SRC(src/thread, linux, SDL_systhread_c.h) | |
2250 COPY_ARCH_SRC(src/thread, linux, SDL_sysmutex.c) | |
2251 COPY_ARCH_SRC(src/thread, linux, SDL_sysmutex_c.h) | |
94
ae6e6b73333f
Cleaned up the OpenBSD port, thanks to Peter Valchev
Sam Lantinga <slouken@lokigames.com>
parents:
86
diff
changeset
|
2252 if test x$use_pthreads = xyes -a x$have_pthread_sem != xyes; then |
0 | 2253 COPY_ARCH_SRC(src/thread, generic, SDL_syssem.c) |
2254 else | |
2255 COPY_ARCH_SRC(src/thread, linux, SDL_syssem.c) | |
2256 fi | |
2257 COPY_ARCH_SRC(src/thread, generic, SDL_syssem_c.h) | |
2258 COPY_ARCH_SRC(src/thread, generic, SDL_syscond.c) | |
2259 COPY_ARCH_SRC(src/thread, generic, SDL_syscond_c.h) | |
2260 fi | |
2261 # Set up files for the timer library | |
2262 if test x$enable_timers = xyes; then | |
2263 COPY_ARCH_SRC(src/timer, linux, SDL_systimer.c) | |
2264 fi | |
2265 # The MacOS X platform requires special setup | |
158
4382c38dfbee
Date: Tue, 21 Aug 2001 03:50:01 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
153
diff
changeset
|
2266 SDL_CFLAGS="$SDL_CFLAGS -F/System/Library/Frameworks/Carbon.framework -F/System/Library/Frameworks/Cocoa.framework" |
4382c38dfbee
Date: Tue, 21 Aug 2001 03:50:01 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
153
diff
changeset
|
2267 SDL_LIBS="-lSDLmain $SDL_LIBS -framework Carbon -framework Cocoa" |
0 | 2268 ;; |
281
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
2269 *-*-mint*) |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
2270 ARCH=mint |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
2271 CheckDummyVideo |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
2272 CheckDiskAudio |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
2273 CheckAtariBiosEvent |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
2274 CheckAtariXbiosVideo |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
2275 CheckAtariGemVideo |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
2276 CheckPTH |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
2277 # Set up files for the main() stub |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
2278 COPY_ARCH_SRC(src/main, linux, SDL_main.c) |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
2279 # Set up files for the audio library |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
2280 if test x$enable_audio = xyes; then |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
2281 AUDIO_SUBDIRS="$AUDIO_SUBDIRS sun" |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
2282 AUDIO_DRIVERS="$AUDIO_DRIVERS sun/libaudio_sun.la" |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
2283 fi |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
2284 # Set up files for the joystick library |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
2285 if test x$enable_joystick = xyes; then |
302
8a86bdf34f0f
Added Atari joystick support (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
300
diff
changeset
|
2286 JOYSTICK_SUBDIRS="$JOYSTICK_SUBDIRS mint" |
8a86bdf34f0f
Added Atari joystick support (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
300
diff
changeset
|
2287 JOYSTICK_DRIVERS="$JOYSTICK_DRIVERS mint/libjoystick_mint.la" |
281
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
2288 fi |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
2289 # Set up files for the cdrom library |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
2290 if test x$enable_cdrom = xyes; then |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
2291 CDROM_SUBDIRS="$CDROM_SUBDIRS dummy" |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
2292 CDROM_DRIVERS="$CDROM_DRIVERS dummy/libcdrom_dummy.la" |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
2293 fi |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
2294 # Set up files for the thread library |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
2295 if test x$enable_threads = xyes; then |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
2296 if test x$enable_pth = xyes; then |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
2297 COPY_ARCH_SRC(src/thread, pth, SDL_systhread.c) |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
2298 COPY_ARCH_SRC(src/thread, pth, SDL_systhread_c.h) |
329
1d74ddc90cb2
Patrice's fixes for GNU Pthread support
Sam Lantinga <slouken@libsdl.org>
parents:
321
diff
changeset
|
2299 COPY_ARCH_SRC(src/thread, pth, SDL_sysmutex.c) |
1d74ddc90cb2
Patrice's fixes for GNU Pthread support
Sam Lantinga <slouken@libsdl.org>
parents:
321
diff
changeset
|
2300 COPY_ARCH_SRC(src/thread, pth, SDL_sysmutex_c.h) |
1d74ddc90cb2
Patrice's fixes for GNU Pthread support
Sam Lantinga <slouken@libsdl.org>
parents:
321
diff
changeset
|
2301 COPY_ARCH_SRC(src/thread, pth, SDL_syscond.c) |
1d74ddc90cb2
Patrice's fixes for GNU Pthread support
Sam Lantinga <slouken@libsdl.org>
parents:
321
diff
changeset
|
2302 COPY_ARCH_SRC(src/thread, pth, SDL_syscond_c.h) |
281
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
2303 else |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
2304 COPY_ARCH_SRC(src/thread, generic, SDL_systhread.c) |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
2305 COPY_ARCH_SRC(src/thread, generic, SDL_systhread_c.h) |
329
1d74ddc90cb2
Patrice's fixes for GNU Pthread support
Sam Lantinga <slouken@libsdl.org>
parents:
321
diff
changeset
|
2306 COPY_ARCH_SRC(src/thread, generic, SDL_sysmutex.c) |
1d74ddc90cb2
Patrice's fixes for GNU Pthread support
Sam Lantinga <slouken@libsdl.org>
parents:
321
diff
changeset
|
2307 COPY_ARCH_SRC(src/thread, generic, SDL_sysmutex_c.h) |
1d74ddc90cb2
Patrice's fixes for GNU Pthread support
Sam Lantinga <slouken@libsdl.org>
parents:
321
diff
changeset
|
2308 COPY_ARCH_SRC(src/thread, generic, SDL_syscond.c) |
1d74ddc90cb2
Patrice's fixes for GNU Pthread support
Sam Lantinga <slouken@libsdl.org>
parents:
321
diff
changeset
|
2309 COPY_ARCH_SRC(src/thread, generic, SDL_syscond_c.h) |
281
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
2310 fi |
329
1d74ddc90cb2
Patrice's fixes for GNU Pthread support
Sam Lantinga <slouken@libsdl.org>
parents:
321
diff
changeset
|
2311 COPY_ARCH_SRC(src/thread, generic, SDL_syssem.c) |
281
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
2312 COPY_ARCH_SRC(src/thread, generic, SDL_syssem_c.h) |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
2313 fi |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
2314 # Set up files for the timer library |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
2315 if test x$enable_timers = xyes; then |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
2316 COPY_ARCH_SRC(src/timer, mint, SDL_systimer.c) |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
2317 COPY_ARCH_SRC(src/timer, mint, SDL_vbltimer.S) |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
2318 COPY_ARCH_SRC(src/timer, mint, SDL_vbltimer_s.h) |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
2319 fi |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
2320 # MiNT does not define "unix" |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
2321 CFLAGS="$CFLAGS -Dunix" |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
2322 ;; |
0 | 2323 *) |
2324 AC_MSG_ERROR(Unsupported target: Please add to configure.in) | |
2325 ;; | |
2326 esac | |
2327 AC_SUBST(ARCH) | |
2328 | |
2329 # Set the conditional variables for this target | |
2330 AM_CONDITIONAL(TARGET_LINUX, test $ARCH = linux) | |
2331 AM_CONDITIONAL(TARGET_SOLARIS, test $ARCH = solaris) | |
2332 AM_CONDITIONAL(TARGET_IRIX, test $ARCH = irix) | |
2333 AM_CONDITIONAL(TARGET_BSDI, test $ARCH = bsdi) | |
2334 AM_CONDITIONAL(TARGET_FREEBSD, test $ARCH = freebsd) | |
39 | 2335 AM_CONDITIONAL(TARGET_NETBSD, test $ARCH = netbsd) |
0 | 2336 AM_CONDITIONAL(TARGET_OPENBSD, test $ARCH = openbsd) |
2337 AM_CONDITIONAL(TARGET_AIX, test $ARCH = aix) | |
2338 AM_CONDITIONAL(TARGET_WIN32, test $ARCH = win32) | |
2339 AM_CONDITIONAL(TARGET_BEOS, test $ARCH = beos) | |
2340 AM_CONDITIONAL(TARGET_MACOS, test $ARCH = macos) | |
158
4382c38dfbee
Date: Tue, 21 Aug 2001 03:50:01 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
153
diff
changeset
|
2341 AM_CONDITIONAL(TARGET_MACOSX, test $ARCH = macosx) |
279
04351f59b051
Mike Gorchak added some QNX tweaks, including OpenGL support
Sam Lantinga <slouken@libsdl.org>
parents:
278
diff
changeset
|
2342 AM_CONDITIONAL(TARGET_QNX, test $ARCH = qnx) |
281
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
2343 AM_CONDITIONAL(TARGET_MINT, test $ARCH = mint) |
0 | 2344 |
2345 # Set conditional variables for shared and static library selection. | |
2346 # These are not used in any Makefile.am but in sdl-config.in. | |
2347 AM_CONDITIONAL([ENABLE_SHARED], [test "$enable_shared" = yes]) | |
2348 AM_CONDITIONAL([ENABLE_STATIC], [test "$enable_static" = yes]) | |
2349 | |
2350 # Set runtime shared library paths as needed | |
2351 | |
2352 if test $ARCH = linux -o $ARCH = freebsd -o $ARCH = bsdi; then | |
2353 SDL_RLD_FLAGS="-Wl,-rpath,\${exec_prefix}/lib" | |
2354 fi | |
2355 if test $ARCH = solaris; then | |
2356 SDL_RLD_FLAGS="-R\${exec_prefix}/lib" | |
2357 fi | |
257
9ac9ab945955
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
242
diff
changeset
|
2358 if test $ARCH = openbsd -o $ARCH = bsdi; then |
9ac9ab945955
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
242
diff
changeset
|
2359 SHARED_SYSTEM_LIBS="$SYSTEM_LIBS" |
9ac9ab945955
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
242
diff
changeset
|
2360 else |
9ac9ab945955
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
242
diff
changeset
|
2361 SHARED_SYSTEM_LIBS="" |
1
cf2af46e9e2a
Changes since SDL 1.2.0 release
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
2362 fi |
257
9ac9ab945955
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
242
diff
changeset
|
2363 STATIC_SYSTEM_LIBS="$SYSTEM_LIBS" |
1
cf2af46e9e2a
Changes since SDL 1.2.0 release
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
2364 |
0 | 2365 dnl Output the video drivers we use |
2366 if test x$enable_video = xtrue; then | |
2367 if test "$VIDEO_SUBDIRS" = ""; then | |
2368 AC_MSG_ERROR(*** No video drivers are enabled!) | |
2369 fi | |
2370 fi | |
2371 AC_SUBST(AUDIO_SUBDIRS) | |
2372 AC_SUBST(AUDIO_DRIVERS) | |
2373 AC_SUBST(VIDEO_SUBDIRS) | |
2374 AC_SUBST(VIDEO_DRIVERS) | |
2375 AC_SUBST(JOYSTICK_SUBDIRS) | |
2376 AC_SUBST(JOYSTICK_DRIVERS) | |
153
2839f45bdba0
Fixed IDE and SCSI CD-ROM detection on BeOS (thanks Caz!)
Sam Lantinga <slouken@libsdl.org>
parents:
148
diff
changeset
|
2377 AC_SUBST(CDROM_SUBDIRS) |
2839f45bdba0
Fixed IDE and SCSI CD-ROM detection on BeOS (thanks Caz!)
Sam Lantinga <slouken@libsdl.org>
parents:
148
diff
changeset
|
2378 AC_SUBST(CDROM_DRIVERS) |
0 | 2379 AC_SUBST(SDL_EXTRADIRS) |
2380 AC_SUBST(SDL_EXTRALIBS) | |
2381 | |
2382 dnl Expand the cflags and libraries needed by apps using SDL | |
2383 AC_SUBST(SDL_CFLAGS) | |
2384 AC_SUBST(SDL_LIBS) | |
2385 AC_SUBST(SDL_RLD_FLAGS) | |
2386 | |
257
9ac9ab945955
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
242
diff
changeset
|
2387 dnl Expand the libraries needed for static and dynamic linking |
9ac9ab945955
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
242
diff
changeset
|
2388 AC_SUBST(STATIC_SYSTEM_LIBS) |
9ac9ab945955
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
242
diff
changeset
|
2389 AC_SUBST(SHARED_SYSTEM_LIBS) |
261
1c5f68da5fc2
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
259
diff
changeset
|
2390 AC_SUBST(SYSTEM_LIBS) |
257
9ac9ab945955
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
242
diff
changeset
|
2391 |
0 | 2392 dnl Expand the include directories for building SDL |
2393 CFLAGS="$CFLAGS -I\$(top_srcdir)/include" | |
2394 CFLAGS="$CFLAGS -I\$(top_srcdir)/include/SDL" | |
2395 CFLAGS="$CFLAGS -I\$(top_srcdir)/src -I\$(top_srcdir)/src/$ARCH" | |
2396 CFLAGS="$CFLAGS -I\$(top_srcdir)/src/main" | |
2397 CFLAGS="$CFLAGS -I\$(top_srcdir)/src/audio" | |
2398 CFLAGS="$CFLAGS -I\$(top_srcdir)/src/video" | |
292
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
2399 CFLAGS="$CFLAGS -I\$(top_srcdir)/src/video/XFree86/extensions" |
0 | 2400 CFLAGS="$CFLAGS -I\$(top_srcdir)/src/events" |
2401 CFLAGS="$CFLAGS -I\$(top_srcdir)/src/joystick" | |
2402 CFLAGS="$CFLAGS -I\$(top_srcdir)/src/cdrom" | |
2403 CFLAGS="$CFLAGS -I\$(top_srcdir)/src/thread" | |
2404 CFLAGS="$CFLAGS -I\$(top_srcdir)/src/timer" | |
2405 CFLAGS="$CFLAGS -I\$(top_srcdir)/src/endian" | |
2406 CFLAGS="$CFLAGS -I\$(top_srcdir)/src/file" | |
2407 CXXFLAGS="$CFLAGS" | |
2408 | |
158
4382c38dfbee
Date: Tue, 21 Aug 2001 03:50:01 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
153
diff
changeset
|
2409 |
4382c38dfbee
Date: Tue, 21 Aug 2001 03:50:01 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
153
diff
changeset
|
2410 # Check for darwin at the very end and set up the Objective C compiler |
4382c38dfbee
Date: Tue, 21 Aug 2001 03:50:01 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
153
diff
changeset
|
2411 # We do this here so that we get the full CFLAGS into OBJCFLAGS |
4382c38dfbee
Date: Tue, 21 Aug 2001 03:50:01 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
153
diff
changeset
|
2412 case "$target" in |
4382c38dfbee
Date: Tue, 21 Aug 2001 03:50:01 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
153
diff
changeset
|
2413 *-*-darwin*) |
4382c38dfbee
Date: Tue, 21 Aug 2001 03:50:01 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
153
diff
changeset
|
2414 OBJC="cc" |
4382c38dfbee
Date: Tue, 21 Aug 2001 03:50:01 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
153
diff
changeset
|
2415 OBJCFLAGS="$CFLAGS" |
200 | 2416 OBJCDEPMODE="$CCDEPMODE" |
158
4382c38dfbee
Date: Tue, 21 Aug 2001 03:50:01 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
153
diff
changeset
|
2417 AC_SUBST(OBJC) |
4382c38dfbee
Date: Tue, 21 Aug 2001 03:50:01 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
153
diff
changeset
|
2418 AC_SUBST(OBJCFLAGS) |
200 | 2419 AC_SUBST(OBJCDEPMODE) |
158
4382c38dfbee
Date: Tue, 21 Aug 2001 03:50:01 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
153
diff
changeset
|
2420 ;; |
4382c38dfbee
Date: Tue, 21 Aug 2001 03:50:01 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
153
diff
changeset
|
2421 esac |
4382c38dfbee
Date: Tue, 21 Aug 2001 03:50:01 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
153
diff
changeset
|
2422 |
0 | 2423 # Finally create all the generated files |
2424 dnl Important: Any directory that you want to be in the distcheck should | |
2425 dnl have a file listed here, so that configure generates the | |
2426 dnl subdirectories on the build target. | |
2427 AC_OUTPUT([ | |
2428 Makefile | |
2429 docs/Makefile | |
2430 docs/html/Makefile | |
2431 docs/man3/Makefile | |
2432 include/Makefile | |
2433 src/Makefile | |
2434 src/main/Makefile | |
168
e92aa316c517
Added Max's patches for building MacOS X apps on command line
Sam Lantinga <slouken@libsdl.org>
parents:
167
diff
changeset
|
2435 src/main/macosx/Makefile |
172
37e3ca9254c7
Date: Sat, 8 Sep 2001 04:42:23 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
168
diff
changeset
|
2436 src/main/macosx/Info.plist |
0 | 2437 src/audio/Makefile |
2438 src/audio/alsa/Makefile | |
2439 src/audio/arts/Makefile | |
2440 src/audio/baudio/Makefile | |
2441 src/audio/dma/Makefile | |
2442 src/audio/dmedia/Makefile | |
2443 src/audio/dsp/Makefile | |
2444 src/audio/esd/Makefile | |
2445 src/audio/macrom/Makefile | |
2446 src/audio/nas/Makefile | |
2447 src/audio/nto/Makefile | |
37
3ad7157c6cfa
Added native OpenBSD audio driver (thanks vedge!)
Sam Lantinga <slouken@lokigames.com>
parents:
35
diff
changeset
|
2448 src/audio/openbsd/Makefile |
0 | 2449 src/audio/paudio/Makefile |
2450 src/audio/sun/Makefile | |
2451 src/audio/ums/Makefile | |
2452 src/audio/windib/Makefile | |
2453 src/audio/windx5/Makefile | |
68
ac6645260d31
Added an audio driver that writes to disk (thanks Ryan!)
Sam Lantinga <slouken@lokigames.com>
parents:
53
diff
changeset
|
2454 src/audio/disk/Makefile |
0 | 2455 src/video/Makefile |
292
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
2456 src/video/XFree86/Makefile |
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
2457 src/video/XFree86/extensions/Makefile |
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
2458 src/video/XFree86/Xinerama/Makefile |
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
2459 src/video/XFree86/Xv/Makefile |
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
2460 src/video/XFree86/Xxf86dga/Makefile |
eadc0746dfaf
Added SDL_LockRect() and SDL_UnlockRect()
Sam Lantinga <slouken@libsdl.org>
parents:
286
diff
changeset
|
2461 src/video/XFree86/Xxf86vm/Makefile |
0 | 2462 src/video/cybergfx/Makefile |
2463 src/video/x11/Makefile | |
2464 src/video/dga/Makefile | |
30
57bf11a5efd7
Added initial support for Nano-X (thanks Hsieh-Fu!)
Sam Lantinga <slouken@lokigames.com>
parents:
21
diff
changeset
|
2465 src/video/nanox/Makefile |
0 | 2466 src/video/fbcon/Makefile |
167
cb384ef627f6
Added support for DirectFB video on Linux (thanks Denis!)
Sam Lantinga <slouken@libsdl.org>
parents:
166
diff
changeset
|
2467 src/video/directfb/Makefile |
70
f590dd383b5d
Added Linux PlayStation 2 Graphics Synthesizer support
Sam Lantinga <slouken@lokigames.com>
parents:
68
diff
changeset
|
2468 src/video/ps2gs/Makefile |
0 | 2469 src/video/ggi/Makefile |
2470 src/video/maccommon/Makefile | |
2471 src/video/macdsp/Makefile | |
2472 src/video/macrom/Makefile | |
47
45b1c4303f87
Added initial support for Quartz video (thanks Darrell!)
Sam Lantinga <slouken@lokigames.com>
parents:
43
diff
changeset
|
2473 src/video/quartz/Makefile |
0 | 2474 src/video/svga/Makefile |
75
b0ae59d0f3ee
Added patches from FreeBSD ports
Sam Lantinga <slouken@lokigames.com>
parents:
72
diff
changeset
|
2475 src/video/vgl/Makefile |
0 | 2476 src/video/aalib/Makefile |
2477 src/video/wincommon/Makefile | |
2478 src/video/windib/Makefile | |
2479 src/video/windx5/Makefile | |
2480 src/video/bwindow/Makefile | |
2481 src/video/photon/Makefile | |
174
da9a97f693a8
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
172
diff
changeset
|
2482 src/video/epoc/Makefile |
1
cf2af46e9e2a
Changes since SDL 1.2.0 release
Sam Lantinga <slouken@lokigames.com>
parents:
0
diff
changeset
|
2483 src/video/dummy/Makefile |
281
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
2484 src/video/ataricommon/Makefile |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
2485 src/video/xbios/Makefile |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
2486 src/video/gem/Makefile |
0 | 2487 src/events/Makefile |
2488 src/joystick/Makefile | |
21
75a95f82bc1f
Updated the Amiga OS port of SDL (thanks Gabriele)
Sam Lantinga <slouken@lokigames.com>
parents:
19
diff
changeset
|
2489 src/joystick/amigaos/Makefile |
0 | 2490 src/joystick/beos/Makefile |
281
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
279
diff
changeset
|
2491 src/joystick/bsd/Makefile |
172
37e3ca9254c7
Date: Sat, 8 Sep 2001 04:42:23 +0200
Sam Lantinga <slouken@libsdl.org>
parents:
168
diff
changeset
|
2492 src/joystick/darwin/Makefile |
0 | 2493 src/joystick/dummy/Makefile |
2494 src/joystick/linux/Makefile | |
2495 src/joystick/macos/Makefile | |
302
8a86bdf34f0f
Added Atari joystick support (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
300
diff
changeset
|
2496 src/joystick/mint/Makefile |
0 | 2497 src/joystick/win32/Makefile |
2498 src/cdrom/Makefile | |
153
2839f45bdba0
Fixed IDE and SCSI CD-ROM detection on BeOS (thanks Caz!)
Sam Lantinga <slouken@libsdl.org>
parents:
148
diff
changeset
|
2499 src/cdrom/aix/Makefile |
2839f45bdba0
Fixed IDE and SCSI CD-ROM detection on BeOS (thanks Caz!)
Sam Lantinga <slouken@libsdl.org>
parents:
148
diff
changeset
|
2500 src/cdrom/beos/Makefile |
2839f45bdba0
Fixed IDE and SCSI CD-ROM detection on BeOS (thanks Caz!)
Sam Lantinga <slouken@libsdl.org>
parents:
148
diff
changeset
|
2501 src/cdrom/dummy/Makefile |
178
1fc1a101bf23
Added CD-ROM support for BSD/OS (thanks Steven!)
Sam Lantinga <slouken@libsdl.org>
parents:
174
diff
changeset
|
2502 src/cdrom/bsdi/Makefile |
153
2839f45bdba0
Fixed IDE and SCSI CD-ROM detection on BeOS (thanks Caz!)
Sam Lantinga <slouken@libsdl.org>
parents:
148
diff
changeset
|
2503 src/cdrom/freebsd/Makefile |
2839f45bdba0
Fixed IDE and SCSI CD-ROM detection on BeOS (thanks Caz!)
Sam Lantinga <slouken@libsdl.org>
parents:
148
diff
changeset
|
2504 src/cdrom/linux/Makefile |
2839f45bdba0
Fixed IDE and SCSI CD-ROM detection on BeOS (thanks Caz!)
Sam Lantinga <slouken@libsdl.org>
parents:
148
diff
changeset
|
2505 src/cdrom/macos/Makefile |
2839f45bdba0
Fixed IDE and SCSI CD-ROM detection on BeOS (thanks Caz!)
Sam Lantinga <slouken@libsdl.org>
parents:
148
diff
changeset
|
2506 src/cdrom/openbsd/Makefile |
2839f45bdba0
Fixed IDE and SCSI CD-ROM detection on BeOS (thanks Caz!)
Sam Lantinga <slouken@libsdl.org>
parents:
148
diff
changeset
|
2507 src/cdrom/qnx/Makefile |
2839f45bdba0
Fixed IDE and SCSI CD-ROM detection on BeOS (thanks Caz!)
Sam Lantinga <slouken@libsdl.org>
parents:
148
diff
changeset
|
2508 src/cdrom/win32/Makefile |
0 | 2509 src/thread/Makefile |
2510 src/timer/Makefile | |
2511 src/endian/Makefile | |
2512 src/file/Makefile | |
2513 src/hermes/Makefile | |
2514 sdl-config | |
2515 SDL.spec | |
2516 ], [chmod +x sdl-config]) |