X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=configure.ac;h=4cdd5028b14528c561a93676ea3c593969e9fc67;hb=2dcbbf2cd80f1f2c5b9ce1aed67d28093929ccaa;hp=43a7e9c94617417b30b1c7d746a44c0da82e89b1;hpb=40c0443167d0b9a3ed065fd0a998b49a5e2c1b2e;p=liboping.git diff --git a/configure.ac b/configure.ac index 43a7e9c..4cdd502 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,7 @@ # Process this file with autoconf to produce a configure script. -AC_PREREQ([2.68]) -AC_INIT([liboping],[1.6.1]) +AC_PREREQ([2.65]) +AC_INIT([liboping],[1.6.2]) AC_CONFIG_SRCDIR([src/liboping.c]) AC_CONFIG_HEADERS([src/config.h]) AC_CONFIG_MACRO_DIR([m4]) @@ -20,7 +20,7 @@ AC_SUBST(LIBOPING_PATCH) # ABI version LIBOPING_CURRENT=2 -LIBOPING_REVISION=7 +LIBOPING_REVISION=9 LIBOPING_AGE=2 AC_SUBST(LIBOPING_CURRENT) AC_SUBST(LIBOPING_REVISION) @@ -186,10 +186,10 @@ AC_CHECK_FUNCS(nanosleep, [], AM_CONDITIONAL(BUILD_WITH_LIBRT, test "x$nanosleep_needs_rt" = "xyes") with_ncurses="yes" -AC_CHECK_HEADERS(ncurses.h, [with_ncurses="yes"], [with_ncurses="no"]) +AC_CHECK_HEADERS(ncursesw/ncurses.h, [with_ncurses="yes"], [with_ncurses="no"]) if test "x$with_ncurses" = "xyes" then - AC_CHECK_LIB(ncurses, mvwprintw, [with_ncurses="yes"], [with_ncurses="no"]) + AC_CHECK_LIB(ncursesw, mvwprintw, [with_ncurses="yes"], [with_ncurses="no"]) fi AM_CONDITIONAL(BUILD_WITH_LIBNCURSES, test "x$with_ncurses" = "xyes")