ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/BasiliskII/src/Unix/configure.ac
Revision: 1.74
Committed: 2008-12-09T18:03:35Z (15 years, 10 months ago) by asvitkine
Branch: MAIN
Changes since 1.73: +3 -0 lines
Log Message:
some changes to make Basillisk build better on Leopard

File Contents

# User Rev Content
1 gbeauche 1.1 dnl Process this file with autoconf to produce a configure script.
2     dnl Written in 2002 by Christian Bauer et al.
3    
4 cebix 1.16 AC_INIT([Basilisk II], 1.0, [Christian.Bauer@uni-mainz.de], BasiliskII)
5     AC_CONFIG_SRCDIR(main_unix.cpp)
6 gbeauche 1.1 AC_PREREQ(2.52)
7     AC_CONFIG_HEADER(config.h)
8    
9 gbeauche 1.19 dnl Aliases for PACKAGE and VERSION macros.
10 gbeauche 1.22 AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE_NAME", [Define this program name.])
11     AC_DEFINE_UNQUOTED(VERSION, "$PACKAGE_VERSION", [Define this program version.])
12 gbeauche 1.19
13 gbeauche 1.21 dnl Some systems do not put corefiles in the currect directory, avoid saving
14     dnl cores for the configure tests since some are intended to dump core.
15     ulimit -c 0
16    
17 gbeauche 1.66 AC_ARG_ENABLE(standalone-gui,[ --enable-standalone-gui enable a standalone GUI prefs editor [default=no]], [WANT_STANDALONE_GUI=$enableval], [WANT_STANDALONE_GUI=no])
18    
19 gbeauche 1.5 dnl Video options.
20 gbeauche 1.1 AC_ARG_ENABLE(xf86-dga, [ --enable-xf86-dga use the XFree86 DGA extension [default=yes]], [WANT_XF86_DGA=$enableval], [WANT_XF86_DGA=yes])
21     AC_ARG_ENABLE(xf86-vidmode, [ --enable-xf86-vidmode use the XFree86 VidMode extension [default=yes]], [WANT_XF86_VIDMODE=$enableval], [WANT_XF86_VIDMODE=yes])
22     AC_ARG_ENABLE(fbdev-dga, [ --enable-fbdev-dga use direct frame buffer access via /dev/fb [default=yes]], [WANT_FBDEV_DGA=$enableval], [WANT_FBDEV_DGA=yes])
23     AC_ARG_ENABLE(vosf, [ --enable-vosf enable video on SEGV signals [default=yes]], [WANT_VOSF=$enableval], [WANT_VOSF=yes])
24    
25 gbeauche 1.26 dnl SDL options.
26 gbeauche 1.41 AC_ARG_ENABLE(sdl-static, [ --enable-sdl-static use SDL static libraries for linking [default=no]], [WANT_SDL_STATIC=$enableval], [WANT_SDL_STATIC=no])
27 gbeauche 1.26 AC_ARG_ENABLE(sdl-video, [ --enable-sdl-video use SDL for video graphics [default=no]], [WANT_SDL_VIDEO=$enableval], [WANT_SDL_VIDEO=no])
28 gbeauche 1.31 AC_ARG_ENABLE(sdl-audio, [ --enable-sdl-audio use SDL for audio [default=no]], [WANT_SDL_AUDIO=$enableval], [WANT_SDL_AUDIO=no])
29 gbeauche 1.26
30 gbeauche 1.5 dnl JIT compiler options.
31     AC_ARG_ENABLE(jit-compiler, [ --enable-jit-compiler enable JIT compiler [default=no]], [WANT_JIT=$enableval], [WANT_JIT=no])
32     AC_ARG_ENABLE(jit-debug, [ --enable-jit-debug activate native code disassemblers [default=no]], [WANT_JIT_DEBUG=$enableval], [WANT_JIT_DEBUG=no])
33    
34 gbeauche 1.1 dnl FPU emulation core.
35     AC_ARG_ENABLE(fpe,
36     [ --enable-fpe=FPE specify which fpu emulator to use [default=auto]],
37     [ case "$enableval" in
38     dnl default is always ieee, if architecture has this fp format
39     auto) FPE_CORE_TEST_ORDER="ieee uae";;
40     ieee) FPE_CORE_TEST_ORDER="ieee";;
41     uae) FPE_CORE_TEST_ORDER="uae";;
42     x86) FPE_CORE_TEST_ORDER="x86";;
43     *) AC_MSG_ERROR([--enable-fpe takes only one of the following values: auto, x86, ieee, uae]);;
44     esac
45     ],
46     [ FPE_CORE_TEST_ORDER="ieee uae"
47     ])
48    
49     dnl Addressing modes.
50     AC_ARG_ENABLE(addressing,
51     [ --enable-addressing=AM specify the addressing mode to use [default=fastest]],
52     [ case "$enableval" in
53     real) ADDRESSING_TEST_ORDER="real";;
54     direct) ADDRESSING_TEST_ORDER="direct";;
55     banks) ADDRESSING_TEST_ORDER="banks";;
56     fastest)ADDRESSING_TEST_ORDER="direct banks";;
57     *) AC_MSG_ERROR([--enable-addressing takes only one of the following values: fastest, real, direct, banks]);;
58     esac
59     ],
60     [ ADDRESSING_TEST_ORDER="direct banks"
61     ])
62    
63     dnl External packages.
64     AC_ARG_WITH(esd, [ --with-esd support ESD for sound under Linux/FreeBSD [default=yes]], [WANT_ESD=$withval], [WANT_ESD=yes])
65 gbeauche 1.49 AC_ARG_WITH(gtk, [ --with-gtk use GTK user interface [default=yes]],
66     [case "$withval" in
67     gtk1) WANT_GTK="gtk";;
68     gtk|gtk2) WANT_GTK="$withval";;
69     yes) WANT_GTK="gtk2 gtk";;
70     *) WANT_GTK="no";;
71     esac],
72     [WANT_GTK="gtk2 gtk"])
73 gbeauche 1.1 AC_ARG_WITH(mon, [ --with-mon use mon as debugger [default=yes]], [WANT_MON=$withval], [WANT_MON=yes])
74    
75     dnl Canonical system information.
76     AC_CANONICAL_HOST
77     AC_CANONICAL_TARGET
78    
79     dnl Target OS type (target is host if not cross-compiling).
80     case "$target_os" in
81     linux*) OS_TYPE=linux;;
82     netbsd*) OS_TYPE=netbsd;;
83     freebsd*) OS_TYPE=freebsd;;
84     solaris*) OS_TYPE=solaris;;
85     darwin*) OS_TYPE=darwin;;
86     *) OS_TYPE=`echo $target_os | sed -e 's/-/_/g' | sed -e 's/\./_/g'`;;
87     esac
88     DEFINES="$DEFINES -DOS_$OS_TYPE"
89    
90     dnl Target CPU type.
91     HAVE_I386=no
92     HAVE_M68K=no
93     HAVE_SPARC=no
94     HAVE_POWERPC=no
95 gbeauche 1.13 HAVE_X86_64=no
96 gbeauche 1.1 case "$target_cpu" in
97 gbeauche 1.12 i386* | i486* | i586* | i686* | i786* ) HAVE_I386=yes;;
98     m68k* ) HAVE_M68K=yes;;
99     sparc* ) HAVE_SPARC=yes;;
100     powerpc* ) HAVE_POWERPC=yes;;
101 gbeauche 1.13 x86_64* ) HAVE_X86_64=yes;;
102 gbeauche 1.1 esac
103    
104     dnl Checks for programs.
105     AC_PROG_CC
106     AC_PROG_CC_C_O
107     AC_PROG_CPP
108     AC_PROG_CXX
109     AC_PROG_MAKE_SET
110     AC_PROG_INSTALL
111 gbeauche 1.36 AC_PROG_EGREP
112 gbeauche 1.1
113     dnl We use mon if possible.
114     MONSRCS=
115     if [[ "x$WANT_MON" = "xyes" ]]; then
116     AC_MSG_CHECKING(for mon)
117     mon_srcdir=../../../mon/src
118     if grep mon_init $mon_srcdir/mon.h >/dev/null 2>/dev/null; then
119     AC_MSG_RESULT(yes)
120     AC_DEFINE(ENABLE_MON, 1, [Define if using "mon".])
121 gbeauche 1.72 MONSRCS="$mon_srcdir/mon.cpp $mon_srcdir/mon_6502.cpp $mon_srcdir/mon_z80.cpp $mon_srcdir/mon_cmd.cpp $mon_srcdir/mon_disass.cpp $mon_srcdir/mon_ppc.cpp $mon_srcdir/mon_lowmem.cpp $mon_srcdir/disass/floatformat.c $mon_srcdir/disass/i386-dis.c $mon_srcdir/disass/m68k-dis.c $mon_srcdir/disass/m68k-opc.c $mon_srcdir/disass/mips-dis.c $mon_srcdir/disass/mips-opc.c $mon_srcdir/disass/mips16-opc.c"
122 gbeauche 1.1 CXXFLAGS="$CXXFLAGS -I$mon_srcdir -I$mon_srcdir/disass"
123     AC_CHECK_LIB(ncurses, tgetent, ,
124     AC_CHECK_LIB(termcap, tgetent, ,
125     AC_CHECK_LIB(termlib, tgetent, ,
126     AC_CHECK_LIB(terminfo, tgetent, ,
127     AC_CHECK_LIB(Hcurses, tgetent, ,
128     AC_CHECK_LIB(curses, tgetent))))))
129     AC_CHECK_LIB(readline, readline)
130     else
131     AC_MSG_RESULT(no)
132     AC_MSG_WARN([Could not find mon, ignoring --with-mon.])
133     WANT_MON=no
134     fi
135     fi
136    
137     dnl Checks for libraries.
138     AC_CHECK_LIB(posix4, sem_init)
139     AC_CHECK_LIB(rt, timer_create)
140 gbeauche 1.34 AC_CHECK_LIB(rt, shm_open)
141 gbeauche 1.56 AC_CHECK_LIB(m, cos)
142 gbeauche 1.1
143 gbeauche 1.26 dnl Do we need SDL?
144     WANT_SDL=no
145     if [[ "x$WANT_SDL_VIDEO" = "xyes" ]]; then
146     WANT_SDL=yes
147     WANT_XF86_DGA=no
148     WANT_XF86_VIDMODE=no
149     WANT_FBDEV_DGA=no
150 gbeauche 1.31 SDL_SUPPORT="$SDL_SUPPORT video"
151     fi
152     if [[ "x$WANT_SDL_AUDIO" = "xyes" ]]; then
153     WANT_SDL=yes
154     SDL_SUPPORT="$SDL_SUPPORT audio"
155 gbeauche 1.26 fi
156     if [[ "x$WANT_SDL" = "xyes" ]]; then
157     AC_PATH_PROG(sdl_config, "sdl-config")
158     if [[ -n "$sdl_config" ]]; then
159 gbeauche 1.36 case $target_os in
160     # Special treatment for Cygwin so that we can still use the POSIX layer
161     *cygwin*)
162     sdl_cflags="-I`$sdl_config --prefix`/include/SDL"
163     sdl_libs="-L`$sdl_config --exec-prefix`/lib -lSDL"
164     ;;
165     *)
166     sdl_cflags=`$sdl_config --cflags`
167 gbeauche 1.41 if [[ "x$WANT_SDL_STATIC" = "xyes" ]]; then
168     sdl_libs=`$sdl_config --static-libs`
169     else
170     sdl_libs=`$sdl_config --libs`
171     fi
172 gbeauche 1.36 ;;
173     esac
174 gbeauche 1.26 CFLAGS="$CFLAGS $sdl_cflags"
175     CXXFLAGS="$CXXFLAGS $sdl_cflags"
176     LIBS="$LIBS $sdl_libs"
177     else
178     WANT_SDL=no
179     fi
180 gbeauche 1.31 SDL_SUPPORT=`echo "$SDL_SUPPORT" | sed -e "s/^ //"`
181     else
182     SDL_SUPPORT="none"
183 gbeauche 1.26 fi
184    
185     dnl We need X11, if not using SDL.
186     if [[ "x$WANT_SDL" = "xno" ]]; then
187     AC_PATH_XTRA
188     if [[ "x$no_x" = "xyes" ]]; then
189     AC_MSG_ERROR([You need X11 to run Basilisk II.])
190     fi
191     CFLAGS="$CFLAGS $X_CFLAGS"
192     CXXFLAGS="$CXXFLAGS $X_CFLAGS"
193     LIBS="$LIBS $X_PRE_LIBS $X_LIBS -lX11 -lXext $X_EXTRA_LIBS"
194     fi
195 gbeauche 1.1
196     dnl We want pthreads. Try libpthread first, then libc_r (FreeBSD), then PTL.
197     HAVE_PTHREADS=yes
198     AC_CHECK_LIB(pthread, pthread_create, , [
199     AC_CHECK_LIB(c_r, pthread_create, , [
200     AC_CHECK_LIB(PTL, pthread_create, , [
201     HAVE_PTHREADS=no
202     ])
203     ])
204     ])
205     if [[ "x$HAVE_PTHREADS" = "xyes" ]]; then
206     AC_DEFINE(HAVE_PTHREADS, 1, [Define if pthreads are available.])
207     fi
208 gbeauche 1.50 AC_CHECK_FUNCS(pthread_cond_init)
209 gbeauche 1.46 AC_CHECK_FUNCS(pthread_cancel pthread_testcancel)
210 gbeauche 1.1 AC_CHECK_FUNCS(pthread_mutexattr_setprotocol)
211     AC_CHECK_FUNCS(pthread_mutexattr_settype)
212 gbeauche 1.3 AC_CHECK_FUNCS(pthread_mutexattr_setpshared)
213 gbeauche 1.1
214     dnl If POSIX.4 semaphores are not available, we emulate them with pthread mutexes.
215     SEMSRC=
216     AC_CHECK_FUNCS(sem_init, , [
217     if test "x$HAVE_PTHREADS" = "xyes"; then
218     SEMSRC=posix_sem.cpp
219     fi
220     ])
221    
222     dnl We use DGA (XFree86 or fbdev) if possible.
223     if [[ "x$WANT_XF86_DGA" = "xyes" ]]; then
224     AC_CHECK_LIB(Xxf86dga, XF86DGAQueryExtension, [
225     AC_DEFINE(ENABLE_XF86_DGA, 1, [Define if using XFree86 DGA extension.])
226     LIBS="$LIBS -lXxf86dga"
227     if [[ "x$WANT_FBDEV_DGA" = "xyes" ]]; then
228     AC_MSG_WARN([Cannot have both --enable-xf86-dga and --enable-fbdev-dga, ignoring --enable-fbdev-dga.])
229     WANT_FBDEV_DGA=no
230     fi
231     ], [
232     AC_MSG_WARN([Could not find XFree86 DGA extension, ignoring --enable-xf86-dga.])
233     WANT_XF86_DGA=no
234     ])
235     fi
236     if [[ "x$WANT_FBDEV_DGA" = "xyes" ]]; then
237     AC_DEFINE(ENABLE_FBDEV_DGA, 1, [Define if using DGA with framebuffer device.])
238     fi
239    
240     dnl We use XFree86 VidMode if possible.
241     if [[ "x$WANT_XF86_VIDMODE" = "xyes" ]]; then
242     AC_CHECK_LIB(Xxf86vm, XF86VidModeQueryExtension, [
243     AC_DEFINE(ENABLE_XF86_VIDMODE, 1, [Define if using XFree86 DGA extension.])
244     LIBS="$LIBS -lXxf86vm"
245     ], [
246     AC_MSG_WARN([Could not find XFree86 VidMode extension, ignoring --enable-xf86-vidmode.])
247     WANT_XF86_VIDMODE=no
248     ])
249     fi
250    
251     dnl We use GTK+ if possible.
252     UISRCS=../dummy/prefs_editor_dummy.cpp
253 gbeauche 1.49 case "x$WANT_GTK" in
254     xgtk2*)
255     AM_PATH_GTK_2_0(1.3.15, [
256 gbeauche 1.67 GUI_CFLAGS="$GTK_CFLAGS"
257     GUI_LIBS="$GTK_LIBS"
258 gbeauche 1.49 WANT_GTK=gtk2
259     ], [
260     case "x${WANT_GTK}x" in
261     *gtkx)
262     AC_MSG_WARN([Could not find GTK+ 2.0, trying with GTK+ 1.2.])
263     WANT_GTK=gtk
264     ;;
265     *)
266     AC_MSG_WARN([Could not find GTK+, disabling user interface.])
267     WANT_GTK=no
268     ;;
269     esac
270     ])
271     ;;
272     esac
273     if [[ "x$WANT_GTK" = "xgtk" ]]; then
274 gbeauche 1.1 AM_PATH_GTK(1.2.0, [
275 gbeauche 1.67 GUI_CFLAGS="$GTK_CFLAGS"
276     GUI_LIBS="$GTK_LIBS"
277 gbeauche 1.18 dnl somehow, <gnome-i18n.h> would redefine gettext() to nothing if
278     dnl ENABLE_NLS is not set, thusly conflicting with C++ <string> which
279     dnl includes <libintl.h>
280     AM_GNU_GETTEXT
281 gbeauche 1.1 B2_PATH_GNOMEUI([
282     AC_DEFINE(HAVE_GNOMEUI, 1, [Define if libgnomeui is available.])
283 gbeauche 1.67 GUI_CFLAGS="$GUI_CFLAGS $GNOMEUI_CFLAGS"
284     GUI_LIBS="$GUI_LIBS $GNOMEUI_LIBS"
285 gbeauche 1.1 ], [])
286     ], [
287     AC_MSG_WARN([Could not find GTK+, disabling user interface.])
288     WANT_GTK=no
289     ])
290     fi
291 gbeauche 1.69 if [[ "x$WANT_GTK" != "xno" -a "x$WANT_STANDALONE_GUI" = "xno" ]]; then
292     AC_DEFINE(ENABLE_GTK, 1, [Define if using GTK.])
293     UISRCS=prefs_editor_gtk.cpp
294     fi
295 gbeauche 1.67 AC_SUBST(GUI_CFLAGS)
296     AC_SUBST(GUI_LIBS)
297 gbeauche 1.1
298 gbeauche 1.68 dnl Build external GUI if requested.
299 gbeauche 1.66 if [[ "$WANT_STANDALONE_GUI" != "yes" ]]; then
300     WANT_STANDALONE_GUI=no
301     fi
302     if [[ "$WANT_GTK" = "no" ]]; then
303     WANT_STANDALONE_GUI=no
304     fi
305     AC_SUBST(STANDALONE_GUI, [$WANT_STANDALONE_GUI])
306    
307 gbeauche 1.1 dnl We use ESD if possible.
308     if [[ "x$WANT_ESD" = "xyes" ]]; then
309     AM_PATH_ESD(0.2.8, [
310     AC_DEFINE(ENABLE_ESD, 1, [Define is using ESD.])
311     CFLAGS="$CFLAGS $ESD_CFLAGS"
312     CXXFLAGS="$CXXFLAGS $ESD_CFLAGS"
313     LIBS="$LIBS $ESD_LIBS"
314     ], [
315     AC_MSG_WARN([Could not find ESD, disabling ESD support.])
316     WANT_ESD=no
317     ])
318     fi
319    
320     dnl We use 64-bit file size support if possible.
321     AC_SYS_LARGEFILE
322    
323     dnl Checks for header files.
324     AC_HEADER_STDC
325 gbeauche 1.52 AC_CHECK_HEADERS(stdlib.h stdint.h)
326     AC_CHECK_HEADERS(unistd.h fcntl.h sys/types.h sys/time.h sys/mman.h mach/mach.h)
327 gbeauche 1.20 AC_CHECK_HEADERS(readline.h history.h readline/readline.h readline/history.h)
328 gbeauche 1.42 AC_CHECK_HEADERS(sys/socket.h sys/ioctl.h sys/filio.h sys/bitypes.h sys/wait.h)
329     AC_CHECK_HEADERS(sys/poll.h sys/select.h)
330 gbeauche 1.39 AC_CHECK_HEADERS(arpa/inet.h)
331 gbeauche 1.35 AC_CHECK_HEADERS(linux/if.h linux/if_tun.h net/if.h net/if_tun.h, [], [], [
332 gbeauche 1.42 #ifdef HAVE_SYS_TYPES_H
333     #include <sys/types.h>
334     #endif
335 gbeauche 1.35 #ifdef HAVE_SYS_SOCKET_H
336     #include <sys/socket.h>
337     #endif
338     ])
339 gbeauche 1.30 AC_CHECK_HEADERS(AvailabilityMacros.h)
340 gbeauche 1.48 AC_CHECK_HEADERS(IOKit/storage/IOBlockStorageDevice.h)
341 gbeauche 1.1
342     dnl Checks for typedefs, structures, and compiler characteristics.
343     AC_C_BIGENDIAN
344     AC_C_CONST
345     AC_C_INLINE
346     AC_CHECK_SIZEOF(short, 2)
347     AC_CHECK_SIZEOF(int, 4)
348     AC_CHECK_SIZEOF(long, 4)
349     AC_CHECK_SIZEOF(long long, 8)
350     AC_CHECK_SIZEOF(float, 4)
351     AC_CHECK_SIZEOF(double, 8)
352     AC_CHECK_SIZEOF(long double, 12)
353     AC_CHECK_SIZEOF(void *, 4)
354     AC_TYPE_OFF_T
355 gbeauche 1.24 AC_CHECK_TYPES(loff_t)
356     AC_CHECK_TYPES(caddr_t)
357 gbeauche 1.1 AC_TYPE_SIZE_T
358     AC_TYPE_SIGNAL
359     AC_HEADER_TIME
360     AC_STRUCT_TM
361    
362     dnl Check whether sys/socket.h defines type socklen_t.
363     dnl (extracted from ac-archive/Miscellaneous)
364     AC_CACHE_CHECK([for socklen_t],
365     ac_cv_type_socklen_t, [
366     AC_TRY_COMPILE([
367     #include <sys/types.h>
368     #include <sys/socket.h>
369     ], [socklen_t len = 42; return 0;],
370     ac_cv_type_socklen_t=yes, ac_cv_type_socklen_t=no,
371     dnl When cross-compiling, do not assume anything.
372     ac_cv_type_socklen_t="guessing no"
373     )
374     ])
375     if [[ "x$ac_cv_type_socklen_t" != "xyes" ]]; then
376     AC_DEFINE(socklen_t, int, [Define to 'int' if <sys/types.h> doesn't define.])
377     fi
378    
379     dnl Checks for library functions.
380 gbeauche 1.39 AC_CHECK_FUNCS(strdup strerror cfmakeraw)
381 gbeauche 1.1 AC_CHECK_FUNCS(clock_gettime timer_create)
382     AC_CHECK_FUNCS(sigaction signal)
383     AC_CHECK_FUNCS(mmap mprotect munmap)
384     AC_CHECK_FUNCS(vm_allocate vm_deallocate vm_protect)
385 gbeauche 1.42 AC_CHECK_FUNCS(poll inet_aton)
386 gbeauche 1.1
387     dnl Darwin seems to define mach_task_self() instead of task_self().
388     AC_CHECK_FUNCS(mach_task_self task_self)
389    
390     dnl Check for headers and functions related to pty support (sshpty.c)
391     dnl From openssh-3.2.2p1 configure.ac
392    
393     AC_CHECK_HEADERS(strings.h login.h sys/bsdtty.h sys/stat.h util.h pty.h)
394     AC_CHECK_FUNCS(_getpty vhangup strlcpy)
395    
396     case "$host" in
397     *-*-hpux10.26)
398     disable_ptmx_check=yes
399     ;;
400     *-*-linux*)
401     no_dev_ptmx=1
402     ;;
403     mips-sony-bsd|mips-sony-newsos4)
404     AC_DEFINE(HAVE_NEWS4, 1, [Define if you are on NEWS-OS (additions from openssh-3.2.2p1, for sshpty.c).])
405     ;;
406     *-*-sco3.2v4*)
407     no_dev_ptmx=1
408     ;;
409     *-*-sco3.2v5*)
410     no_dev_ptmx=1
411     ;;
412 gbeauche 1.36 *-*-cygwin*)
413     no_dev_ptmx=1
414     ;;
415 asvitkine 1.74 *-*-darwin*)
416     no_dev_ptmx=1
417     ;;
418 gbeauche 1.1 esac
419    
420     if test -z "$no_dev_ptmx" ; then
421     if test "x$disable_ptmx_check" != "xyes" ; then
422     AC_CHECK_FILE([/dev/ptmx],
423     [
424     AC_DEFINE_UNQUOTED(HAVE_DEV_PTMX, 1, [Define if you have /dev/ptmx.])
425     have_dev_ptmx=1
426     ]
427     )
428     fi
429     fi
430     AC_CHECK_FILE([/dev/ptc],
431     [
432     AC_DEFINE_UNQUOTED(HAVE_DEV_PTS_AND_PTC, 1, [Define if you have /dev/ptc.])
433     have_dev_ptc=1
434     ]
435     )
436    
437     dnl (end of code from openssh-3.2.2p1 configure.ac)
438    
439    
440 gbeauche 1.58 dnl Check for systems where POSIX-style non-blocking I/O (O_NONBLOCK)
441     dnl doesn't work or is unimplemented. On these systems (mostly older
442     dnl ones), use the old BSD-style FIONBIO approach instead. [tcl.m4]
443     AC_CACHE_CHECK([FIONBIO vs. O_NONBLOCK for non-blocking I/O],
444     ac_cv_nonblocking_io, [
445     case "$host" in
446     *-*-osf*)
447     ac_cv_nonblocking_io=FIONBIO
448     ;;
449     *-*-sunos4*)
450     ac_cv_nonblocking_io=FIONBIO
451     ;;
452     *-*-ultrix*)
453     ac_cv_nonblocking_io=FIONBIO
454     ;;
455     *)
456     ac_cv_nonblocking_io=O_NONBLOCK
457     ;;
458     esac
459     ])
460     if [[ "$ac_cv_nonblocking_io" = "FIONBIO" ]]; then
461     AC_DEFINE(USE_FIONBIO, 1, [Define if BSD-style non-blocking I/O is to be used])
462     fi
463    
464 gbeauche 1.59 dnl Check whether compiler supports byte bit-fields
465     AC_CACHE_CHECK([whether compiler supports byte bit-fields],
466     ac_cv_have_byte_bitfields, [
467     AC_LANG_SAVE
468     AC_LANG_CPLUSPLUS
469     AC_TRY_RUN([
470     struct A {
471     unsigned char b1:4;
472     unsigned char b2:4;
473     unsigned char c;
474     unsigned short s;
475     unsigned char a[4];
476     };
477    
478     int main(void) {
479     A a;
480     return ! (sizeof(A) == 8 && &a.c == ((unsigned char *)&a + 1));
481     }],
482     [ac_cv_have_byte_bitfields=yes],
483     [ac_cv_have_byte_bitfields=no],
484     dnl When cross-compiling, assume only GCC supports this
485     [if [[ "$GCC" = "yes" ]]; then
486     ac_cv_have_byte_bitfields="guessing yes"
487     else
488     ac_cv_have_byte_bitfields="guessing no"
489     fi]
490     )
491     AC_LANG_RESTORE
492     ])
493 gbeauche 1.58
494 gbeauche 1.30 dnl AC_CHECK_FRAMEWORK($1=NAME, $2=INCLUDES)
495 cebix 1.51 AC_DEFUN([AC_CHECK_FRAMEWORK], [
496 gbeauche 1.30 AS_VAR_PUSHDEF([ac_Framework], [ac_cv_framework_$1])dnl
497     AC_CACHE_CHECK([whether compiler supports framework $1],
498     ac_Framework, [
499     saved_LIBS="$LIBS"
500     LIBS="$LIBS -framework $1"
501     AC_TRY_LINK(
502 gbeauche 1.57 [$2], [],
503 gbeauche 1.30 [AS_VAR_SET(ac_Framework, yes)], [AS_VAR_SET(ac_Framework, no); LIBS="$saved_LIBS"]
504     )
505     ])
506     AS_IF([test AS_VAR_GET(ac_Framework) = yes],
507     [AC_DEFINE(AS_TR_CPP(HAVE_FRAMEWORK_$1), 1, [Define if framework $1 is available.])]
508     )
509     AS_VAR_POPDEF([ac_Framework])dnl
510     ])
511    
512     dnl Check for some MacOS X frameworks
513 gbeauche 1.63 AC_CHECK_FRAMEWORK(AppKit, [])
514 gbeauche 1.30 AC_CHECK_FRAMEWORK(Carbon, [#include <Carbon/Carbon.h>])
515     AC_CHECK_FRAMEWORK(IOKit, [#include <IOKit/IOKitLib.h>])
516 gbeauche 1.48 AC_CHECK_FRAMEWORK(CoreFoundation, [#include <CoreFoundation/CoreFoundation.h>])
517 gbeauche 1.30
518 gbeauche 1.1 dnl Select system-dependant source files.
519     SERIALSRC=serial_unix.cpp
520     ETHERSRC=../dummy/ether_dummy.cpp
521     SCSISRC=../dummy/scsi_dummy.cpp
522     AUDIOSRC=../dummy/audio_dummy.cpp
523 gbeauche 1.41 EXTFSSRC=extfs_unix.cpp
524 gbeauche 1.1 EXTRASYSSRCS=
525     CAN_NATIVE_M68K=no
526     case "$target_os" in
527     linux*)
528     ETHERSRC=ether_unix.cpp
529     AUDIOSRC=audio_oss_esd.cpp
530     SCSISRC=Linux/scsi_linux.cpp
531     ;;
532     freebsd*)
533     ETHERSRC=ether_unix.cpp
534     AUDIOSRC=audio_oss_esd.cpp
535     DEFINES="$DEFINES -DBSD_COMP"
536     CXXFLAGS="$CXXFLAGS -fpermissive"
537     dnl Check for the CAM library
538     AC_CHECK_LIB(cam, cam_open_btl, HAVE_LIBCAM=yes, HAVE_LIBCAM=no)
539     if [[ "x$HAVE_LIBCAM" = "xno" ]]; then
540     AC_MSG_WARN([Cannot find libcam for SCSI management, disabling SCSI support.])
541     else
542     dnl Check for the sys kernel includes
543     AC_CHECK_HEADER(camlib.h)
544     if [[ "x$ac_cv_header_camlib_h" = "xno" ]]; then
545     dnl In this case I should fix this thing including a "patch"
546     dnl to access directly to the functions in the kernel :) --Orlando
547     AC_MSG_WARN([Cannot find includes for CAM library, disabling SCSI support.])
548     else
549     SCSISRC=FreeBSD/scsi_freebsd.cpp
550     LIBS="$LIBS -lcam"
551     DEFINES="$DEFINES -DCAM"
552     fi
553     fi
554     ;;
555     netbsd*)
556     CAN_NATIVE_M68K=yes
557 gbeauche 1.44 ETHERSRC=ether_unix.cpp
558 gbeauche 1.1 ;;
559     solaris*)
560     AUDIOSRC=Solaris/audio_solaris.cpp
561     DEFINES="$DEFINES -DBSD_COMP -D_POSIX_PTHREAD_SEMANTICS"
562     ;;
563     irix*)
564     AUDIOSRC=Irix/audio_irix.cpp
565     EXTRASYSSRCS=Irix/unaligned.c
566     LIBS="$LIBS -laudio"
567     WANT_ESD=no
568    
569 gbeauche 1.14 dnl Check if our compiler supports -IPA (MIPSPro)
570     HAVE_IPA=no
571 gbeauche 1.1 ocflags="$CFLAGS"
572 gbeauche 1.14 CFLAGS=`echo "$CFLAGS -IPA" | sed -e "s/-g//g"`
573     AC_MSG_CHECKING(if "-IPA" works)
574 gbeauche 1.1 dnl Do a test compile of an empty function
575 gbeauche 1.56 AC_TRY_COMPILE([#if defined __GNUC__
576     # error GCC does not support IPA yet
577     #endif],, [AC_MSG_RESULT(yes); HAVE_IPA=yes], AC_MSG_RESULT(no))
578 gbeauche 1.1 CFLAGS="$ocflags"
579 gbeauche 1.30 ;;
580     darwin*)
581 gbeauche 1.45 ETHERSRC=ether_unix.cpp
582 gbeauche 1.48 if [[ "x$ac_cv_framework_IOKit" = "xyes" -a "x$ac_cv_framework_CoreFoundation" = "xyes" ]]; then
583 gbeauche 1.30 EXTRASYSSRCS="../MacOSX/sys_darwin.cpp"
584     fi
585 gbeauche 1.41 if [[ "x$ac_cv_framework_Carbon" = "xyes" ]]; then
586 gbeauche 1.73 EXTFSSRC=../MacOSX/extfs_macosx.cpp
587 gbeauche 1.41 fi
588 gbeauche 1.1 ;;
589 gbeauche 1.36 cygwin*)
590     SERIALSRC="../dummy/serial_dummy.cpp"
591 gbeauche 1.37 EXTRASYSSRCS="../Windows/BasiliskII.rc"
592 gbeauche 1.36 ;;
593 gbeauche 1.1 esac
594 gbeauche 1.43
595     dnl Is the slirp library supported?
596 gbeauche 1.59 case "$ac_cv_have_byte_bitfields" in
597     yes|"guessing yes")
598 gbeauche 1.60 CAN_SLIRP=yes
599 gbeauche 1.59 ETHERSRC=ether_unix.cpp
600     ;;
601     esac
602 gbeauche 1.60 if [[ -n "$CAN_SLIRP" ]]; then
603 gbeauche 1.43 AC_DEFINE(HAVE_SLIRP, 1, [Define if slirp library is supported])
604     SLIRP_SRCS="\
605     ../slirp/bootp.c ../slirp/ip_output.c ../slirp/tcp_input.c \
606     ../slirp/cksum.c ../slirp/mbuf.c ../slirp/tcp_output.c \
607     ../slirp/debug.c ../slirp/misc.c ../slirp/tcp_subr.c \
608     ../slirp/if.c ../slirp/sbuf.c ../slirp/tcp_timer.c \
609     ../slirp/ip_icmp.c ../slirp/slirp.c ../slirp/tftp.c \
610     ../slirp/ip_input.c ../slirp/socket.c ../slirp/udp.c"
611     fi
612     AC_SUBST(SLIRP_SRCS)
613    
614 gbeauche 1.26 dnl SDL overrides
615     if [[ "x$WANT_SDL" = "xyes" ]]; then
616     AC_DEFINE(USE_SDL, 1, [Define to enble SDL support])
617     fi
618     if [[ "x$WANT_SDL_VIDEO" = "xyes" ]]; then
619 gbeauche 1.31 AC_DEFINE(USE_SDL_VIDEO, 1, [Define to enable SDL video graphics support])
620 gbeauche 1.30 VIDEOSRCS="../SDL/video_sdl.cpp"
621 gbeauche 1.29 KEYCODES="../SDL/keycodes"
622 gbeauche 1.30 if [[ "x$ac_cv_framework_Carbon" = "xyes" ]]; then
623     EXTRASYSSRCS="$EXTRASYSSRCS ../MacOSX/clip_macosx.cpp"
624     else
625 gbeauche 1.38 case "$target_os" in
626     cygwin*)
627     EXTRASYSSRCS="$EXTRASYSSRCS ../Windows/clip_windows.cpp"
628     ;;
629     *)
630     EXTRASYSSRCS="$EXTRASYSSRCS ../dummy/clip_dummy.cpp"
631     ;;
632     esac
633 gbeauche 1.30 fi
634 gbeauche 1.26 else
635 gbeauche 1.30 VIDEOSRCS="video_x.cpp"
636 gbeauche 1.29 KEYCODES="keycodes"
637 gbeauche 1.30 EXTRASYSSRCS="$EXTRASYSSRCS clip_unix.cpp"
638 gbeauche 1.26 fi
639 gbeauche 1.31 if [[ "x$WANT_SDL_AUDIO" = "xyes" ]]; then
640     AC_DEFINE(USE_SDL_AUDIO, 1, [Define to enable SDL audio support])
641     AUDIOSRC="../SDL/audio_sdl.cpp"
642     fi
643 gbeauche 1.1
644     dnl Use 68k CPU natively?
645     WANT_NATIVE_M68K=no
646     if [[ "x$HAVE_M68K" = "xyes" -a "x$CAN_NATIVE_M68K" = "xyes" ]]; then
647     AC_DEFINE(ENABLE_NATIVE_M68K, 1, [Define if using native 68k mode.])
648     WANT_NATIVE_M68K=yes
649     fi
650    
651     if [[ "x$HAVE_PTHREADS" = "xno" ]]; then
652     dnl Serial, ethernet and audio support needs pthreads
653     AC_MSG_WARN([You don't have pthreads, disabling serial, ethernet and audio support.])
654     SERIALSRC=../dummy/serial_dummy.cpp
655     ETHERSRC=../dummy/ether_dummy.cpp
656     AUDIOSRC=../dummy/audio_dummy.cpp
657     fi
658 gbeauche 1.41 SYSSRCS="$VIDEOSRCS $EXTFSSRC $SERIALSRC $ETHERSRC $SCSISRC $AUDIOSRC $SEMSRC $UISRCS $MONSRCS $EXTRASYSSRCS"
659 gbeauche 1.1
660     dnl Define a macro that translates a yesno-variable into a C macro definition
661     dnl to be put into the config.h file
662     dnl $1 -- the macro to define
663     dnl $2 -- the value to translate
664     dnl $3 -- template name
665 cebix 1.51 AC_DEFUN([AC_TRANSLATE_DEFINE], [
666 gbeauche 1.1 if [[ "x$2" = "xyes" -o "x$2" = "xguessing yes" ]]; then
667     AC_DEFINE($1, 1, $3)
668     fi
669     ])
670    
671 gbeauche 1.25 dnl Check that the host supports TUN/TAP devices
672     AC_CACHE_CHECK([whether TUN/TAP is supported],
673     ac_cv_tun_tap_support, [
674     AC_TRY_COMPILE([
675     #if defined(HAVE_LINUX_IF_H) && defined(HAVE_LINUX_IF_TUN_H)
676     #include <linux/if.h>
677     #include <linux/if_tun.h>
678     #endif
679     #if defined(HAVE_NET_IF_H) && defined(HAVE_NET_IF_TUN_H)
680     #include <net/if.h>
681     #include <net/if_tun.h>
682     #endif
683     ], [
684     struct ifreq ifr;
685     memset(&ifr, 0, sizeof(ifr));
686     ifr.ifr_flags = IFF_TAP | IFF_NO_PI;
687     ],
688     ac_cv_tun_tap_support=yes, ac_cv_tun_tap_support=no
689     )
690     ])
691     AC_TRANSLATE_DEFINE(ENABLE_TUNTAP, "$ac_cv_tun_tap_support",
692     [Define if your system supports TUN/TAP devices.])
693    
694 gbeauche 1.1 dnl Various checks if the system supports vm_allocate() and the like functions.
695     have_mach_vm=no
696     if [[ "x$ac_cv_func_vm_allocate" = "xyes" -a "x$ac_cv_func_vm_deallocate" = "xyes" -a \
697     "x$ac_cv_func_vm_protect" = "xyes" ]]; then
698     have_mach_vm=yes
699     fi
700     AC_TRANSLATE_DEFINE(HAVE_MACH_VM, "$have_mach_vm",
701     [Define if your system has a working vm_allocate()-based memory allocator.])
702    
703     dnl Check that vm_allocate(), vm_protect() work
704     if [[ "x$have_mach_vm" = "xyes" ]]; then
705    
706     AC_CACHE_CHECK([whether vm_protect works],
707     ac_cv_vm_protect_works, [
708     AC_LANG_SAVE
709     AC_LANG_CPLUSPLUS
710     ac_cv_vm_protect_works=yes
711     dnl First the tests that should segfault
712     for test_def in NONE_READ NONE_WRITE READ_WRITE; do
713     AC_TRY_RUN([
714     #define CONFIGURE_TEST_VM_MAP
715     #define TEST_VM_PROT_$test_def
716     #include "vm_alloc.cpp"
717     ], ac_cv_vm_protect_works=no, rm -f core,
718     dnl When cross-compiling, do not assume anything
719     ac_cv_vm_protect_works="guessing no"
720     )
721     done
722     AC_TRY_RUN([
723     #define CONFIGURE_TEST_VM_MAP
724     #define TEST_VM_PROT_RDWR_WRITE
725     #include "vm_alloc.cpp"
726     ], , ac_cv_vm_protect_works=no,
727     dnl When cross-compiling, do not assume anything
728     ac_cv_vm_protect_works="guessing no"
729     )
730     AC_LANG_RESTORE
731     ]
732     )
733    
734     dnl Remove support for vm_allocate() if vm_protect() does not work
735     if [[ "x$have_mach_vm" = "xyes" ]]; then
736     case $ac_cv_vm_protect_works in
737     *yes) have_mach_vm=yes;;
738     *no) have_mach_vm=no;;
739     esac
740     fi
741     AC_TRANSLATE_DEFINE(HAVE_MACH_VM, "$have_mach_vm",
742     [Define if your system has a working vm_allocate()-based memory allocator.])
743    
744     fi dnl HAVE_MACH_VM
745    
746     dnl Various checks if the system supports mmap() and the like functions.
747     dnl ... and Mach memory allocators are not supported
748     have_mmap_vm=no
749     if [[ "x$ac_cv_func_mmap" = "xyes" -a "x$ac_cv_func_munmap" = "xyes" -a \
750     "x$ac_cv_func_mprotect" = "xyes" ]]; then
751     if [[ "x$have_mach_vm" = "xno" ]]; then
752     have_mmap_vm=yes
753     fi
754     fi
755     AC_TRANSLATE_DEFINE(HAVE_MMAP_VM, "$have_mmap_vm",
756     [Define if your system has a working mmap()-based memory allocator.])
757    
758     dnl Check that mmap() and associated functions work.
759     if [[ "x$have_mmap_vm" = "xyes" ]]; then
760    
761     dnl Check if we have a working anonymous mmap()
762     AC_CACHE_CHECK([whether mmap supports MAP_ANON],
763     ac_cv_mmap_anon, [
764     AC_LANG_SAVE
765     AC_LANG_CPLUSPLUS
766     AC_TRY_RUN([
767     #define HAVE_MMAP_ANON
768     #define CONFIGURE_TEST_VM_MAP
769     #define TEST_VM_MMAP_ANON
770     #include "vm_alloc.cpp"
771     ], ac_cv_mmap_anon=yes, ac_cv_mmap_anon=no,
772     dnl When cross-compiling, do not assume anything.
773     ac_cv_mmap_anon="guessing no"
774     )
775     AC_LANG_RESTORE
776     ]
777     )
778     AC_TRANSLATE_DEFINE(HAVE_MMAP_ANON, "$ac_cv_mmap_anon",
779     [Define if <sys/mman.h> defines MAP_ANON and mmap()'ing with MAP_ANON works.])
780    
781     AC_CACHE_CHECK([whether mmap supports MAP_ANONYMOUS],
782     ac_cv_mmap_anonymous, [
783     AC_LANG_SAVE
784     AC_LANG_CPLUSPLUS
785     AC_TRY_RUN([
786     #define HAVE_MMAP_ANONYMOUS
787     #define CONFIGURE_TEST_VM_MAP
788     #define TEST_VM_MMAP_ANON
789     #include "vm_alloc.cpp"
790     ], ac_cv_mmap_anonymous=yes, ac_cv_mmap_anonymous=no,
791     dnl When cross-compiling, do not assume anything.
792     ac_cv_mmap_anonymous="guessing no"
793     )
794     AC_LANG_RESTORE
795     ]
796     )
797     AC_TRANSLATE_DEFINE(HAVE_MMAP_ANONYMOUS, "$ac_cv_mmap_anonymous",
798     [Define if <sys/mman.h> defines MAP_ANONYMOUS and mmap()'ing with MAP_ANONYMOUS works.])
799    
800     AC_CACHE_CHECK([whether mprotect works],
801     ac_cv_mprotect_works, [
802     AC_LANG_SAVE
803     AC_LANG_CPLUSPLUS
804     ac_cv_mprotect_works=yes
805     dnl First the tests that should segfault
806     for test_def in NONE_READ NONE_WRITE READ_WRITE; do
807     AC_TRY_RUN([
808     #define CONFIGURE_TEST_VM_MAP
809     #define TEST_VM_PROT_$test_def
810     #include "vm_alloc.cpp"
811     ], ac_cv_mprotect_works=no, rm -f core,
812     dnl When cross-compiling, do not assume anything
813     ac_cv_mprotect_works="guessing no"
814     )
815     done
816     AC_TRY_RUN([
817     #define CONFIGURE_TEST_VM_MAP
818     #define TEST_VM_PROT_RDWR_WRITE
819     #include "vm_alloc.cpp"
820     ], , ac_cv_mprotect_works=no,
821     dnl When cross-compiling, do not assume anything
822     ac_cv_mprotect_works="guessing no"
823     )
824     AC_LANG_RESTORE
825     ]
826     )
827    
828     dnl Remove support for mmap() if mprotect() does not work
829     if [[ "x$have_mmap_vm" = "xyes" ]]; then
830     case $ac_cv_mprotect_works in
831     *yes) have_mmap_vm=yes;;
832     *no) have_mmap_vm=no;;
833     esac
834     fi
835     AC_TRANSLATE_DEFINE(HAVE_MMAP_VM, $have_mmap_vm,
836     [Define if your system has a working mmap()-based memory allocator.])
837    
838     fi dnl HAVE_MMAP_VM
839    
840 gbeauche 1.23 dnl Check if we can modify the __PAGEZERO segment for use as Low Memory
841     AC_CACHE_CHECK([whether __PAGEZERO can be Low Memory area 0x0000-0x2000],
842     ac_cv_pagezero_hack, [
843     ac_cv_pagezero_hack=no
844     if AC_TRY_COMMAND([Darwin/testlmem.sh 0x2000]); then
845     ac_cv_pagezero_hack=yes
846     dnl might as well skip the test for mmap-able low memory
847     ac_cv_can_map_lm=no
848     fi
849     ])
850     AC_TRANSLATE_DEFINE(PAGEZERO_HACK, "$ac_cv_pagezero_hack",
851     [Define if the __PAGEZERO Mach-O Low Memory Globals hack works on this system.])
852    
853 gbeauche 1.1 dnl Check if we can mmap 0x2000 bytes from 0x0000
854     AC_CACHE_CHECK([whether we can map Low Memory area 0x0000-0x2000],
855     ac_cv_can_map_lm, [
856     AC_LANG_SAVE
857     AC_LANG_CPLUSPLUS
858     AC_TRY_RUN([
859     #include "vm_alloc.cpp"
860     int main(void) { /* returns 0 if we could map the lowmem globals */
861 gbeauche 1.15 volatile char * lm = 0;
862 gbeauche 1.1 if (vm_init() < 0) exit(1);
863 gbeauche 1.15 if (vm_acquire_fixed(0, 0x2000) < 0) exit(1);
864 gbeauche 1.1 lm[0] = 'z';
865     if (vm_release((char *)lm, 0x2000) < 0) exit(1);
866     vm_exit(); exit(0);
867     }
868     ], ac_cv_can_map_lm=yes, ac_cv_can_map_lm=no,
869     dnl When cross-compiling, do not assume anything.
870     ac_cv_can_map_lm="guessing no"
871     )
872     AC_LANG_RESTORE
873     ]
874     )
875    
876     dnl Check signal handlers need to be reinstalled
877     AC_CACHE_CHECK([whether signal handlers need to be reinstalled],
878     ac_cv_signal_need_reinstall, [
879     AC_LANG_SAVE
880     AC_LANG_CPLUSPLUS
881     AC_TRY_RUN([
882     #include <stdlib.h>
883     #ifdef HAVE_UNISTD_H
884     #include <unistd.h>
885     #endif
886     #include <signal.h>
887     static int handled_signal = 0;
888     RETSIGTYPE sigusr1_handler(int) { handled_signal++; }
889     int main(void) { /* returns 0 if signals need not to be reinstalled */
890     signal(SIGUSR1, sigusr1_handler); raise(SIGUSR1); raise(SIGUSR1);
891     exit(handled_signal == 2);
892     }
893     ], ac_cv_signal_need_reinstall=yes, ac_cv_signal_need_reinstall=no,
894     dnl When cross-compiling, do not assume anything.
895     ac_cv_signal_need_reinstall="guessing yes"
896     )
897     AC_LANG_RESTORE
898     ]
899     )
900     AC_TRANSLATE_DEFINE(SIGNAL_NEED_REINSTALL, "$ac_cv_signal_need_reinstall",
901     [Define if your system requires signals to be reinstalled.])
902    
903     dnl Check if sigaction handlers need to be reinstalled
904     AC_CACHE_CHECK([whether sigaction handlers need to be reinstalled],
905     ac_cv_sigaction_need_reinstall, [
906     AC_LANG_SAVE
907     AC_LANG_CPLUSPLUS
908     AC_TRY_RUN([
909     #include <stdlib.h>
910     #ifdef HAVE_UNISTD_H
911     #include <unistd.h>
912     #endif
913     #include <signal.h>
914     static int handled_signal = 0;
915     RETSIGTYPE sigusr1_handler(int) { handled_signal++; }
916     typedef RETSIGTYPE (*signal_handler)(int);
917     static signal_handler mysignal(int sig, signal_handler handler) {
918     struct sigaction old_sa;
919     struct sigaction new_sa;
920     new_sa.sa_handler = handler;
921     return ((sigaction(sig,&new_sa,&old_sa) < 0) ? SIG_IGN : old_sa.sa_handler);
922     }
923     int main(void) { /* returns 0 if signals need not to be reinstalled */
924     mysignal(SIGUSR1, sigusr1_handler); raise(SIGUSR1); raise(SIGUSR1);
925     exit(handled_signal == 2);
926     }
927     ], ac_cv_sigaction_need_reinstall=yes, ac_cv_sigaction_need_reinstall=no,
928     dnl When cross-compiling, do not assume anything.
929     ac_cv_sigaction_need_reinstall="guessing yes"
930     )
931     AC_LANG_RESTORE
932     ]
933     )
934     AC_TRANSLATE_DEFINE(SIGACTION_NEED_REINSTALL, "$ac_cv_sigaction_need_reinstall",
935     [Define if your system requires sigactions to be reinstalled.])
936    
937 gbeauche 1.21 dnl Check if Mach exceptions supported.
938     AC_CACHE_CHECK([whether your system supports Mach exceptions],
939     ac_cv_have_mach_exceptions, [
940 gbeauche 1.1 AC_LANG_SAVE
941     AC_LANG_CPLUSPLUS
942     AC_TRY_RUN([
943 gbeauche 1.21 #define HAVE_MACH_EXCEPTIONS 1
944 gbeauche 1.1 #define CONFIGURE_TEST_SIGSEGV_RECOVERY
945     #include "vm_alloc.cpp"
946     #include "sigsegv.cpp"
947 gbeauche 1.21 ], [
948     sigsegv_recovery=mach
949     ac_cv_have_mach_exceptions=yes
950     ],
951     ac_cv_have_mach_exceptions=no,
952 gbeauche 1.1 dnl When cross-compiling, do not assume anything.
953 gbeauche 1.21 ac_cv_have_mach_exceptions=no
954 gbeauche 1.1 )
955     AC_LANG_RESTORE
956     ]
957     )
958 gbeauche 1.21 AC_TRANSLATE_DEFINE(HAVE_MACH_EXCEPTIONS, "$ac_cv_have_mach_exceptions",
959     [Define if your system supports Mach exceptions.])
960    
961 gbeauche 1.36 dnl Check if Windows exceptions are supported.
962     AC_CACHE_CHECK([whether your system supports Windows exceptions],
963     ac_cv_have_win32_exceptions, [
964     AC_LANG_SAVE
965     AC_LANG_CPLUSPLUS
966     AC_TRY_RUN([
967     #define HAVE_WIN32_EXCEPTIONS 1
968     #define CONFIGURE_TEST_SIGSEGV_RECOVERY
969     #include "vm_alloc.cpp"
970     #include "sigsegv.cpp"
971     ], [
972     sigsegv_recovery=win32
973     ac_cv_have_win32_exceptions=yes
974     ],
975     ac_cv_have_win32_exceptions=no,
976     dnl When cross-compiling, do not assume anything.
977     ac_cv_have_win32_exceptions=no
978     )
979     AC_LANG_RESTORE
980     ]
981     )
982     AC_TRANSLATE_DEFINE(HAVE_WIN32_EXCEPTIONS, "$ac_cv_have_win32_exceptions",
983     [Define if your system supports Windows exceptions.])
984    
985 gbeauche 1.21 dnl Otherwise, check if extended signals are supported.
986     if [[ -z "$sigsegv_recovery" ]]; then
987     AC_CACHE_CHECK([whether your system supports extended signal handlers],
988     ac_cv_have_extended_signals, [
989     AC_LANG_SAVE
990     AC_LANG_CPLUSPLUS
991     AC_TRY_RUN([
992     #define HAVE_SIGINFO_T 1
993     #define CONFIGURE_TEST_SIGSEGV_RECOVERY
994     #include "vm_alloc.cpp"
995     #include "sigsegv.cpp"
996     ], [
997     sigsegv_recovery=siginfo
998     ac_cv_have_extended_signals=yes
999     ],
1000     ac_cv_have_extended_signals=no,
1001     dnl When cross-compiling, do not assume anything.
1002     ac_cv_have_extended_signals=no
1003     )
1004     AC_LANG_RESTORE
1005     ]
1006     )
1007     AC_TRANSLATE_DEFINE(HAVE_SIGINFO_T, "$ac_cv_have_extended_signals",
1008     [Define if your system support extended signals.])
1009     fi
1010 gbeauche 1.1
1011     dnl Otherwise, check for subterfuges.
1012 gbeauche 1.21 if [[ -z "$sigsegv_recovery" ]]; then
1013 gbeauche 1.1 AC_CACHE_CHECK([whether we then have a subterfuge for your system],
1014     ac_cv_have_sigcontext_hack, [
1015     AC_LANG_SAVE
1016     AC_LANG_CPLUSPLUS
1017     AC_TRY_RUN([
1018     #define HAVE_SIGCONTEXT_SUBTERFUGE 1
1019     #define CONFIGURE_TEST_SIGSEGV_RECOVERY
1020     #include "vm_alloc.cpp"
1021     #include "sigsegv.cpp"
1022 gbeauche 1.21 ], [
1023     sigsegv_recovery=sigcontext
1024     ac_cv_have_sigcontext_hack=yes
1025     ],
1026     ac_cv_have_sigcontext_hack=no,
1027 gbeauche 1.1 dnl When cross-compiling, do not assume anything.
1028     ac_cv_have_sigcontext_hack=no
1029     )
1030     AC_LANG_RESTORE
1031     ])
1032     AC_TRANSLATE_DEFINE(HAVE_SIGCONTEXT_SUBTERFUGE, "$ac_cv_have_sigcontext_hack",
1033     [Define if we know a hack to replace siginfo_t->si_addr member.])
1034     fi
1035    
1036     dnl Check if we can ignore the fault (instruction skipping in SIGSEGV handler)
1037     AC_CACHE_CHECK([whether we can skip instruction in SIGSEGV handler],
1038     ac_cv_have_skip_instruction, [
1039     AC_LANG_SAVE
1040     AC_LANG_CPLUSPLUS
1041     AC_TRY_RUN([
1042     #define HAVE_SIGSEGV_SKIP_INSTRUCTION 1
1043     #define CONFIGURE_TEST_SIGSEGV_RECOVERY
1044     #include "vm_alloc.cpp"
1045     #include "sigsegv.cpp"
1046     ], ac_cv_have_skip_instruction=yes, ac_cv_have_skip_instruction=no,
1047     dnl When cross-compiling, do not assume anything.
1048     ac_cv_have_skip_instruction=no
1049     )
1050     AC_LANG_RESTORE
1051     ]
1052     )
1053     AC_TRANSLATE_DEFINE(HAVE_SIGSEGV_SKIP_INSTRUCTION, "$ac_cv_have_skip_instruction",
1054     [Define if we can ignore the fault (instruction skipping in SIGSEGV handler).])
1055    
1056     dnl Can we do Video on SEGV Signals ?
1057     CAN_VOSF=no
1058 gbeauche 1.21 if [[ -n "$sigsegv_recovery" ]]; then
1059 gbeauche 1.1 CAN_VOSF=yes
1060     fi
1061    
1062 gbeauche 1.23 dnl A dummy program that returns always true
1063 gbeauche 1.28 AC_PATH_PROG([BLESS], "true")
1064 gbeauche 1.23
1065 gbeauche 1.61 dnl Check for linker script support
1066     case $target_os:$target_cpu in
1067     linux*:i?86) LINKER_SCRIPT_FLAGS="-Wl,-T,ldscripts/linux-i386.ld";;
1068     linux*:x86_64) LINKER_SCRIPT_FLAGS="-Wl,-T,ldscripts/linux-x86_64.ld";;
1069 gbeauche 1.65 linux*:powerpc) LINKER_SCRIPT_FLAGS="-Wl,-T,ldscripts/linux-ppc.ld";;
1070 gbeauche 1.64 netbsd*:i?86) LINKER_SCRIPT_FLAGS="-Wl,-T,ldscripts/linux-i386.ld";;
1071     freebsd*:i?86) LINKER_SCRIPT_FLAGS="-Wl,-T,ldscripts/freebsd-i386.ld";;
1072 gbeauche 1.65 darwin*:*) LINKER_SCRIPT_FLAGS="-Wl,-seg1addr,0x78048000";;
1073 gbeauche 1.61 esac
1074     if [[ -n "$LINKER_SCRIPT_FLAGS" ]]; then
1075     AC_CACHE_CHECK([whether linker script is usable],
1076     ac_cv_linker_script_works, [
1077     AC_LANG_SAVE
1078     AC_LANG_CPLUSPLUS
1079     saved_LDFLAGS="$LDFLAGS"
1080     LDFLAGS="$LDFLAGS $LINKER_SCRIPT_FLAGS"
1081     AC_TRY_RUN(
1082     [int main() {if ((char *)&main < (char *)0x70000000) return 1;}],
1083     [ac_cv_linker_script_works=yes],
1084     [ac_cv_linker_script_works=no],
1085     dnl When cross-compiling, assume it works
1086     [ac_cv_linker_script_works="guessing yes"]
1087     )
1088     AC_LANG_RESTORE
1089     if [[ "$ac_cv_linker_script_works" = "no" ]]; then
1090     LDFLAGS="$saved_LDFLAGS"
1091     LINKER_SCRIPT_FLAGS=""
1092     fi
1093     ])
1094     fi
1095     AC_TRANSLATE_DEFINE(HAVE_LINKER_SCRIPT, "$ac_cv_linker_script_works",
1096     [Define if there is a linker script to relocate the executable above 0x70000000.])
1097    
1098 gbeauche 1.1 dnl Determine the addressing mode to use
1099     if [[ "x$WANT_NATIVE_M68K" = "xyes" ]]; then
1100     ADDRESSING_MODE="real"
1101     else
1102     ADDRESSING_MODE=""
1103     AC_MSG_CHECKING([for the addressing mode to use])
1104     for am in $ADDRESSING_TEST_ORDER; do
1105     case $am in
1106     real)
1107     dnl Requires ability to mmap() Low Memory globals
1108 gbeauche 1.23 if [[ "x$ac_cv_can_map_lm$ac_cv_pagezero_hack" = "xnono" ]]; then
1109 gbeauche 1.1 continue
1110     fi
1111 gbeauche 1.23 dnl Requires VOSF screen updates
1112 gbeauche 1.1 if [[ "x$CAN_VOSF" = "xno" ]]; then
1113     continue
1114     fi
1115     dnl Real addressing will probably work.
1116     ADDRESSING_MODE="real"
1117     WANT_VOSF=yes dnl we can use VOSF and we need it actually
1118     DEFINES="$DEFINES -DREAL_ADDRESSING"
1119 gbeauche 1.23 if [[ "x$ac_cv_pagezero_hack" = "xyes" ]]; then
1120     BLESS=Darwin/lowmem
1121     LDFLAGS="$LDFLAGS -pagezero_size 0x2000"
1122     fi
1123 gbeauche 1.1 break
1124     ;;
1125     direct)
1126     dnl Requires VOSF screen updates
1127     if [[ "x$CAN_VOSF" = "xyes" ]]; then
1128     ADDRESSING_MODE="direct"
1129     WANT_VOSF=yes dnl we can use VOSF and we need it actually
1130     DEFINES="$DEFINES -DDIRECT_ADDRESSING"
1131     break
1132     fi
1133     ;;
1134     banks)
1135     dnl Default addressing mode
1136     ADDRESSING_MODE="memory banks"
1137     break
1138     ;;
1139     *)
1140     AC_MSG_ERROR([Internal configure.in script error for $am addressing mode])
1141     esac
1142     done
1143     AC_MSG_RESULT($ADDRESSING_MODE)
1144     if [[ "x$ADDRESSING_MODE" = "x" ]]; then
1145     AC_MSG_WARN([Sorry, no suitable addressing mode in $ADDRESSING_TEST_ORDER])
1146     ADDRESSING_MODE="memory banks"
1147     fi
1148     fi
1149    
1150 gbeauche 1.5 dnl Banked Memory Addressing mode is not supported by the JIT compiler
1151     if [[ "x$WANT_JIT" = "xyes" -a "x$ADDRESSING_MODE" = "xmemory banks" ]]; then
1152     AC_MSG_ERROR([Sorry, the JIT Compiler requires Direct Addressing, at least])
1153     fi
1154    
1155 gbeauche 1.1 dnl Enable VOSF screen updates with this feature is requested and feasible
1156     if [[ "x$WANT_VOSF" = "xyes" -a "x$CAN_VOSF" = "xyes" ]]; then
1157     AC_DEFINE(ENABLE_VOSF, 1, [Define if using video enabled on SEGV signals.])
1158     else
1159     WANT_VOSF=no
1160     fi
1161    
1162     dnl Check for GAS.
1163     HAVE_GAS=no
1164     AC_MSG_CHECKING(for GAS .p2align feature)
1165     cat >conftest.S << EOF
1166     .text
1167     .p2align 5
1168     EOF
1169     if $CC conftest.S -c -o conftest.o >/dev/null 2>&1 ; then HAVE_GAS=yes; fi
1170     AC_MSG_RESULT($HAVE_GAS)
1171    
1172     dnl Check for GCC 2.7 or higher.
1173     HAVE_GCC27=no
1174     AC_MSG_CHECKING(for GCC 2.7 or higher)
1175 gbeauche 1.53 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#if ! (__GNUC__ - 1 > 1 || __GNUC_MINOR__ - 1 > 5)
1176     # error gcc < 2.7
1177     #endif
1178     ]])],
1179     [AC_MSG_RESULT(yes); HAVE_GCC27=yes],
1180     [AC_MSG_RESULT(no)])
1181 gbeauche 1.1
1182     dnl Check for GCC 3.0 or higher.
1183     HAVE_GCC30=no
1184     AC_MSG_CHECKING(for GCC 3.0 or higher)
1185 gbeauche 1.53 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#if ! (__GNUC__ >= 3)
1186     # error gcc < 3
1187     #endif
1188     ]])],
1189     [AC_MSG_RESULT(yes); HAVE_GCC30=yes],
1190     [AC_MSG_RESULT(no)])
1191 gbeauche 1.1
1192 gbeauche 1.39 dnl Check for ICC.
1193     AC_MSG_CHECKING(for ICC)
1194     HAVE_ICC=no
1195     if $CXX -V -v 2>&1 | grep -q "Intel(R) C++ Compiler"; then
1196     HAVE_ICC=yes
1197     fi
1198     AC_MSG_RESULT($HAVE_ICC)
1199    
1200 gbeauche 1.1 dnl Set "-fomit-frame-pointer" on i386 GCC 2.7 or higher.
1201     dnl Also set "-fno-exceptions" for C++ because exception handling requires
1202     dnl the frame pointer.
1203     if [[ "x$HAVE_GCC27" = "xyes" -a "x$HAVE_I386" = "xyes" ]]; then
1204     CFLAGS="$CFLAGS -fomit-frame-pointer"
1205     CXXFLAGS="$CXXFLAGS -fomit-frame-pointer -fno-exceptions"
1206     fi
1207    
1208     dnl (gb) Do not merge constants since it breaks fpu/fpu_x86.cpp.
1209     dnl As of 2001/08/02, this affects the following compilers:
1210     dnl Official: probably gcc-3.1 (mainline CVS)
1211     dnl Mandrake: gcc-2.96 >= 0.59mdk, gcc-3.0.1 >= 0.1mdk
1212     dnl Red Hat : gcc-2.96 >= 89, gcc-3.0 >= 1
1213 gbeauche 1.39 if [[ "x$HAVE_GCC27" = "xyes" -a "x$HAVE_ICC" = "xno" ]]; then
1214 gbeauche 1.1 SAVED_CXXFLAGS="$CXXFLAGS"
1215     CXXFLAGS="$CXXFLAGS -fno-merge-constants"
1216     AC_CACHE_CHECK([whether GCC supports constants merging], ac_cv_gcc_constants_merging, [
1217     AC_LANG_SAVE
1218     AC_LANG_CPLUSPLUS
1219     AC_TRY_COMPILE([],[],[ac_cv_gcc_constants_merging=yes],[ac_cv_gcc_constants_merging=no])
1220     AC_LANG_RESTORE
1221     ])
1222     if [[ "x$ac_cv_gcc_constants_merging" != "xyes" ]]; then
1223     CXXFLAGS="$SAVED_CXXFLAGS"
1224     fi
1225     fi
1226    
1227 gbeauche 1.33 dnl Store motion was introduced in 3.3-hammer branch and any gcc >= 3.4
1228     dnl However, there are some corner cases exposed on x86-64
1229 gbeauche 1.39 if [[ "x$HAVE_GCC27" = "xyes" -a "x$HAVE_ICC" = "xno" ]]; then
1230 gbeauche 1.33 SAVED_CXXFLAGS="$CXXFLAGS"
1231     CXXFLAGS="$CXXFLAGS -fno-gcse-sm"
1232     AC_CACHE_CHECK([whether GCC supports store motion], ac_cv_gcc_store_motion, [
1233     AC_LANG_SAVE
1234     AC_LANG_CPLUSPLUS
1235     AC_TRY_COMPILE([],[],[ac_cv_gcc_store_motion=yes],[ac_cv_gcc_store_motion=no])
1236     AC_LANG_RESTORE
1237     ])
1238     if [[ "x$ac_cv_gcc_store_motion" != "xyes" ]]; then
1239     CXXFLAGS="$SAVED_CXXFLAGS"
1240     fi
1241     fi
1242    
1243 gbeauche 1.39 dnl Add -fno-strict-aliasing for slirp sources
1244     if [[ "x$HAVE_GCC30" = "xyes" ]]; then
1245 gbeauche 1.40 SAVED_CFLAGS="$CFLAGS"
1246 gbeauche 1.39 CFLAGS="$CFLAGS -fno-strict-aliasing"
1247     AC_CACHE_CHECK([whether the compiler supports -fno-strict-aliasing],
1248     ac_cv_gcc_no_strict_aliasing, [
1249     AC_TRY_COMPILE([],[],
1250 gbeauche 1.47 [ac_cv_gcc_no_strict_aliasing=yes; AC_SUBST(SLIRP_CFLAGS, "-fno-strict-aliasing")],
1251 gbeauche 1.39 [ac_cv_gcc_no_strict_aliasing=no])
1252     ])
1253     CFLAGS="$SAVED_CFLAGS"
1254     fi
1255    
1256 gbeauche 1.54 dnl Add -mdynamic-no-pic for MacOS X (XXX icc10 will support MacOS X)
1257     if [[ "x$HAVE_GCC30" = "xyes" -a "x$HAVE_ICC" = "xno" ]]; then
1258 gbeauche 1.52 SAVED_CFLAGS="$CFLAGS"
1259     CFLAGS="$CFLAGS -mdynamic-no-pic"
1260     AC_CACHE_CHECK([whether the compiler supports -mdynamic-no-pic],
1261     ac_cv_gcc_mdynamic_no_pic, [
1262     AC_TRY_COMPILE([],[],[ac_cv_gcc_mdynamic_no_pic=yes],[ac_cv_gcc_mdynamic_no_pic=no])
1263     ])
1264     if [[ "x$ac_cv_gcc_mdynamic_no_pic" = "xyes" ]]; then
1265     CXXFLAGS="$CXXFLAGS -mdynamic-no-pic"
1266     else
1267     CFLAGS="$SAVED_CFLAGS"
1268     fi
1269     fi
1270    
1271 gbeauche 1.1 dnl Select appropriate CPU source and REGPARAM define.
1272     ASM_OPTIMIZATIONS=none
1273     CPUSRCS="cpuemu1.cpp cpuemu2.cpp cpuemu3.cpp cpuemu4.cpp cpuemu5.cpp cpuemu6.cpp cpuemu7.cpp cpuemu8.cpp"
1274 gbeauche 1.5
1275     dnl (gb) JITSRCS will be emptied later if the JIT is not available
1276     dnl Other platforms should define their own set of noflags file variants
1277     CAN_JIT=no
1278     JITSRCS="compemu1.cpp compemu2.cpp compemu3.cpp compemu4.cpp compemu5.cpp compemu6.cpp compemu7.cpp compemu8.cpp"
1279    
1280 gbeauche 1.11 if [[ "x$HAVE_GCC27" = "xyes" -a "x$HAVE_I386" = "xyes" ]]; then
1281 gbeauche 1.1 dnl i386 CPU
1282 gbeauche 1.7 DEFINES="$DEFINES -DUNALIGNED_PROFITABLE -DREGPARAM=\"__attribute__((regparm(3)))\""
1283 gbeauche 1.1 if [[ "x$HAVE_GAS" = "xyes" ]]; then
1284     ASM_OPTIMIZATIONS=i386
1285 gbeauche 1.7 DEFINES="$DEFINES -DX86_ASSEMBLY -DOPTIMIZED_FLAGS -DSAHF_SETO_PROFITABLE"
1286 gbeauche 1.10 JITSRCS="cpuemu1_nf.cpp cpuemu2_nf.cpp cpuemu3_nf.cpp cpuemu4_nf.cpp cpuemu5_nf.cpp cpuemu6_nf.cpp cpuemu7_nf.cpp cpuemu8_nf.cpp $JITSRCS"
1287 gbeauche 1.11 CAN_JIT=yes
1288 gbeauche 1.13 fi
1289     elif [[ "x$HAVE_GCC30" = "xyes" -a "x$HAVE_X86_64" = "xyes" ]]; then
1290     dnl x86-64 CPU
1291     DEFINES="$DEFINES -DUNALIGNED_PROFITABLE"
1292     if [[ "x$HAVE_GAS" = "xyes" ]]; then
1293     ASM_OPTIMIZATIONS="x86-64"
1294     DEFINES="$DEFINES -DX86_64_ASSEMBLY -DOPTIMIZED_FLAGS"
1295 gbeauche 1.32 JITSRCS="cpuemu1_nf.cpp cpuemu2_nf.cpp cpuemu3_nf.cpp cpuemu4_nf.cpp cpuemu5_nf.cpp cpuemu6_nf.cpp cpuemu7_nf.cpp cpuemu8_nf.cpp $JITSRCS"
1296     CAN_JIT=yes
1297 gbeauche 1.1 fi
1298     elif [[ "x$HAVE_GCC27" = "xyes" -a "x$HAVE_SPARC" = "xyes" -a "x$HAVE_GAS" = "xyes" ]]; then
1299     dnl SPARC CPU
1300     case "$target_os" in
1301     solaris*)
1302     AC_MSG_CHECKING(SPARC CPU architecture)
1303     SPARC_TYPE=`Solaris/which_sparc`
1304     AC_MSG_RESULT($SPARC_TYPE)
1305     case "$SPARC_TYPE" in
1306     SPARC_V8)
1307     ASM_OPTIMIZATIONS="SPARC V8 architecture"
1308     DEFINES="$DEFINES -DSPARC_V8_ASSEMBLY" dnl -DOPTIMIZED_FLAGS"
1309     CFLAGS="$CFLAGS -Wa,-Av8"
1310     CXXFLAGS="$CXXFLAGS -Wa,-Av8"
1311     ;;
1312     SPARC_V9)
1313     ASM_OPTIMIZATIONS="SPARC V9 architecture"
1314     DEFINES="$DEFINES -DSPARC_V9_ASSEMBLY" dnl -DOPTIMIZED_FLAGS"
1315     CFLAGS="$CFLAGS -Wa,-Av9"
1316     CXXFLAGS="$CXXFLAGS -Wa,-Av9"
1317     ;;
1318     esac
1319     ;;
1320     esac
1321     elif [[ "x$WANT_NATIVE_M68K" = "xyes" ]]; then
1322     dnl Native m68k, no emulation
1323     CPUINCLUDES="-I../native_cpu"
1324     CPUSRCS="asm_support.s"
1325     fi
1326    
1327 gbeauche 1.5 dnl Enable JIT compiler, if possible.
1328     if [[ "x$WANT_JIT" = "xyes" -a "x$CAN_JIT" ]]; then
1329     JITSRCS="$JITSRCS ../uae_cpu/compiler/compemu_support.cpp ../uae_cpu/compiler/compemu_fpp.cpp compstbl.o cpustbl_nf.o"
1330     DEFINES="$DEFINES -DUSE_JIT -DUSE_JIT_FPU"
1331    
1332     if [[ "x$WANT_JIT_DEBUG" = "xyes" ]]; then
1333     if [[ "x$WANT_MON" = "xyes" ]]; then
1334     DEFINES="$DEFINES -DJIT_DEBUG=1"
1335     else
1336     AC_MSG_WARN([cxmon not found, ignoring --enable-jit-debug])
1337     WANT_JIT_DEBUG=no
1338     fi
1339     fi
1340 gbeauche 1.8
1341     dnl IEEE core is the only FPU emulator to use with the JIT compiler
1342     case $FPE_CORE_TEST_ORDER in
1343     ieee*) ;;
1344     *) AC_MSG_WARN([Forcing use of the IEEE FPU core, as the JIT compiler supports only this one.]) ;;
1345     esac
1346     FPE_CORE_TEST_ORDER="ieee"
1347 gbeauche 1.5 else
1348     WANT_JIT=no
1349     WANT_JIT_DEBUG=no
1350     JITSRCS=""
1351     fi
1352    
1353 gbeauche 1.1 dnl Utility macro used by next two tests.
1354     dnl AC_EXAMINE_OBJECT(C source code,
1355     dnl commands examining object file,
1356     dnl [commands to run if compile failed]):
1357     dnl
1358     dnl Compile the source code to an object file; then convert it into a
1359     dnl printable representation. All unprintable characters and
1360     dnl asterisks (*) are replaced by dots (.). All white space is
1361     dnl deleted. Newlines (ASCII 0x10) in the input are preserved in the
1362     dnl output, but runs of newlines are compressed to a single newline.
1363     dnl Finally, line breaks are forcibly inserted so that no line is
1364     dnl longer than 80 columns and the file ends with a newline. The
1365     dnl result of all this processing is in the file conftest.dmp, which
1366     dnl may be examined by the commands in the second argument.
1367     dnl
1368     AC_DEFUN([gcc_AC_EXAMINE_OBJECT],
1369     [AC_LANG_SAVE
1370     AC_LANG_C
1371     dnl Next bit cribbed from AC_TRY_COMPILE.
1372     cat > conftest.$ac_ext <<EOF
1373     [#line __oline__ "configure"
1374     #include "confdefs.h"
1375     $1
1376     ]EOF
1377     if AC_TRY_EVAL(ac_compile); then
1378     od -c conftest.o |
1379     sed ['s/^[0-7]*[ ]*/ /
1380     s/\*/./g
1381     s/ \\n/*/g
1382     s/ [0-9][0-9][0-9]/./g
1383     s/ \\[^ ]/./g'] |
1384     tr -d '
1385     ' | tr -s '*' '
1386     ' | fold | sed '$a\
1387     ' > conftest.dmp
1388     $2
1389     ifelse($3, , , else
1390     $3
1391     )dnl
1392     fi
1393     rm -rf conftest*
1394     AC_LANG_RESTORE])
1395    
1396     dnl Floating point format probe.
1397     dnl The basic concept is the same as the above: grep the object
1398     dnl file for an interesting string. We have to watch out for
1399     dnl rounding changing the values in the object, however; this is
1400     dnl handled by ignoring the least significant byte of the float.
1401     dnl
1402     dnl Does not know about VAX G-float or C4x idiosyncratic format.
1403     dnl It does know about PDP-10 idiosyncratic format, but this is
1404     dnl not presently supported by GCC. S/390 "binary floating point"
1405     dnl is in fact IEEE (but maybe we should have that in EBCDIC as well
1406     dnl as ASCII?)
1407     dnl
1408     AC_DEFUN([gcc_AC_C_FLOAT_FORMAT],
1409     [AC_CACHE_CHECK(floating point format, ac_cv_c_float_format,
1410     [gcc_AC_EXAMINE_OBJECT(
1411     [/* This will not work unless sizeof(double) == 8. */
1412     extern char sizeof_double_must_be_8 [sizeof(double) == 8 ? 1 : -1];
1413    
1414     /* This structure must have no internal padding. */
1415     struct possibility {
1416     char prefix[8];
1417     double candidate;
1418     char postfix[8];
1419     };
1420    
1421     #define C(cand) { "\nformat:", cand, ":tamrof\n" }
1422     struct possibility table [] =
1423     {
1424     C( 3.25724264705901305206e+01), /* @@IEEEFP - IEEE 754 */
1425     C( 3.53802595280598432000e+18), /* D__float - VAX */
1426     C( 5.32201830133125317057e-19), /* D.PDP-10 - PDP-10 - the dot is 0x13a */
1427     C( 1.77977764695171661377e+10), /* IBMHEXFP - s/390 format, ascii */
1428     C(-5.22995989424860458374e+10) /* IBMHEXFP - s/390 format, EBCDIC */
1429     };],
1430     [if grep 'format:.@IEEEF.:tamrof' conftest.dmp >/dev/null 2>&1; then
1431     ac_cv_c_float_format='IEEE (big-endian)'
1432     elif grep 'format:.I@@PFE.:tamrof' conftest.dmp >/dev/null 2>&1; then
1433     ac_cv_c_float_format='IEEE (big-endian)'
1434     elif grep 'format:.FEEEI@.:tamrof' conftest.dmp >/dev/null 2>&1; then
1435     ac_cv_c_float_format='IEEE (little-endian)'
1436     elif grep 'format:.EFP@@I.:tamrof' conftest.dmp >/dev/null 2>&1; then
1437     ac_cv_c_float_format='IEEE (little-endian)'
1438     elif grep 'format:.__floa.:tamrof' conftest.dmp >/dev/null 2>&1; then
1439     ac_cv_c_float_format='VAX D-float'
1440     elif grep 'format:..PDP-1.:tamrof' conftest.dmp >/dev/null 2>&1; then
1441     ac_cv_c_float_format='PDP-10'
1442     elif grep 'format:.BMHEXF.:tamrof' conftest.dmp >/dev/null 2>&1; then
1443     ac_cv_c_float_format='IBM 370 hex'
1444     else
1445     AC_MSG_ERROR(Unknown floating point format)
1446     fi],
1447     [AC_MSG_ERROR(compile failed)])
1448     ])
1449     # IEEE is the default format. If the float endianness isn't the same
1450     # as the integer endianness, we have to set FLOAT_WORDS_BIG_ENDIAN
1451     # (which is a tristate: yes, no, default). This is only an issue with
1452     # IEEE; the other formats are only supported by a few machines each,
1453     # all with the same endianness.
1454     format=IEEE_FLOAT_FORMAT
1455     fbigend=
1456     case $ac_cv_c_float_format in
1457     'IEEE (big-endian)' )
1458     if test $ac_cv_c_bigendian = no; then
1459     fbigend=1
1460     fi
1461     ;;
1462     'IEEE (little-endian)' )
1463     if test $ac_cv_c_bigendian = yes; then
1464     fbigend=0
1465     fi
1466     ;;
1467     'VAX D-float' )
1468     format=VAX_FLOAT_FORMAT
1469     ;;
1470     'PDP-10' )
1471     format=PDP10_FLOAT_FORMAT
1472     ;;
1473     'IBM 370 hex' )
1474     format=IBM_FLOAT_FORMAT
1475     ;;
1476     esac
1477     AC_DEFINE_UNQUOTED(HOST_FLOAT_FORMAT, $format,
1478     [Define to the floating point format of the host machine.])
1479     if test -n "$fbigend"; then
1480     AC_DEFINE_UNQUOTED(HOST_FLOAT_WORDS_BIG_ENDIAN, $fbigend,
1481     [Define to 1 if the host machine stores floating point numbers in
1482     memory with the word containing the sign bit at the lowest address,
1483     or to 0 if it does it the other way around.
1484    
1485     This macro should not be defined if the ordering is the same as for
1486     multi-word integers.])
1487     fi
1488     ])
1489    
1490     dnl Select appropriate FPU source.
1491     gcc_AC_C_FLOAT_FORMAT
1492     AC_CHECK_HEADERS(ieee754.h ieeefp.h floatingpoint.h nan.h)
1493    
1494     for fpe in $FPE_CORE_TEST_ORDER; do
1495     case $fpe in
1496     ieee)
1497 gbeauche 1.2 case $ac_cv_c_float_format in
1498     IEEE*)
1499 gbeauche 1.1 FPE_CORE="IEEE fpu core"
1500     DEFINES="$DEFINES -DFPU_IEEE"
1501     FPUSRCS="../uae_cpu/fpu/fpu_ieee.cpp"
1502 gbeauche 1.4 dnl Math functions not mandated by C99 standard
1503     AC_CHECK_FUNCS(isnanl isinfl)
1504     dnl Math functions required by C99 standard, but probably not
1505     dnl implemented everywhere. In that case, we fall back to the
1506     dnl regular variant for doubles.
1507     AC_CHECK_FUNCS(logl log10l expl powl fabsl sqrtl)
1508     AC_CHECK_FUNCS(sinl cosl tanl sinhl coshl tanhl)
1509     AC_CHECK_FUNCS(asinl acosl atanl asinhl acoshl atanhl)
1510     AC_CHECK_FUNCS(floorl ceill)
1511 gbeauche 1.1 break
1512 gbeauche 1.2 ;;
1513     esac
1514 gbeauche 1.1 ;;
1515     x86)
1516     if [[ ":$HAVE_GCC27:$HAVE_I386:$HAVE_GAS:" = ":yes:yes:yes:" ]]; then
1517     FPE_CORE="i387 fpu core"
1518     DEFINES="$DEFINES -DFPU_X86"
1519     FPUSRCS="../uae_cpu/fpu/fpu_x86.cpp"
1520     break
1521     fi
1522     ;;
1523     uae)
1524     FPE_CORE="uae fpu core"
1525     DEFINES="$DEFINES -DFPU_UAE"
1526     FPUSRCS="../uae_cpu/fpu/fpu_uae.cpp"
1527     break
1528     ;;
1529     *)
1530     AC_MSG_ERROR([Internal configure.in script error for $fpe fpu core])
1531     ;;
1532     esac
1533     done
1534     if [[ "x$FPE_CORE" = "x" ]]; then
1535     AC_MSG_ERROR([Sorry, no suitable FPU core found in $FPE_CORE_TEST_ORDER])
1536     fi
1537    
1538     dnl Check for certain math functions
1539     AC_CHECK_FUNCS(atanh)
1540 gbeauche 1.4 AC_CHECK_FUNCS(isnan isinf finite isnormal signbit)
1541 gbeauche 1.1
1542     dnl UAE CPU sources for all non-m68k-native architectures.
1543     if [[ "x$WANT_NATIVE_M68K" = "xno" ]]; then
1544     CPUINCLUDES="-I../uae_cpu"
1545 gbeauche 1.5 CPUSRCS="../uae_cpu/basilisk_glue.cpp ../uae_cpu/memory.cpp ../uae_cpu/newcpu.cpp ../uae_cpu/readcpu.cpp $FPUSRCS cpustbl.cpp cpudefs.cpp $CPUSRCS $JITSRCS"
1546 gbeauche 1.1 fi
1547    
1548     dnl Remove the "-g" option if set for GCC.
1549     if [[ "x$HAVE_GCC27" = "xyes" ]]; then
1550 gbeauche 1.33 CFLAGS=`echo $CFLAGS | sed -e 's/-g\b//g'`
1551     CXXFLAGS=`echo $CXXFLAGS | sed -e 's/-g\b//g'`
1552 gbeauche 1.1 fi
1553    
1554 gbeauche 1.14 dnl Or if we have -IPA (MIPSPro compilers)
1555     if [[ "x$HAVE_IPA" = "xyes" ]]; then
1556     CFLAGS="`echo $CFLAGS | sed -e 's/-g//g'` -O3 -OPT:Olimit=0 -IPA"
1557     CXXFLAGS="`echo $CXXFLAGS | sed -e 's/-g//g'` -O3 -OPT:Olimit=0 -IPA"
1558 gbeauche 1.1 CXXFLAGS="-LANG:std $CXXFLAGS"
1559 gbeauche 1.14 LDFLAGS="$LDFLAGS -O3 -OPT:Olimit=0 -IPA"
1560 gbeauche 1.1 fi
1561    
1562     dnl Generate Makefile.
1563     AC_SUBST(DEFINES)
1564     AC_SUBST(SYSSRCS)
1565     AC_SUBST(CPUINCLUDES)
1566     AC_SUBST(CPUSRCS)
1567 gbeauche 1.23 AC_SUBST(BLESS)
1568 gbeauche 1.29 AC_SUBST(KEYCODES)
1569 cebix 1.16 AC_CONFIG_FILES([Makefile])
1570     AC_OUTPUT
1571 gbeauche 1.1
1572     dnl Print summary.
1573     echo
1574     echo Basilisk II configuration summary:
1575     echo
1576 gbeauche 1.26 echo SDL support ............................ : $SDL_SUPPORT
1577 gbeauche 1.1 echo XFree86 DGA support .................... : $WANT_XF86_DGA
1578     echo XFree86 VidMode support ................ : $WANT_XF86_VIDMODE
1579     echo fbdev DGA support ...................... : $WANT_FBDEV_DGA
1580     echo Enable video on SEGV signals ........... : $WANT_VOSF
1581     echo ESD sound support ...................... : $WANT_ESD
1582     echo GTK user interface ..................... : $WANT_GTK
1583     echo mon debugger support ................... : $WANT_MON
1584     echo Running m68k code natively ............. : $WANT_NATIVE_M68K
1585 gbeauche 1.5 echo Use JIT compiler ....................... : $WANT_JIT
1586     echo JIT debug mode ......................... : $WANT_JIT_DEBUG
1587 gbeauche 1.1 echo Floating-Point emulation core .......... : $FPE_CORE
1588     echo Assembly optimizations ................. : $ASM_OPTIMIZATIONS
1589     echo Addressing mode ........................ : $ADDRESSING_MODE
1590 gbeauche 1.21 echo Bad memory access recovery type ........ : $sigsegv_recovery
1591 gbeauche 1.1 echo
1592     echo "Configuration done. Now type \"make\" (or \"gmake\")."