version 1.10 | | version 1.11 |
---|
| | |
dnl Process this file with autoconf to produce a configure script. | | dnl Process this file with autoconf to produce a configure script. |
| | |
AC_REVISION($Id: configure.ac,v 1.10 2004/04/27 07:08:02 mwedel Exp $) | | AC_REVISION($Id: configure.ac,v 1.11 2005/01/24 07:55:44 mwedel Exp $) |
AC_INIT([crossfire], [1.6.0], [crossfire-devel@listserv.real-time.com]) | | AC_INIT([crossfire], [1.7.0], [crossfire-devel@listserv.real-time.com]) |
AC_CONFIG_AUX_DIR(utils) | | AC_CONFIG_AUX_DIR(utils) |
AC_CONFIG_SRCDIR([server/main.c]) | | AC_CONFIG_SRCDIR([server/main.c]) |
AM_INIT_AUTOMAKE | | AM_INIT_AUTOMAKE |
| | |
| | |
AC_CHECK_LIB(png, main, AC_DEFINE(HAVE_LIBPNG,[],[Define if libpng is available]) X11LIBS="$X11LIBS -lpng", , $X11LIBS ) | | AC_CHECK_LIB(png, main, AC_DEFINE(HAVE_LIBPNG,[],[Define if libpng is available]) X11LIBS="$X11LIBS -lpng", , $X11LIBS ) |
| | |
| | dnl png has a dependency in some cases on libz - if we have it, can't really |
| | dnl be harmful to link it in. |
| | AC_CHECK_LIB(z, main, AC_DEFINE(HAVE_LIBZ,[],[Define if libz is available]) X11LIBS="$X11LIBS -lz", , $X11LIBS ) |
| | |
dnl Misc libraries. | | dnl Misc libraries. |
AC_CHECK_LIB(crypt, main) | | AC_CHECK_LIB(crypt, main) |
AC_CHECK_LIB(des, des_crypt) | | AC_CHECK_LIB(des, des_crypt) |