From 4b79d3827271bbe7e452c30172b855271a974415 Mon Sep 17 00:00:00 2001 From: Vincent Torri Date: Sat, 21 Jul 2012 18:31:43 +0000 Subject: [PATCH] * src/lib/Makefile.am: * src/lib/dlfcn/Makefile.am: work around a problem with libtool and the creation of the DLL. libtool developpers should be impaled. SVN revision: 74285 --- legacy/evil/ChangeLog | 7 +++++++ legacy/evil/src/lib/Makefile.am | 3 +++ legacy/evil/src/lib/dlfcn/Makefile.am | 3 +++ 3 files changed, 13 insertions(+) diff --git a/legacy/evil/ChangeLog b/legacy/evil/ChangeLog index b469a68fc0..0259c41067 100644 --- a/legacy/evil/ChangeLog +++ b/legacy/evil/ChangeLog @@ -1,3 +1,10 @@ +2012-07-21 Vincent Torri + + * src/lib/Makefile.am: + * src/lib/dlfcn/Makefile.am: + work around a problem with libtool and the creation + of the DLL. libtool developpers should be impaled. + 2012-07-20 Vincent Torri * configure.ac: diff --git a/legacy/evil/src/lib/Makefile.am b/legacy/evil/src/lib/Makefile.am index a5a128baa5..976ee3b73a 100644 --- a/legacy/evil/src/lib/Makefile.am +++ b/legacy/evil/src/lib/Makefile.am @@ -83,3 +83,6 @@ else libevil_la_LINK = $(CXXLINK) $(libevil_la_LDFLAGS) endif + +install-data-hook: + sed -i -e 's/-luuid//g' $(libdir)/$(lib_LTLIBRARIES) diff --git a/legacy/evil/src/lib/dlfcn/Makefile.am b/legacy/evil/src/lib/dlfcn/Makefile.am index c9e00dae28..457bde45bb 100644 --- a/legacy/evil/src/lib/dlfcn/Makefile.am +++ b/legacy/evil/src/lib/dlfcn/Makefile.am @@ -13,3 +13,6 @@ libdl_la_CPPFLAGS = @win32_cppflags@ -DEFL_EVIL_DLFCN_BUILD -DPSAPI_VERSION=1 libdl_la_CFLAGS = @win32_cflags@ libdl_la_LIBADD = $(top_builddir)/src/lib/libevil.la $(EFL_MPATROL_LIBS) @win32_dl_libs@ libdl_la_LDFLAGS = -no-undefined -Wl,--enable-auto-import -version-info @version_info@ + +install-data-hook: + sed -i -e 's/-luuid//g' $(libdir)/$(lib_LTLIBRARIES)