diff options
author | Joe Orton <jorton@apache.org> | 2004-03-26 10:58:34 +0100 |
---|---|---|
committer | Joe Orton <jorton@apache.org> | 2004-03-26 10:58:34 +0100 |
commit | 8f26402223dbafa8ec4bbcb721081f9fc05cdb08 (patch) | |
tree | 9889dc775153e28fc3bce8f521f00a4c30224548 /acinclude.m4 | |
parent | `build check-all all` (diff) | |
download | apache2-8f26402223dbafa8ec4bbcb721081f9fc05cdb08.tar.xz apache2-8f26402223dbafa8ec4bbcb721081f9fc05cdb08.zip |
* acinclude.m4 (APACHE_MODPATH_ADD): Give the convenience library a
less generic name; libtool 1.5 gets confused when linking libssl.la
against -lssl if libssl.la already exists in the cwd.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@103164 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'acinclude.m4')
-rw-r--r-- | acinclude.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/acinclude.m4 b/acinclude.m4 index b77199d6be..e256967fc2 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -171,7 +171,7 @@ AC_DEFUN(APACHE_MODPATH_ADD,[ if test -z "$module_standalone"; then if test -z "$2"; then # The filename of a convenience library must have a "lib" prefix: - libname="lib$1.la" + libname="libmod_$1.la" BUILTIN_LIBS="$BUILTIN_LIBS $modpath_current/$libname" modpath_static="$modpath_static $libname" cat >>$modpath_current/modules.mk<<EOF |