diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2005-03-20 12:50:26 +0000 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2005-03-20 12:50:26 +0000 |
commit | 90e5ce7e958418f0d39d38112d33d3190a78baea (patch) | |
tree | 012150b22e971e44d0f7e795ef48384e15392940 /configure.ac | |
parent | 9ca202ae89bbe60f2cd1c8e3249a4fe3f8972a2b (diff) | |
download | mana-90e5ce7e958418f0d39d38112d33d3190a78baea.tar.gz mana-90e5ce7e958418f0d39d38112d33d3190a78baea.tar.bz2 mana-90e5ce7e958418f0d39d38112d33d3190a78baea.tar.xz mana-90e5ce7e958418f0d39d38112d33d3190a78baea.zip |
TMW now uses latest Guichan CVS, and doesn't work with Guichan 0.2.0 anymore!
Also fixed a crash on clicking wallpaper in login phase.
Diffstat (limited to 'configure.ac')
-rwxr-xr-x | configure.ac | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index 2fd683ff..062f9732 100755 --- a/configure.ac +++ b/configure.ac @@ -1,3 +1,4 @@ +AC_PREREQ(2.59) AC_INIT([The Mana World], [0.0.11], [umperio@users.sourceforge.net]) AC_CONFIG_HEADERS([config.h:config.h.in]) AC_LANG_CPLUSPLUS @@ -11,11 +12,11 @@ AC_PROG_MAKE_SET # Checks for libraries # (someone may want to exchange these symbols with # something more meaningful in the future /- kth5) -AC_CHECK_LIB([guichan], [_init], , +AC_CHECK_LIB([guichan], [gcnGuichanVersion], , AC_MSG_ERROR([ *** Unable to find Guichan library (guichan.darkbits.org)])) -AC_CHECK_LIB([guichan_sdl], [_init], , -AC_MSG_ERROR([ *** Unable to find Guichan SDL library (guichan.darkbits.org)])) +#AC_CHECK_LIB([guichan_sdl], [_init], , +#AC_MSG_ERROR([ *** Unable to find Guichan SDL library (guichan.darkbits.org)])) AC_CHECK_LIB([physfs], [PHYSFS_init], , AC_MSG_ERROR([ *** Unable to find PhysFS library (icculus.org/physfs/)])) |