2 # Process this file with autoconf to produce a configure script.
6 m4_define([required_lttoolbox_version], [3.0.0])
7 m4_define([required_libxml_version], [2.6.17])
8 m4_define([required_libpcre_version], [6.4])
9 #m4_define([required_pkg_config_version], [0.15])
11 AC_INIT([apertium], [3.0.6], [sortiz@users.sourceforge.net])
12 AC_CONFIG_HEADER([apertium/apertium_config.h])
14 GENERIC_LIBRARY_NAME=apertium
17 GENERIC_MAJOR_VERSION=3
18 GENERIC_MINOR_VERSION=0
19 GENERIC_MICRO_VERSION=6
21 # API version (often = GENERIC_MAJOR_VERSION.GENERIC_MINOR_VERSION)
22 GENERIC_API_VERSION=$GENERIC_MAJOR_VERSION
23 AC_SUBST(GENERIC_API_VERSION)
25 # Shared library versioning
26 GENERIC_LIBRARY_VERSION=0:0:0
30 # current:revision:age
32 # | | +- increment if interfaces have been added
33 # | | set to zero if interfaces have been removed
35 # | +- increment if source code has changed
36 # | set to zero if current is incremented
37 # +- increment if interfaces have been added, removed or changed
39 AC_SUBST(GENERIC_LIBRARY_VERSION)
40 PACKAGE=$GENERIC_LIBRARY_NAME
41 AC_SUBST(GENERIC_LIBRARY_NAME)
43 GENERIC_VERSION=$GENERIC_MAJOR_VERSION.$GENERIC_MINOR_VERSION.$GENERIC_MICRO_VERSION
44 GENERIC_RELEASE=$GENERIC_MAJOR_VERSION.$GENERIC_MINOR_VERSION
45 AC_SUBST(GENERIC_RELEASE)
46 AC_SUBST(GENERIC_VERSION)
48 VERSION=$GENERIC_VERSION
50 AM_INIT_AUTOMAKE($PACKAGE, $VERSION, no-define)
52 # Checks for programs.
54 AC_MSG_CHECKING([Compilation architecture: PPC, i686, x86_64, Other])
55 if test x$(which arch) = x
56 then ARCH=$($(which uname) -m)
57 else ARCH=$($(which arch))
62 AC_MSG_RESULT([PowerPC])
63 CFLAGS="$CFLAGS -Wall -ansi -mpowerpc -maltivec -fno-pic -fomit-frame-pointer"
64 CXXFLAGS="$CXXFLAGS -Wall -ansi -mpowerpc -maltivec -fno-pic -fomit-frame-pointer"
66 if test x$ARCH = xi686
69 CFLAGS="$CFLAGS -Wall -ansi -march=i686 -O3 -fomit-frame-pointer -funroll-loops"
70 CXXFLAGS="$CXXFLAGS -Wall -ansi -march=i686 -O3 \
71 -fomit-frame-pointer -funroll-loops"
73 if test x$ARCH = xx86_64
75 AC_MSG_RESULT([x86_64])
76 CFLAGS="-Wall -ansi -O3 -mtune=nocona -fomit-frame-pointer -funroll-loops $CFLAGS"
77 CXXFLAGS="-Wall -ansi -O3 -mtune=nocona \
78 -fomit-frame-pointer -funroll-loops $CXXFLAGS"
80 AC_MSG_RESULT([Other])
81 CFLAGS="-Wall -ansi -O3 $CFLAGS"
82 CXXFLAGS="-Wall -ansi -O3 $CXXFLAGS"
93 [ --enable-debug Enable "-g -Wall" compiler options],
94 [CXXFLAGS="-g -Wall"; CFLAGS="-g -Wall"])
96 AC_ARG_ENABLE(profile,
97 [ --enable-profile Enable "-pg -g -Wall" compiler options],
98 [CXXFLAGS="-pg -g -Wall"; CFLAGS="-pg -g -Wall"; LDFLAGS="-pg"])
100 AC_PATH_PROG(XMLLINT, xmllint, no)
101 if test x$ac_cv_path_XMLLINT = x
103 AC_MSG_ERROR([You don't have xmllint installed.])
105 if test x$ac_cv_path_XMLLINT = xno
107 AC_MSG_ERROR([You don't have xmllint installed.])
110 AC_PATH_PROG(XSLTPROC, xsltproc, no)
111 if test x$ac_cv_path_XSLTPROC = x
113 AC_MSG_ERROR([You don't have xsltproc installed.])
115 if test x$ac_cv_path_XSLTPROC = xno
117 AC_MSG_ERROR([You don't have xsltproc installed.])
121 AC_PATH_PROG(BASH, bash, no)
122 if test x$ac_cv_path_BASH = x
124 AC_MSG_ERROR([You don't have bash installed.])
126 if test x$ac_cv_path_BASH = xno
128 AC_MSG_ERROR([You don't have bash installed.])
131 AC_PATH_PROG(FLEX, flex, no)
132 if test x$ac_cv_path_FLEX = x
134 AC_MSG_ERROR([You don't have flex installed.])
136 if test x$ac_cv_path_FLEX = xno
138 AC_MSG_ERROR([You don't have flex installed.])
141 AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
142 if test x$ac_cv_path_PKG_CONFIG = x
144 AC_MSG_ERROR([You don't have pkg-config installed.])
146 if test x$ac_cv_path_PKG_CONFIG = xno
148 AC_MSG_ERROR([You don't have pkg-config installed.])
151 AC_CHECK_HEADER(pcreposix.h,
152 AC_CHECK_LIB(pcre, pcre_info,[
153 LIBS="$LIBS -lpcreposix -lpcre"
155 AC_MSG_ERROR([*** unable to locate pcre library ***])),
156 AC_MSG_ERROR([*** unable to locate pcreposix.h include file ***]))
158 AC_CHECK_HEADER(pcrecpp.h,
159 AC_CHECK_LIB(pcrecpp,pcre_compile,[
160 LIBS="$LIBS -lpcrecpp"
162 AC_MSG_ERROR([*** unable to locate pcrecpp library ***])),
163 AC_MSG_ERROR([*** unable to locate pcrecpp.h include file ***]))
165 PKG_CHECK_MODULES(APERTIUM, [dnl
166 lttoolbox-3.0 >= required_lttoolbox_version dnl
167 libxml-2.0 >= required_libxml_version dnl
168 libpcre >= required_libpcre_version], CPPFLAGS="$CPPFLAGS $APERTIUM_CFLAGS"; LIBS="$LIBS $APERTIUM_LIBS")
170 # Checks for header files.
172 AC_CHECK_HEADERS([stdlib.h string.h unistd.h stddef.h])
174 # Checks for typedefs, structures, and compiler characteristics.
179 # Checks for library functions.
180 AC_FUNC_ERROR_AT_LINE
184 AC_CHECK_DECLS([fread_unlocked, fwrite_unlocked, fgetc_unlocked, fputc_unlocked, fputs_unlocked, getopt_long, fgetwc_unlocked, fputwc_unlocked, fgetws_unlocked, fputws_unlocked])
186 AC_CHECK_FUNCS([setlocale strdup])
188 AC_OUTPUT([Makefile apertium-3.0.pc apertium/Makefile])