diff options
author | Sascha Schumann <sas@php.net> | 1999-10-07 10:03:24 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 1999-10-07 10:03:24 +0000 |
commit | 712105cd5d74b21a2c338c8d72393a31274d0fc5 (patch) | |
tree | 6876f74bd3bed764b127f45135a19e1a90d89e74 /configure.in | |
parent | 601b837c56f73b63768dfef0723a290ad39f3c43 (diff) | |
download | php-git-712105cd5d74b21a2c338c8d72393a31274d0fc5.tar.gz |
Pass -avoid-version when building a shared library to avoid problems
with "installing" symbolic links. We need to do this conditional, since
some libtool versions imply --disable-static with this option.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 13683cdf8c..524daa9ba3 100644 --- a/configure.in +++ b/configure.in @@ -652,6 +652,7 @@ program) shared) enable_static=no passthru="$passthru --disable-static" + EXTRA_LDFLAGS="$EXTRA_LDFLAGS -avoid-version" ;; static) enable_shared=no @@ -785,6 +786,8 @@ if true; then fi +PHP_SHOW_LD_LIBRARY_PATH + ]) divert |