Trying to install PHP as a DSO with ORACLE support on SUSE 7.
Oracle 9.2.0
PHP 4.3
Apache 2.0.44
Apache and Oracle installed and working. I have defined the following:
ORACLE_SID
ORACLE_BASE
ORACLE_HOME
LD_LIBRARY_PATH
TNS_ADMIN
NLS_LANG
ORA_NLS33
ORACLE_OWNER
ORACLE_TERM
I have linked libclntsh.so.9.0 to libclntsh.so.8.0 in $ORACLE_HOME/lib/
ln -s libclntsh.so.9.0 libclntsh.so.8.0
Here is my configure options:
./configure --with-apxs2=/usr/local/apache/bin/apxs \
--with-mysql=/usr/local/mysql \
--with-oracle=/u01/app/oracle/product/9.2.0 \
--with-oci8=/u01/app/oracle/product/9.2.0 \
--with-gd --with-jpeg-dir=/usr/lib \
--with-png-dir=/usr/lib \
--with-freetype-dir=/usr/lib \
--with-zlib-dir=/usr/lib \
--enable-track-vars --enable-sockets \
--enable-trans-sid --enable-sigchild --enable-sysvsem
Configure runs fine but make fails with endless errors. Here are some of those errors:
/root/downloads/php-4.3.0/ext/oci8/oci8.c:5289: `OCI_TYPECODE_TABLE' undeclared (first use in this function)
/root/downloads/php-4.3.0/ext/oci8/oci8.c:5290: `OCI_TYPECODE_VARRAY' undeclared (first use in this function)
/root/downloads/php-4.3.0/ext/oci8/oci8.c:5297: request for member `in_call' in something not a structure or union
/root/downloads/php-4.3.0/ext/oci8/oci8.c:5297: request for member `in_call' in something not a structure or union
/root/downloads/php-4.3.0/ext/oci8/oci8.c:5297: parse error before ')' token
/root/downloads/php-4.3.0/ext/oci8/oci8.c:5297: request for member `in_call' in something not a structure or union
/root/downloads/php-4.3.0/ext/oci8/oci8.c:5310: request for member `in_call' in something not a structure or union
/root/downloads/php-4.3.0/ext/oci8/oci8.c:5310: request for member `in_call' in something not a structure or union
/root/downloads/php-4.3.0/ext/oci8/oci8.c:5310: parse error before ')' token
/root/downloads/php-4.3.0/ext/oci8/oci8.c:5310: request for member `in_call' in something not a structure or union
/root/downloads/php-4.3.0/ext/oci8/oci8.c:5323: request for member `in_call' in something not a structure or union
/root/downloads/php-4.3.0/ext/oci8/oci8.c:5323: request for member `in_call' in something not a structure or union
/root/downloads/php-4.3.0/ext/oci8/oci8.c:5323: request for member `pEnv' in something not a structure or union
/root/downloads/php-4.3.0/ext/oci8/oci8.c:5323: request for member `elem_ref' in something not a structure or union
/root/downloads/php-4.3.0/ext/oci8/oci8.c:5323: `OCI_DURATION_SESSION' undeclared (first use in this function)
/root/downloads/php-4.3.0/ext/oci8/oci8.c:5323: `OCI_TYPEGET_HEADER' undeclared (first use in this function)
/root/downloads/php-4.3.0/ext/oci8/oci8.c:5323: request for member `element_type' in something not a structure or union
/root/downloads/php-4.3.0/ext/oci8/oci8.c:5323: request for member `in_call' in something not a structure or union
/root/downloads/php-4.3.0/ext/oci8/oci8.c:5336: request for member `in_call' in something not a structure or union
/root/downloads/php-4.3.0/ext/oci8/oci8.c:5336: request for member `in_call' in something not a structure or union
/root/downloads/php-4.3.0/ext/oci8/oci8.c:5336: parse error before ')' token
/root/downloads/php-4.3.0/ext/oci8/oci8.c:5336: request for member `in_call' in something not a structure or union
/root/downloads/php-4.3.0/ext/oci8/oci8.c:5344: request for member `coll_typecode' in something not a structure or union
/root/downloads/php-4.3.0/ext/oci8/oci8.c:5358: request for member `in_call' in something not a structure or union
/root/downloads/php-4.3.0/ext/oci8/oci8.c:5358: request for member `in_call' in something not a structure or union
/root/downloads/php-4.3.0/ext/oci8/oci8.c:5358: request for member `pEnv' in something not a structure or union
/root/downloads/php-4.3.0/ext/oci8/oci8.c:5358: request for member `tdo' in something not a structure or union
/root/downloads/php-4.3.0/ext/oci8/oci8.c:5358: parse error before ')' token
/root/downloads/php-4.3.0/ext/oci8/oci8.c:5358: request for member `in_call' in something not a structure or union
/root/downloads/php-4.3.0/ext/oci8/oci8.c:5366: request for member `id' in something not a structure or union
make: *** [ext/oci8/oci8.lo] Error 1
This exact setup currently works fine with previous version of PHP(4.2.3)
Any help would be highly appreciated. Thanks