From 552894cab4b4eeef814c5e7cd756eed121fd619e Mon Sep 17 00:00:00 2001 From: Simon Josefsson Date: Sat, 12 Sep 2009 07:13:15 +0000 Subject: [PATCH] Fix build error related to _ykp_errno_location on non-Linux. --- Makefile.am | 2 +- NEWS | 5 +++++ configure.ac | 4 ++-- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/Makefile.am b/Makefile.am index 0ee7986..16b8e56 100644 --- a/Makefile.am +++ b/Makefile.am @@ -55,7 +55,7 @@ pkgconfig_DATA = ykpers-1.pc if HAVE_LD_VERSION_SCRIPT libykpers_1_la_LDFLAGS += -Wl,--version-script=$(srcdir)/libykpers-1.map else -libykpers_1_la_LDFLAGS += -export-symbols-regex '^(ykp|yk|ykds)_.*' +libykpers_1_la_LDFLAGS += -export-symbols-regex '^(ykp|yk|ykds)_.*|_yk.*_errno_location' endif # The command line tools. diff --git a/NEWS b/NEWS index 55ec724..f8bf66b 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,10 @@ Yubikey-personalize NEWS -- History of user-visible changes. -*- outline -*- +* Version 0.99 (unreleased) + +** libykpers: Fix build error related to _ykp_errno_location on non-Linux. +Reported by Patrick Neave . + * Version 0.98 (released 2009-09-08) ** ykpersonalize: Exit with non-0 return code when yubikey is not present. diff --git a/configure.ac b/configure.ac index e9ec6cc..b851eed 100644 --- a/configure.ac +++ b/configure.ac @@ -26,7 +26,7 @@ # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -AC_INIT([yubikey-personalization], [0.98], +AC_INIT([yubikey-personalization], [0.99], [yubico-devel@googlegroups.com], [ykpers], [http://code.google.com/p/yubikey-personalization/]) AC_CONFIG_AUX_DIR([build-aux]) @@ -37,7 +37,7 @@ AC_CONFIG_MACRO_DIR([m4]) # Interfaces added: AGE++ # Interfaces removed: AGE=0 AC_SUBST(LT_CURRENT, 1) -AC_SUBST(LT_REVISION, 2) +AC_SUBST(LT_REVISION, 3) AC_SUBST(LT_AGE, 0) AM_INIT_AUTOMAKE([-Wall -Werror]) -- 2.39.5