home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.2J (Developer) / os42jdev.iso / NextDeveloper / Source / GNU / perl / Perl / hints / sco_3.sh < prev    next >
Text File  |  1995-06-05  |  1KB  |  46 lines

  1. # sco_3.sh 
  2. # Courtesy of Joel Rosi-Schwartz <joel@ftechne.co.uk>
  3. # To use gcc, do     Configure -Dcc=gcc
  4. #
  5. # Try to use libintl.a since it has strcoll and strxfrm
  6. libswanted="intl $libswanted"
  7. # Try to use libdbm.nfs.a since it has dbmclose.
  8. if test -f /usr/lib/libdbm.nfs.a ; then
  9.     libswanted=`echo "dbm.nfs $libswanted " | sed -e 's/ dbm / /'`
  10. fi
  11. set X $libswanted
  12. shift
  13. libswanted="$*"
  14. # We don't want Xenix cross-development libraries
  15. glibpth=`echo $glibpth | sed -e 's! /usr/lib/386 ! !' -e 's! /lib/386 ! !'`
  16. xlibpth=''
  17. case "$cc" in
  18. gcc)
  19.     ccflags="$ccflags -U M_XENIX"
  20.     optimize="$optimize -O2"
  21.     ;;
  22. scocc)    ;;
  23.  
  24. *)
  25.     ccflags="$ccflags -W0 -U M_XENIX"
  26.     ;;
  27. esac
  28. i_varargs=undef
  29.  
  30. # I have received one report that nm extraction doesn't work if you're
  31. # using the scocc compiler.  This system had the following 'myconfig'
  32. # uname='xxx xxx 3.2 2 i386 '
  33. # cc='scocc', optimize='-O'
  34. usenm='false'
  35.  
  36. # If you want to use nm, you'll probably have to use nm -p.  The
  37. # following does that for you:
  38. nm_opt='-p'
  39.  
  40. # I have received one report that you can't include utime.h in
  41. # pp_sys.c.  Uncomment the following line if that happens to you:
  42. # i_utime=undef
  43.