1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
|
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
# $Id: configure.ac 15905 2013-04-03 13:03:22Z sloot $
# $URL: https://ilk.uvt.nl/svn/sources/ucto/trunk/configure.ac $
AC_PREREQ(2.59)
AC_INIT([ucto], [0.5.3], [timbl@uvt.nl])
AM_INIT_AUTOMAKE
AC_CONFIG_SRCDIR([configure.ac])
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_HEADER([config.h])
SYSCONFDIR=$sysconfdir
AC_SUBST([SYSCONFDIR])
if test x"${CXXFLAGS+set}" = xset; then
# the user set CXXFLAGS; don't override it.
cxx_flags_were_set=true
else
cxx_flags_were_set=false
fi
# Checks for programs.
AC_PROG_CXX( [g++] )
if $cxx_flags_were_set; then
CXXFLAGS=$CXXFLAGS
fi
AC_PROG_RANLIB
# use libtool
AC_PROG_LIBTOOL
AC_SUBST([LIBTOOL_DEPS])
# when running tests, use CXX
AC_LANG([C++])
# Checks for libraries.
if test $prefix = "NONE"; then
prefix="$ac_default_prefix"
fi
# Checks for header files.
# Checks for typedefs, structures, and compiler characteristics.
AC_HEADER_STDBOOL
AC_C_INLINE
AC_TYPE_SIZE_T
# Checks for library functions.
# ugly hack when PKG_CONFIG_PATH isn't defined.
# couldn't get it to work otherwise
if test "x$PKG_CONFIG_PATH" = x; then
export PKG_CONFIG_PATH="/usr/lib/pkgconfig"
fi
useICU=1;
# inspired by feh-1.3.4/configure.ac. Tnx Tom Gilbert and feh hackers.
AC_ARG_WITH(icu,
[ --with-icu=DIR use ICU installed in <DIR>],
[if test "$with_icu" = "no"; then
useICU=0
else
CXXFLAGS="$CXXFLAGS -I$withval/include"
LIBS="-L$withval/lib $LIBS"
fi] )
if test "$useICU" = "1"; then
AX_ICU_CHECK( [3.6],
[CXXFLAGS="$CXXFLAGS $ICU_CPPSEARCHPATH"
LIBS="$ICU_LIBPATH $ICU_LIBS $ICU_IOLIBS $LIBS"],
[AC_MSG_FAILURE( "No ICU development environment found. Please check if libicu-dev or the like is installed" )] )
AC_DEFINE(HAVE_ICU, 1, we want to use ICU )
else
AC_MSG_ERROR("ICU support is required")
fi
PKG_CHECK_MODULES([XML2], [libxml-2.0 >= 2.6.16] )
CXXFLAGS="$CXXFLAGS $XML2_CFLAGS"
LIBS="$LIBS $XML2_LIBS"
AC_ARG_WITH(folia,
[ --with-folia=DIR use libfolia installed in <DIR>;
note that you can install folia in a non-default directory with
./configure --prefix=<DIR> in the folia installation directory],
[PKG_CONFIG_PATH="$withval/lib/pkgconfig:$PKG_CONFIG_PATH"],
[PKG_CONFIG_PATH="$prefix/lib/pkgconfig:$PKG_CONFIG_PATH"])
AC_MSG_NOTICE( [pkg-config search path: $PKG_CONFIG_PATH] )
PKG_CHECK_MODULES([folia], [folia >= 0.10] )
CXXFLAGS="$folia_CFLAGS $CXXFLAGS"
LIBS="$folia_LIBS $LIBS"
AC_ARG_WITH(ticcutils,
[ --with-ticcutils=DIR use ticcutils installed in <DIR>;
note that you can install ticcutils in a non-default directory with
./configure --prefix=<DIR> in the ticcutils installation directory],
[PKG_CONFIG_PATH="$PKG_CONFIG_PATH:$withval/lib/pkgconfig"],
[PKG_CONFIG_PATH="$PKG_CONFIG_PATH:$prefix/lib/pkgconfig"])
# AC_MSG_NOTICE( [pkg-config search path: $PKG_CONFIG_PATH] )
PKG_CHECK_MODULES([ticcutils], [ticcutils >= 0.4] )
CXXFLAGS="$CXXFLAGS $ticcutils_CFLAGS"
LIBS="$LIBS $ticcutils_LIBS"
# Checks for library functions.
AC_OUTPUT([
Makefile
ucto.pc
ucto-icu.pc
m4/Makefile
config/Makefile
docs/Makefile
src/Makefile
tests/Makefile
include/Makefile
include/ucto/Makefile
])
|