From: Tor Lillqvist Date: Wed, 21 Oct 2009 23:03:07 +0000 (+0300) Subject: Actually do install the .def file on Windows X-Git-Tag: dbus-1.3.1~155 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=52c35a313763308ead5d73e3a0cbd1361114ce3d;p=thirdparty%2Fdbus.git Actually do install the .def file on Windows --- diff --git a/dbus/Makefile.am b/dbus/Makefile.am index 4346de73b..db90b87eb 100644 --- a/dbus/Makefile.am +++ b/dbus/Makefile.am @@ -26,6 +26,7 @@ no_undefined = -no-undefined export_symbols = -export-symbols $(srcdir)/dbus-1.def install-def-file: + test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)" $(INSTALL) dbus-1.def $(DESTDIR)$(libdir)/dbus-1.def uninstall-def-file: @@ -233,7 +234,7 @@ libdbus_convenience_la_SOURCES= \ BUILT_SOURCES=$(dbusarchinclude_HEADERS) -EXTRA_DIST=dbus-arch-deps.h.in +EXTRA_DIST=dbus-arch-deps.h.in dbus-1.def ## this library is the same as libdbus, but exports all the symbols ## and is only used for static linking within the dbus package. @@ -264,6 +265,10 @@ dbus_test_SOURCES= \ dbus_test_LDADD=libdbus-convenience.la $(DBUS_TEST_LIBS) dbus_test_LDFLAGS=@R_DYNAMIC_LDFLAG@ +install-data-local: install-def-file + +uninstall-local: uninstall-def-file + ## mop up the gcov files clean-local: /bin/rm *.bb *.bbg *.da *.gcov .libs/*.da .libs/*.bbg || true