run configure to configure the source directory.
- --with-apxs=/usr/sbin/apxs
-
This is the full path to the apxs binary, or the
directory which contains the program. This program is
part of the Apache 1.3 and 2.0 installation.
The default is to search
/usr/bin/apxs
and
/usr/sbin/apxs
.
Specifying a directory here will search
$directory/apxs, $directory/bin/apxs, and
$directory/sbin/apxs
If you have more than one version of Apache installed,
you need to specify the correct apxs binary for the
one you wish to compile for.
- --with-mysql=/path/to/mysql
-
This is the directory to search for the
libmysqlclient
library and the
MySQL
headers.
The default is to search
/usr/include
,
/usr/include/mysql
,
/usr/local/include
, and
/usr/local/include/mysql
for
MySQL
headers.. And
/usr/lib
.
/usr/lib/mysql
,
/usr/local/lib
, and
/usr/local/lin/mysql
for the
MySQL
libraries.
Specifying this testargument will search
$directory/include and $directory/mysql for
MySQL
headers. And $directory/lib and $directory/lib/mysql
for
MySQL
libraries.
- --enable-ssl
-
Specifying this argument will enable the search for
mod_ssl and SSL headers, and if found will enable
compilation of SSL support into mod_log_sql. SSL
support is compiled into a separate module that can be
loaded after the main mod_log_sql.
- --with-ssl-inc=/usr/include/openssl
-
This is the path to the SSL toolkit header files that
were used to compile mod_ssl. If you want SSL support
you most likely need to specify this.
The default is to search
/usr/include
and
/usr/include/openssl
.
Specifying this argument will search that directory
for the SSL headers.
- --with-db-inc=/usr/include/db1
-
This argument is only needed when compiling SSL
support for Apache 1.3, and needs to be the directory
which contains the ndbm.h header file. You can find
this by using
$ locate ndbm.h
/usr/include/db1/ndbm.h
/usr/include/gdbm/ndbm.h
As far as I can tell, there is no difference as to
which you specify, but it should be the one that you
compiled mod_ssl with.
The default is
/usr/include/db1
, which should work on most systems.
- --disable-apachetest
-
This will disable the apache version test. However
there is a side affect if you specify this where I
will not be able to determine which version of Apache
you are compiling for. So don't specify this.. If you
are having troubles with the script detecting your
Apache version, then send a bug report along with your
system OS version and versions of related packages.
- --disable-mysqltest
-
This will disable the MySQL compile test. Specify this
if for some reason the test fail but you know you have
specified the correct directories. If mod_los_sql also
fails to compile report a bug along with your system
OS version and versions of related packages.