summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorBjørn Lindeijer <bjorn@lindeijer.nl>2006-08-04 16:58:20 +0000
committerBjørn Lindeijer <bjorn@lindeijer.nl>2006-08-04 16:58:20 +0000
commitce849af300a70425b574b724c62dc9f5fce6016b (patch)
tree2e5cc9fb5d5fda6a7fba4ffc87fa012de23da745 /configure.ac
parent0d189c79a2d3be98e176987e6aca15fd2c618ef0 (diff)
downloadmanaserv-ce849af300a70425b574b724c62dc9f5fce6016b.tar.gz
manaserv-ce849af300a70425b574b724c62dc9f5fce6016b.tar.xz
manaserv-ce849af300a70425b574b724c62dc9f5fce6016b.zip
Generalized the properties functionality as was done in the client before.
Removed some more remaining usages of tmwserv namespace. Added some documentation and de-complicized the code a bit. Removed checks for SDL and SDL_net.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac9
1 files changed, 0 insertions, 9 deletions
diff --git a/configure.ac b/configure.ac
index 13504d5..5dc70cf 100644
--- a/configure.ac
+++ b/configure.ac
@@ -23,9 +23,6 @@ AC_MSG_ERROR([ *** Unable to find libcrypto library]))
AC_CHECK_LIB([physfs], [PHYSFS_init], ,
AC_MSG_ERROR([ *** Unable to find PhysFS library (icculus.org/physfs/)]))
-AC_CHECK_LIB([SDL_net], [SDLNet_Init], ,
-AC_MSG_ERROR([ *** Unable to find SDL_net library]))
-
AC_CHECK_LIB([enet], [enet_initialize], ,
AC_MSG_ERROR([ *** Unable to find enet library (enet.bespin.org)]))
@@ -33,12 +30,6 @@ PKG_CHECK_MODULES(XML2, [libxml-2.0 >= 2.4])
CXXFLAGS="$CXXFLAGS $XML2_CFLAGS"
LIBS="$LIBS $XML2_LIBS"
-AC_CHECK_LIB_TMW([SDL], [1.2.0])
-# update CXXFLAGS and LIBS.
-# SDL_CFLAGS and SDL_LIBS are set by AC_CHECK_LIB_TMW.
-CXXFLAGS="$CXXFLAGS $SDL_CFLAGS"
-LIBS="$LIBS $SDL_LIBS"
-
# Checks for header files.
AC_HEADER_STDC