]> granicus.if.org Git - apache/commitdiff
The possibility of a libenv module and a libenv system library (for
authorManoj Kasichainula <manoj@apache.org>
Sun, 5 Dec 1999 09:09:16 +0000 (09:09 +0000)
committerManoj Kasichainula <manoj@apache.org>
Sun, 5 Dec 1999 09:09:16 +0000 (09:09 +0000)
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

acinclude.m4

index b0cc3778a13119602ee3a18d5ed0041f401eda0a..104759b946115bdebba5fdb43f22eef6c2514489 100644 (file)
@@ -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