From: Diego Elio Pettenò Date: Wed, 6 Jan 2010 16:33:41 +0000 (+0100) Subject: Disable building of static Python module X-Git-Tag: v0.7.6~234 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8838ee39ab1c2bb7fffe93bfda220692664e8be6;p=thirdparty%2Flibvirt.git Disable building of static Python module * python/Makefile.am: python modules are loaded at runtime so the static version is not needed, avoid building it --- diff --git a/python/Makefile.am b/python/Makefile.am index 04342b7c1c..58c6729875 100644 --- a/python/Makefile.am +++ b/python/Makefile.am @@ -39,7 +39,7 @@ libvirtmod_la_SOURCES = libvirt-override.c typewrappers.c libvirt.c libvirt.h # need extra flags here libvirtmod_la_CFLAGS = @WARN_PYTHON_CFLAGS@ -libvirtmod_la_LDFLAGS = -module -avoid-version -L$(top_builddir)/src/.libs \ +libvirtmod_la_LDFLAGS = -module -avoid-version -shared -L$(top_builddir)/src/.libs \ @CYGWIN_EXTRA_LDFLAGS@ libvirtmod_la_LIBADD = $(mylibs) \ @CYGWIN_EXTRA_LIBADD@ @CYGWIN_EXTRA_PYTHON_LIBADD@