|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[1998-02-12 00:24 UTC] jim
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 07:00:01 2025 UTC |
./configure --x-includes doesn't work as advertised so I can't include /usr/include/pgsql when compiling for postgress I hacked the ./configure.in to take care of this here's the cvs diff -c configure.in | more Index: configure.in =================================================================== RCS file: /repository/php3/configure.in,v retrieving revision 1.135 diff -c -r1.135 configure.in *** configure.in 1998/02/02 04:50:35 1.135 --- configure.in 1998/02/12 05:16:37 *************** *** 500,506 **** PGSQL_INCDIR=/usr/local/pgsql/include PGSQL_LIBDIR=/usr/local/pgsql/lib else ! PGSQL_INCDIR=$withval/include PGSQL_LIBDIR=$withval/lib fi PGSQL_INCLUDE=-I$PGSQL_INCDIR --- 500,510 ---- PGSQL_INCDIR=/usr/local/pgsql/include PGSQL_LIBDIR=/usr/local/pgsql/lib else ! if test -d $withval/include/pgsql ; then ! PGSQL_INCDIR=$withval/include/pgsql ! else ! PGSQL_INCDIR=$withval/include ! fi PGSQL_LIBDIR=$withval/lib fi PGSQL_INCLUDE=-I$PGSQL_INCDIR