Java Mailing List Archive

http://www.apache-httpd.com/

Home » users.httpd »

[users@httpd] Configure Options Not Recognized

Brad Isbell

2008-07-08

Replies: Find Java Web Hosting

Author LoginPost Reply
I'm trying to compile apache (httpd-2.2.9) with ssl support on CentOS 4.6.

I run:
  # ./configure --prefix=/opt/apache2 --enable-ssl
and I see:
   configure: WARNING: Unrecognized options: --enable-ssl

So I figure maybe I would just enable all the modules with this command:
   # ./configure --prefix=/opt/apache2 --enable-modules=all
and I see:
   configure: WARNING: Unrecognized options: --enable-modules


In order to configure ssl support I had to modify the configure script
and make the following change:

  if test "${enable_ssl+set}" = set; then
    enableval=$enable_ssl
  else
    enable_ssl=no               <----- I change this to
enable_ssl=yes
  fi

This last one seemed to work because after I run make I find the
./modules/ssl directory which contains, among other files, a file called
mod_ssl.c

I think this is what I want, but what am I doing wrong with the original
configure commands?



---------------------------------------------------------------------
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@(protected)
 "  from the digest: users-digest-unsubscribe@(protected)
For additional commands, e-mail: users-help@(protected)

©2008 apache-httpd.com - Jax Systems, LLC, U.S.A.