home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #1 / NN_1993_1.iso / spool / gnu / utils / bug / 2363 < prev    next >
Encoding:
Text File  |  1993-01-09  |  1.0 KB  |  38 lines

  1. Newsgroups: gnu.utils.bug
  2. Path: sparky!uunet!cis.ohio-state.edu!dekk.pvv.unit.no!jorgens
  3. From: jorgens@dekk.pvv.unit.no
  4. Subject: Small addition for autoconf Ver. 1.2
  5. Message-ID: <9301091832.AA08006@dekk.pvv.unit.no>
  6. Sender: gnulists@ai.mit.edu
  7. Organization: GNUs Not Usenet
  8. Distribution: gnu
  9. Date: Sat, 9 Jan 1993 08:32:12 GMT
  10. Approved: bug-gnu-utils@prep.ai.mit.edu
  11. Lines: 25
  12.  
  13. This a little addition for autoconf.
  14.  
  15. The addition is needed for Dolphin machines. It consists of a test for
  16. a library which i usefull if programs is using host/uid queries.
  17.  
  18. Kjetil Wiekhorst J{\o}rgensen
  19.   <jorgens@pvv.unit.no>
  20.  
  21. diff -crN autoconf-1.2/acspecific.m4 autoconf-1.2-mod/acspecific.m4
  22. *** autoconf-1.2/acspecific.m4    Wed Oct 14 18:42:10 1992
  23. --- autoconf-1.2-mod/acspecific.m4    Sat Jan  9 18:49:15 1993
  24. ***************
  25. *** 720,722 ****
  26. --- 720,729 ----
  27.   test -n "$SEQUENT" && test -f /usr/lib/libseq.a &&
  28.     LIBS="$LIBS -lseq"
  29.   ])dnl
  30. + dnl
  31. + define(AC_DOLPHIN_YPSEC,
  32. + [echo checking for Dolphin libypsec
  33. + if test -f /lib/libypsec.a; then
  34. +   LIBS="$LIBS -lypsec"
  35. + fi
  36. + ])dnl
  37.  
  38.