X-Git-Url: http://git.chise.org/gitweb/?a=blobdiff_plain;f=configure.ac;h=883ee70ced71d10c2f57733c811caf8aad0ca65d;hb=591a819efc75e92464892d88c34a8a521cfcba84;hp=0c81d85f0b2cce8b4900055352f76095871caab1;hpb=dac487979fd371a17cd5be218ccfc8c7d78236c1;p=m17n%2Fm17n-lib.git diff --git a/configure.ac b/configure.ac index 0c81d85..883ee70 100644 --- a/configure.ac +++ b/configure.ac @@ -30,32 +30,32 @@ AM_CONFIG_HEADER(src/config.h) API_VERSION=1:0:1 AC_SUBST(API_VERSION) -# Checks for programs for compiling. +dnl Checks for programs for compiling. AC_PROG_CC AC_LIBTOOL_DLOPEN AC_LIBLTDL_CONVENIENCE AM_PROG_LIBTOOL -# Checks for X libraries. +dnl Checks for X libraries. AC_PATH_XTRA -# Checks for standard header files. +dnl Checks for standard header files. AC_HEADER_STDC AC_HEADER_DIRENT AC_HEADER_TIME AC_CHECK_HEADERS([fcntl.h langinfo.h limits.h locale.h stdlib.h \ string.h strings.h sys/time.h unistd.h]) -# Checks for typedefs, structures, and compiler characteristics. +dnl Checks for typedefs, structures, and compiler characteristics. AC_C_CONST AC_C_INLINE AC_TYPE_SIZE_T AC_STRUCT_TM -# Checks for endian. This influence the default UTF-16 definition. +dnl Checks for endian. This influence the default UTF-16 definition. AC_C_BIGENDIAN -# Checks for library functions. +dnl Checks for library functions. AC_FUNC_ALLOCA AC_FUNC_MALLOC AC_FUNC_REALLOC @@ -67,12 +67,30 @@ AC_FUNC_STRTOD AC_CHECK_FUNCS(memmove memset nl_langinfo putenv regcomp setlocale) AC_CHECK_FUNCS(strchr strdup gettimeofday) -# Check several libraries without adding -lxxx to LIBS, without -# defining HAVE_LIBXXX nor HAVE_XXX_H because they are used only for -# libm17-X.so. Instead, define XXX_LD_FLAGS and HAVE_XXX if library -# XXX is available. CPPFLAGS will be augmented. +dnl Checks where the m17n database is installed. -# Check for fribidi library. +AC_CHECK_PROG(HAVE_M17N_DB, m17n-db, yes) +if test "x$HAVE_M17N_DB" = "xyes"; then + M17NDIR=`m17n-db` +else + M17NDIR="${datadir}/m17n" +fi +AC_SUBST(M17NDIR) + + +dnl Checks if dlopen exists, and if it's in libc or libdl. + +AC_SEARCH_LIBS(dlopen, dl, + AC_DEFINE(HAVE_DLOPEN, 1, + [Define to 1 if you have the funciton dlopen.])) + +dnl Check several libraries without adding -lxxx to LIBS, without +dnl defining HAVE_LIBXXX nor HAVE_XXX_H because they are used only by +dnl some libraries (e.g. libm17n-X.so). Instead, define XXX_LD_FLAGS +dnl and HAVE_XXX if library XXX is available. CPPFLAGS will be +dnl augmented. + +dnl Check for fribidi library. save_CPPFLAGS="$CPPFLAGS" save_LIBS="$LIBS" AC_CHECK_PROG(HAVE_FRIBIDI_CONFIG, fribidi-config, yes) @@ -95,7 +113,7 @@ fi LIBS="$save_LIBS" AC_SUBST(FRIBIDI_LD_FLAGS) -# Check for otflib usability. +dnl Check for otflib usability. save_CPPFLAGS="$CPPFLAGS" save_LIBS="$LIBS" AC_CHECK_PROG(HAVE_OTFLIB_CONFIG, libotf-config, yes) @@ -119,7 +137,7 @@ fi LIBS="$save_LIBS" AC_SUBST(OTF_LD_FLAGS) -# Check for Freetype2 usability. +dnl Check for Freetype2 usability. AC_CHECK_PROG(HAVE_FREETYPE_CONFIG, freetype-config, yes) if test "x$HAVE_FREETYPE_CONFIG" = "xyes"; then FREETYPE_INC=`freetype-config --cflags` @@ -134,7 +152,7 @@ if test "x$HAVE_FREETYPE_CONFIG" = "xyes"; then HAVE_FREETYPE=no) LIBS="$save_LIBS" if test "x$HAVE_FREETYPE" = "xyes"; then - FREETYPE_LD_FLAGS=`freetype-config --libtool` + FREETYPE_LD_FLAGS=`freetype-config --libs` AC_DEFINE(HAVE_FREETYPE, 1, [Define to 1 if you have FreeType library and header file.]) fi @@ -142,7 +160,7 @@ if test "x$HAVE_FREETYPE_CONFIG" = "xyes"; then fi AC_SUBST(FREETYPE_LD_FLAGS) -# Check for Xft2 usability. +dnl Check for Xft2 usability. save_CPPFLAGS="$CPPFLAGS" save_LIBS="$LIBS" AC_CHECK_PROG(HAVE_XFT_CONFIG, xft-config, yes) @@ -170,7 +188,7 @@ fi LIBS="$save_LIBS" AC_SUBST(XFT2_LD_FLAGS) -# Check for fontconfig usability. +dnl Check for fontconfig usability. save_CPPFLAGS="$CPPFLAGS" save_LIBS="$LIBS" FONTCONFIG_LD_FLAGS=-lfontconfig @@ -194,7 +212,7 @@ fi LIBS="$save_LIBS" AC_SUBST(FONTCONFIG_LD_FLAGS) -# Check for gdlib usability. +dnl Check for gdlib usability. save_LIBS="$LIBS" AC_CHECK_LIB(gd, gdImageCreate, HAVE_GD=yes, HAVE_GD=no) AC_CHECK_HEADER(gd.h, , HAVE_GD=no) @@ -207,7 +225,7 @@ fi LIBS="$save_LIBS" AC_SUBST(GD_LD_FLAGS) -# Check for libxml2 usability. +dnl Check for libxml2 usability. save_CPPFLAGS="$CPPFLAGS" save_LIBS="$LIBS" AC_CHECK_PROG(HAVE_XML2_CONFIG, xml2-config, yes) @@ -231,7 +249,7 @@ fi LIBS="$save_LIBS" AC_SUBST(XML2_LD_FLAGS) -# Check for Anthy usability. +dnl Check for Anthy usability. AC_CHECK_LIB(anthydic, anthy_init_sessions, HAVE_ANTHY=yes, HAVE_ANTHY=no) if test "x$HAVE_ANTHY" = "xyes"; then AC_CHECK_LIB(anthy, anthy_init, HAVE_ANTHY=yes, HAVE_ANTHY=no, -lanthydic) @@ -246,13 +264,13 @@ if test "x$HAVE_ANTHY" = "xyes"; then fi AC_SUBST(ANTHY_LD_FLAGS) -# Check for Ispell usability. +dnl Check for Ispell usability. AC_CHECK_PROG(HAVE_ISPELL, ispell, yes) if test "x$HAVE_ISPELL" = "xyes"; then AC_DEFINE(HAVE_ISPELL, 1, [Define if ispell is available.]) fi -# Check for libwordcut (for Thai). +dnl Check for libwordcut (for Thai). AC_CHECK_LIB(wordcut, wordcut_init, HAVE_WORDCUT=yes, HAVE_WORDCUT=no) if test "x$HAVE_WORDCUT" = "xyes"; then if test -f "/usr/share/wordcut/tdict.wcd"; then @@ -270,6 +288,13 @@ if test "x$HAVE_WORDCUT" = "xyes"; then fi AC_SUBST(WORDCUT_LD_FLAGS) +dnl We can't include X_CFLAGS in AM_CPPFLAGS because the generated +dnl Makefile put ${AM_CPPFLAGS} before ${CPPFLAGS} and that leads to +dnl inclusion of an incorrect header file. So, append X_CFLAGS to +dnl CPPFLAGS here directly. + +CPPFLAGS="$CPPFLAGS $X_CFLAGS" + dnl AC_ARG_ENABLE(xom, dnl [ --enable-xom build and install XOM library.], dnl XOM="$enableval")