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

Diff for /code/nelns/configure.in between version 1.5 and 1.6

version 1.5, 2001/08/07 12:58:26 version 1.6, 2001/08/08 10:23:32
Line 69 
Line 69 
  
 dnl Ask user for path to the STLport files location dnl Ask user for path to the STLport files location
 AC_ARG_WITH( stlport, AC_ARG_WITH( stlport,
     [  --with-stlport=<path>   path to the STLPort install files directory.     [  --with-stlport=<path>   path to the STLPort install directory.
                           e.g. /usr/local/stlport]                           e.g. /usr/local/stlport]
 ) )
  
 AC_ARG_WITH( stlport-include, AC_ARG_WITH( stlport-include,
     [  --with-stlport-include=<path>     [  --with-stlport-include=<path>
                           path to the STLPort header files directory.                           path to the STLPort header files directory.
                           e.g. /usr/local/stlport/include]                           e.g. /usr/local/stlport/stlport]
 ) )
  
 AC_ARG_WITH( stlport-lib, AC_ARG_WITH( stlport-lib,
Line 98 
Line 98 
     then     then
         AC_MSG_RESULT(using STLPort files located in $with_stlport)         AC_MSG_RESULT(using STLPort files located in $with_stlport)
  
         STLPORT_CFLAGS="$with_stlport/include"         STLPORT_CFLAGS="-I$with_stlport/stlport"
         STLPORT_LIB="$with_stlport/lib"         STLPORT_LIB="-L$with_stlport/lib"
     fi     fi
 else else
     no_stlport="no"     no_stlport="no"
Line 109 
Line 109 
 if test -z "$no_stlport" -a "$with_stlport_include" if test -z "$no_stlport" -a "$with_stlport_include"
 then then
     AC_MSG_RESULT(using STLPort header files located in $with_stlport_include)     AC_MSG_RESULT(using STLPort header files located in $with_stlport_include)
     STLPORT_CFLAGS="$with_stlport_include"     STLPORT_CFLAGS="-I$with_stlport_include"
 fi fi
  
 if test -z "$no_stlport" -a  "$with_stlport_lib" if test -z "$no_stlport" -a  "$with_stlport_lib"
 then then
     AC_MSG_RESULT(using STLPort library files located in $with_stlport_lib)     AC_MSG_RESULT(using STLPort library files located in $with_stlport_lib)
     STLPORT_LIB="$with_stlport_lib"     STLPORT_LIB="i-L$with_stlport_lib"
 fi fi
  
  
Line 213 
Line 213 
      
     if test X"$STLPORT_CFLAGS" != X     if test X"$STLPORT_CFLAGS" != X
     then     then
         CXXFLAGS="-I$STLPORT_CFLAGS $CXXFLAGS"         CXXFLAGS="$STLPORT_CFLAGS $CXXFLAGS"
     fi     fi
  
     if test X"$STLPORT_LIB" != X     if test X"$STLPORT_LIB" != X
     then     then
         LIBS="-L$STLPORT_LIB $LIBS -lstlport_gcc"         LIBS="$STLPORT_LIB $LIBS -lstlport_gcc"
     fi     fi
  
     _CPPFLAGS="$CPPFLAGS"     _CPPFLAGS="$CPPFLAGS"


Legend:
Removed from v.1.5 
changed lines
 Added in v.1.6