From 80c97b69cc8fb2663296182514d993036e4caaa5 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Mon, 15 Aug 2005 23:49:17 +0000 Subject: don't install .pc files unconditionally git-svn-id: file:///home/lennart/svn/public/avahi/trunk@343 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe --- Makefile.am | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/Makefile.am b/Makefile.am index 719ecad..aa93eea 100644 --- a/Makefile.am +++ b/Makefile.am @@ -52,23 +52,31 @@ SUBDIRS = \ tests pkgconfigdir = $(libdir)/pkgconfig -pkgconfig_DATA = \ - avahi-core.pc \ - avahi-client.pc \ - avahi-glib.pc +pkgconfig_DATA = avahi-core.pc avahi-core.pc: avahi-core.pc.in sed -e 's,@prefix\@,$(prefix),g' \ -e 's,@PACKAGE_VERSION\@,$(PACKAGE_VERSION),g' $< > $@ +if HAVE_DBUS + +pkgconfig_DATA += avahi-client.pc + avahi-client.pc: avahi-client.pc.in sed -e 's,@prefix\@,$(prefix),g' \ -e 's,@PACKAGE_VERSION\@,$(PACKAGE_VERSION),g' $< > $@ +endif + +if HAVE_GLIB + +pkgconfig_DATA += avahi-glib.pc + avahi-glib.pc: avahi-glib.pc.in sed -e 's,@prefix\@,$(prefix),g' \ -e 's,@PACKAGE_VERSION\@,$(PACKAGE_VERSION),g' $< > $@ +endif MOSTLYCLEANFILES = $(DX_CLEANFILES) -- cgit