I seem to be having a problem with the Zend bundled in php 4.3.1 and 4.3.2
here's my configure command line parameters:
./configure --with-apxs2=/usr/local/apache2/bin/apxs --with-ingres --with-openssl=/usr/local/ssl --with-pcre-regex=/usr/local/lib --disable-inline-optimization
this seems to work fine. It completes with no errors.
Here's the tail end of the ouput from "make"
/bin/sh /export/grega/php-4.3.2/libtool --silent --preserve-dup-deps --mode=compile gcc -IZend/ -I/export/grega/php-4.3.2/Zend/ -DPHP_ATOM_INC -I/export/grega/php-4.3.2/include -I/export/grega/php-4.3.2/main -I/export/grega/php-4.3.2 -I/usr/local/apache2/include -I/export/grega/php-4.3.2/Zend -I/usr/local/ssl/include -I/opt/OpenIngres/ingres/files -I/usr/local/lib -I/export/grega/php-4.3.2/ext/xml/expat -D_POSIX_PTHREAD_SEMANTICS -DSVR4 -DDEBUG -I/export/grega/php-4.3.2/TSRM -g -sun4 -DSVR4 -DDEBUG -I/hdy6/proj/savit -prefer-pic -c Zend/zend_ini_scanner.c -o Zend/zend_ini_scanner.lo
Zend/zend_ini_scanner.c: In function ini_lex':
Zend/zend_ini_scanner.c:954:yylineno' undeclared (first use in this function)
Zend/zend_ini_scanner.c:954: (Each undeclared identifier is reported only once
Zend/zend_ini_scanner.c:954: for each function it appears in.)
make: *** [Zend/zend_ini_scanner.lo] Error 1
I've read some other posts and tried the following:
installed libtool-1.5 and removed packaged libtool that comes with php and linked to /usr/local/bin/libtool (the 1.5 version)
installed bison-1.75
installed sed-4.0
installed gnu make 3.80
The gcc I'm using is 2.95
Is there any other info I need to give?
Thanks in advance!
Greg