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
|
AC_PREREQ(2.54)
AC_INIT(teckit, 2.5.1, jonathan_kew@sil.org)
AM_CONFIG_HEADER([config.h])
AC_CONFIG_SRCDIR([source/UnicodeNames.cpp])
AC_CANONICAL_SYSTEM
AM_INIT_AUTOMAKE
AM_MAINTAINER_MODE
# Checks for programs.
AC_PROG_CXX
AC_PROG_CC
AC_PROG_INSTALL
AC_PROG_LIBTOOL
if test "${target_os}" = "mingw32"; then
AC_PROG_RC
fi
AC_ARG_WITH(old-lib-names,
[ --with-old-lib-names Use old library names (for Windows only)],
[case "${withval}" in
yes) oldnames=true ;;
no) oldnames=false ;;
*) AC_MSG_ERROR(bad value ${withval} for --with-old-lib-names) ;;
esac],[oldnames=false])
AM_CONDITIONAL(OLD_LIB_NAMES, test x$oldnames = xtrue)
sinclude(../../libs/zlib/withenable.ac)
sinclude(../../libs/zlib/zlib.ac)
# Checks for libraries.
AC_CHECK_LIB(z, compress)
AM_CONDITIONAL(SYSTEM_ZLIB, test x$ac_cv_lib_z_compress = xyes)
SYSTEM_ZLIB=no
# Checks for header files.
AC_HEADER_STDC
#AC_CHECK_HEADERS([limits.h malloc.h memory.h stddef.h stdlib.h string.h])
# Checks for typedefs, structures, and compiler characteristics.
#AC_TYPE_SIZE_T
#AC_STRUCT_TM
#AC_CHECK_SIZEOF(wchar_t)
#AC_SUBST(SIZEOF_WCHAR_T)
# Checks for library functions.
#AC_FUNC_ERROR_AT_LINE
#AC_FUNC_MALLOC
#AC_FUNC_MEMCMP
#AC_FUNC_REALLOC
#AC_FUNC_VPRINTF
#AC_CHECK_FUNCS([isascii memmove memset strcasecmp strchr strrchr strtoul])
AC_C_BIGENDIAN
# Enable debug
if test "$enable_debug" = yes; then
CFLAGS="$CFLAGS -O0"
CXXFLAGS="$CXXFLAGS -O0"
if test "$ac_cv_prog_cc_g" = yes; then
CFLAGS="$CFLAGS -g"
fi
if test "$ac_cv_prog_cxx_g" = yes; then
CXXFLAGS="$CXXFLAGS -g"
fi
CFLAGS="$CFLAGS -Wno-unknown-pragmas -Wparentheses -Werror "
CXXFLAGS="$CXXFLAGS -Wno-unknown-pragmas -Wparentheses -Werror "
# AC_DEFINE(DEBUG)
else
CFLAGS="$CFLAGS -DNDEBUG"
CXXFLAGS="$CXXFLAGS -DNDEBUG"
fi
# Enable final
if test "$enable_final" = yes; then
CFLAGS="-O3 -DNDEBUG"
CXXFLAGS="-O3 -DNDEBUG"
fi
# Enable profile
if test "$enable_profile" = yes; then
CFLAGS="$CFLAGS -pg "
CXXFLAGS="$CXXFLAGS -pg "
fi
if test "$enable_profilefn" = yes; then
CFLAGS="$CFLAGS -g -finstrument-functions "
CXXFLAGS="$CXXFLAGS -g -finstrument-functions "
LIBS="$LIBS -g -finstrument-functions -lfnccheck "
fi
# We only want expat for sfconv, so remember the libs setting without it
# (this seems really hacky, but I don't know the proper way....!)
noexpat_CFLAGS="$CFLAGS"
noexpat_LIBS="$LIBS"
AC_CHECK_LIB(expat, XML_ExpatVersion)
AM_CONDITIONAL(SYSTEM_EXPAT, test x$ac_cv_lib_expat_XML_ExpatVersion = xyes)
expat_CFLAGS="$CFLAGS"
expat_LIBS="$LIBS"
CFLAGS="$noexpat_CFLAGS"
LIBS="$noexpat_LIBS"
AC_SUBST(expat_CFLAGS)
AC_SUBST(expat_LIBS)
AC_CONFIG_FILES([ Makefile lib/Makefile bin/Makefile docs/Makefile test/Makefile])
AC_OUTPUT
|