Diff for /rpl/Attic/configure between versions 1.12 and 1.15

version 1.12, 2010/03/18 21:42:54 version 1.15, 2010/04/07 07:16:10
Line 768  enable_profile Line 768  enable_profile
 enable_final_run_path  enable_final_run_path
 with_mysql  with_mysql
 with_postgresql  with_postgresql
   with_openssl_arch
 '  '
       ac_precious_vars='build_alias        ac_precious_vars='build_alias
 host_alias  host_alias
Line 1438  Optional Packages: Line 1439  Optional Packages:
   --with-x                use the X Window System    --with-x                use the X Window System
   --with-mysql=PATH         specify directory for installed mysql    --with-mysql=PATH         specify directory for installed mysql
   --with-postgresql=PATH    specify directory for installed postgresql    --with-postgresql=PATH    specify directory for installed postgresql
     --with-openssl-arch=ARCH  specify os and compiler for openssl (ARCH or list)
   
 Some influential environment variables:  Some influential environment variables:
   CC          C compiler command    CC          C compiler command
Line 3199  ac_config_headers="$ac_config_headers rp Line 3201  ac_config_headers="$ac_config_headers rp
 NCURSES=ncurses-5.7-20100206  NCURSES=ncurses-5.7-20100206
 READLINE=readline-6.1  READLINE=readline-6.1
 UNITS=units-1.87  UNITS=units-1.87
 GSL=gsl-1.13  GSL=gsl-1.14
 GPP=gpp-2.24  GPP=gpp-2.24
 GNUPLOT=gnuplot-4.2.6  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.6.22  SQLITE=sqlite-3.6.23.1
 OPENSSL=openssl-0.9.8m  OPENSSL=openssl-1.0.0
   
 ac_ext=c  ac_ext=c
 ac_cpp='$CPP $CPPFLAGS'  ac_cpp='$CPP $CPPFLAGS'
Line 5838  if test "${enable_final_encoding+set}" = Line 5840  if test "${enable_final_encoding+set}" =
   enableval=$enable_final_encoding;    enableval=$enable_final_encoding;
 if test "$enableval" = "no"; then  if test "$enableval" = "no"; then
     FINAL_ENCODING="\$(shell locale charmap | \      FINAL_ENCODING="\$(shell locale charmap | \
         $(AWK) '/\=/ { print \$\$3;} !/\=/ { print \$\$1;}')"          \$(AWK) '/\=/ { print \$\$3;} !/\=/ { print \$\$1;}')"
 else  else
     FINAL_ENCODING="$enable_final_encoding"      FINAL_ENCODING="$enable_final_encoding"
 fi  fi
 else  else
   FINAL_ENCODING="\$(shell locale charmap | \    FINAL_ENCODING="\$(shell locale charmap | \
     $(AWK) '/\=/ { print \$\$3;} !/\=/ { print \$\$1;}')"      \$(AWK) '/\=/ { print \$\$3;} !/\=/ { print \$\$1;}')"
 fi  fi
   
   
Line 6061  if test ! -d "$srcdir"/tools/$SQLITE; th Line 6063  if test ! -d "$srcdir"/tools/$SQLITE; th
 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 | \
             (cd tools && tar -xf - && cd $OPENSSL && ./config)              (cd tools && tar -xf -)
 fi  fi
   
 # Extract the first word of "libtoolize", so it can be a program name with args.  # Extract the first word of "libtoolize", so it can be a program name with args.
Line 9028  subdirs="$subdirs tools/$ICONV" Line 9030  subdirs="$subdirs tools/$ICONV"
   
 subdirs="$subdirs tools/$SQLITE"  subdirs="$subdirs tools/$SQLITE"
   
 tools/$OPENSSL/config  
   
   # Check whether --with-openssl_arch was given.
   if test "${with_openssl_arch+set}" = set; then :
     withval=$with_openssl_arch;
   else
     with_openssl_arch=none
   fi
   
   
   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
   
 if test "$MYGNUPLOT" = "yes"; then  if test "$MYGNUPLOT" = "yes"; then
     if test ! -d "$srcdir"/tools/$GNUPLOT; then      if test ! -d "$srcdir"/tools/$GNUPLOT; then

Removed from v.1.12  
changed lines
  Added in v.1.15


CVSweb interface <joel.bertrand@systella.fr>