diff options
author | Jani Taskinen <jani@php.net> | 2007-08-20 14:28:45 +0000 |
---|---|---|
committer | Jani Taskinen <jani@php.net> | 2007-08-20 14:28:45 +0000 |
commit | c6a7e4cad43fb87986c72535f0595405f794125b (patch) | |
tree | c51422932da48cd5832cda4d43e78e8124edbc68 /configure.in | |
parent | 857aae2bd7b53c58033ee7a12347d2b2bcafaa34 (diff) | |
download | php-git-c6a7e4cad43fb87986c72535f0595405f794125b.tar.gz |
MFH:- Part 1 of fixing problems with runpath switch (make --disable-rpath work for real)
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/configure.in b/configure.in index cfcc9d2ff6..4e451b6f49 100644 --- a/configure.in +++ b/configure.in @@ -138,6 +138,10 @@ dnl Support systems with system libraries in e.g. /usr/lib64 PHP_ARG_WITH(libdir, for system library directory, [ --with-libdir=NAME Look for libraries in .../NAME rather than .../lib],lib,no) +PHP_ARG_ENABLE(rpath, whether to enable runpaths, +[ --disable-rpath Disable passing additional runtime library + search paths], yes, no) + dnl check for -R, etc. switch PHP_RUNPATH_SWITCH @@ -789,10 +793,6 @@ else AC_DEFINE(MAGIC_QUOTES, 0, [ ]) fi -PHP_ARG_ENABLE(rpath, whether to enable runpaths, -[ --disable-rpath Disable passing additional runtime library - search paths], yes, no) - PHP_ARG_ENABLE(libgcc, whether to explicitly link against libgcc, [ --enable-libgcc Enable explicitly linking against libgcc], no, no) |