Diff for /rpl/configure.ac between versions 1.23 and 1.24

version 1.23, 2012/04/07 16:39:05 version 1.24, 2012/04/08 18:03:09
Line 170  AC_ARG_WITH(sysroot, Line 170  AC_ARG_WITH(sysroot,
 if test "$with_sysroot" = "no" -o "$with_rpltools" = "yes"; then  if test "$with_sysroot" = "no" -o "$with_rpltools" = "yes"; then
     AC_MSG_ERROR([You have to specify sysroot path !])      AC_MSG_ERROR([You have to specify sysroot path !])
 else  else
     SYSROOT=$with_sysroot/usr/include      SYSROOT="-I$with_sysroot/usr/include"
 fi],[  fi],[
     SYSROOT=      SYSROOT=
     ]      ]
Line 467  if test ! -d "$srcdir"/tools/$NCURSES; t Line 467  if test ! -d "$srcdir"/tools/$NCURSES; t
             do TMP=$i; gunzip -c $i > ${TMP%.*};              do TMP=$i; gunzip -c $i > ${TMP%.*};
             done;              done;
             for i in ../$NCURSES*.sh;              for i in ../$NCURSES*.sh;
             do chmod 775 $i && ./$i;              do echo Applying script $i && chmod 775 $i && ./$i;
             done;              done;
             for i in ../$NCURSES*.patch.gz;              for i in ../$NCURSES*.patch.gz;
             do gunzip -c $i | patch -p1;              do echo Applying patch $i && gunzip -c $i | patch -p1;
             done);              done);
 fi  fi
 if test ! -d "$srcdir"/tools/$READLINE; then  if test ! -d "$srcdir"/tools/$READLINE; then
Line 807  fi Line 807  fi
 if test "$MYSQL_SUPPORT" = "-DMYSQL_SUPPORT"; then  if test "$MYSQL_SUPPORT" = "-DMYSQL_SUPPORT"; then
     MYSQL_LIB=no      MYSQL_LIB=no
   
   
     if test $MYSQL_LIB = no; then      if test $MYSQL_LIB = no; then
         AC_MSG_CHECKING(for libmysql libraries in $libMySQLlib)          AC_MSG_CHECKING(for libmysql libraries in $libMySQLlib)
         saved_LIBS="$LIBS"          saved_LIBS="$LIBS"
Line 1316  case $HOST in Line 1315  case $HOST in
         ARCH=i386          ARCH=i386
     break ;;      break ;;
   
       arm-unknown-linux-gnueabi)
           ARCH=armel
       break;;
   
     *)      *)
         ARCH=unknown          ARCH=unknown
     break ;;      break ;;
Line 1387  if test $RECURSIVE = yes; then Line 1390  if test $RECURSIVE = yes; then
     AC_CONFIG_SUBDIRS(tools/$SIGSEGV)      AC_CONFIG_SUBDIRS(tools/$SIGSEGV)
 fi  fi
   
   if test $MYSQL_LIB = "yes" -o $POSTGRESQL_LIB = "yes"; then
       ZLIB=-lz
   else
       ZLIB=
   fi
   
   AC_SUBST(ZLIB)
   
 AC_CONFIG_FILES(Makefile)  AC_CONFIG_FILES(Makefile)
 AC_CONFIG_FILES(COPYING)  AC_CONFIG_FILES(COPYING)
 AC_CONFIG_FILES(tools/Makefile)  AC_CONFIG_FILES(tools/Makefile)

Removed from v.1.23  
changed lines
  Added in v.1.24


CVSweb interface <joel.bertrand@systella.fr>