Diff for /pgsql/configure.in between versions 1.200 and 1.201

version 1.200, 2002/08/30 17:14:30 version 1.201, 2002/09/02 16:14:01
Line 381  PGAC_ARG_BOOL(with, java, no, [  --with- Line 381  PGAC_ARG_BOOL(with, java, no, [  --with-
 PGAC_PATH_ANT  PGAC_PATH_ANT
 if test -z "$ANT"; then  if test -z "$ANT"; then
   AC_MSG_ERROR([Ant is required to build Java components])    AC_MSG_ERROR([Ant is required to build Java components])
   fi
   if "$ANT" -version | sed q | egrep -v ' 1\.[[5-9]]| [[2-9]]\.' >/dev/null ; then
     AC_MSG_ERROR([Ant version >= 1.5 is required to build Java components])
 fi],  fi],
 [AC_MSG_RESULT(no)])  [AC_MSG_RESULT(no)])
 AC_SUBST(with_java)  AC_SUBST(with_java)
Line 835  esac Line 838  esac
 HPUXMATHLIB=""  HPUXMATHLIB=""
 case $host_cpu in  case $host_cpu in
   hppa1.1    hppa1.1
         if [[ -r /lib/pa1.1/libm.a ]] ; then          if test -r /lib/pa1.1/libm.a ; then
             HPUXMATHLIB="-L /lib/pa1.1 -lm"              HPUXMATHLIB="-L /lib/pa1.1 -lm"
         fi ;;          fi ;;
 esac  esac
Line 931  fi Line 934  fi
   
 dnl If we need to use "long long int", figure out whether nnnLL notation works.  dnl If we need to use "long long int", figure out whether nnnLL notation works.
   
 if [[ x"$HAVE_LONG_LONG_INT_64" = xyes ]] ; then  if test x"$HAVE_LONG_LONG_INT_64" = xyes ; then
   AC_TRY_COMPILE([    AC_TRY_COMPILE([
 #define INT64CONST(x)  x##LL  #define INT64CONST(x)  x##LL
 long long int foo = INT64CONST(0x1234567890123456);  long long int foo = INT64CONST(0x1234567890123456);

Removed from v.1.200  
changed lines
  Added in v.1.201


PostgreSQL CVSweb <[email protected]>