HP-UX Operating System

On the HP-UX operating system, the name of the library path environment variable is SHLIB_PATH. Depending on whether you source the siebenv.csh or the siebenv.sh script, set the SHLIB_PATH variable as follows:

  • siebenv.csh

    if ($?SHLIB_PATH) then
    setenv SHLIB_PATH 
    ${SIEBEL_ROOT}/lib:${SIEBEL_ROOT}/lib/odbc/merant:/$ORACLE_
    HOME/lib:${MWHOME}/lib:${SQLANY}/lib:/usr/lib:${SHLIB_PATH}
    else
    setenv SHLIB_PATH 
    ${SIEBEL_ROOT}/lib:${SIEBEL_ROOT}/lib/odbc/merant:/$ORACLE_
    HOME/lib:${MWHOME}/lib:${SQLANY}/lib:/usr/lib
    endif
    
  • siebenv.sh

    if [ a${SHLIB_PATH} = ${SHLIB_PATH}a ]
    then
    SHLIB_PATH=${SIEBEL_ROOT}/lib:${SIEBEL_ROOT}/lib/odbc/merant:/$ORACLE_
    HOME/lib:${MWHOME}/lib:${SQLANY}/lib:/usr/lib
    else
    SHLIB_PATH=${SIEBEL_ROOT}/lib:${SIEBEL_ROOT}/lib/odbc/merant:/$ORACLE_
    HOME/lib:${MWHOME}/lib:${SQLANY}/lib:/usr/lib:${SHLIB_PATH}
    fi
    export SHLIB_PATH