Diff for /rpl/Attic/configure between versions 1.30 and 1.31

version 1.30, 2010/07/31 10:34:15 version 1.31, 2010/08/06 15:27:40
Line 3211  GPP=gpp-2.24 Line 3211  GPP=gpp-2.24
 GNUPLOT=gnuplot-4.4.0  GNUPLOT=gnuplot-4.4.0
 FILE=file-5.03  FILE=file-5.03
 ICONV=libiconv-1.13.1  ICONV=libiconv-1.13.1
 SQLITE=sqlite-3.7.0  SQLITE=sqlite-3.7.0.1
 OPENSSL=openssl-1.0.0a  OPENSSL=openssl-1.0.0a
   
 ac_ext=c  ac_ext=c
Line 6083  fi Line 6083  fi
 if test ! -d "$srcdir"/tools/$SQLITE; then  if test ! -d "$srcdir"/tools/$SQLITE; then
     gunzip -c "$srcdir"/tools/$SQLITE.tar.gz | \      gunzip -c "$srcdir"/tools/$SQLITE.tar.gz | \
             (cd "$srcdir/tools" && tar -xf -)              (cd "$srcdir/tools" && tar -xf -)
       (cd "$srcdir/tools"/$SQLITE && gunzip -c ../$SQLITE.diff.gz | patch -p1)
 fi  fi
 if test ! -d tools/$OPENSSL; then  if test ! -d tools/$OPENSSL; then
     gunzip -c "$srcdir"/tools/$OPENSSL.tar.gz | \      gunzip -c "$srcdir"/tools/$OPENSSL.tar.gz | \
Line 8885  fi Line 8886  fi
 done  done
   
   
 ac_configure_args="$ac_configure_args --with-readline=builtin --disable-shared --enable-static"  
   
   
   
 subdirs="$subdirs tools/$NCURSES"  subdirs="$subdirs tools/$NCURSES"
Line 8915  else Line 8914  else
 fi  fi
   
   
 if test "x$with_openssl_arch" = xnone; then  if test $(uname) = "OS/2"; then
     (cd tools/$OPENSSL && ./config)      (cd tools/$OPENSSL && os2/OS2-EMX.cmd)
 elif test "x$with_openssl_arch" = xyes -o "x$with_openssl_arch" = xno; then  
     (cd tools/$OPENSSL && ./Configure)  
     as_fn_error "OS/COMP informations are required!" "$LINENO" 5  
 elif test "x$with_openssl_arch" = xlist; then  
     (cd tools/$OPENSSL && ./Configure)  
     as_fn_error "Please specify OS and Architecture" "$LINENO" 5  
 else  else
     (cd tools/$OPENSSL && ./Configure $with_openssl_arch)      if test "x$with_openssl_arch" = xnone; then
           (cd tools/$OPENSSL && ./config)
       elif test "x$with_openssl_arch" = xyes -o "x$with_openssl_arch" = xno; then
           (cd tools/$OPENSSL && ./Configure)
           as_fn_error "OS/COMP informations are required!" "$LINENO" 5
       elif test "x$with_openssl_arch" = xlist; then
           (cd tools/$OPENSSL && ./Configure)
           as_fn_error "Please specify OS and Architecture" "$LINENO" 5
       else
           (cd tools/$OPENSSL && ./Configure $with_openssl_arch)
       fi
 fi  fi
   
 if test "$MYGNUPLOT" = "yes"; then  if test "$MYGNUPLOT" = "yes"; then
Line 8997  DATE=$(env LC_ALL=C date +'%A %x, %X %Z' Line 9000  DATE=$(env LC_ALL=C date +'%A %x, %X %Z'
 case $OS in  case $OS in
   
     Darwin)      Darwin)
         EXPORT_DYNAMIC=-flat_namespace          EXPORT_DYNAMIC=-Wl,-flat_namespace
         NESTED_FUNCTIONS=-fnested-functions          NESTED_FUNCTIONS=-fnested-functions
         SEMAPHORES_NOMMES=-DSEMAPHORES_NOMMES          SEMAPHORES_NOMMES=-DSEMAPHORES_NOMMES
         CXXFLAGS="$CXXFLAGS -D_GLIBCXX_FULLY_DYNAMIC_STRING"          CXXFLAGS="$CXXFLAGS -D_GLIBCXX_FULLY_DYNAMIC_STRING"
           ac_configure_args="$ac_configure_args --with-readline=builtin \
                   --disable-shared --enable-static"
     break ;;      break ;;
   
     Cygwin)      Cygwin)
         EXPORT_DYNAMIC=--export-all-symbols          EXPORT_DYNAMIC=-Wl,--export-all-symbols
         NESTED_FUNCTIONS=          NESTED_FUNCTIONS=
         SEMAPHORES_NOMMES=-USEMAPHORES_NOMMES          SEMAPHORES_NOMMES=-USEMAPHORES_NOMMES
           ac_configure_args="$ac_configure_args --with-readline=builtin \
                   --disable-shared --enable-static"
     break ;;      break ;;
   
     AIX)      AIX)
         EXPORT_DYNAMIC=--export-dynamic          EXPORT_DYNAMIC=-Wl,--export-dynamic
         NESTED_FUNCTIONS=          NESTED_FUNCTIONS=
         SEMAPHORES_NOMMES=-DSEMAPHORES_NOMMES          SEMAPHORES_NOMMES=-DSEMAPHORES_NOMMES
           ac_configure_args="$ac_configure_args --with-readline=builtin \
                   --disable-shared --enable-static"
     break ;;      break ;;
   
       OS/2)
           MALLOC=
           OS=OS2
           FINAL_ENCODING=UTF-8
           NESTED_FUNCTIONS=
           EXPORT_DYNAMIC=-Zmap
           SEMAPHORES_NOMMES=-USEMAPHORES_NOMMES
           ac_configure_args="$ac_configure_args --without-readline \
                   --without-cairo --disable-shared --enable-static"
       break;;
   
     *)      *)
         EXPORT_DYNAMIC=--export-dynamic          EXPORT_DYNAMIC=-Wl,--export-dynamic
         NESTED_FUNCTIONS=          NESTED_FUNCTIONS=
         SEMAPHORES_NOMMES=-USEMAPHORES_NOMMES          SEMAPHORES_NOMMES=-USEMAPHORES_NOMMES
           ac_configure_args="$ac_configure_args --with-readline=builtin \
                   --disable-shared --enable-static"
     break ;;      break ;;
   
 esac  esac

Removed from v.1.30  
changed lines
  Added in v.1.31


CVSweb interface <joel.bertrand@systella.fr>