diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2006-11-17 23:27:29 +0000 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2006-11-17 23:27:29 +0000 |
commit | 258fbc778115d19957162078ff2a3504b8551211 (patch) | |
tree | 784b4c42b1e435eef1bf3dbda7db66bb9a106618 /daemon | |
parent | 8cd0873aefaa5b85cc20893f71ef5f3d63c9f1ad (diff) |
Compile with Expat if available
Diffstat (limited to 'daemon')
-rw-r--r-- | daemon/Makefile.am | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/daemon/Makefile.am b/daemon/Makefile.am index cc43cfd3..e880ea79 100644 --- a/daemon/Makefile.am +++ b/daemon/Makefile.am @@ -8,6 +8,10 @@ bluetoothd_LDADD = @DBUS_LIBS@ @BLUEZ_LIBS@ $(top_builddir)/sdpd/libsdpserver.a $(top_builddir)/common/libhelper.a +if EXPAT +bluetoothd_LDADD += -lexpat +endif + AM_CFLAGS = @BLUEZ_CFLAGS@ @DBUS_CFLAGS@ INCLUDES = -I$(top_srcdir)/common -I$(top_srcdir)/hcid -I$(top_srcdir)/sdpd |