From ba103c0e669276a77cfc5d9c49d5c6af2706746d Mon Sep 17 00:00:00 2001 From: Con Kolivas Date: Mon, 29 May 2023 10:23:51 +1000 Subject: [PATCH] Bump version to 0.9.7, updating configure.ac --- configure.ac | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/configure.ac b/configure.ac index fd73c7a6..04aedcf8 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ -AC_INIT(ckpool, 0.9.6, kernel@kolivas.org) +AC_INIT([ckpool],[0.9.7],[kernel@kolivas.org]) -AC_CANONICAL_SYSTEM +AC_CANONICAL_TARGET AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_SRCDIR([src/ckpool.c]) AC_CONFIG_HEADERS([config.h]) @@ -25,7 +25,6 @@ LT_INIT([disable-shared]) # gl_INIT - maybe later dnl Checks for header files. -AC_HEADER_STDC AC_FUNC_ALLOCA @@ -80,7 +79,8 @@ AC_SEARCH_LIBS(exp, m, , echo "Error: Required library math not found." && exit AC_SEARCH_LIBS(pthread_mutex_trylock, pthread, , echo "Error: Required library pthreads not found." && exit 1) AC_SEARCH_LIBS(zmq_socket, zmq, ZMQ=yes, ZMQ=no) -AC_OUTPUT([Makefile] [src/Makefile]) +AC_CONFIG_FILES([Makefile src/Makefile]) +AC_OUTPUT LDFLAGS="${LDFLAGS} -Wl,--as-needed"