You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by je...@apache.org on 2002/09/09 23:37:57 UTC

cvs commit: httpd-2.0 CHANGES acinclude.m4

jerenkrantz    2002/09/09 14:37:57

  Modified:    .        CHANGES acinclude.m4
  Log:
  Update OpenSSL detection to work on Darwin.
  
  Submitted by:	Sander Temme <sc...@covalent.net>
  Reviewed by:	Dirk, Justin
  
  Revision  Changes    Path
  1.918     +3 -0      httpd-2.0/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/CHANGES,v
  retrieving revision 1.917
  retrieving revision 1.918
  diff -u -u -r1.917 -r1.918
  --- CHANGES	6 Sep 2002 16:47:34 -0000	1.917
  +++ CHANGES	9 Sep 2002 21:37:56 -0000	1.918
  @@ -1,5 +1,8 @@
   Changes with Apache 2.0.41
   
  +  *) Update OpenSSL detection to work on Darwin.
  +     [Sander Temme <sc...@covalent.net>]
  +
     *) Update the xslt and css to give the documentation a more
        modern style.
        [Andr� Malo <nd...@perlig.de>, Gernot Winkler <gr...@o3media.de>]
  
  
  
  1.131     +1 -1      httpd-2.0/acinclude.m4
  
  Index: acinclude.m4
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/acinclude.m4,v
  retrieving revision 1.130
  retrieving revision 1.131
  diff -u -u -r1.130 -r1.131
  --- acinclude.m4	19 Aug 2002 07:33:45 -0000	1.130
  +++ acinclude.m4	9 Sep 2002 21:37:57 -0000	1.131
  @@ -461,7 +461,7 @@
     ap_ssltk_libdir=""
     for p in $ap_ssltk_base/lib /usr/local/openssl/lib \
              /usr/local/ssl/lib /usr/local/lib /usr/lib /lib /usr/lib64; do
  -    if test -f "$p/libssl.a" -o -f "$p/libssl.so"; then
  +    if test -f "$p/libssl.a" -o -f "$p/libssl.so" -o -f "$p/libssl.dylib"; then
         ap_ssltk_libdir="$p"
         break
       fi