mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-04-26 07:04:42 +00:00
Wed Dec 5 18:00:00 UTC 2007 Richard W.M. Jones <rjones@redhat.com>
* src/Makefile.am, tests/Makefile.am: Remove LIBOBJS/LTLIBOBJS which were incorrectly committed earlier.
This commit is contained in:
parent
ca71b87cb0
commit
ffdbb903e4
@ -1,3 +1,8 @@
|
|||||||
|
Wed Dec 5 18:00:00 UTC 2007 Richard W.M. Jones <rjones@redhat.com>
|
||||||
|
|
||||||
|
* src/Makefile.am, tests/Makefile.am: Remove LIBOBJS/LTLIBOBJS
|
||||||
|
which were incorrectly committed earlier.
|
||||||
|
|
||||||
Wed Dec 5 11:24:00 EST 2007 Daniel P. Berrange <berrange@redhat.com>
|
Wed Dec 5 11:24:00 EST 2007 Daniel P. Berrange <berrange@redhat.com>
|
||||||
|
|
||||||
* src/virsh.c: quit if initial conection attempt fails
|
* src/virsh.c: quit if initial conection attempt fails
|
||||||
|
@ -60,7 +60,7 @@ SERVER_SOURCES = \
|
|||||||
../qemud/remote_protocol.c ../qemud/remote_protocol.h
|
../qemud/remote_protocol.c ../qemud/remote_protocol.h
|
||||||
|
|
||||||
libvirt_la_SOURCES = $(CLIENT_SOURCES) $(SERVER_SOURCES)
|
libvirt_la_SOURCES = $(CLIENT_SOURCES) $(SERVER_SOURCES)
|
||||||
libvirt_la_LIBADD = $(LIBXML_LIBS) $(GNUTLS_LIBS) $(SASL_LIBS) $(LTLIBOBJS) \
|
libvirt_la_LIBADD = $(LIBXML_LIBS) $(GNUTLS_LIBS) $(SASL_LIBS) \
|
||||||
@CYGWIN_EXTRA_LIBADD@
|
@CYGWIN_EXTRA_LIBADD@
|
||||||
libvirt_la_LDFLAGS = -Wl,--version-script=$(srcdir)/libvirt_sym.version \
|
libvirt_la_LDFLAGS = -Wl,--version-script=$(srcdir)/libvirt_sym.version \
|
||||||
-version-info @LIBVIRT_VERSION_INFO@ \
|
-version-info @LIBVIRT_VERSION_INFO@ \
|
||||||
|
@ -72,65 +72,52 @@ xmlrpctest_SOURCES = \
|
|||||||
@top_srcdir@/src/xmlrpc.c \
|
@top_srcdir@/src/xmlrpc.c \
|
||||||
@top_srcdir@/src/xmlrpc.h
|
@top_srcdir@/src/xmlrpc.h
|
||||||
|
|
||||||
LIBOBJDIR = ../src/
|
|
||||||
|
|
||||||
xmlrpctest_LDFLAGS = $(LIBOBJS)
|
|
||||||
xmlrpctest_LDADD = $(LDADDS)
|
xmlrpctest_LDADD = $(LDADDS)
|
||||||
|
|
||||||
xml2sexprtest_SOURCES = \
|
xml2sexprtest_SOURCES = \
|
||||||
xml2sexprtest.c \
|
xml2sexprtest.c \
|
||||||
testutils.c testutils.h
|
testutils.c testutils.h
|
||||||
xml2sexprtest_LDFLAGS = $(LIBOBJS)
|
|
||||||
xml2sexprtest_LDADD = $(LDADDS)
|
xml2sexprtest_LDADD = $(LDADDS)
|
||||||
|
|
||||||
sexpr2xmltest_SOURCES = \
|
sexpr2xmltest_SOURCES = \
|
||||||
sexpr2xmltest.c \
|
sexpr2xmltest.c \
|
||||||
testutils.c testutils.h
|
testutils.c testutils.h
|
||||||
sexpr2xmltest_LDFLAGS = $(LIBOBJS)
|
|
||||||
sexpr2xmltest_LDADD = $(LDADDS)
|
sexpr2xmltest_LDADD = $(LDADDS)
|
||||||
|
|
||||||
xmconfigtest_SOURCES = \
|
xmconfigtest_SOURCES = \
|
||||||
xmconfigtest.c \
|
xmconfigtest.c \
|
||||||
testutils.c testutils.h
|
testutils.c testutils.h
|
||||||
xmconfigtest_LDFLAGS = $(LIBOBJS)
|
|
||||||
xmconfigtest_LDADD = $(LDADDS)
|
xmconfigtest_LDADD = $(LDADDS)
|
||||||
|
|
||||||
qemuxml2argvtest_SOURCES = \
|
qemuxml2argvtest_SOURCES = \
|
||||||
qemuxml2argvtest.c \
|
qemuxml2argvtest.c \
|
||||||
testutils.c testutils.h
|
testutils.c testutils.h
|
||||||
qemuxml2argvtest_LDFLAGS = $(LIBOBJS)
|
|
||||||
qemuxml2argvtest_LDADD = $(LDADDS)
|
qemuxml2argvtest_LDADD = $(LDADDS)
|
||||||
|
|
||||||
qemuxml2xmltest_SOURCES = \
|
qemuxml2xmltest_SOURCES = \
|
||||||
qemuxml2xmltest.c \
|
qemuxml2xmltest.c \
|
||||||
testutils.c testutils.h
|
testutils.c testutils.h
|
||||||
qemuxml2xmltest_LDFLAGS = $(LIBOBJS)
|
|
||||||
qemuxml2xmltest_LDADD = $(LDADDS)
|
qemuxml2xmltest_LDADD = $(LDADDS)
|
||||||
|
|
||||||
virshtest_SOURCES = \
|
virshtest_SOURCES = \
|
||||||
virshtest.c \
|
virshtest.c \
|
||||||
testutils.c testutils.h
|
testutils.c testutils.h
|
||||||
virshtest_LDFLAGS = $(LIBOBJS)
|
|
||||||
virshtest_LDADD = $(LDADDS)
|
virshtest_LDADD = $(LDADDS)
|
||||||
|
|
||||||
conftest_SOURCES = \
|
conftest_SOURCES = \
|
||||||
conftest.c
|
conftest.c
|
||||||
conftest_LDFLAGS = $(LIBOBJS)
|
|
||||||
conftest_LDADD = $(LDADDS)
|
conftest_LDADD = $(LDADDS)
|
||||||
|
|
||||||
xencapstest_SOURCES = \
|
xencapstest_SOURCES = \
|
||||||
xencapstest.c testutils.h testutils.c
|
xencapstest.c testutils.h testutils.c
|
||||||
xencapstest_LDFLAGS = $(LIBOBJS)
|
|
||||||
xencapstest_LDADD = $(LDADDS)
|
xencapstest_LDADD = $(LDADDS)
|
||||||
|
|
||||||
nodeinfotest_SOURCES = \
|
nodeinfotest_SOURCES = \
|
||||||
nodeinfotest.c testutils.h testutils.c
|
nodeinfotest.c testutils.h testutils.c
|
||||||
nodeinfotest_LDFLAGS = $(LIBOBJS)
|
|
||||||
nodeinfotest_LDADD = $(LDADDS)
|
nodeinfotest_LDADD = $(LDADDS)
|
||||||
|
|
||||||
reconnect_SOURCES = \
|
reconnect_SOURCES = \
|
||||||
reconnect.c
|
reconnect.c
|
||||||
reconnect_LDFLAGS = $(LIBOBJS)
|
|
||||||
reconnect_LDADD = $(LDADDS)
|
reconnect_LDADD = $(LDADDS)
|
||||||
|
|
||||||
$(LIBVIRT):
|
$(LIBVIRT):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user