home *** CD-ROM | disk | FTP | other *** search
- :
- #
- # $Header: gensyslib.pp,v 6.11 90/01/22 14:01:17 lchan Exp $ gensyslib.pp Copyr (c) 1989 Oracle
- #
-
- #
- # Generate a list of system and vendor libraries that can be added at the
- # end of the link line. gensyslib writes a string to rdbms/lib/sysliblist
- # which is the list of libraies that have to be added to the link line.
- # syslibname will be 'cat'ed in all shipped makefiles.
- #
- # For network drivers, it checks osntab.c, for their presence.
- # If network driver is present in osntab.c, it checks for presence of
- # vendor libraries under /lib, and /usr/lib. If the first character of the
- # libray name is "/", then use the full pathname for checking the presence
- # of the library, and do not add "-l" when including it on the list.
- #
- # Port specific code could be added to gensyslib.sh to add system libraries
- # to the link line.
- #
- # Dependence: It depends on rdbms/lib/osntab.c
- # Usage: gensyslib
- #
- # Porting note: Please include additional network dirvers to the following
- # list that is writen to KEY_FILE with the following format:
- # Driver name in upper case:corresponding module in osntab.c:marketing name
- #
- # ${Drivername}LIB; the list of system libraries to be added to the link line
- # should be defined for new ports.
- #
-
- if [ -x $ORACLE_HOME/bin/gentcplib ]
- then
- TCPLIB="`gentcplib`"
- else
- TCPLIB=
- fi
-
- LU62LIB="lu62 sna"
- TCPTLILIB="nsl_s"
- STARLIB="nsl_s"
-
- KEY_FILE=tmp$$
-
- trap 'rm -f $KEY_FILE ; exit' 1 2 3 15
-
- cat <<!> $KEY_FILE
- TCP:osnttt:SQL*Net TCP/IP
- DNT:osndnt:SQL*Net DECnet
- NETEX:osnnetex:SQL*Net NETEX
- TCPTLI:osntlitcp:SQL*Net TCP/IP TLI
- STAR:osntlistar:SQL*Net STARLAN
- LU62:osnl62:SQL*Net APPC - LU6.2
- SPX:osntlispx:SQL*Net SPX/TLI
- !
- NETDRIVERS=`awk -F: '{print $1}' $KEY_FILE`
- #list of system libraries.
- SYSLIBNAMES=${DFL_SYSLIB-}
- INS_DRIVER= #List of installed drivers
-
- for net in $NETDRIVERS
- do
- OSN_NAME=`grep ${net}: $KEY_FILE | awk -F: '{print $2}'`
- MKTG_NAME=`grep ${net}: $KEY_FILE | awk -F: '{print $3}'`
-
- if [ "`grep $OSN_NAME $ORACLE_HOME/rdbms/lib/osntab.c 2>/dev/null`" != "" ]
- then
- NETLIBS=\$${net}LIB
- for slib in `eval "echo $NETLIBS"`
- do
- if [ "`echo $slib | grep '^/'`" = "" ] #if first char different from /
- then
- if [ ! -f /lib/lib${slib}.a -a ! -f /usr/lib/lib${slib}.a ] ; then
- echo ""
- echo "Cannot locate /lib/lib${slib}.a nor /usr/lib/lib${slib}.a."
- echo "Cannot install $MKTG_NAME diver."
- else
- SYSLIBNAMES="$SYSLIBNAMES -l${slib}"
- fi
- else # if library name starts with "/", it is a full pathname
- if [ ! -f $slib ] ; then
- echo "Cannot locate $slib."
- echo "Cannot install $MKTG_NAME diver."
- else
- SYSLIBNAMES="$SYSLIBNAMES $slib"
- fi
- fi
- done
-
- fi
- done
-
- rm -f $KEY_FILE
-
- cat <<!> $ORACLE_HOME/rdbms/lib/sysliblist
- $SYSLIBNAMES
- !
-
-