2009-06-21 03:12:35 +00:00
|
|
|
AC_INIT(executor, 2.1pr17, ctm@ardi.com)
|
2009-06-02 00:03:42 +00:00
|
|
|
AC_CANONICAL_SYSTEM
|
2008-10-06 03:48:37 +00:00
|
|
|
AM_INIT_AUTOMAKE([-Wall])
|
|
|
|
|
|
|
|
AC_CONFIG_SRCDIR([executor.c])
|
|
|
|
AC_CONFIG_HEADERS([config.h])
|
|
|
|
|
2009-06-20 13:27:44 +00:00
|
|
|
# Normalize to our old names
|
|
|
|
|
|
|
|
case ${build_cpu} in
|
|
|
|
i[[3456]]86)
|
|
|
|
build_cpu=i386
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
case ${host_cpu} in
|
|
|
|
i[[3456]]86)
|
|
|
|
host_cpu=i386
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2009-06-19 21:28:56 +00:00
|
|
|
case ${build_os} in
|
|
|
|
darwin*)
|
|
|
|
build_os=macosx
|
|
|
|
;;
|
2009-06-20 13:27:44 +00:00
|
|
|
linux*)
|
|
|
|
build_os=linux
|
|
|
|
;;
|
2009-06-19 21:28:56 +00:00
|
|
|
esac
|
|
|
|
|
|
|
|
case ${host_os} in
|
|
|
|
darwin*)
|
|
|
|
host_os=macosx
|
|
|
|
;;
|
2009-06-20 13:27:44 +00:00
|
|
|
linux*)
|
|
|
|
host_os=linux
|
|
|
|
;;
|
2009-06-19 21:28:56 +00:00
|
|
|
esac
|
|
|
|
|
2009-06-22 04:45:51 +00:00
|
|
|
# Checks for programs.
|
|
|
|
AM_PROG_AS
|
|
|
|
AC_PROG_CC
|
|
|
|
AM_PROG_CC_C_O
|
|
|
|
AC_PROG_RANLIB
|
|
|
|
AM_PROG_AS
|
|
|
|
AC_PROG_YACC
|
2009-06-22 05:09:56 +00:00
|
|
|
AC_PROG_OBJC
|
2009-06-22 04:45:51 +00:00
|
|
|
|
|
|
|
AC_CHECK_PROG([PERL], [perl], [perl])
|
|
|
|
AC_ARG_VAR([PERL], [perl for generating blitters])
|
|
|
|
|
|
|
|
AC_GNU_SOURCE
|
|
|
|
|
|
|
|
AC_SYS_LARGEFILE
|
|
|
|
|
2009-06-22 03:56:27 +00:00
|
|
|
# Check for libraries
|
2009-06-19 21:28:56 +00:00
|
|
|
|
2009-06-22 03:56:27 +00:00
|
|
|
if test x$host_cpu != xm68k; then
|
|
|
|
AC_CHECK_LIB(syn68k, initialize_68k_emulator,,[AC_MSG_ERROR([Can't build Executor for $host_cpu without Syn68k])])
|
|
|
|
fi
|
2009-06-21 03:12:35 +00:00
|
|
|
|
|
|
|
AC_CHECK_LIB(SDL, SDL_Init)
|
|
|
|
AC_CHECK_LIB(X11, XInitThreads)
|
|
|
|
|
2009-06-22 03:56:27 +00:00
|
|
|
AC_ARG_WITH(front-end,
|
|
|
|
[AS_HELP_STRING([--with-front-end=arg],
|
|
|
|
[arg must be sdl or x (default is sdl)])],
|
|
|
|
[front_end="$withval"],
|
|
|
|
[if test x"$ac_cv_lib_SDL_SDL_Init" = xyes; then
|
|
|
|
front_end=sdl
|
|
|
|
elif test x"$ac_cv_lib_X11_XInitThreads" = xyes; then
|
|
|
|
front_end=x
|
2009-06-22 04:45:51 +00:00
|
|
|
elif test x$host_os = xmacosx; then
|
|
|
|
front_end=sdl
|
2009-06-22 03:56:27 +00:00
|
|
|
else
|
|
|
|
AC_MSG_ERROR([Must use --with-front-end=sdl or --with-front-end=x])
|
|
|
|
fi])
|
|
|
|
|
|
|
|
if test x$front_end = xsvgalib; then
|
|
|
|
AC_CHECK_LIB(vga, vga_setmode,,[AC_MSG_ERROR([Can't build Executor with the SVGAlib front-end without svgalib])])
|
|
|
|
fi
|
|
|
|
|
|
|
|
if test x$front_end = xx; then
|
|
|
|
AC_CHECK_LIB(Xext, XShmPutImage,,[AC_MSG_ERROR([Can't build Executor with the X front-end without libXext])])
|
|
|
|
fi
|
|
|
|
|
|
|
|
AC_ARG_WITH(sound,
|
|
|
|
[AS_HELP_STRING([--with-sound=arg],
|
|
|
|
[arg must be linux or sdl (default is sdl)])],
|
|
|
|
[sound_config="$withval"],
|
|
|
|
[if test x"$ac_cv_lib_SDL_SDL_Init" = xyes; then
|
|
|
|
sound_config=sdl
|
|
|
|
elif test x"$host_os" = xxlinux; then
|
|
|
|
sound_config=linux
|
2009-06-22 04:45:51 +00:00
|
|
|
elif test x$host_os = xmacosx; then
|
|
|
|
sound_config=sdl
|
2009-06-22 03:56:27 +00:00
|
|
|
else
|
|
|
|
AC_MSG_ERROR([Must use --with-sound=sdl or --with-sound=x])
|
|
|
|
fi])
|
|
|
|
|
|
|
|
if test x$host_os = xcygwin32; then
|
|
|
|
# None of this is tested yet
|
|
|
|
AC_CHECK_LIB(dxguid, GUID_Valid_Start_Time)
|
|
|
|
AC_CHECK_LIB(winmm, OpenDriver)
|
|
|
|
AC_CHECK_LIB(gdi32, CreateDIBitmap)
|
|
|
|
AC_CHECK_LIB(user32, OpenClipboard)
|
|
|
|
fi
|
|
|
|
|
|
|
|
if test x"$sound_config" = xsdl; then
|
|
|
|
AC_CHECK_LIB(pthread, pthread_create)
|
|
|
|
fi
|
2009-06-21 03:12:35 +00:00
|
|
|
|
2009-06-22 03:56:27 +00:00
|
|
|
AC_CHECK_LIB(db, __db_ndbm_open)
|
|
|
|
AC_CHECK_LIB(m, pow)
|
2009-06-21 03:12:35 +00:00
|
|
|
|
|
|
|
|
2009-06-19 21:28:56 +00:00
|
|
|
AC_SUBST(host_cpu)
|
|
|
|
AC_SUBST(host_os)
|
|
|
|
AC_SUBST(front_end)
|
|
|
|
AC_SUBST(sound_config)
|
|
|
|
|
|
|
|
AC_CONFIG_LINKS([build-arch-config.h:config/arch/$build_cpu/$build_cpu.h
|
|
|
|
build-os-config.h:config/os/$build_os/$build_os.h
|
|
|
|
host-arch-config.h:config/arch/$host_cpu/$host_cpu.h
|
|
|
|
host-os-config.h:config/os/$host_os/$host_os.h
|
|
|
|
front-end-config.h:config/front-ends/$front_end/$front_end.h
|
|
|
|
sound-config.h:config/sound/$sound_config/$sound_config-sound.h])
|
2009-06-02 00:03:42 +00:00
|
|
|
|
2009-06-22 03:56:27 +00:00
|
|
|
# Many of the config options here have not actually been made to work since
|
|
|
|
# we converted to the modern GNU build system.
|
|
|
|
|
|
|
|
AM_CONDITIONAL([CONFIG_ARCH_ALPHA], [test x$host_cpu = xalpha])
|
|
|
|
AM_CONDITIONAL([CONFIG_ARCH_I386], [test x$host_cpu = xi386])
|
|
|
|
AM_CONDITIONAL([CONFIG_ARCH_M68K], [test x$host_cpu = xm68k])
|
|
|
|
AM_CONDITIONAL([CONFIG_ARCH_POWERPC], [test x$host_cpu = xpowerpc])
|
|
|
|
|
|
|
|
AM_CONDITIONAL([CONFIG_FRONT_END_DOS], [test x$front_end = xdos])
|
|
|
|
AM_CONDITIONAL([CONFIG_FRONT_END_NEXTSTEP], [test x$front_end = xnextstep])
|
|
|
|
AM_CONDITIONAL([CONFIG_FRONT_END_SDL], [test x$front_end = xsdl])
|
|
|
|
AM_CONDITIONAL([CONFIG_FRONT_END_SVGALIB], [test x$front_end = xsvgalib])
|
|
|
|
AM_CONDITIONAL([CONFIG_FRONT_END_WIN32], [test x$front_end = xwin32])
|
|
|
|
AM_CONDITIONAL([CONFIG_FRONT_END_X], [test x$front_end = xx])
|
|
|
|
|
|
|
|
AM_CONDITIONAL([CONFIG_HOST_ALPHA_DEC_OSF], [false])
|
|
|
|
AM_CONDITIONAL([CONFIG_HOST_I386_MSDOS_GO32], [test x$host_os = xmsdos])
|
|
|
|
AM_CONDITIONAL([CONFIG_HOST_I486_LINUX], [false])
|
|
|
|
AM_CONDITIONAL([CONFIG_HOST_I486_NEXT_NS3], [test x$host_os = xnext -a x$host_cpu = xi386])
|
|
|
|
AM_CONDITIONAL([CONFIG_HOST_M68K_NEXT_NS3], [test x$host_os = xnext -a x$host_cpu = xm68k])
|
|
|
|
|
|
|
|
AM_CONDITIONAL([CONFIG_OS_CYGWIN32], [test x$host_os = xcygwin32])
|
|
|
|
AM_CONDITIONAL([CONFIG_OS_LINUX], [test x$host_os = xlinux])
|
|
|
|
AM_CONDITIONAL([CONFIG_OS_MACOSX], [test x$host_os = xmacosx])
|
|
|
|
AM_CONDITIONAL([CONFIG_OS_MSDOS], [test x$host_os = xmsdos])
|
|
|
|
AM_CONDITIONAL([CONFIG_OS_NEXT], [test x$host_os = xnext])
|
|
|
|
|
|
|
|
AM_CONDITIONAL([CONFIG_SOUND_DJGPP], [test x$sound_config = xdjgpp])
|
|
|
|
AM_CONDITIONAL([CONFIG_SOUND_LINUX], [test x$sound_config = xlinux])
|
|
|
|
AM_CONDITIONAL([CONFIG_SOUND_SDL], [test x$sound_config = xsdl])
|
|
|
|
|
2009-06-21 03:12:35 +00:00
|
|
|
AC_CONFIG_FILES([Makefile])
|
|
|
|
|
2008-10-06 03:48:37 +00:00
|
|
|
AC_OUTPUT
|