From e2925c1f857421c5c37a790790dd1de5a2b5392b Mon Sep 17 00:00:00 2001 From: Michael Rash Date: Tue, 22 Dec 2015 03:29:07 -0800 Subject: [PATCH] [libfko] bump version to 2.0.4 to account for fko_set_username() crash fix --- fwknop.spec | 12 +++++++----- lib/Makefile.am | 6 +++--- 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/fwknop.spec b/fwknop.spec index f8cc2160..b80a8f14 100644 --- a/fwknop.spec +++ b/fwknop.spec @@ -25,27 +25,27 @@ Source0: fwknop-%{version}.tar.gz BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildRequires: gpg, gpgme-devel, libpcap-devel, iptables -Requires: libfko >= 2.0.3, iptables +Requires: libfko >= 2.0.4, iptables %package -n libfko -Version: 2.0.3 +Version: 2.0.4 Release: 1 Summary: The fwknop library Group: Development/Libraries Requires: gpg, gpgme %package -n libfko-devel -Version: 2.0.3 +Version: 2.0.4 Release: 1 Summary: The fwknop library header and API docs Group: Development/Libraries -Requires: libfko >= 2.0.3 +Requires: libfko >= 2.0.4 %package server Summary: The Firewall Knock Operator server. An implementation of Single Packet Authorization. Group: System Environment/Daemons -Requires: libfko => 2.0.3, libpcap, iptables +Requires: libfko => 2.0.4, libpcap, iptables %description @@ -144,6 +144,8 @@ fi %changelog * Wed Dec 23 2015 - 2.6.8 - 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 - 2.6.7 - fwknop-2.6.7 release. diff --git a/lib/Makefile.am b/lib/Makefile.am index 1dfe9b99..6cb1ae39 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am @@ -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_LDADD = $(top_builddir)/lib/libfko.la $(top_builddir)/common/libfko_util.a 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 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 -libfko_la_LDFLAGS = -version-info 2:3:0 $(GPGME_LIBS) \ +libfko_la_LDFLAGS = -version-info 2:4:0 $(GPGME_LIBS) \ -export-symbols-regex '^fko_' \ -Wl,--whole-archive,$(top_builddir)/common/libfko_util.a,--no-whole-archive endif