iproute2: configure: Add search path for 64bit library.

Use pkg-config to tell us the library path and fallback to search
old paths if xtables.pc not exists.

Signed-off-by: Li Wei <lw@cn.fujitsu.com>
This commit is contained in:
Li Wei 2012-08-20 09:41:47 +08:00 committed by Stephen Hemminger
parent 083b46bbe9
commit da7fbb24c7
1 changed files with 7 additions and 1 deletions

8
configure vendored
View File

@ -148,7 +148,13 @@ check_ipt()
check_ipt_lib_dir()
{
IPT_LIB_DIR=""
IPT_LIB_DIR=$(pkg-config --variable=xtlibdir xtables)
if [ -n "$IPT_LIB_DIR" ]; then
echo $IPT_LIB_DIR
echo "IPT_LIB_DIR:=$IPT_LIB_DIR" >> Config
return
fi
for dir in /lib /usr/lib /usr/local/lib
do
for file in $dir/{xtables,iptables}/lib*t_*so ; do