You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by bj...@locus.apache.org on 2000/03/03 15:19:26 UTC

cvs commit: apache-2.0/src/main config.m4

bjh         00/03/03 06:19:26

  Modified:    src/main config.m4
  Log:
  Look for crypt() in ufc.
  
  Revision  Changes    Path
  1.5       +7 -1      apache-2.0/src/main/config.m4
  
  Index: config.m4
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/main/config.m4,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- config.m4	1999/12/20 03:09:48	1.4
  +++ config.m4	2000/03/03 14:19:26	1.5
  @@ -16,7 +16,13 @@
    apache_have_crypt=1
   ], [
    AC_CHECK_LIB(c, crypt, [
  -  apache_have_crypt=1], [])
  +  apache_have_crypt=1
  + ], [
  +  AC_CHECK_LIB(ufc, crypt, [
  +   AC_ADD_LIBRARY(ufc) 
  +   apache_have_crypt=1
  +  ], [])
  + ])
   ])
   if test "$apache_have_crypt" = "1" ; then
       AC_DEFINE(HAVE_CRYPT,,[Define if this platform has crypt()])