You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@httpd.apache.org by Divyank Turakhia <di...@directi.com> on 2002/04/19 22:24:26 UTC

Error will Compiling apache with ssl

Hi,

I am compiling apache 2.0.35 with the following options:
1) ./configure --prefix=/usr/local/apache2 --enable-auth-anon
--enable-auth-dbm --enable-so --enable-speling --enable-suexec
--with-suexec-caller=99 --with-suexec-docroot=/domains
--with-suexec-uidmin=500 --with-suexec-gidmin=500
--enable-static-support --enable-static-htpasswd
--enable-static-htdigest --enable-static-rotatelogs
--enable-static-logresolve --enable-static-htdbm --enable-static-ab
--enable-static-checkgid --with-ssl=../openssl-0.9.6c --enable-ssl
2) make

I am getting the following error:

make[3]: *** [mod_ssl.lo] Error 1
make[3]: Leaving directory `/usr/local/src/httpd-2.0.35/modules/ssl'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/usr/local/src/httpd-2.0.35/modules/ssl'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/usr/local/src/httpd-2.0.35/modules'
make: *** [all-recursive] Error 1

Can anyone let me know what is going wrong here???

Thanks,
Divyank




---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: Error will Compiling apache with ssl

Posted by Joshua Slive <jo...@slive.ca>.
Divyank Turakhia wrote:

> 
> I am getting the following error:
> 
> make[3]: *** [mod_ssl.lo] Error 1
> make[3]: Leaving directory `/usr/local/src/httpd-2.0.35/modules/ssl'

You're not actually reporting the real error here.  You need to look a 
few lines higher in the output.

Joshua.


---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


RE: Error will Compiling apache with ssl

Posted by Divyank Turakhia <di...@directi.com>.
Opps... Sorry abt tht

The error was that mod_ssl.h could not find pem.h, ssl.h etc:

In file included from mod_ssl.c:60:
mod_ssl.h:110:17: ssl.h: No such file or directory
In file included from mod_ssl.c:60:
mod_ssl.h:112:18: x509.h: No such file or directory
mod_ssl.h:113:17: pem.h: No such file or directory
mod_ssl.h:114:20: crypto.h: No such file or directory
mod_ssl.h:115:17: evp.h: No such file or directory
mod_ssl.h:116:18: rand.h: No such file or directory

so I copied *.h from /usr/local/src/openssl-0.9.6c/include/openssl/ to
/usr/local/src/httpd-2.0.35/modules/ssl and it installed without any
errors


Can someone help me with the following:
1) I want to use the perchild MPM. But don't know if this is still
stable or not. Can anyone tell me if they are using it successfully in a
production envt?

2) what advantage / disadvantage will I get by using
"--enable-static-support --enable-static-htpasswd
--enable-static-htdigest --enable-static-rotatelogs
--enable-static-logresolve --enable-static-htdbm --enable-static-ab
--enable-static-checkgid" while configuring my apache


Thanks,
Divyank


-----Original Message-----
From: Lee Fellows [mailto:lfellows@4lane.com] 
Sent: Saturday, April 20, 2002 2:07 AM
To: users@httpd.apache.org
Subject: Re: Error will Compiling apache with ssl


On Fri, 2002-04-19 at 16:24, Divyank Turakhia wrote:
> Hi,
> 
> I am compiling apache 2.0.35 with the following options:
> 1) ./configure --prefix=/usr/local/apache2 --enable-auth-anon 
> --enable-auth-dbm --enable-so --enable-speling --enable-suexec 
> --with-suexec-caller=99 --with-suexec-docroot=/domains 
> --with-suexec-uidmin=500 --with-suexec-gidmin=500 
> --enable-static-support --enable-static-htpasswd 
> --enable-static-htdigest --enable-static-rotatelogs 
> --enable-static-logresolve --enable-static-htdbm --enable-static-ab 
> --enable-static-checkgid --with-ssl=../openssl-0.9.6c --enable-ssl
> 2) make
> 
> I am getting the following error:
> 
> make[3]: *** [mod_ssl.lo] Error 1
> make[3]: Leaving directory `/usr/local/src/httpd-2.0.35/modules/ssl'
> make[2]: *** [all-recursive] Error 1
> make[2]: Leaving directory `/usr/local/src/httpd-2.0.35/modules/ssl'
> make[1]: *** [all-recursive] Error 1
> make[1]: Leaving directory `/usr/local/src/httpd-2.0.35/modules'
> make: *** [all-recursive] Error 1
> 
> Can anyone let me know what is going wrong here???

  Can you provide more of the compiler output?  Unless someone can make
a lucky guess, the output above does not tell us anything.  You got the
tail end of the report, but the error message appears somewhere higher
up in the report.


> 
> Thanks,
> Divyank
> 
> 
> 
> 
> ---------------------------------------------------------------------
> The official User-To-User support forum of the Apache HTTP Server 
> Project. See <URL:http://httpd.apache.org/userslist.html> for more 
> info. To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
> For additional commands, e-mail: users-help@httpd.apache.org
> 
> 



---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server
Project. See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org





---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: Error will Compiling apache with ssl

Posted by Lee Fellows <lf...@4lane.com>.
On Fri, 2002-04-19 at 16:24, Divyank Turakhia wrote:
> Hi,
> 
> I am compiling apache 2.0.35 with the following options:
> 1) ./configure --prefix=/usr/local/apache2 --enable-auth-anon
> --enable-auth-dbm --enable-so --enable-speling --enable-suexec
> --with-suexec-caller=99 --with-suexec-docroot=/domains
> --with-suexec-uidmin=500 --with-suexec-gidmin=500
> --enable-static-support --enable-static-htpasswd
> --enable-static-htdigest --enable-static-rotatelogs
> --enable-static-logresolve --enable-static-htdbm --enable-static-ab
> --enable-static-checkgid --with-ssl=../openssl-0.9.6c --enable-ssl
> 2) make
> 
> I am getting the following error:
> 
> make[3]: *** [mod_ssl.lo] Error 1
> make[3]: Leaving directory `/usr/local/src/httpd-2.0.35/modules/ssl'
> make[2]: *** [all-recursive] Error 1
> make[2]: Leaving directory `/usr/local/src/httpd-2.0.35/modules/ssl'
> make[1]: *** [all-recursive] Error 1
> make[1]: Leaving directory `/usr/local/src/httpd-2.0.35/modules'
> make: *** [all-recursive] Error 1
> 
> Can anyone let me know what is going wrong here???

  Can you provide more of the compiler output?  Unless someone
can make a lucky guess, the output above does not tell us anything.  You
got the tail end of the report, but the error message appears somewhere
higher up in the report.


> 
> Thanks,
> Divyank
> 
> 
> 
> 
> ---------------------------------------------------------------------
> The official User-To-User support forum of the Apache HTTP Server Project.
> See <URL:http://httpd.apache.org/userslist.html> for more info.
> To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
> For additional commands, e-mail: users-help@httpd.apache.org
> 
> 



---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org