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