AIX Operating System
On the AIX operating system, the name of the library path environment variable is LIBPATH. Depending on whether you source the siebenv.csh or the siebenv.sh script, set the LIBPATH variable as follows:
siebenv.csh
if ($?LIBPATH) then setenv LIBPATH ${SIEBEL_ROOT}/lib:${SIEBEL_ROOT}/lib/odbc/merant:/$ORACLE_ HOME/lib:${MWHOME}/lib:${SQLANY}/lib:/usr/lib:${LIBPATH} else setenv LIBPATH ${SIEBEL_ROOT}/lib:${SIEBEL_ROOT}/lib/odbc/merant:/$ORACLE_ HOME/lib:${MWHOME}/lib:${SQLANY}/lib:/usr/lib endif
siebenv.sh
if [ a${LIBPATH} = ${LIBPATH}a ] then LIBPATH=${SIEBEL_ROOT}/lib:${SIEBEL_ROOT}/lib/odbc/merant:/$ORACLE_ HOME/lib:${MWHOME}/lib:${SQLANY}/lib:/usr/lib else LIBPATH=${SIEBEL_ROOT}/lib:${SIEBEL_ROOT}/lib/odbc/merant:/$ORACLE_ HOME/lib:${MWHOME}/lib:${SQLANY}/lib:/usr/lib:${LIBPATH} fi export LIBPATH