[libfko] bump version to 2.0.4 to account for fko_set_username() crash fix

This commit is contained in:
Michael Rash 2015-12-22 03:29:07 -08:00
parent fb65fbe3aa
commit e2925c1f85
2 changed files with 10 additions and 8 deletions

View File

@ -25,27 +25,27 @@ Source0: fwknop-%{version}.tar.gz
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
BuildRequires: gpg, gpgme-devel, libpcap-devel, iptables BuildRequires: gpg, gpgme-devel, libpcap-devel, iptables
Requires: libfko >= 2.0.3, iptables Requires: libfko >= 2.0.4, iptables
%package -n libfko %package -n libfko
Version: 2.0.3 Version: 2.0.4
Release: 1 Release: 1
Summary: The fwknop library Summary: The fwknop library
Group: Development/Libraries Group: Development/Libraries
Requires: gpg, gpgme Requires: gpg, gpgme
%package -n libfko-devel %package -n libfko-devel
Version: 2.0.3 Version: 2.0.4
Release: 1 Release: 1
Summary: The fwknop library header and API docs Summary: The fwknop library header and API docs
Group: Development/Libraries Group: Development/Libraries
Requires: libfko >= 2.0.3 Requires: libfko >= 2.0.4
%package server %package server
Summary: The Firewall Knock Operator server. An implementation of Single Packet Authorization. Summary: The Firewall Knock Operator server. An implementation of Single Packet Authorization.
Group: System Environment/Daemons Group: System Environment/Daemons
Requires: libfko => 2.0.3, libpcap, iptables Requires: libfko => 2.0.4, libpcap, iptables
%description %description
@ -144,6 +144,8 @@ fi
%changelog %changelog
* Wed Dec 23 2015 <mbr@cipherdyne.org> - 2.6.8 * Wed Dec 23 2015 <mbr@cipherdyne.org> - 2.6.8
- fwknop-2.6.8 release. - fwknop-2.6.8 release.
- Bumped libfko version to 2.0.4 to account for fko_set_username() crash
fixed in 21149faf.
* Mon Aug 24 2015 <mbr@cipherdyne.org> - 2.6.7 * Mon Aug 24 2015 <mbr@cipherdyne.org> - 2.6.7
- fwknop-2.6.7 release. - fwknop-2.6.7 release.

View File

@ -18,12 +18,12 @@ fko_utests_SOURCES = fko_utests.c $(libfko_source_files)
fko_utests_CPPFLAGS = -I $(top_builddir)/lib -I $(top_builddir)/common $(GPGME_CFLAGS) fko_utests_CPPFLAGS = -I $(top_builddir)/lib -I $(top_builddir)/common $(GPGME_CFLAGS)
fko_utests_LDADD = $(top_builddir)/lib/libfko.la $(top_builddir)/common/libfko_util.a fko_utests_LDADD = $(top_builddir)/lib/libfko.la $(top_builddir)/common/libfko_util.a
fko_utests_LDFLAGS = -lcunit $(GPGME_LIBS) fko_utests_LDFLAGS = -lcunit $(GPGME_LIBS)
libfko_la_LDFLAGS = -version-info 2:3:0 $(GPGME_LIBS) -export-symbols-regex '^fko_' libfko_la_LDFLAGS = -version-info 2:4:0 $(GPGME_LIBS) -export-symbols-regex '^fko_'
else else
if APPLE_PLATFORM if APPLE_PLATFORM
libfko_la_LDFLAGS = -version-info 2:3:0 $(GPGME_LIBS) -export-symbols-regex '^fko_' libfko_la_LDFLAGS = -version-info 2:4:0 $(GPGME_LIBS) -export-symbols-regex '^fko_'
else else
libfko_la_LDFLAGS = -version-info 2:3:0 $(GPGME_LIBS) \ libfko_la_LDFLAGS = -version-info 2:4:0 $(GPGME_LIBS) \
-export-symbols-regex '^fko_' \ -export-symbols-regex '^fko_' \
-Wl,--whole-archive,$(top_builddir)/common/libfko_util.a,--no-whole-archive -Wl,--whole-archive,$(top_builddir)/common/libfko_util.a,--no-whole-archive
endif endif