From a19e6ff9747f9310c4b39ed3496b0a994674d263 Mon Sep 17 00:00:00 2001 From: rubidium Date: Sun, 28 Feb 2010 00:22:23 +0000 Subject: [PATCH] (svn r19285) -Change [FS#3638]: add the default installation directory of lzo/zlib for Mac OS X/MinGW to the paths where (the headers of) those libraries are searched --- config.lib | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/config.lib b/config.lib index bd72f6aca8..2d84ca4655 100644 --- a/config.lib +++ b/config.lib @@ -2303,6 +2303,16 @@ detect_library() { eval "res=\$$2" if [ -z "$res" ]; then log 2 " trying /usr/local/include/$4$5... no" + eval "$2=`ls -1 /mingw/include/$4*.h 2>/dev/null | egrep \"\/$5\$\"`" + fi + eval "res=\$$2" + if [ -z "$res" ]; then + log 2 " trying /usr/local/include/$4$5... no" + eval "$2=`ls -1 /opt/local/include/$4*.h 2>/dev/null | egrep \"\/$5\$\"`" + fi + eval "res=\$$2" + if [ -z "$res" ]; then + log 2 " trying /opt/local/include/$4$5... no" fi eval "res=\$$2" @@ -2324,6 +2334,11 @@ detect_library() { eval "res=\$$2" if [ -z "$res" ]; then log 2 " trying /usr/local/lib/$3... no" + eval "$2=`ls /mingw/lib/*.a 2>/dev/null | egrep \"\/$3\$\"`" + fi + eval "res=\$$2" + if [ -z "$res" ]; then + log 2 " trying /mingw/lib/$3... no" log 1 "configure: error: $2 couldn't be found" log 1 "configure: error: you requested a static link, but I can't find $3"