diff options
author | mark@chromium.org <mark@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-25 19:33:00 +0000 |
---|---|---|
committer | mark@chromium.org <mark@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-25 19:33:00 +0000 |
commit | 462d4c3507d1f4d66c9af9120705f1f4dc6c1406 (patch) | |
tree | db5569fcc2a8019da5c7ccfb0e83750578e6f834 | |
parent | 78ded7760a33f2ea16d8f55a3caab2965a49e9d3 (diff) | |
download | chromium_src-462d4c3507d1f4d66c9af9120705f1f4dc6c1406.zip chromium_src-462d4c3507d1f4d66c9af9120705f1f4dc6c1406.tar.gz chromium_src-462d4c3507d1f4d66c9af9120705f1f4dc6c1406.tar.bz2 |
Add dependency libpcre.0.dylib and adjust LC_LOAD_DYLIB commands to be
@executable_path-relative with install_name_tool.
Review URL: http://codereview.chromium.org/12645
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@5985 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | third_party/lighttpd/README.GOOGLE | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/third_party/lighttpd/README.GOOGLE b/third_party/lighttpd/README.GOOGLE index 2f37cf6..7dc6dc5e3 100644 --- a/third_party/lighttpd/README.GOOGLE +++ b/third_party/lighttpd/README.GOOGLE @@ -15,18 +15,23 @@ PHP is licensed under the PHP license (http://www.php.net/license/) ****** --- For Mac --- +The Mac version of LigHTTPd depends on libpcre; build it and place a copy of +libpcre.0.dylib in mac/dylib. + The Mac version of LigHTTPd is built on intel from LightTPD 1.4.20 with the following configure options defined: --with-openssl --prefix=/tmp/lighttpd so a "make install" bundles it correctly - + We then use install_name_tool to fix up the hardcoded library defined that wants to look in /usr/local/lib $ install_name_tool -change /usr/local/lib/liblightcomp.dylib @executable_path/../lib/liblightcomp.dylib /tmp/lighttpd/sbin/lighttpd - + This also needs to be done for many of the mac/lib/mod_* libraries. +install_name_tool may also be needed to adjust the path to libpcre.0.dylib to +be relative to @executable_path (@executable_path/../lib/libpcre.0.dylib). The Mac version of php-cgi is built from PHP 5.2.6 with the following configure options: |