Difference for ./configure.ac from version 1.23 to 1.24


version 1.23 version 1.24
Line 1
 
Line 1
 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.23 2006/06/30 05:46:52 mwedel Exp $)  AC_REVISION($Id: configure.ac,v 1.24 2006/08/25 21:23:18 quinet Exp $)
 AC_INIT([crossfire], [1.9.1], [crossfire-devel@listserv.real-time.com])  AC_INIT([crossfire], [1.9.1], [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])
Line 34
 
Line 34
 AM_PROG_LEX  AM_PROG_LEX
 AC_PROG_AWK  AC_PROG_AWK
   
 AC_ARG_ENABLE(dmalloc, [ --enable-dmalloc    Use the dmalloc library if available, may prevent plugins from working],  AC_ARG_ENABLE(dmalloc,
  use_dmalloc=yes, use_dmalloc=no)                [ --enable-dmalloc    Use the dmalloc library if available, may prevent plugins from working],,
                 enable_dmalloc=no)
   
 AC_ARG_WITH(python, [  --with-python=dir       Directory to look for python headers/library (default=standard system location) ],  AC_ARG_WITH(python, [  --with-python=dir       Directory to look for python headers/library (default=standard system location) ],
  PYTHON_HOME="$withval")   PYTHON_HOME="$withval")
Line 123
 
Line 124
 dnl Gros - Changed this to support some external programs that do not like dmalloc (like Python).  dnl Gros - Changed this to support some external programs that do not like dmalloc (like Python).
 dnl If you really need to make some memory debugging, uncomment the dmalloc line and comment out the dmalloclp one.  dnl If you really need to make some memory debugging, uncomment the dmalloc line and comment out the dmalloclp one.
   
 if eval "test x$use_dmalloc = xyes"; then  if eval "test x$enable_dmalloc = xyes"; then
     AC_CHECK_LIB(dmalloc, main)      AC_CHECK_LIB(dmalloc, main)
 else  else
     AC_CHECK_LIB(dmalloclp, main)      AC_CHECK_LIB(dmalloclp, main)
Line 248
 
Line 249
 ########################  ########################
 # Unit test configuration  # Unit test configuration
   
   AC_ARG_ENABLE(check,
                 [ --disable-check       Disable the unit tests even if check is available],,
                 enable_check=yes)
 AM_PATH_CHECK(,[have_check="yes"],  AM_PATH_CHECK(,[have_check="yes"],
   AC_MSG_WARN([Check not found; cannot run unit tests!])    AC_MSG_WARN([Check not found; cannot run unit tests!])
   [have_check="no"])    [have_check="no"])
 AM_CONDITIONAL(HAVE_CHECK, test x"$have_check" = "xyes")  AM_CONDITIONAL(HAVE_CHECK, test x"$have_check" = "xyes" -a x"$enable_check" = "xyes")
 CF_CHECK_XSLT(xsltengine)  CF_CHECK_XSLT(xsltengine)
 AM_CONDITIONAL(PROCESS_XSLT,[test x"$have_check" = "xyes" -a x"$xsltengine" != x])  AM_CONDITIONAL(PROCESS_XSLT,[test x"$have_check" = "xyes" -a x"$enable_check" = "xyes" -a x"$xsltengine" != x])
 AC_SUBST(XSLTENGINE,[$xsltengine])  AC_SUBST(XSLTENGINE,[$xsltengine])
 AC_OUTPUT([Makefile  AC_OUTPUT([Makefile
  crossedit/Makefile crossedit/doc/Makefile crossedit/include/Makefile   crossedit/Makefile crossedit/doc/Makefile crossedit/include/Makefile
Line 277
 
Line 281
 AC_MSG_NOTICE([])  AC_MSG_NOTICE([])
 AC_MSG_NOTICE([])  AC_MSG_NOTICE([])
 AC_MSG_NOTICE([])  AC_MSG_NOTICE([])
 AC_MSG_NOTICE([Configuration resume....])  AC_MSG_NOTICE([Configuration summary....])
 AC_MSG_NOTICE([])  AC_MSG_NOTICE([])
 AC_MSG_NOTICE([  Paths])  AC_MSG_NOTICE([  Paths])
 AC_MSG_NOTICE([    prefix default value                 ${prefix}])  AC_MSG_NOTICE([    prefix default value                 ${prefix}])
Line 296
 
Line 300
 AC_MSG_NOTICE([    Will build python plugin?            $cf_will_build_python])  AC_MSG_NOTICE([    Will build python plugin?            $cf_will_build_python])
    
 fi  fi
 if test x"$xsltengine" != x ; then  if test x"$xsltengine" != "x" ; then
     check_complement=["(will generate report)"]      check_complement=["(will generate report)"]
 fi  fi
 AC_MSG_NOTICE([    Will process unit testing?           $have_check $check_complement])  if test "x$have_check" = "xyes" -a x"$enable_check" = "xyes" ; then
 if test "x$have_check" = "xyes" ; then  AC_MSG_NOTICE([    Will process unit testing?           yes $check_complement])
 AC_MSG_NOTICE([      (run make; make -k check)])  AC_MSG_NOTICE([      (run make; make -k check)])
 else  else
   AC_MSG_NOTICE([    Will process unit testing?           no])
 AC_MSG_NOTICE([      If you are a developper, you MUST install the check framework])  AC_MSG_NOTICE([      If you are a developper, you MUST install the check framework])
 AC_MSG_NOTICE([      and write automated tests for all you add-ons!])  AC_MSG_NOTICE([      and write automated tests for all your add-ons!])
 fi  fi
 AC_MSG_NOTICE([])  AC_MSG_NOTICE([])
 AC_MSG_NOTICE([  * this check is new and may be unaccurate. If you find it says])  AC_MSG_NOTICE([  * this check is new and may be inaccurate. If you find it says])
 AC_MSG_NOTICE([  yes but compilation failed or you have good reason to think])  AC_MSG_NOTICE([  yes but compilation failed or you have good reason to think this])
 AC_MSG_NOTICE([  script guessed wrong, please inform mailing list or sf tracker.])  AC_MSG_NOTICE([  script guessed wrong, please inform mailing list or sf tracker.])
   


Legend:
line(s) removed in v.1.23 
line(s) changed
 line(s) added in v.1.24

File made using version 1.98 of cvs2html by leaf at 2011-07-21 16:56