-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump version to 0.9.7, updating configure.ac
- Loading branch information
1 parent
0356cd1
commit ba103c0
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
AC_INIT(ckpool, 0.9.6, [email protected]) | ||
AC_INIT([ckpool],[0.9.7],[[email protected]]) | ||
|
||
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" | ||
|
||
|