Compare commits
42 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2b568b0136 | ||
|
|
61dda03ad6 | ||
|
|
8c0a9a2744 | ||
|
|
5cdfb5dc7a | ||
|
|
2ba6425a00 | ||
|
|
cb016e7317 | ||
|
|
c8ae1309ae | ||
|
|
1bc5134706 | ||
|
|
1cb438733f | ||
|
|
d1f897dccf | ||
|
|
0502eb1960 | ||
|
|
04ba3e0b7e | ||
|
|
9e6802e3b7 | ||
|
|
3dd626ffa0 | ||
|
|
13c901b7af | ||
|
|
b80422b75f | ||
|
|
0a97bab77b | ||
|
|
e47d99b391 | ||
|
|
12b8a0bc12 | ||
|
|
de1a0c8e35 | ||
|
|
e1c1539e16 | ||
|
|
7a106ac239 | ||
|
|
0108fed20c | ||
|
|
6666ee1fbe | ||
| 4899b764e8 | |||
|
|
690b1cc3cf | ||
|
|
b06c92b895 | ||
|
|
0da91cc706 | ||
|
|
c2c0544f92 | ||
|
|
9958f38243 | ||
|
|
1cff1e4bfa | ||
|
|
5226e5546b | ||
|
|
b11c5a2199 | ||
|
|
f46381246b | ||
|
|
135a5bb23b | ||
|
|
deb7fbd467 | ||
|
|
29fbd797d1 | ||
|
|
4f322ac6af | ||
|
|
4f02baed80 | ||
|
|
862d0b3419 | ||
|
|
d99d0bd41b | ||
|
|
f3609faa1b |
3 changed files with 51 additions and 31 deletions
2
sources
2
sources
|
|
@ -1 +1 @@
|
|||
SHA512 (libzmq-4.3.4.tar.gz) = ad828b1ab5a87983285a6b44b08240816ed1c4e2c73306ab1a851bf80df1892b5e2f92064a49fbadc1f4c75043625ace77dd25b64d5d1c2a7d1d61cc916fba0b
|
||||
SHA512 (zeromq-4.3.5.tar.gz) = a71d48aa977ad8941c1609947d8db2679fc7a951e4cd0c3a1127ae026d883c11bd4203cf315de87f95f5031aec459a731aec34e5ce5b667b8d0559b157952541
|
||||
|
|
|
|||
37
zeromq-configure-c99.patch
Normal file
37
zeromq-configure-c99.patch
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
Build with -D_DEFAULT_SOURCE along with -std=c11
|
||||
|
||||
On its own, -std=c11 hides POSIX and other extensions from C headers
|
||||
such as <stdlib.h> when building against glibc. This causes the
|
||||
posix_memalign probe to fail incorrectly with compilers that do not
|
||||
accept implicit function declarations. _DEFAULT_SOURCE is ignored by
|
||||
most non-GNU/Linux systems or not relevant in this context, so there
|
||||
is no separate check for adding it.
|
||||
|
||||
Submitted upstream: <https://github.com/zeromq/libzmq/pull/4635>
|
||||
|
||||
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
||||
index 68fb7251..f956f3fd 100644
|
||||
--- a/CMakeLists.txt
|
||||
+++ b/CMakeLists.txt
|
||||
@@ -122,7 +122,7 @@ if (NOT MSVC)
|
||||
if(NOT CMAKE_C_FLAGS MATCHES "-std=" AND NOT C_STANDARD AND NOT CMAKE_C_STANDARD)
|
||||
check_c_compiler_flag("-std=c11" COMPILER_SUPPORTS_C11)
|
||||
if(COMPILER_SUPPORTS_C11)
|
||||
- set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=c11")
|
||||
+ set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -D_DEFAULT_SOURCE -std=c11")
|
||||
else()
|
||||
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=gnu99")
|
||||
endif()
|
||||
diff --git a/configure.ac b/configure.ac
|
||||
index b9e13d4f..ffcc145b 100644
|
||||
--- a/configure.ac
|
||||
+++ b/configure.ac
|
||||
@@ -66,7 +66,7 @@ ZMQ_ORIG_CXXFLAGS="${CXXFLAGS:-none}"
|
||||
|
||||
# Checks for programs.
|
||||
AC_PROG_CC
|
||||
-AX_CHECK_COMPILE_FLAG([-std=c11], [CFLAGS+=" -std=c11"], [AC_PROG_CC_C99])
|
||||
+AX_CHECK_COMPILE_FLAG([-std=c11], [CFLAGS+=" -std=c11 -D_DEFAULT_SOURCE"], [AC_PROG_CC_C99])
|
||||
AC_PROG_CXX
|
||||
AX_CODE_COVERAGE
|
||||
AM_PROG_CC_C_O
|
||||
43
zeromq.spec
43
zeromq.spec
|
|
@ -2,13 +2,14 @@
|
|||
%bcond_without unwind
|
||||
|
||||
Name: zeromq
|
||||
Version: 4.3.4
|
||||
Release: 3%{?dist}
|
||||
Version: 4.3.5
|
||||
Release: %autorelease
|
||||
Summary: Software library for fast, message-based applications
|
||||
|
||||
License: LGPLv3+
|
||||
License: MPL-2.0 AND BSD-3-Clause AND MIT
|
||||
URL: https://zeromq.org
|
||||
Source0: https://github.com/%{name}/libzmq/archive/v%{version}/libzmq-%{version}.tar.gz
|
||||
Source0: https://github.com/%{name}/libzmq/archive/v%{version}/%{name}-%{version}.tar.gz
|
||||
Patch1: zeromq-configure-c99.patch
|
||||
|
||||
BuildRequires: make
|
||||
BuildRequires: autoconf
|
||||
|
|
@ -18,11 +19,10 @@ BuildRequires: libtool
|
|||
BuildRequires: asciidoc
|
||||
BuildRequires: xmlto
|
||||
BuildRequires: libsodium-devel
|
||||
|
||||
%if %{with unwind}
|
||||
%ifarch %{arm} aarch64 hppa ia64 mips ppc %{power64} %{ix86} x86_64
|
||||
BuildRequires: libunwind-devel
|
||||
%endif
|
||||
%endif
|
||||
|
||||
%if %{with pgm}
|
||||
BuildRequires: openpgm-devel
|
||||
|
|
@ -51,7 +51,7 @@ developing applications that use %{name}.
|
|||
|
||||
|
||||
%prep
|
||||
%autosetup -p1 -n libzmq-%{version}
|
||||
%autosetup -p1
|
||||
|
||||
# Remove bundled code.
|
||||
rm -rf external/wepoll
|
||||
|
|
@ -68,10 +68,9 @@ autoreconf -fi
|
|||
--with-libgssapi_krb5 \
|
||||
%endif
|
||||
--with-libsodium \
|
||||
--enable-drafts \
|
||||
%if %{with unwind}
|
||||
%ifarch %{arm} aarch64 hppa ia64 mips ppc %{power64} %{ix86} x86_64
|
||||
--enable-libunwind \
|
||||
%endif
|
||||
%endif
|
||||
--disable-Werror \
|
||||
--disable-static
|
||||
|
|
@ -86,8 +85,9 @@ rm %{buildroot}%{_libdir}/libzmq.la
|
|||
|
||||
|
||||
%check
|
||||
make check V=1 || ( cat test-suite.log && exit 1 )
|
||||
|
||||
%ifarch s390x
|
||||
make check V=1 XFAIL_TESTS=tests/test_radio_dish || ( cat test-suite.log && exit 1 )
|
||||
%endif
|
||||
|
||||
|
||||
%ldconfig_scriptlets
|
||||
|
|
@ -95,7 +95,7 @@ make check V=1 || ( cat test-suite.log && exit 1 )
|
|||
|
||||
%files
|
||||
%doc README.md AUTHORS NEWS
|
||||
%license COPYING COPYING.LESSER
|
||||
%license LICENSE
|
||||
%{_bindir}/curve_keygen
|
||||
%{_libdir}/libzmq.so.5*
|
||||
%{_mandir}/man3/zmq_*
|
||||
|
|
@ -109,22 +109,5 @@ make check V=1 || ( cat test-suite.log && exit 1 )
|
|||
|
||||
|
||||
%changelog
|
||||
* Tue Mar 07 2023 Ben Woodard <woodard@redhat.com> - 4.3.4-3
|
||||
- disable building with libunwind to fix C++ exceptions when a C applicaion loads
|
||||
a module written in C++ #2175966
|
||||
|
||||
* Tue Feb 02 2021 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 4.3.4-2
|
||||
- Re-added aarch64
|
||||
|
||||
* Sat Jan 30 2021 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 4.3.4-1
|
||||
- Upstream upgrade
|
||||
- Fixes #1921879, #1921972, #1921973, #1921975, #1921976, #1921979, #1921981,
|
||||
- #1921983, #1921983, #1921985, #1921987, #1921989, #1921992, #1921994
|
||||
|
||||
* Wed Sep 16 2020 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 4.3.3-1
|
||||
- Upstream upgrade
|
||||
- Fixes #1876738 and #1876689
|
||||
|
||||
* Sun Oct 27 2019 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 4.3.2-1
|
||||
- Initial build for EPEL 8
|
||||
%autochangelog
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue