[BACK] Return to configure.in CVS log [TXT][DIR] Up to Nevrax / code / nel

Diff for /code/nel/configure.in between version 1.60 and 1.66

version 1.60, 2002/03/19 17:42:48 version 1.66, 2002/04/15 12:54:16
Line 30 
Line 30 
  
 LIBTOOL_VERSION=$MAJOR_VERSION:$MINOR_VERSION:$PICO_VERSION LIBTOOL_VERSION=$MAJOR_VERSION:$MINOR_VERSION:$PICO_VERSION
  
  AC_CANONICAL_HOST
  if test "$host_cpu" = "i386" -o "$host_cpu" = "i486" \
          -o "$host_cpu" = "i586" -o "$host_cpu" = "i686" \
          -o "$host_cpu" = "i786" ; then
  AC_DEFINE(HAVE_X86)
  fi
  
 AC_SUBST(VERSION) AC_SUBST(VERSION)
 AC_SUBST(LIBTOOL_VERSION) AC_SUBST(LIBTOOL_VERSION)
  
Line 107 
Line 114 
    NEL_SUBDIRS="$NEL_SUBDIRS ai"    NEL_SUBDIRS="$NEL_SUBDIRS ai"
 fi fi
  
  dnl Georges library
  AC_ARG_ENABLE( georges,
      [  --enable-georges        enable compilation and install of NeL Georges.],
      , enable_georges=no )
  
  if test $enable_georges = "yes";
  then
     AC_MSG_RESULT(enable NEL Georges.)
     NEL_SUBDIRS="$NEL_SUBDIRS georges"
  fi
  
 AC_SUBST(enable_net) AC_SUBST(enable_net)
 AC_SUBST(enable_3d) AC_SUBST(enable_3d)
 AC_SUBST(enable_pacs) AC_SUBST(enable_pacs)
 AC_SUBST(enable_sound) AC_SUBST(enable_sound)
 AC_SUBST(enable_ai) AC_SUBST(enable_ai)
  AC_SUBST(enable_georges)
  
 AC_SUBST(NEL_SUBDIRS) AC_SUBST(NEL_SUBDIRS)
  
Line 134 
Line 153 
  
 AC_PROG_INSTALL AC_PROG_INSTALL
  
  AC_PATH_PROG(CCACHE, ccache)
  if test "$CCACHE"
  then
   CXX="ccache $CXX"
  fi
  
 dnl ==================================================================== dnl ====================================================================
 dnl Configure Settings dnl Configure Settings
Line 222 
Line 246 
  
  
 dnl ==================================================================== dnl ====================================================================
 dnl OpenAL 
  
 AM_PATH_OPENAL($enable_sound) 
  
  
 dnl ==================================================================== 
 dnl Python dnl Python
  
 AM_PATH_PYTHON(1.5,$enable_ai) AM_PATH_PYTHON(1.5,$enable_ai)
Line 241 
Line 259 
  
 AM_PATH_XML2(2.0.0, , AC_MSG_ERROR(libxml2 must be installed.)) AM_PATH_XML2(2.0.0, , AC_MSG_ERROR(libxml2 must be installed.))
  
  CFLAGS="$CFLAGS $XML_CFLAGS"
  CXXFLAGS="$CXXFLAGS $XML_CFLAGS"
  
  LIBS="$LIBS $XML_LIBS"
  
 dnl Use C++ compiler as a default for the compilation tests. dnl Use C++ compiler as a default for the compilation tests.
 AC_LANG_CPLUSPLUS AC_LANG_CPLUSPLUS
  
Line 266 
Line 289 
  
 AM_PATH_XF86VIDMODE AM_PATH_XF86VIDMODE
  
  
  dnl ====================================================================
  dnl OpenAL
  
  AM_PATH_OPENAL($enable_sound)
  
  
  dnl ====================================================================
 dnl Arrange for the include directory to be in the search path even when dnl Arrange for the include directory to be in the search path even when
 dnl build is done outside the source tree dnl build is done outside the source tree
 CFLAGS="$CFLAGS -I\${top_srcdir}/include" CFLAGS="$CFLAGS -I\${top_srcdir}/include"
 CXXFLAGS="$CXXFLAGS -I\${top_srcdir}/include" CXXFLAGS="$CXXFLAGS -I\${top_srcdir}/include"
  
  
 dnl ==================================================================== dnl ====================================================================
 dnl Checks for library functions. dnl Checks for library functions.
 dnl ==================================================================== dnl ====================================================================
Line 299 
Line 331 
            include/nel/ai/pyserver/Makefile  \            include/nel/ai/pyserver/Makefile  \
            include/nel/ai/script/Makefile    \            include/nel/ai/script/Makefile    \
            include/nel/ai/tools/Makefile     \            include/nel/ai/tools/Makefile     \
             include/nel/georges/Makefile      \
            src/Makefile                      \            src/Makefile                      \
            src/misc/Makefile                 \            src/misc/Makefile                 \
            src/misc/config_file/Makefile     \            src/misc/config_file/Makefile     \
Line 320 
Line 353 
            src/ai/pyserver/Makefile          \            src/ai/pyserver/Makefile          \
            src/ai/script/Makefile            \            src/ai/script/Makefile            \
            src/ai/tools/Makefile             \            src/ai/tools/Makefile             \
             src/georges/Makefile              \
            nel-config                        \            nel-config                        \
 ) )
  


Legend:
Removed from v.1.60 
changed lines
 Added in v.1.66