X-Git-Url: http://git.osdn.net/view?a=blobdiff_plain;f=configure.ac;h=03adec68e9ec9f840133e3439564c7c1f7129417;hb=c89e3672f7e7fa0c301b5a4327d11c32b4bba441;hp=814ea4641be81b2ba00fad3fa71d7c5468b082d2;hpb=2b48189880587ab83bd24ef58bd145a690e46280;p=hengband%2Fhengband.git diff --git a/configure.ac b/configure.ac index 814ea4641..03adec68e 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ dnl Process this file with autoconf to produce a configure script. -AC_INIT(hengband, 2.1.5) +AC_INIT(hengband, 3.0.0.0) AC_CONFIG_HEADERS(src/autoconf.h) AC_CONFIG_SRCDIR(src/main.c) @@ -53,8 +53,10 @@ AC_ARG_ENABLE(xim, [ --disable-xim disable xim support], use_xim=no, use_xim=yes) AC_ARG_ENABLE(fontset, [ --disable-fontset disable fontset support], use_fontset=no, use_fontset=yes) +AC_ARG_ENABLE([xft], + AS_HELP_STRING([--enable-xft], [Enable xft support])) AC_ARG_ENABLE(worldscore, -[ --disable-worldscore disable worldscore support], ,AC_DEFINE(WORLD_SCORE, 1, [Allow the game to send scores to the score server])) +[ --disable-worldscore disable worldscore support], worldscore=no, AC_DEFINE(WORLD_SCORE, 1, [Allow the game to send scores to the score server])) AC_ARG_ENABLE(chuukei, [ --enable-chuukei enable internet chuukei support], AC_DEFINE(CHUUKEI, 1, [Chuukei mode])) @@ -75,6 +77,10 @@ AC_CHECK_LIB(iconv, iconv_open) AC_CHECK_FILE(/dev/urandom, AC_DEFINE(RNG_DEVICE, "/dev/urandom", [Random Number Generation device file])) +if test "$worldscore" != no; then + PKG_CHECK_MODULES(libcurl, [libcurl]) +fi + dnl Checks for header files. AC_PATH_XTRA if test "$have_x" = yes; then @@ -103,6 +109,11 @@ if test "$have_x" = yes; then AC_CHECK_LIB(X11, _Xsetlocale, AC_DEFINE(X_LOCALE, 1, [Use XLocale])) AC_CHECK_LIB(xpg4, setlocale, LIBS="$LIBS -lxpg4") fi + + AS_IF([test "x$enable_xft" = "xyes"], [ + PKG_CHECK_MODULES(XFT, [xft], + [AC_DEFINE([USE_XFT], [1], [Use XFT])]) + ]) fi if test "$use_japanese" != no; then