|
|
|
%?mingw_package_header
|
|
|
|
|
|
|
|
%global realname dlfcn-win32
|
|
|
|
|
|
|
|
%global alphatag r11
|
|
|
|
|
|
|
|
Name: mingw-dlfcn
|
|
|
|
Version: 0
|
|
|
|
Release: 0.19.%{alphatag}%{?dist}
|
|
|
|
Summary: Implements a wrapper for dlfcn (dlopen dlclose dlsym dlerror)
|
|
|
|
|
|
|
|
License: LGPLv2+
|
|
|
|
Group: Development/Libraries
|
|
|
|
URL: http://code.google.com/p/dlfcn-win32/
|
|
|
|
Source0: http://dlfcn-win32.googlecode.com/files/%{realname}-%{alphatag}.tar.bz2
|
|
|
|
|
|
|
|
BuildArch: noarch
|
|
|
|
|
|
|
|
BuildRequires: mingw32-filesystem >= 95
|
|
|
|
BuildRequires: mingw32-gcc
|
|
|
|
BuildRequires: mingw32-binutils
|
|
|
|
|
|
|
|
BuildRequires: mingw64-filesystem >= 95
|
|
|
|
BuildRequires: mingw64-gcc
|
|
|
|
BuildRequires: mingw64-binutils
|
|
|
|
|
|
|
|
#BuildRequires: dos2unix
|
|
|
|
|
|
|
|
Patch1: dlfcn_configure.patch
|
|
|
|
Patch2: dlfcn-fix-cplusplus-linkage.patch
|
|
|
|
Patch3: dlfcn-fix-static-lib.patch
|
|
|
|
|
|
|
|
|
|
|
|
%description
|
|
|
|
This library implements a wrapper for dlfcn, as specified in POSIX and SUS,
|
|
|
|
around the dynamic link library functions found in the Windows API.
|
|
|
|
|
|
|
|
|
|
|
|
# Win32
|
|
|
|
%package -n mingw32-dlfcn
|
|
|
|
Summary: Implements a wrapper for dlfcn (dlopen dlclose dlsym dlerror)
|
|
|
|
|
|
|
|
%description -n mingw32-dlfcn
|
|
|
|
This library implements a wrapper for dlfcn, as specified in POSIX and SUS,
|
|
|
|
around the dynamic link library functions found in the Windows API.
|
|
|
|
|
|
|
|
%package -n mingw32-dlfcn-static
|
|
|
|
Summary: Static version of the MinGW Windows dlfcn library
|
|
|
|
Requires: mingw32-dlfcn = %{version}-%{release}
|
|
|
|
Group: Development/Libraries
|
|
|
|
|
|
|
|
%description -n mingw32-dlfcn-static
|
|
|
|
Static version of the MinGW Windows dlfcn library.
|
|
|
|
|
|
|
|
# Win64
|
|
|
|
%package -n mingw64-dlfcn
|
|
|
|
Summary: Implements a wrapper for dlfcn (dlopen dlclose dlsym dlerror)
|
|
|
|
|
|
|
|
%description -n mingw64-dlfcn
|
|
|
|
This library implements a wrapper for dlfcn, as specified in POSIX and SUS,
|
|
|
|
around the dynamic link library functions found in the Windows API.
|
|
|
|
|
|
|
|
%package -n mingw64-dlfcn-static
|
|
|
|
Summary: Static version of the MinGW Windows dlfcn library
|
|
|
|
Requires: mingw64-dlfcn = %{version}-%{release}
|
|
|
|
Group: Development/Libraries
|
|
|
|
|
|
|
|
%description -n mingw64-dlfcn-static
|
|
|
|
Static version of the MinGW Windows dlfcn library.
|
|
|
|
|
|
|
|
|
|
|
|
%?mingw_debug_package
|
|
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q -n %{realname}-%{alphatag}
|
|
|
|
|
|
|
|
%{__sed} -i 's/\r//' configure
|
|
|
|
%{__sed} -i 's/\r//' README
|
|
|
|
%{__sed} -i 's/\r//' COPYING
|
|
|
|
|
|
|
|
%patch1 -p1
|
|
|
|
%patch2 -p0
|
|
|
|
%patch3 -p0
|
|
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
export MINGW32_CONFIGURE_ARGS="--incdir=%{mingw32_includedir} --cc=%{mingw32_cc} --enable-strip=%{mingw32_strip}"
|
|
|
|
export MINGW64_CONFIGURE_ARGS="--incdir=%{mingw64_includedir} --cc=%{mingw64_cc} --enable-strip=%{mingw64_strip}"
|
|
|
|
%mingw_configure --enable-shared --enable-static
|
|
|
|
|
|
|
|
# This package doesn't support out of source compilation by default
|
|
|
|
# Fix this manually
|
|
|
|
sed -i s@'dlfcn.c'@'../dlfcn.c'@ Makefile
|
|
|
|
sed -i s@'dlfcn.h'@'../dlfcn.h'@ Makefile
|
|
|
|
sed -i s@'test.c'@'../test.c'@ Makefile
|
|
|
|
sed -i s@'testdll.c'@'../testdll.c'@ Makefile
|
|
|
|
cp Makefile build_win32
|
|
|
|
cp Makefile build_win64
|
|
|
|
|
|
|
|
%mingw_make %{?_smp_mflags}
|
|
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
%mingw_make DESTDIR=$RPM_BUILD_ROOT install
|
|
|
|
|
|
|
|
|
|
|
|
# Win32
|
|
|
|
%files -n mingw32-dlfcn
|
|
|
|
%doc README COPYING
|
|
|
|
%{mingw32_bindir}/libdl.dll
|
|
|
|
%{mingw32_libdir}/libdl.dll.a
|
|
|
|
%{mingw32_includedir}/dlfcn.h
|
|
|
|
|
|
|
|
%files -n mingw32-dlfcn-static
|
|
|
|
%{mingw32_libdir}/libdl.a
|
|
|
|
|
|
|
|
# Win64
|
|
|
|
%files -n mingw64-dlfcn
|
|
|
|
%doc README COPYING
|
|
|
|
%{mingw64_bindir}/libdl.dll
|
|
|
|
%{mingw64_libdir}/libdl.dll.a
|
|
|
|
%{mingw64_includedir}/dlfcn.h
|
|
|
|
|
|
|
|
%files -n mingw64-dlfcn-static
|
|
|
|
%{mingw64_libdir}/libdl.a
|
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
|
|
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0-0.19.r11
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
|
|
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0-0.18.r11
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0-0.17.r11
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
|
|
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0-0.16.r11
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
|
|
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0-0.15.r11
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
|
|
|
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0-0.14.r11
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
|
|
|
* Sat Apr 14 2012 Erik van Pienbroek <epienbro@fedoraproject.org> - 0-0.13.r11
|
|
|
|
- Added win64 support
|
|
|
|
|
|
|
|
* Wed Mar 07 2012 Erik van Pienbroek <epienbro@fedoraproject.org> - 0-0.12.r11
|
|
|
|
- Renamed the source package to mingw-dlfcn (RHBZ #800861)
|
|
|
|
- Use mingw macros without leading underscore
|
|
|
|
|
|
|
|
* Mon Feb 27 2012 Erik van Pienbroek <epienbro@fedoraproject.org> - 0-0.11.r11
|
|
|
|
- Rebuild against the mingw-w64 toolchain
|
|
|
|
|
|
|
|
* Thu Feb 16 2012 Erik van Pienbroek <epienbro@fedoraproject.org> - 0-0.10.r11
|
|
|
|
- Make sure the static lib is compiled correctly (RHBZ #791191)
|
|
|
|
- Various cleanups
|
|
|
|
|
|
|
|
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0-0.9.r11
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
|
|
|
|
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0-0.8.r11
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
|
|
|
* Fri Oct 30 2009 Erik van Pienbroek <epienbro@fedoraproject.org> - 0-0.7.r11
|
|
|
|
- Use %%global instead of %%define
|
|
|
|
- Automatically generate debuginfo subpackage
|
|
|
|
- Fixed %%defattr line
|
|
|
|
- Added -static subpackage
|
|
|
|
- Fixed linker error with C++ applications
|
|
|
|
|
|
|
|
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0-0.6.r11
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
|
|
|
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0-0.5.r11
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
|
|
|
* Fri Feb 20 2009 Richard W.M. Jones <rjones@redhat.com> - 0-0.4.r11
|
|
|
|
- Rebuild for mingw32-gcc 4.4
|
|
|
|
|
|
|
|
* Wed Jan 14 2009 Richard W.M. Jones <rjones@redhat.com> - 0-0.3.r11
|
|
|
|
- Use Version 0
|
|
|
|
(https://www.redhat.com/archives/fedora-packaging/2009-January/msg00064.html)
|
|
|
|
- Revert use of dos2unix for now
|
|
|
|
(https://www.redhat.com/archives/fedora-packaging/2009-January/msg00066.html)
|
|
|
|
- Use _smp_mflags.
|
|
|
|
|
|
|
|
* Tue Jan 13 2009 Richard W.M. Jones <rjones@redhat.com> - 0.1-0.2.r11
|
|
|
|
- Import into fedora-mingw temporary repository because there are packages
|
|
|
|
which will depend on this.
|
|
|
|
- Fix the version/release according to packaging guidelines.
|
|
|
|
- Tidy up the spec file.
|
|
|
|
- Use dos2unix and keep the timestamps.
|
|
|
|
|
|
|
|
* Fri Jan 02 2009 Itamar Reis Peixoto <itamar@ispbrasil.com.br> - r11-1
|
|
|
|
- Initial RPM release.
|