Compare commits

..

5 commits

Author SHA1 Message Date
Fedora Release Engineering
0a147f516a Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild 2026-01-16 03:36:25 +00:00
Fedora Release Engineering
bf7af05717 Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild 2025-07-23 16:54:52 +00:00
Steve Traylen
66775c8356 Use C17 gcc standard. rhbz#2336274 , rhbz#2339882
Use C17 standard for now to buy some time.
2025-03-05 20:00:30 +01:00
Björn Esser
399a2d8e9a
Add explicit BR: libxcrypt-devel
Signed-off-by: Björn Esser <besser82@fedoraproject.org>
2025-02-01 19:52:54 +01:00
Fedora Release Engineering
19fded287f Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild 2025-01-16 10:53:46 +00:00

View file

@ -60,6 +60,7 @@ Requires: /usr/sbin/sendmail
BuildRequires: gcc
BuildRequires: make
BuildRequires: libxcrypt-devel
%description
Alpine -- an Alternatively Licensed Program for Internet
@ -90,6 +91,11 @@ install -m644 -p %{SOURCE1} .
%build
touch imap/ip6
# Add -std=gnu17 for now.
# https://bugzilla.redhat.com/show_bug.cgi?id=2336274
CFLAGS="%{optflags} -std=gnu17"
# --without-tcl disables the TCL-based CGI "Web Alpine"
%configure \
--enable-debug=no \
@ -107,7 +113,7 @@ touch imap/ip6
# Build single threaded, make is not creating directories in time.
export RPM_BUILD_NCPUS=1
%make_build EXTRACFLAGS="$RPM_OPT_FLAGS"
%make_build
%install