home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.2J (Developer) / os42jdev.iso / NextDeveloper / Source / GNU / perl / Perl / hints / svr4.sh < prev    next >
Text File  |  1995-02-08  |  2KB  |  38 lines

  1. # svr4 hints, System V Release 4.x
  2. # Last modified 1995/01/28 by Tye McQueen, tye@metronet.com
  3. # Use Configure -Dcc=gcc to use gcc.
  4. case "$cc" in
  5. '') cc='/bin/cc'
  6.     test -f $cc || cc='/usr/ccs/bin/cc'
  7.     ;;
  8. esac
  9. # We include support for using libraries in /usr/ucblib, but the setting
  10. # of libswanted excludes some libraries found there.  You may want to
  11. # prevent "ucb" from being removed from libswanted and see if perl will
  12. # build on your system.
  13. ldflags='-L/usr/ccs/lib -L/usr/ucblib'
  14. ccflags='-I/usr/include -I/usr/ucbinclude'
  15. # Don't use problematic libraries:
  16. libswanted=`echo " $libswanted " | sed -e 's/ malloc / /'` # -e 's/ ucb / /'`
  17. # libmalloc.a - Probably using Perl's malloc() anyway.
  18. # libucb.a - Remove it if you have problems ld'ing.  We include it because
  19. #   it is needed for ODBM_File and NDBM_File extensions.
  20. if [ -r /usr/ucblib/libucb.a ]; then    # If using BSD-compat. library:
  21.     d_gconvert='undef'    # Unusuable under UnixWare 1.1 [use gcvt() instead]
  22.     # Use the "native" counterparts, not the BSD emulation stuff:
  23.     d_bcmp='undef' d_bcopy='undef' d_bzero='undef' d_safebcpy='undef'
  24.     d_index='undef' d_killpg='undef' d_getprior='undef' d_setprior='undef'
  25.     d_setlinebuf='undef' d_setregid='undef' d_setreuid='undef'
  26. fi
  27. d_suidsafe='define'    # "./Configure -d" can't figure this out easilly
  28. usevfork='false'
  29. cat <<'EOM' >&4
  30.  
  31. If you wish to use dynamic linking, you must use 
  32.     LD_LIBRARY_PATH=`pwd`; export LD_LIBRARY_PATH
  33. or
  34.     setenv LD_LIBRARY_PATH `pwd`
  35. before running make.
  36.  
  37. EOM
  38.