forked from LanguageMachines/ticcutils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure.ac
119 lines (96 loc) · 3.02 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
114
115
116
117
118
119
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.61)
AC_INIT([ticcutils],[0.21],[lamasoftware@science.ru.nl])
AM_INIT_AUTOMAKE([foreign])
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++ clang++] )
AC_PROG_LIBTOOL
LT_INIT
# when running tests, use CXX
AC_LANG([C++])
# check OpenMP support
AC_OPENMP
if test "x$ac_cv_prog_cxx_openmp" != "xunsupported"; then
CXXFLAGS="$CXXFLAGS $OPENMP_CXXFLAGS"
AC_DEFINE(HAVE_OPENMP, 1 , Define to 1 if you have OpenMP )
else
AC_MSG_NOTICE([We don't have OpenMP. Multithreaded operation is disabled])
fi
#checks for libraries.
AX_CHECK_ZLIB( [],
[AC_MSG_ERROR([zlib not found. Please install libzlib1g-dev.])] )
# Checks for header files.
AC_CHECK_HEADERS([arpa/inet.h fcntl.h netdb.h netinet/in.h sys/socket.h unistd.h sys/time.h])
AC_CHECK_HEADERS([bzlib.h],
[LIBS="$LIBS -lbz2"],
[AC_MSG_ERROR([bz2lib not found. Please install libbz2-dev])] )
AC_CHECK_HEADERS([libtar.h],
[LIBS="$LIBS -ltar"],
[AC_MSG_ERROR([libtar not found. Please install libtar.])] )
# Checks for typedefs, structures, and compiler characteristics.
AC_C_INLINE
AC_HEADER_STDBOOL
AC_TYPE_SIZE_T
AC_TYPE_SSIZE_T
AC_TYPE_PID_T
AX_LIB_SOCKET_NSL
AX_TYPE_SOCKLEN_T
# Checks for library functions.
AC_CHECK_FUNCS([localtime_r gettimeofday mkdir getaddrinfo gethostbyaddr gethostbyname inet_ntoa memset socket strerror dup2 memmove ])
AC_FUNC_FORK
# AC_FUNC_MALLOC seems to drive clang nuts
AX_PTHREAD([],[AC_MSG_ERROR([We need pthread support!])])
if test x"$ax_pthread_ok" = xyes; then
LIBS="$PTHREAD_LIBS $LIBS" \
CXXFLAGS="$CXXFLAGS $PTHREAD_CFLAGS"
fi
# for now we demand boost, because on some systems gcc4.8 is installed still
# and that fails on regex.
AX_BOOST_BASE( [1.50],
[AX_BOOST_REGEX
LIBS="$LIBS $BOOST_REGEX_LIB"
AC_DEFINE(HAVE_BOOST_REGEX, 1 , [Define to 1 if you have boost regular expresions] )],
[AC_MSG_ERROR([No Regular expression support available. Please install libboost-regex-dev])])
PKG_PROG_PKG_CONFIG
if test "x$prefix" = "xNONE"; then
prefix="/usr/local"
fi
if test "x$PKG_CONFIG_PATH" = x
then
export PKG_CONFIG_PATH="$prefix/lib/pkgconfig"
else
export PKG_CONFIG_PATH="$prefix/lib/pkgconfig:$PKG_CONFIG_PATH"
fi
AC_OSX_PKG( [icu4c] )
AC_MSG_NOTICE([pkg-config: PATH=$PKG_CONFIG_PATH])
PKG_CHECK_MODULES([XML2], [libxml-2.0 >= 2.6.16] )
CXXFLAGS="$CXXFLAGS $XML2_CFLAGS"
LIBS="$LIBS $XML2_LIBS"
PKG_CHECK_MODULES([ICU], [icu-uc >= 50 icu-io] )
CXXFLAGS="$CXXFLAGS $ICU_CFLAGS"
LIBS="$ICU_LIBS $LIBS"
AC_CONFIG_FILES([
Makefile
ticcutils.pc
m4/Makefile
src/Makefile
docs/Makefile
include/Makefile
include/ticcutils/Makefile
tests/Makefile
tests/sub1/Makefile
])
AC_OUTPUT