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