problem in apache2

xp10

New member
Joined
Oct 10, 2007
Messages
3
hi there

I am trying to install mod_unique_id with apache 2.2.6

I edit file configure.apache:

PHP:
nano -w /usr/local/directadmin/custombuild/configure/ap2/configure.apache

configure.apache file :
PHP:
#!/bin/sh
"./configure" \
        "--prefix=/etc/httpd" \
        "--exec-prefix=/etc/httpd" \
        "--bindir=/usr/bin" \
        "--sbindir=/usr/sbin" \
        "--sysconfdir=/etc/httpd/conf" \
        "--enable-so" \
        "--enable-dav" \
        "--enable-dav-fs" \
        "--enable-dav-lock" \
        "--enable-suexec" \
        "--enable-deflate" \
        "--enable-unique-id" \
        "--with-suexec-caller=apache" \
        "--with-suexec-docroot=/" \
        "--with-suexec-gidmin=100" \
        "--with-suexec-logfile=/var/log/httpd/suexec_log" \
        "--with-suexec-uidmin=100" \
        "--with-suexec-userdir=public_html" \
        "--with-suexec-bin=/usr/sbin/suexec" \
        "--with-included-apr" \
        "--includedir=/usr/include/apache" \
        "--libexecdir=/usr/lib/apache" \
        "--datadir=/var/www" \
        "--localstatedir=/var" \
        "--enable-logio" \
        "--enable-ssl" \
        "--enable-rewrite" \
        "--with-ssl=/usr" \
        "--enable-headers" \
        "--with-module=mod_unique_id"

and after that
PHP:
./build apache

the result was

PHP:
Making all in mod_unique_id
make[2]: Entering directory `/usr/local/directadmin/custombuild/httpd-2.2.6/modules/mod_unique_id'
make[3]: Entering directory `/usr/local/directadmin/custombuild/httpd-2.2.6/modules/mod_unique_id'
make[3]: *** No rule to make target `mod_mod_unique_id.lo', needed by `libmod_mod_unique_id.la'.  Stop.
make[3]: Leaving directory `/usr/local/directadmin/custombuild/httpd-2.2.6/modules/mod_unique_id'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/usr/local/directadmin/custombuild/httpd-2.2.6/modules/mod_unique_id'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/usr/local/directadmin/custombuild/httpd-2.2.6/modules'
make: *** [all-recursive] Error 1

the operation is CentOS 4.5

how can I solve this problem?

thanx:rolleyes:
 
If no one answers, it's because no one knows. A good response on a community support forum such as this one could take more than one day. Please do NOT reply to a thread simply to bring your previous post to the top of the list. It's bad netiquette.

Thanks.

Jeff
 
Back
Top