34 lines
1.6 KiB
Diff
34 lines
1.6 KiB
Diff
|
commit b018ada3304c08e02b0750f8735b0702f0fd5f8c
|
||
|
Author: Jim Fehlig <jfehlig@suse.com>
|
||
|
Date: Mon Jan 16 10:58:00 2017 -0700
|
||
|
|
||
|
tests: fix compilation of shunloadtest
|
||
|
|
||
|
While local builds succeed fine, a build worker building in a
|
||
|
chroot environment is encountering the following error with
|
||
|
libvirt 3.0.0 release candidates
|
||
|
|
||
|
[ 162s] shunloadtest.o: In function `main':
|
||
|
[ 162s] /home/abuild/rpmbuild/BUILD/libvirt-3.0.0/tests/shunloadtest.c:110: undefined reference to `dlopen'
|
||
|
[ 162s] /home/abuild/rpmbuild/BUILD/libvirt-3.0.0/tests/shunloadtest.c:114: undefined reference to `dlsym'
|
||
|
[ 162s] /home/abuild/rpmbuild/BUILD/libvirt-3.0.0/tests/shunloadtest.c:133: undefined reference to `dlclose'
|
||
|
[ 162s] /home/abuild/rpmbuild/BUILD/libvirt-3.0.0/tests/shunloadtest.c:111: undefined reference to `dlerror'
|
||
|
[ 162s] /home/abuild/rpmbuild/BUILD/libvirt-3.0.0/tests/shunloadtest.c:115: undefined reference to `dlerror'
|
||
|
[ 162s] /home/abuild/rpmbuild/BUILD/libvirt-3.0.0/tests/shunloadtest.c:116: undefined reference to `dlclose'
|
||
|
|
||
|
Fix by appending DLOPEN_LIBS to shunloadtest_LDADD.
|
||
|
|
||
|
Index: libvirt-3.0.0/tests/Makefile.am
|
||
|
===================================================================
|
||
|
--- libvirt-3.0.0.orig/tests/Makefile.am
|
||
|
+++ libvirt-3.0.0/tests/Makefile.am
|
||
|
@@ -1348,7 +1348,7 @@ libshunload_la_LDFLAGS = $(MOCKLIBS_LDFL
|
||
|
|
||
|
shunloadtest_SOURCES = \
|
||
|
shunloadtest.c
|
||
|
-shunloadtest_LDADD = $(LIB_PTHREAD)
|
||
|
+shunloadtest_LDADD = $(LIB_PTHREAD) $(DLOPEN_LIBS)
|
||
|
shunloadtest_DEPENDENCIES = libshunload.la
|
||
|
|
||
|
sysinfotest_SOURCES = \
|