summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2008-08-13 02:32:56 +0200
committerMarcel Holtmann <marcel@holtmann.org>2008-08-13 02:32:56 +0200
commit531e3460465e6f493eb0b7de2a3b8a7d8959563d (patch)
treef8ce2d51425dc64db92a74e687d47222fd646a80
parent6d183c9e8bbce62b4bcb3f26be3176b981615222 (diff)
downloadconnman-531e3460465e6f493eb0b7de2a3b8a7d8959563d.tar.gz
connman-531e3460465e6f493eb0b7de2a3b8a7d8959563d.tar.bz2
connman-531e3460465e6f493eb0b7de2a3b8a7d8959563d.zip
Don't use static library for the included libgdbus
-rw-r--r--configure.ac2
-rw-r--r--gdbus/Makefile.am4
2 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index e5d9f09b..fdb290b8 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 756b2fa2..9447555f 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@