diff --git a/macros.mingw32 b/macros.mingw32 index 1e7bd36..87af379 100644 --- a/macros.mingw32 +++ b/macros.mingw32 @@ -81,6 +81,7 @@ unset x i %mingw32_pkg_config %{mingw32_target}-pkg-config +%mingw32_pkgconfig_personalitydir %{mingw32_datadir}/pkgconfig/personality.d %mingw32_configure %{mingw32_env} ; \ __mingw32_topdir=.; if ! test -x configure; then __mingw32_topdir=..; fi; \\\ diff --git a/macros.mingw64 b/macros.mingw64 index 55857d6..39b4f4f 100644 --- a/macros.mingw64 +++ b/macros.mingw64 @@ -81,6 +81,7 @@ unset x i %mingw64_pkg_config %{mingw64_target}-pkg-config +%mingw64_pkgconfig_personalitydir %{mingw32_datadir}/pkgconfig/personality.d %mingw64_configure %{mingw64_env} ; \ __mingw64_topdir=.; if ! test -x configure; then __mingw64_topdir=..; fi; \\\ diff --git a/mingw-filesystem.spec b/mingw-filesystem.spec index cd0e5d3..33e1853 100644 --- a/mingw-filesystem.spec +++ b/mingw-filesystem.spec @@ -6,7 +6,7 @@ %global macrosdir %(d=%{_rpmconfigdir}/macros.d; [ -d $d ] || d=%{_sysconfdir}/rpm; echo $d) Name: mingw-filesystem -Version: 108 +Version: 109 Release: 1%{?dist} Summary: MinGW cross compiler base filesystem and environment @@ -316,6 +316,9 @@ install -m 0644 %{SOURCE19} $RPM_BUILD_ROOT%{_datadir}/mingw/ %changelog +* Thu Aug 29 2019 Sandro Mani - 109-1 +- Add dlltool to toolchain-mingw{32,64}.meson + * Mon Aug 12 2019 Sandro Mani - 108-1 - Fix mingw-find-debuginfo.sh to pick up strippable binaries also in %%{_prefix}/%%{mingw32,64_target} diff --git a/toolchain-mingw32.meson b/toolchain-mingw32.meson index 127d413..edae1d6 100644 --- a/toolchain-mingw32.meson +++ b/toolchain-mingw32.meson @@ -8,6 +8,7 @@ pkgconfig = '/usr/bin/i686-w64-mingw32-pkg-config' ranlib = '/usr/bin/x86_64-w64-mingw32-ranlib' strip = '/usr/bin/i686-w64-mingw32-strip' windres = '/usr/bin/i686-w64-mingw32-windres' +dlltool = '/usr/bin/i686-w64-mingw32-dlltool' [properties] root = '/usr/i686-w64-mingw32/sys-root/mingw' diff --git a/toolchain-mingw64.meson b/toolchain-mingw64.meson index 9e0a180..195df84 100644 --- a/toolchain-mingw64.meson +++ b/toolchain-mingw64.meson @@ -8,6 +8,7 @@ pkgconfig = '/usr/bin/x86_64-w64-mingw32-pkg-config' ranlib = '/usr/bin/x86_64-w64-mingw32-ranlib' strip = '/usr/bin/x86_64-w64-mingw32-strip' windres = '/usr/bin/x86_64-w64-mingw32-windres' +dlltool = '/usr/bin/x86_64-w64-mingw32-dlltool' [properties] root = '/usr/x86_64-w64-mingw32/sys-root/mingw'