Changeset 207 for trunk/configure.ac


Ignore:
Timestamp:
Jan 16, 2009, 11:52:26 PM (16 years ago)
Author:
katerina
Message:

Fix for ticket #134 (size may get truncated to INT_MAX)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/configure.ac

    r205 r207  
    12291229            if test -z "$PGSQL_DIR"; then
    12301230              for i in $pgsql_directory; do
     1231                if test -r $i/include/postgresql/libpq-fe.h; then
     1232                  PGSQL_INC_DIR=$i/include
     1233                  PGSQL_DIR=$i
     1234                fi
     1235              done
     1236            fi
     1237            if test -z "$PGSQL_DIR"; then
     1238              for i in $pgsql_directory; do
    12311239                if test -r $i/include/libpq-fe.h; then
    12321240                  PGSQL_INC_DIR=$i/include
     
    12391247              tmp=""
    12401248              for i in $pgsql_directory; do
    1241                 tmp="$tmp $i/include $i/include/pgsql"
     1249                tmp="$tmp $i/include $i/include/pgsql $i/include/postgresql"
    12421250              done
    12431251              FAIL_MESSAGE("PostgreSQL header file (libpq-fe.h)", $tmp)
    12441252            fi
    12451253
    1246             for i in lib lib/pgsql; do
     1254            for i in lib lib/pgsql lib/postgresql; do
    12471255                str="$PGSQL_DIR/$i/libpq.*"
    12481256                for j in `echo $str`; do
     
    12561264            if test -z "$PGSQL_LIB_DIR"; then
    12571265              for ff in $pgsql_directory; do
    1258                 for i in lib lib/pgsql; do
     1266                for i in lib lib/pgsql lib/postgresql; do
    12591267                  str="$ff/$i/libpq.*"
    12601268                  for j in `echo $str`; do
     
    12711279               tmp=""
    12721280               for i in $pgsql_directory; do
    1273                    tmp="$i/lib $i/lib/pgsql"
     1281                   tmp="$i/lib $i/lib/pgsql $i/lib/postgresql"
    12741282               done
    12751283               FAIL_MESSAGE("postgresql library libpq", $tmp)
     
    12871295            CPPFLAGS="$CPPFLAGS -I${PGSQL_INC_DIR}"
    12881296            AC_CHECK_HEADERS(pgsql/libpq-fe.h)
     1297            AC_CHECK_HEADERS(postgresql/libpq-fe.h)
    12891298          else
    12901299            pg_lib_dir=`${PGCONF} --libdir`
Note: See TracChangeset for help on using the changeset viewer.