From 531e3460465e6f493eb0b7de2a3b8a7d8959563d Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Wed, 13 Aug 2008 02:32:56 +0200 Subject: [PATCH] Don't use static library for the included libgdbus --- configure.ac | 2 +- gdbus/Makefile.am | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index e5d9f09..fdb290b 100644 --- a/configure.ac +++ b/configure.ac @@ -65,7 +65,7 @@ AC_SUBST(DBUS_CFLAGS) AC_SUBST(DBUS_LIBS) AC_SUBST([GDBUS_CFLAGS], ['$(DBUS_CFLAGS) -I$(top_srcdir)/gdbus']) -AC_SUBST([GDBUS_LIBS], ['$(top_builddir)/gdbus/libgdbus.a $(DBUS_LIBS)']) +AC_SUBST([GDBUS_LIBS], ['$(top_builddir)/gdbus/libgdbus.la $(DBUS_LIBS)']) PKG_CHECK_MODULES(HAL, hal >= 0.5.8, hal_found=yes, hal_found=no) AC_SUBST(HAL_CFLAGS) diff --git a/gdbus/Makefile.am b/gdbus/Makefile.am index 756b2fa..9447555 100644 --- a/gdbus/Makefile.am +++ b/gdbus/Makefile.am @@ -1,7 +1,7 @@ -noinst_LIBRARIES = libgdbus.a +noinst_LTLIBRARIES = libgdbus.la -libgdbus_a_SOURCES = gdbus.h mainloop.c object.c watch.c +libgdbus_la_SOURCES = gdbus.h mainloop.c object.c watch.c AM_CFLAGS = @DBUS_CFLAGS@ @GLIB_CFLAGS@ -- 2.7.4