Skip to content
Snippets Groups Projects
Commit 924f4ab0 authored by Henrik (Grubba) Grubbström's avatar Henrik (Grubba) Grubbström
Browse files

Oracle 7.x compatibility.

Rev: src/modules/Oracle/configure.in:1.29
parent 884d54ce
No related branches found
No related tags found
No related merge requests found
#
# $Id: configure.in,v 1.28 2000/11/03 14:23:04 grubba Exp $
# $Id: configure.in,v 1.29 2000/11/10 13:04:26 grubba Exp $
#
# Configure script for the oracle module
#
......@@ -217,7 +217,12 @@ if test x$with_oracle = xyes; then
AC_MSG_CHECKING(for working Oracle libs)
AC_CACHE_VAL(pike_cv_working_oracle,[
AC_TRY_COMPILE([
#ifdef HAVE_OCI_H
#include <oci.h>
#else /* !HAVE_OCI_H */
#include <ocidfn.h>
#include <ociapr.h>
#endif /* HAVE_OCI_H */
],[
OCIInitialize(OCI_DEFAULT,0,0,0,0);
],pike_cv_working_oracle=yes,pike_cv_working_oracle=no)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment