
www.Usenet.com
| <-- __Chronological__ --> | <-- __Thread__ --> |
for the archives.... * Derrick D. Daugherty <[EMAIL PROTECTED]>: > ehlo all [snip] > I've seen posts of similar issues with an apparent fix from metalink or > from suse's oracle docs. Our dba won't share her metalink login w/ me > and the suse doc seems to be long gone. > > Basically the system has issues with mathcalls.h which in an archived > post was fixed with this magical pcscfg.cfg from suse or metalink. [snip] > [EMAIL PROTECTED]:~/Phase1b/zone/Rater 1 $]- cat > /home/oracle/app/oracle/product/816/precomp/admin/pcscfg.cfg > sys_include=($ORACLE_HOME/precomp/public, > $ORACLE_HOME/precomp/syshdr, > /usr/lib/gcc-lib/i386-linux/2.95.4/include, > /usr/include) > include=($ORACLE_HOME/precomp/public) > include=($ORACLE_HOME/precomp/syshdr) > include=($ORACLE_HOME/rdbms/demo) > include=($ORACLE_HOME/rdbms/public) > include=($ORACLE_HOME/network/public) > include=($ORACLE_HOME/plsql/public) > ltype=short > > (sys_include line wrapped to aide readability) yeeesh, finaly found a clue in a german post. the pcscfg.cfg won't expand the variables out. so you can't use $ORACLE_HOME, it must be the full path. this did the trick. (sys_include should be all one line) [EMAIL PROTECTED]:~/app/oracle/product/816/precomp/admin $]- cat pcscfg.cfg sys_include=(/home/oracle/app/oracle/product/816/precomp/syshdr, /home/oracle/app/oracle/product/816/precomp/public, /usr/lib/gcc-lib/i386-linux/2.95.4/include, /usr/include, /usr/include/linux) include=(/home/oracle/app/oracle/product/816/precomp/public) include=(/home/oracle/app/oracle/product/816/precomp/syshdr) include=(/home/oracle/app/oracle/product/816/rdbms/demo) include=(/home/oracle/app/oracle/product/816/rdbms/public) include=(/home/oracle/app/oracle/product/816/network/public) include=(/home/oracle/app/oracle/product/816/plsql/public) ltype=short take care, ^D -- I like patterns
| <-- __Chronological__ --> | <-- __Thread__ --> |