diff options
author | Jani Taskinen <jani@php.net> | 2007-08-20 14:28:29 +0000 |
---|---|---|
committer | Jani Taskinen <jani@php.net> | 2007-08-20 14:28:29 +0000 |
commit | 56f88566e94ad9b439049580887123e989ae151e (patch) | |
tree | 3c5837b9cdeacd958b744ce3b42b80a9e7a7e589 /configure.in | |
parent | c7d82c75c905fe2e4e03276e94734de743fa1127 (diff) | |
download | php-git-56f88566e94ad9b439049580887123e989ae151e.tar.gz |
- 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 64abaac54e..985849237a 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 @@ -755,10 +759,6 @@ else AC_DEFINE(PHP_SIGCHILD, 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) |