lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Mon, 20 Aug 2012 16:30:36 +0100
From:	Ben Hutchings <bhutchings@...arflare.com>
To:	Li Wei <lw@...fujitsu.com>
CC:	<shemminger@...tta.com>, <netdev@...r.kernel.org>
Subject: Re: [PATCH v2] iproute2: configure: Add search path for 64bit
 library.

On Mon, 2012-08-20 at 09:41 +0800, Li Wei wrote:
> 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@...fujitsu.com>

Tested-by: Ben Hutchings <bhutchings@...arflare.com>

Works for me on Fedora 16.

You should probably change the subject line, as this doesn't change the
search path but mostly replaces it.

Ben.

> ---
> 
> Changes from v1:
> - use pkg-config as Ben and Stephen suggested.
> 
>  configure |    8 +++++++-
>  1 file changed, 7 insertions(+), 1 deletion(-)
> 
> diff --git a/configure b/configure
> index a1916de..db7cd6a 100755
> --- a/configure
> +++ b/configure
> @@ -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

-- 
Ben Hutchings, Staff Engineer, Solarflare
Not speaking for my employer; that's the marketing department's job.
They asked us to note that Solarflare product names are trademarked.

--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ