X-Git-Url: http://git.osdn.net/view?a=blobdiff_plain;f=configure.ac;h=7f05c3c7d284dda0f8ef18e800919ed2e2812b32;hb=ea3875b5f7097678cb95048e5eff7004b1342d25;hp=e7fc640484e1047fe7c5765d1250149a7df65ad8;hpb=8ad29ed6cb953f5f4bc7d1ed368db9f92104fd92;p=hengband%2Fhengband.git diff --git a/configure.ac b/configure.ac index e7fc64048..7f05c3c7d 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.4) +AC_INIT(hengband, 2.1.5) AC_CONFIG_HEADERS(src/autoconf.h) AC_CONFIG_SRCDIR(src/main.c) @@ -49,11 +49,6 @@ AC_ARG_ENABLE(worldscore, AC_ARG_ENABLE(chuukei, [ --enable-chuukei enable internet chuukei support], AC_DEFINE(CHUUKEI, 1, [Chuukei mode])) -dnl -fno-strength-reduce prevents a bug in some versions of gcc -if test "$GCC" = yes; then - CFLAGS="$CFLAGS -fno-strength-reduce --exec-charset=EUC-JP" -fi - dnl Checks for libraries. dnl Replace `main' with a function in -lncurses: AC_CHECK_LIB(ncursesw, initscr, [AC_DEFINE(USE_GCU, 1, [Allow -mGCU environment]) AC_DEFINE(USE_NCURSES, 1, [Use ncurses]) LIBS="$LIBS -lncursesw"]) @@ -69,6 +64,8 @@ fi AC_CHECK_LIB(iconv, iconv_open) +AC_CHECK_FILE(/dev/urandom, AC_DEFINE(RNG_DEVICE, "/dev/urandom", [Random Number Generation device file])) + dnl Checks for header files. AC_PATH_XTRA if test "$have_x" = yes; then @@ -99,6 +96,13 @@ if test "$have_x" = yes; then fi fi +if test "$use_japanese" != no; then + AC_CHECK_PROG(NKF, nkf, yes) + if test x"$NKF" != x"yes"; then + AC_MSG_ERROR([nkf is not found. Please install nkf.]) + fi +fi + AC_HEADER_STDC AC_CHECK_HEADERS(fcntl.h strings.h sys/file.h sys/ioctl.h sys/time.h termio.h unistd.h stdint.h)