mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
7dca7e8e2e
Mention git instead of subversion, add libsamplerate to the requirements and it turns out autoconf 2.65 is good enough.
130 lines
2.8 KiB
Text
130 lines
2.8 KiB
Text
dnl Process this file with autoconf to produce a configure script.
|
|
AC_PREREQ(2.65)
|
|
|
|
dnl This is the only place where the package name and version appear
|
|
AC_INIT([QuakeForge], [git-master])
|
|
AM_INIT_AUTOMAKE([foreign])
|
|
|
|
dnl LT_INIT messes with CFLAGS (evil bastard)
|
|
if test "x${CFLAGS-unset}" = xunset; then
|
|
CFLAGS=""
|
|
fi
|
|
saved_CFLAGS="$CFLAGS"
|
|
LT_INIT([win32-dll])
|
|
CFLAGS="$saved_CFLAGS"
|
|
|
|
AC_REVISION([$Revision$]) dnl
|
|
|
|
AC_CONFIG_HEADERS([include/config.h])
|
|
|
|
AC_CANONICAL_BUILD
|
|
AC_CANONICAL_HOST
|
|
|
|
m4_include(config.d/versions.m4)
|
|
|
|
AC_LANG_C
|
|
|
|
if test "$x{AR-unset}" = xunset; then
|
|
AR="ar"
|
|
fi
|
|
export AR
|
|
AC_SUBST(AR)
|
|
AC_SUBST(RANLIB)
|
|
|
|
m4_include(config.d/windows.m4)
|
|
m4_include(config.d/asm.m4)
|
|
m4_include(config.d/programs.m4)
|
|
m4_include(config.d/system_services.m4)
|
|
m4_include(config.d/header_files.m4)
|
|
m4_include(config.d/library_functions.m4)
|
|
m4_include(config.d/typedefs_structs_compiler.m4)
|
|
|
|
m4_include(config.d/cross_compile.m4)
|
|
|
|
m4_include(config.d/pthread.m4)
|
|
|
|
WINMM=""
|
|
case "$host_os" in
|
|
cygwin*)
|
|
WINMM="-lwinmm"
|
|
;;
|
|
mingw32*)
|
|
WINMM="-lwinmm"
|
|
;;
|
|
*)
|
|
dnl Checks for working -lm
|
|
AC_CHECK_LIB(m, pow,, AC_MSG_ERROR([math library (-lm) appears broken]))
|
|
;;
|
|
esac
|
|
|
|
m4_include(config.d/compression.m4)
|
|
|
|
m4_include(config.d/mgl.m4)
|
|
m4_include(config.d/fbdev.m4)
|
|
m4_include(config.d/svga.m4)
|
|
m4_include(config.d/x11.m4)
|
|
m4_include(config.d/sdl.m4)
|
|
|
|
m4_include(config.d/curses.m4)
|
|
|
|
dnl ==================================================================
|
|
dnl Checks for system type
|
|
dnl ==================================================================
|
|
|
|
dnl Checks for which system driver to use
|
|
AC_MSG_CHECKING(for system driver)
|
|
case "${host}" in
|
|
i?86-*-mingw32*)
|
|
SYSTYPE=WIN32
|
|
AC_MSG_RESULT([Win32 driver])
|
|
WIN32_LIBS=' $(NET_LIBS)'
|
|
if test "x$host" != "x$build"; then
|
|
case "$build_os" in
|
|
cygwin*)
|
|
WIN32_LIBS=" -L/usr/lib/w32api $WIN32_LIBS"
|
|
;;
|
|
esac
|
|
fi
|
|
|
|
;;
|
|
i?86-*-cygwin*)
|
|
SYSTYPE=WIN32
|
|
AC_MSG_RESULT([Win32 driver])
|
|
WIN32_LIBS=' $(NET_LIBS)'
|
|
;;
|
|
*)
|
|
SYSTYPE=POSIX
|
|
AC_MSG_RESULT([default POSIX driver])
|
|
WIN32_LIBS=''
|
|
;;
|
|
esac
|
|
AM_CONDITIONAL(SYSTYPE_WIN32, test "x$SYSTYPE" = "xWIN32")
|
|
AC_SUBST(WIN32_LIBS)
|
|
|
|
m4_include(config.d/sound.m4)
|
|
m4_include(config.d/joystick.m4)
|
|
m4_include(config.d/cdrom.m4)
|
|
|
|
m4_include(config.d/networking.m4)
|
|
|
|
m4_include(config.d/paths.m4)
|
|
|
|
m4_include(config.d/build_control.m4)
|
|
m4_include(config.d/qfcc.m4)
|
|
m4_include(config.d/compiling.m4)
|
|
|
|
AC_ARG_ENABLE(typecheck-progs,
|
|
[ --enable-typecheck-progs Enable type checking on progs field access])
|
|
if test "x$enable_typecheck_progs" = xyes; then
|
|
AC_DEFINE(TYPECHECK_PROGS, 1, [Define this if you want progs typechecking])
|
|
fi
|
|
|
|
TOPSRC=`readlink -f ${srcdir}`
|
|
AC_SUBST(TOPSRC)
|
|
|
|
dnl Output files
|
|
m4_include(config.d/rpm.m4)
|
|
AC_CONFIG_FILES(m4_include(config.d/ac_config_files.m4))
|
|
AC_OUTPUT
|
|
|
|
m4_include(config.d/result.m4)
|