X-Git-Url: http://winboard.nl/cgi-bin?a=blobdiff_plain;f=configure.ac;h=6894c8728f53d8ab7b37922abcade37a7161aff2;hb=2bc8552c79240896ed28926580c9d8aebd5693fe;hp=8f5c10f40ab6abd2030ca40ba3e0c803104bee3f;hpb=1aca00e04580e7b3effefa535edb469876ecce74;p=gnushogi.git diff --git a/configure.ac b/configure.ac index 8f5c10f..6894c87 100644 --- a/configure.ac +++ b/configure.ac @@ -5,7 +5,7 @@ dnl Process this file with autoconf to produce a configure script. AC_PREREQ(2.57) -AC_INIT([gnushogi],[1.3.2],[mvanier@cs.caltech.edu]) +AC_INIT([gnushogi],[1.4.0+],[https://savannah.gnu.org/bugs/?group=gnushogi]) AC_CONFIG_SRCDIR([version.h]) AC_CONFIG_HEADER(config.h) @@ -41,12 +41,31 @@ AC_PROG_INSTALL echo AC_PATH_XTRA +# +# Check for ncurses. +# + +AC_ARG_WITH([curses], + [AS_HELP_STRING([--with-curses], + [enable curses UI])], + [], + [with_curses=check]) + +LIBCURSES= +AS_IF([test "x$with_curses" != xno], + [AC_CHECK_LIB([curses], [clrtoeol], + [AC_SUBST([LIBCURSES], ["-lcurses"]) + AC_DEFINE([HAVE_LIBCURSES], [1], + [Define if you have lib]) + ], + [AC_MSG_FAILURE( + [--with-curses was given, but test for curses failed])], + [-ltermcap])]) # # Check for other libraries. # -AC_CHECK_LIB(curses, clrtoeol) AC_CHECK_LIB(m, pow) dnl Replace `main' with a function in -ltermcap: AC_CHECK_LIB(termcap, tgoto) @@ -150,45 +169,45 @@ SECOND_SHOGI_PROGRAM=gnushogi FIRST_HOST=localhost SECOND_HOST=localhost +AC_ARG_ENABLE(xshogi, +[ --enable-xshogi + Compile the xshogi graphical interface to GNU shogi (default: no)], +enable_xshogi=$enableval, +enable_xshogi=no) + AC_ARG_WITH(top-part-bitmaps, -[ --with-top-part-bitmaps Use top part of Kanji bitmaps only.], +[ --with-top-part-bitmaps Use top part of Kanji bitmaps only in xshogi.], OPT=-DTOP_PART_BITMAPS) AC_ARG_WITH(first-shogi-program, [ --with-first-shogi-program=PROGNAME - Use PROGNAME as the first shogi program (default: gnushogi)], + Use PROGNAME as the first shogi program in xshogi (default: gnushogi)], FIRST_SHOGI_PROGRAM=$withval) AC_ARG_WITH(second-shogi-program, [ --with-second-shogi-program=PROGNAME - Use PROGNAME as the second shogi program (default: gnushogi)], + Use PROGNAME as the second shogi program in xshogi (default: gnushogi)], SECOND_SHOGI_PROGRAM=$withval) AC_ARG_WITH(first-host, [ --with-first-host=HOSTNAME Use HOSTNAME as the machine on which the first shogi program - runs (default: localhost)], + runs in xshogi (default: localhost)], FIRST_HOST=$withval) AC_ARG_WITH(second-host, [ --with-second-host=HOSTNAME Use HOSTNAME as the machine on which the second shogi program - runs (default: localhost)], + runs in xshogi (default: localhost)], SECOND_HOST=$withval) -AC_ARG_WITH(xshogi, -[ --with-xshogi - Compile the xshogi graphical interface to GNU shogi (default: yes)], -with_xshogi=$withval, -with_xshogi=yes) - AC_SUBST(OPT) AC_SUBST(FIRST_SHOGI_PROGRAM) AC_SUBST(SECOND_SHOGI_PROGRAM) AC_SUBST(FIRST_HOST) AC_SUBST(SECOND_HOST) -if [[ $with_xshogi = yes ]] +if [[ $enable_xshogi = yes ]] then XSHOGI=xshogi_compile XSHOGIINSTALL=xshogi_install