Hi folks,
I'm trying to build Apache 2.0.59 with the mod_auth_mysql module built in. The configure command I'm using is:
./configure --prefix=/usr/local/apache \ --with-mpm=prefork \ --enable-so \ --enable-cgi \ --enable-info \ --enable-rewrite \ --enable-speling \ --enable-usertrack \ --enable-deflate \ --enable-ssl \ --enable-mime-magic \ --enable-proxy \ --with-module=mod_auth_mysql:/src/mod_auth_mysql-3.0.0/mod_auth_mysql.c
Configure completes OK, but when I'm building the linker fails with the message:
.libs/modules.o(.data+0x48): undefined reference to `auth_mysql_module' .libs/modules.o(.data+0xe8): undefined reference to `auth_mysql_module' collect2: ld returned 1 exit status make[1]: *** [httpd] Error 1 make[1]: Leaving directory `/src/httpd-2.0.59' make: *** [all-recursive] Error 1
Any ideas what could be causing this?
auth_mysql_module is not something which is referenced in our code. Can you get a map so we can determine which module is referencing it?
Log in to post a comment.
Hi folks,
I'm trying to build Apache 2.0.59 with the mod_auth_mysql module built in. The configure command I'm using is:
./configure --prefix=/usr/local/apache \
--with-mpm=prefork \
--enable-so \
--enable-cgi \
--enable-info \
--enable-rewrite \
--enable-speling \
--enable-usertrack \
--enable-deflate \
--enable-ssl \
--enable-mime-magic \
--enable-proxy \
--with-module=mod_auth_mysql:/src/mod_auth_mysql-3.0.0/mod_auth_mysql.c
Configure completes OK, but when I'm building the linker fails with the message:
.libs/modules.o(.data+0x48): undefined reference to `auth_mysql_module'
.libs/modules.o(.data+0xe8): undefined reference to `auth_mysql_module'
collect2: ld returned 1 exit status
make[1]: *** [httpd] Error 1
make[1]: Leaving directory `/src/httpd-2.0.59'
make: *** [all-recursive] Error 1
Any ideas what could be causing this?
auth_mysql_module is not something which is referenced in our code. Can you get a map so we can determine which module is referencing it?