Update of /cvsroot/boost/boost
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv2410

Modified Files:
        configure 
Log Message:
Make POSIX compliant

Index: configure
===================================================================
RCS file: /cvsroot/boost/boost/configure,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- configure   29 Aug 2006 22:12:34 -0000      1.6
+++ configure   12 Dec 2006 15:54:16 -0000      1.7
@@ -73,7 +73,7 @@
           do
               LIBS="$LIBS --with-$library"
 
-              if test $library == python; then
+              if test $library = python; then
                   requested_python=yes
               fi
           done
@@ -93,7 +93,7 @@
       do
           LIBS="$LIBS --without-$library"
 
-          if test $library == python; then
+          if test $library = python; then
               flag_no_python=yes
           fi
       done
@@ -175,14 +175,14 @@
 my_dir="."
 
 # Determine the toolset, if not already decided
-if test "x$TOOLSET" == x; then
+if test "x$TOOLSET" = x; then
   TOOLSET=`$my_dir/tools/jam/src/build.sh --guess-toolset`
 fi
 
 rm -f config.log
 
 # Build bjam
-if test "x$BJAM" == x; then
+if test "x$BJAM" = x; then
   echo -n "Building Boost.Jam with toolset $TOOLSET... "
   pwd=`pwd`
   cd "$my_dir/tools/jam/src" && ./build.sh "$TOOLSET" > config.log 2>&1
@@ -195,7 +195,7 @@
 # TBD: Turn BJAM into an absolute path
 
 # If there is a list of libraries 
-if test "x$flag_show_libraries" == xyes; then
+if test "x$flag_show_libraries" = xyes; then
   libraries=`$BJAM -d0 --show-libraries`
   cat <<EOF
 
@@ -213,27 +213,27 @@
 fi
 
 # Setup paths
-if test "x$EPREFIX" == x; then
+if test "x$EPREFIX" = x; then
   EPREFIX=$PREFIX
 fi
 
-if test "x$LIBDIR" == x; then
+if test "x$LIBDIR" = x; then
   LIBDIR="$EPREFIX/lib"
 fi
 
-if test "x$INCLUDEDIR" == x; then
+if test "x$INCLUDEDIR" = x; then
   INCLUDEDIR="$PREFIX/include"
 fi
 
 # Find Python
-if test "x$flag_no_python" == x; then
-    if test "x$PYTHON_VERSION" == x; then
+if test "x$flag_no_python" = x; then
+    if test "x$PYTHON_VERSION" = x; then
         echo -n "Detecting Python version... "
         PYTHON_VERSION=`$PYTHON -c "import sys; print (\"%d.%d\" % 
(sys.version_info[0], sys.version_info[1]))"`
         echo $PYTHON_VERSION
     fi
 
-    if test "x$PYTHON_ROOT" == x; then
+    if test "x$PYTHON_ROOT" = x; then
         echo -n "Detecting Python root... "
         PYTHON_ROOT=`$PYTHON -c "import sys; print sys.prefix"`
         echo $PYTHON_ROOT
@@ -244,8 +244,8 @@
 
 # Configure ICU
 echo -n "Unicode/ICU support for Boost.Regex?... "
-if test "x$flag_icu" == xyes; then
-  if test "x$ICU_ROOT" == x; then
+if test "x$flag_icu" = xyes; then
+  if test "x$ICU_ROOT" = x; then
     BJAM_CONFIG="$BJAM_CONFIG -sHAVE_ICU=1"
     echo "yes."
   else


-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Boost-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/boost-cvs

Reply via email to