mirror of
https://git.code.sf.net/p/quake/quake2forge
synced 2024-11-10 07:12:01 +00:00
- Reverted to old pthreads message, as the new one was
breaking in the generated script. - Removed some redundant commented out checks
This commit is contained in:
parent
5e8aaafe64
commit
ac36ffaaf7
1 changed files with 8 additions and 14 deletions
22
configure.in
22
configure.in
|
@ -77,9 +77,7 @@ AC_CHECK_LIB([ossaudio], [_oss_ioctl], [OSS_LIBS="-lossaudio"])
|
||||||
AC_SUBST(OSS_LIBS)
|
AC_SUBST(OSS_LIBS)
|
||||||
|
|
||||||
dnl Check for POSIX threads
|
dnl Check for POSIX threads
|
||||||
ACX_PTHREAD(,AC_MSG_ERROR([
|
ACX_PTHREAD(,AC_MSG_ERROR(["POSIX threads required!"]))
|
||||||
*** POSIX threads required, but no threading library was found!
|
|
||||||
]))
|
|
||||||
|
|
||||||
dnl -----------------
|
dnl -----------------
|
||||||
dnl Check for SVGAlib
|
dnl Check for SVGAlib
|
||||||
|
@ -115,8 +113,8 @@ if test "x${ac_with_svgalib}" != xno ; then
|
||||||
# test for the library first, for people who may have the libs
|
# test for the library first, for people who may have the libs
|
||||||
# installed but no headers
|
# installed but no headers
|
||||||
AC_CHECK_LIB(vga, vga_getmousetype,
|
AC_CHECK_LIB(vga, vga_getmousetype,
|
||||||
HAVE_SVGALIB="maybe",
|
HAVE_SVGALIB=maybe,
|
||||||
HAVE_SVGALIB="no",
|
HAVE_SVGALIB=no,
|
||||||
[ $SVGALIB_LIBS ]
|
[ $SVGALIB_LIBS ]
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -301,15 +299,11 @@ if test "x$enable_sdl" != xno; then
|
||||||
AC_SUBST(HAVE_SDL)
|
AC_SUBST(HAVE_SDL)
|
||||||
fi
|
fi
|
||||||
|
|
||||||
#AC_CHECK_LIB(GL, glBegin)
|
dnl ------------------------
|
||||||
# FIXME: Replace `main' with a function in `-lX11':
|
dnl Check for MPG123 library
|
||||||
#AC_CHECK_LIB(X11, [main])
|
dnl ------------------------
|
||||||
# FIXME: Replace `main' with a function in `-lXext':
|
|
||||||
#AC_CHECK_LIB([Xext], [main])
|
|
||||||
# FIXME: Replace `main' with a function in `-lXxf86dga':
|
|
||||||
#AC_CHECK_LIB([Xxf86dga], [main])
|
|
||||||
# FIXME: Replace `main' with a function in `-lXxf86vm':
|
|
||||||
#AC_CHECK_LIB([Xxf86vm], [main])
|
|
||||||
|
|
||||||
dnl -----------------------
|
dnl -----------------------
|
||||||
dnl Checks for header files
|
dnl Checks for header files
|
||||||
|
|
Loading…
Reference in a new issue