mirror of https://github.com/xqemu/xqemu.git
-----BEGIN PGP SIGNATURE-----
iQEcBAABAgAGBQJYPVNUAAoJEJykq7OBq3PIbVEIALyzl+s0yS6Uf2SZdWkTgRHT e9Y2sGrtYFzRxe11R9xj/pBD7x1+r/o5mKT4z8oYF/gI1YcrumewH2On3H4nP/R2 Dq7MPX14/OSgZFTZtM8liYtW0iWhE+BLR5O2sn2g8vvTsYmjJ5CnmFIPajyJi+OO TrXJdkdJIa/GBYE0p9q9rAf8nJetGJLWuq0H7i9GwVbubRrGckr5SyyUEHKMI4XC uoGB2lu7To/6+CJtLkaGE/Hql+ngVEd/HlUsCE5datKG4csKAh7xbmRE4NozcTJ0 VBC9v7oJ+elLslj0TehKnErTTqqvL/bDAWW9dgfK+sLDjgEPt4zkPCQV2JbXiN0= =xWnw -----END PGP SIGNATURE----- Merge remote-tracking branch 'public/tags/tracing-pull-request' into staging # gpg: Signature made Tue 29 Nov 2016 10:07:16 AM GMT # gpg: using RSA key 0x9CA4ABB381AB73C8 # gpg: Good signature from "Stefan Hajnoczi <stefanha@redhat.com>" # gpg: aka "Stefan Hajnoczi <stefanha@gmail.com>" # Primary key fingerprint: 8695 A8BF D3F9 7CDA AC35 775A 9CA4 ABB3 81AB 73C8 * public/tags/tracing-pull-request: configure: fix LTTng UST tracing backend detection Message-id: 20161129100724.15207-1-stefanha@redhat.com Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
This commit is contained in:
commit
38e532aa74
|
@ -4305,11 +4305,11 @@ if have_backend "ust"; then
|
|||
#include <lttng/tracepoint.h>
|
||||
int main(void) { return 0; }
|
||||
EOF
|
||||
if compile_prog "" "" ; then
|
||||
if compile_prog "" "-Wl,--no-as-needed -ldl" ; then
|
||||
if $pkg_config lttng-ust --exists; then
|
||||
lttng_ust_libs=$($pkg_config --libs lttng-ust)
|
||||
else
|
||||
lttng_ust_libs="-llttng-ust"
|
||||
lttng_ust_libs="-llttng-ust -ldl"
|
||||
fi
|
||||
if $pkg_config liburcu-bp --exists; then
|
||||
urcu_bp_libs=$($pkg_config --libs liburcu-bp)
|
||||
|
|
Loading…
Reference in New Issue