On Thu, Apr 20, 2000, Schouw, Lars wrote:

> Please change the configure.bat file for Winsucks.
> Like this in the distribution. I am using openssl 0.9.5a and
> mod_ssl-2.6.3-1.3.12
> #
> #   check for OpenSSL
> #
> if (not -f "$ssl\\inc32\\openssl\\ssl.h"    or 
>     not -f "$ssl\\out32dll\\libeay32.lib" or 
>     not -f "$ssl\\out32dll\\ssleay32.lib"    ) {

I've changed it now this way:

Index: configure.bat
===================================================================
RCS file: /e/modssl/cvs/mod_ssl/pkg.mod_ssl/configure.bat,v
retrieving revision 1.47
diff -u -d -r1.47 configure.bat
--- configure.bat       2000/01/26 08:07:42     1.47
+++ configure.bat       2000/04/21 11:49:10
@@ -183,9 +183,15 @@
 #
 #   check for OpenSSL
 #
-if (not -f "$ssl\\include\\openssl\\ssl.h"    or 
-    not -f "$ssl\\lib\\libeay32.lib" or 
-    not -f "$ssl\\lib\\ssleay32.lib"    ) {
+if (not ((    -f "$ssl\\include\\openssl\\ssl.h" 
+          and -f "$ssl\\lib\\libeay32.lib" 
+          and -f "$ssl\\lib\\ssleay32.lib"      ) or
+         (    -f "$ssl\\inc32\\openssl\\ssl.h" 
+          and -f "$ssl\\out32dll\\libeay32.lib" 
+          and -f "$ssl\\out32dll\\ssleay32.lib"      ) or
+         (    -f "$ssl\\inc32\\openssl\\ssl.h" 
+          and -f "$ssl\\out32lib\\libeay32.lib" 
+          and -f "$ssl\\out32lib\\ssleay32.lib"      ))) {
     print STDERR "Error: Cannot find OpenSSL source or install tree under $ssl\n";
     print STDERR "Hint:  Please specify location via --with-ssl=DIR\n";
     exit(1);

                                       Ralf S. Engelschall
                                       [EMAIL PROTECTED]
                                       www.engelschall.com
______________________________________________________________________
Apache Interface to OpenSSL (mod_ssl)                   www.modssl.org
User Support Mailing List                      [EMAIL PROTECTED]
Automated List Manager                            [EMAIL PROTECTED]

Reply via email to