summaryrefslogtreecommitdiff
path: root/acinclude.m4
diff options
context:
space:
mode:
authorManoj Kasichainula <manoj@apache.org>1999-12-05 09:09:16 +0000
committerManoj Kasichainula <manoj@apache.org>1999-12-05 09:09:16 +0000
commita653c44bc8ed7b9d31a2fb60e102b046334ec58b (patch)
treed9798afd345d0ad5f6bdaf611ca13918d089699d /acinclude.m4
parent869a58d8f701bbd9ef228b40186fa87f07763152 (diff)
downloadhttpd-a653c44bc8ed7b9d31a2fb60e102b046334ec58b.tar.gz
The possibility of a libenv module and a libenv system library (for
example) irks me. Take a page from PHP and make the module's library names unique. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@84224 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'acinclude.m4')
-rw-r--r--acinclude.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index b0cc3778a1..104759b946 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -12,8 +12,8 @@ AC_DEFUN(APACHE_MODULE,[
MOD_SUBDIRS="$MOD_SUBDIRS $1"
if test "$2" != "shared" -a "$2" != "yes"; then
libname=$(basename $1)
- _extlib="lib${libname}.a"
- MOD_LTLIBS="$MOD_LTLIBS modules/$1/lib${libname}.la"
+ _extlib="libapachemod_${libname}.a"
+ MOD_LTLIBS="$MOD_LTLIBS modules/$1/libapachemod_${libname}.la"
MOD_LIBS="$MOD_LIBS $1/$_extlib"
MOD_STATIC="$MOD_STATIC $1"
else