From: Anthony Liguori <anthony@codemonkey.ws>
To: Sergei Trofimovich <slyfox@inbox.ru>
Cc: qemu-trivial <qemu-trivial@nongnu.org>,
qemu-devel@nongnu.org, Sergei Trofimovich <slyfox@gentoo.org>
Subject: Re: [Qemu-trivial] [Qemu-devel] [PATCH resend] ./configure: add link check for nss-smartcard
Date: Wed, 01 Feb 2012 16:12:07 -0600 [thread overview]
Message-ID: <4F29B8B7.70809@codemonkey.ws> (raw)
In-Reply-To: <1328036638-3190-1-git-send-email-slyfox@inbox.ru>
On 01/31/2012 01:03 PM, Sergei Trofimovich wrote:
> From: Sergei Trofimovich<slyfox@gentoo.org>
>
> Current './configure --static&& make' fails for me:
>
> LINK qemu-nbd
> /usr/lib/gcc/x86_64-pc-linux-gnu/4.5.3/../../../../x86_64-pc-linux-gnu/bin/ld: cannot find -lssl3
> /usr/lib/gcc/x86_64-pc-linux-gnu/4.5.3/../../../../x86_64-pc-linux-gnu/bin/ld: cannot find -lsmime3
> /usr/lib/gcc/x86_64-pc-linux-gnu/4.5.3/../../../../x86_64-pc-linux-gnu/bin/ld: cannot find -lnssutil3
> /usr/lib/gcc/x86_64-pc-linux-gnu/4.5.3/../../../../x86_64-pc-linux-gnu/bin/ld: cannot find -lnss3
> /usr/lib/gcc/x86_64-pc-linux-gnu/4.5.3/../../../../x86_64-pc-linux-gnu/bin/ld: cannot find -lplds4
> /usr/lib/gcc/x86_64-pc-linux-gnu/4.5.3/../../../../x86_64-pc-linux-gnu/bin/ld: cannot find -lplc4
> /usr/lib/gcc/x86_64-pc-linux-gnu/4.5.3/../../../../x86_64-pc-linux-gnu/bin/ld: cannot find -lnspr4
>
> My system does not provide static libraries for nss, so
> fix autoconfiguration by link checking.
>
> Signed-off-by: Sergei Trofimovich<slyfox@gentoo.org>
> CC: qemu-trivial<qemu-trivial@nongnu.org>
Applied. Thanks.
Regards,
Anthony Liguori
> ---
> configure | 13 +++++++++----
> 1 files changed, 9 insertions(+), 4 deletions(-)
>
> diff --git a/configure b/configure
> index 8fd5404..3b0b300 100755
> --- a/configure
> +++ b/configure
> @@ -2528,11 +2528,16 @@ if test "$smartcard" != "no" ; then
> smartcard_cflags=""
> # TODO - what's the minimal nss version we support?
> if test "$smartcard_nss" != "no"; then
> - if $pkg_config --atleast-version=3.12.8 nss>/dev/null 2>&1 ; then
> + cat> $TMPC<< EOF
> +#include<pk11pub.h>
> +int main(void) { PK11_FreeSlot(0); return 0; }
> +EOF
> + smartcard_cflags="-I\$(SRC_PATH)/libcacard"
> + libcacard_libs=$($pkg_config --libs nss 2>/dev/null)
> + libcacard_cflags=$($pkg_config --cflags nss 2>/dev/null)
> + if $pkg_config --atleast-version=3.12.8 nss>/dev/null 2>&1&& \
> + compile_prog "$smartcard_cflags $libcacard_cflags" "$libcacard_libs"; then
> smartcard_nss="yes"
> - smartcard_cflags="-I\$(SRC_PATH)/libcacard"
> - libcacard_libs=$($pkg_config --libs nss 2>/dev/null)
> - libcacard_cflags=$($pkg_config --cflags nss 2>/dev/null)
> QEMU_CFLAGS="$QEMU_CFLAGS $smartcard_cflags $libcacard_cflags"
> LIBS="$libcacard_libs $LIBS"
> else
WARNING: multiple messages have this Message-ID (diff)
From: Anthony Liguori <anthony@codemonkey.ws>
To: Sergei Trofimovich <slyfox@inbox.ru>
Cc: qemu-trivial <qemu-trivial@nongnu.org>,
qemu-devel@nongnu.org, Sergei Trofimovich <slyfox@gentoo.org>
Subject: Re: [Qemu-devel] [PATCH resend] ./configure: add link check for nss-smartcard
Date: Wed, 01 Feb 2012 16:12:07 -0600 [thread overview]
Message-ID: <4F29B8B7.70809@codemonkey.ws> (raw)
In-Reply-To: <1328036638-3190-1-git-send-email-slyfox@inbox.ru>
On 01/31/2012 01:03 PM, Sergei Trofimovich wrote:
> From: Sergei Trofimovich<slyfox@gentoo.org>
>
> Current './configure --static&& make' fails for me:
>
> LINK qemu-nbd
> /usr/lib/gcc/x86_64-pc-linux-gnu/4.5.3/../../../../x86_64-pc-linux-gnu/bin/ld: cannot find -lssl3
> /usr/lib/gcc/x86_64-pc-linux-gnu/4.5.3/../../../../x86_64-pc-linux-gnu/bin/ld: cannot find -lsmime3
> /usr/lib/gcc/x86_64-pc-linux-gnu/4.5.3/../../../../x86_64-pc-linux-gnu/bin/ld: cannot find -lnssutil3
> /usr/lib/gcc/x86_64-pc-linux-gnu/4.5.3/../../../../x86_64-pc-linux-gnu/bin/ld: cannot find -lnss3
> /usr/lib/gcc/x86_64-pc-linux-gnu/4.5.3/../../../../x86_64-pc-linux-gnu/bin/ld: cannot find -lplds4
> /usr/lib/gcc/x86_64-pc-linux-gnu/4.5.3/../../../../x86_64-pc-linux-gnu/bin/ld: cannot find -lplc4
> /usr/lib/gcc/x86_64-pc-linux-gnu/4.5.3/../../../../x86_64-pc-linux-gnu/bin/ld: cannot find -lnspr4
>
> My system does not provide static libraries for nss, so
> fix autoconfiguration by link checking.
>
> Signed-off-by: Sergei Trofimovich<slyfox@gentoo.org>
> CC: qemu-trivial<qemu-trivial@nongnu.org>
Applied. Thanks.
Regards,
Anthony Liguori
> ---
> configure | 13 +++++++++----
> 1 files changed, 9 insertions(+), 4 deletions(-)
>
> diff --git a/configure b/configure
> index 8fd5404..3b0b300 100755
> --- a/configure
> +++ b/configure
> @@ -2528,11 +2528,16 @@ if test "$smartcard" != "no" ; then
> smartcard_cflags=""
> # TODO - what's the minimal nss version we support?
> if test "$smartcard_nss" != "no"; then
> - if $pkg_config --atleast-version=3.12.8 nss>/dev/null 2>&1 ; then
> + cat> $TMPC<< EOF
> +#include<pk11pub.h>
> +int main(void) { PK11_FreeSlot(0); return 0; }
> +EOF
> + smartcard_cflags="-I\$(SRC_PATH)/libcacard"
> + libcacard_libs=$($pkg_config --libs nss 2>/dev/null)
> + libcacard_cflags=$($pkg_config --cflags nss 2>/dev/null)
> + if $pkg_config --atleast-version=3.12.8 nss>/dev/null 2>&1&& \
> + compile_prog "$smartcard_cflags $libcacard_cflags" "$libcacard_libs"; then
> smartcard_nss="yes"
> - smartcard_cflags="-I\$(SRC_PATH)/libcacard"
> - libcacard_libs=$($pkg_config --libs nss 2>/dev/null)
> - libcacard_cflags=$($pkg_config --cflags nss 2>/dev/null)
> QEMU_CFLAGS="$QEMU_CFLAGS $smartcard_cflags $libcacard_cflags"
> LIBS="$libcacard_libs $LIBS"
> else
next prev parent reply other threads:[~2012-02-01 22:12 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-01-31 19:03 [Qemu-trivial] [PATCH resend] ./configure: add link check for nss-smartcard Sergei Trofimovich
2012-01-31 19:03 ` [Qemu-devel] " Sergei Trofimovich
2012-02-01 22:12 ` Anthony Liguori [this message]
2012-02-01 22:12 ` Anthony Liguori
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4F29B8B7.70809@codemonkey.ws \
--to=anthony@codemonkey.ws \
--cc=qemu-devel@nongnu.org \
--cc=qemu-trivial@nongnu.org \
--cc=slyfox@gentoo.org \
--cc=slyfox@inbox.ru \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.