home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a524 / 7.ddi / gensyslib < prev    next >
Encoding:
Text File  |  1991-09-22  |  2.8 KB  |  99 lines

  1. :
  2. # $Header: gensyslib.pp,v 6.11 90/01/22 14:01:17 lchan Exp $ gensyslib.pp Copyr (c) 1989 Oracle
  3.  
  4. #
  5. # Generate a list of system and vendor libraries that can be added at the
  6. # end of the link line. gensyslib writes a string to rdbms/lib/sysliblist
  7. # which is the list of libraies that have to be added to the link line.
  8. # syslibname will be 'cat'ed in all shipped makefiles.
  9. #
  10. # For network drivers, it checks osntab.c, for their presence.
  11. # If network driver is present in osntab.c, it checks for presence of 
  12. # vendor libraries under /lib, and /usr/lib. If the first character of the 
  13. # libray name is "/", then use the full pathname for checking the presence 
  14. # of the library, and do not add "-l"  when including it on the list.
  15. #
  16. # Port specific code could be added to gensyslib.sh to add system libraries
  17. # to the link line.
  18. #
  19. # Dependence: It depends on rdbms/lib/osntab.c
  20. # Usage: gensyslib
  21. #
  22. # Porting note: Please include additional network dirvers to the following
  23. # list that is writen to KEY_FILE with the following format:
  24. # Driver name in upper case:corresponding module in osntab.c:marketing name
  25. #
  26. # ${Drivername}LIB; the list of system libraries to be added to the link line
  27. # should be defined for new ports.
  28. #
  29.  
  30. if [ -x $ORACLE_HOME/bin/gentcplib ]
  31. then
  32.     TCPLIB="`gentcplib`"
  33. else
  34.     TCPLIB=
  35. fi
  36.  
  37. LU62LIB="lu62 sna"
  38. TCPTLILIB="nsl_s"
  39. STARLIB="nsl_s"
  40.  
  41. KEY_FILE=tmp$$
  42.  
  43. trap 'rm -f $KEY_FILE ; exit' 1 2 3 15
  44.  
  45. cat <<!> $KEY_FILE
  46. TCP:osnttt:SQL*Net TCP/IP
  47. DNT:osndnt:SQL*Net DECnet
  48. NETEX:osnnetex:SQL*Net NETEX
  49. TCPTLI:osntlitcp:SQL*Net TCP/IP TLI
  50. STAR:osntlistar:SQL*Net STARLAN
  51. LU62:osnl62:SQL*Net APPC - LU6.2
  52. SPX:osntlispx:SQL*Net SPX/TLI
  53. !
  54. NETDRIVERS=`awk -F: '{print $1}' $KEY_FILE`
  55. #list of system libraries.
  56. SYSLIBNAMES=${DFL_SYSLIB-}
  57. INS_DRIVER=             #List of installed drivers
  58.  
  59. for net in $NETDRIVERS
  60. do
  61.    OSN_NAME=`grep ${net}: $KEY_FILE | awk -F: '{print $2}'`
  62.    MKTG_NAME=`grep ${net}: $KEY_FILE | awk -F: '{print $3}'`
  63.  
  64.    if [ "`grep $OSN_NAME $ORACLE_HOME/rdbms/lib/osntab.c 2>/dev/null`" != "" ] 
  65.    then
  66.       NETLIBS=\$${net}LIB
  67.       for slib in `eval "echo $NETLIBS"`
  68.       do
  69.     if [ "`echo $slib | grep '^/'`" = "" ] #if first char different from /
  70.     then
  71.        if [ ! -f /lib/lib${slib}.a -a ! -f /usr/lib/lib${slib}.a ] ; then
  72.           echo ""
  73.            echo "Cannot locate /lib/lib${slib}.a nor /usr/lib/lib${slib}.a."
  74.            echo "Cannot install $MKTG_NAME diver."
  75.            else
  76.                SYSLIBNAMES="$SYSLIBNAMES -l${slib}"
  77.            fi
  78.     else        # if library name starts with "/", it is a full pathname
  79.        if [ ! -f $slib ] ; then
  80.            echo "Cannot locate $slib."
  81.            echo "Cannot install $MKTG_NAME diver."
  82.        else
  83.                SYSLIBNAMES="$SYSLIBNAMES $slib"
  84.        fi
  85.     fi
  86.       done
  87.  
  88.    fi
  89. done
  90.  
  91. rm -f $KEY_FILE
  92.  
  93. cat <<!> $ORACLE_HOME/rdbms/lib/sysliblist
  94. $SYSLIBNAMES
  95. !
  96.  
  97.