X-Git-Url: http://git.chise.org/gitweb/?p=chise%2Fconcord.git;a=blobdiff_plain;f=configure.in;h=b764bb57b91c4b2747990ca74f4c448ea85d4aaa;hp=90f4cc2e8a3db3d086f2335d6644c7b42f58722e;hb=e99e93e4773c5f3472b088db2659f7a848cbcc21;hpb=3462959e6ab773dc56c5adddec27ab5591204fb9 diff --git a/configure.in b/configure.in index 90f4cc2..b764bb5 100644 --- a/configure.in +++ b/configure.in @@ -2,7 +2,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ(2.57) -AC_INIT(concord, 0.0.1, chise-en@m17n.org) +AC_INIT(concord, 0.9.0, chise-en@lists.chise.org) AC_CONFIG_SRCDIR(concord.c) AC_CONFIG_HEADER(config.h) @@ -24,11 +24,12 @@ do done CFLAGS=`echo "$SITE_INCLUDES_CFLAGS $CFLAGS"|sed 's/^ *//'` , -if test -f /sw/include/db3/db.h; then - CFLAGS="-I/sw/include/db3 $CFLAGS" +if test -f /sw/include/db5/db.h; then + CFLAGS="-I/sw/include/db5 $CFLAGS" elif test -f /sw/include/db4/db.h; then CFLAGS="-I/sw/include/db4 $CFLAGS" - LIBS="-ldb $LIBS" +elif test -f /sw/include/db3/db.h; then + CFLAGS="-I/sw/include/db3 $CFLAGS" fi ) @@ -40,18 +41,20 @@ do SITE_LIBS="$SITE_LIBS -L$dir" done LIBS=`echo "$SITE_LIBS $LIBS"|sed 's/^ *//'` +LIBS="-ldb $LIBS" , -if test -f /sw/include/db3/db.h; then - LIBS="-L/sw/lib -ldb-3 $LIBS" +if test -f /sw/include/db5/db.h; then + LIBS="-L/sw/lib -ldb-5 $LIBS" elif test -f /sw/include/db4/db.h; then LIBS="-L/sw/lib -ldb-4 $LIBS" +elif test -f /sw/include/db3/db.h; then + LIBS="-L/sw/lib -ldb-3 $LIBS" else LIBS="-ldb $LIBS" fi ) # Checks for libraries. -LIBS="-ldb $LIBS" # Checks for header files. @@ -59,11 +62,17 @@ LIBS="-ldb $LIBS" AC_C_CONST AC_C_INLINE +AC_CHECK_SIZEOF(int) +AC_CHECK_SIZEOF(long) +AC_CHECK_SIZEOF(long long) +AC_CHECK_SIZEOF(void *) + # Checks for library functions. AC_FUNC_ALLOCA AC_FUNC_STRNLEN - -AC_CHECK_FUNCS(strnlen) +if test "x$ac_cv_func_strnlen_working" = "xyes"; then + AC_DEFINE([HAVE_STRNLEN]) +fi AC_CONFIG_FILES([Makefile]) AC_OUTPUT