04-15-04 01:38 AM
I'm trying to compile Apache httpd-2.0.48 on Red Hat Enterprise Linux
AS, version 3. The make chugs along for a bit then bombs in the apr
directory with libtool complaining. The relevant output of make
starts with the following:
make[3]: Entering directory `/usr/local/src/httpd-2.0.48/srclib/apr'
/bin/sh /usr/local/src/httpd-2.0.48/srclib/apr/libtool --silent --mode=link
gcc -pthread -O3 -pipe -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_XOPEN_SOURC
E=500 -D_BSD_SOURCE -D_SVID_SOURCE -D_GNU_SOURCE -I./include -I../include -v
ersion-info -o libapr-.la
-rpath /local_a/servers/www/lib
That line also has lots of files ending in .lo on it, which I've left
off here. The error following this line is:
libtool: link: you must specify an output file
Try `libtool --help --mode=link' for more information.
I don't understand why libtool is complaining; there's a -o flag
there. Before I do the make I'm running configure with the following
shell script:
sh configure \
--prefix=/local_a/www \
--enable-modules="most" \
--enable-so \
--enable-cgi \
--enable-include \
--enable-info \
--enable-ssl \
--enable-status \
--disable-auth_anon \
--disable-auth_dbm \
--disable-autoindex \
--disable-cern_meta \
--disable-cgid \
--disable-dav \
--disable-dav_fs \
--disable-deflate \
--disable-env \
--disable-headers \
--disable-proxy \
--disable-speling \
--disable-unique_id \
--disable-userdir \
--disable-usertrack \
--with-mpm=prefork
[ Post a follow-up to this message ]
|