-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconfigure.ac
113 lines (95 loc) · 3.54 KB
/
configure.ac
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
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
# $Id$
# $URL$
AC_PREREQ(2.61)
AC_INIT([mbtserver],[0.9],[[email protected]])
AM_INIT_AUTOMAKE
AC_CONFIG_SRCDIR([.])
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_HEADER([config.h])
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
if $cxx_flags_were_set; then
CXXFLAGS=$CXXFLAGS
fi
# Checks for programs.
AC_PROG_CXX( [g++] )
AC_PROG_LIBTOOL
LT_INIT
# when running tests, use CXX
AC_LANG([C++])
# Checks for libraries.
# Checks for header files.
# Checks for typedefs, structures, and compiler characteristics.
AC_HEADER_STDBOOL
AC_C_INLINE
AC_TYPE_PID_T
AC_TYPE_SIZE_T
# Checks for library functions.
AC_CHECK_FUNCS([strerror])
# check for pthreads first otherwise this may fail on OpenMp stuff
ACX_PTHREAD([],[AC_MSG_NOTICE([no pthread support found])])
if test x"$acx_pthread_ok" = xyes; then
LIBS="$PTHREAD_LIBS $LIBS" \
CXXFLAGS="$CXXFLAGS $PTHREAD_CFLAGS"
fi
PKG_PROG_PKG_CONFIG
# Checks for timbl library.
# inspired by feh-1.3.4/configure.ac. Tnx Tom Gilbert and feh hackers.
# 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=""
fi
AC_ARG_WITH(timbl,
[ --with-timbl=DIR use timbl installed in <DIR>;
note that you can install timbl in a non-default directory with
./configure --prefix=<DIR> in the timbl 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([timbl], [timbl >= 6.4.4] )
CXXFLAGS="$CXXFLAGS $timbl_CFLAGS"
LIBS="$LIBS $timbl_LIBS"
AC_ARG_WITH(timblserver,
[ --with-timblserver=DIR use timblserver installed in <DIR>;
note that you can install timbl in a non-default directory with
./configure --prefix=<DIR> in the timbl installation directory],
[PKG_CONFIG_PATH="$PKG_CONFIG_PATH:$withval/lib/pkgconfig"])
# AC_MSG_NOTICE( [pkg-config search path: $PKG_CONFIG_PATH] )
PKG_CHECK_MODULES([timblserver], [timblserver >= 1.10] )
CXXFLAGS="$CXXFLAGS $timblserver_CFLAGS"
LIBS="$LIBS $timblserver_LIBS"
AC_ARG_WITH(mbt,
[ --with-mbt=DIR use mbt installed in <DIR>;
note that you can install mbt in a non-default directory with
./configure --prefix=<DIR> in the mbt installation directory],
[PKG_CONFIG_PATH="$PKG_CONFIG_PATH:$withval/lib/pkgconfig"])
# AC_MSG_NOTICE( [pkg-config search path: $PKG_CONFIG_PATH] )
PKG_CHECK_MODULES([mbt], [mbt >= 3.2.13] )
CXXFLAGS="$CXXFLAGS $mbt_CFLAGS"
LIBS="$LIBS $mbt_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.9] )
CXXFLAGS="$CXXFLAGS $ticcutils_CFLAGS"
LIBS="$LIBS $ticcutils_LIBS"
AC_CONFIG_FILES([
Makefile
src/Makefile
include/Makefile
include/mbtserver/Makefile
docs/Makefile
example/Makefile
])
AC_OUTPUT