<html><body>
<p>Hi everyone,</p>
<p>I've tried to compile the oracle plugin with a more recent oracle client - which as this commit suggests didn't exist at the time the configure script was made:</p>
<p>commit a737ed7416823444715e5987261cbdda7cd571e7<br />Author: Florian Forster <octo@noris.net><br />Date: Tue Oct 7 15:38:24 2008 +0200<br /><br /> Build system: Add a check for the OCI interface and add the oracle plugin.</p>
<p>Now it seems, oracle 11 has a different path layout, and needs not just libclntsh but also <code class="jive-code">libnnz11</code></p>
<p>my quickhack was simply to sed this into the configure;</p>
<p>however, this part of the source suggests that there was a more smart way with the $ORACLE_HOME/lib/ldflags: <br />if test "x$ORACLE_HOME" != "x"<br />then<br /> with_oracle_cppflags="-I$ORACLE_HOME/rdbms/public"<br /><br /> if test -e "$ORACLE_HOME/lib/ldflags"<br /> then<br /> with_oracle_libs=`cat "$ORACLE_HOME/lib/ldflags"`<br /> fi<br /> #with_oracle_libs="-L$ORACLE_HOME/lib $with_oracle_libs -lclntsh"<br /> with_oracle_libs="-L$ORACLE_HOME/lib -lclntsh"<br />fi</p>
<p>whats the best way to move forward here? get the version with the link file again? detect for libnz11?</p>
<p> </p>
<p>Cheers,</p>
<p>Wilfried Goesgens</p>
</body></html>