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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
|
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.50)
AC_INIT(include/thai/thailib.h)
AM_INIT_AUTOMAKE(libthai, 0.1.18, thai-linux-foss-devel@googlegroups.com)
# Library versioning
# Library code modified: REVISION++
# Interfaces added: CURRENT++ REVISION=0 AGE++
# Interfaces changed/removed: CURRENT++ REVISION=0 AGE=0
LT_CURRENT=1
LT_REVISION=7
LT_AGE=1
AC_SUBST(LT_CURRENT)
AC_SUBST(LT_REVISION)
AC_SUBST(LT_AGE)
AC_CONFIG_MACRO_DIR([m4])
dnl Checks for programs.
AC_PROG_CC
AC_PROG_INSTALL
AC_PROG_LN_S
AC_PROG_MAKE_SET
AC_LIBTOOL_WIN32_DLL
AM_PROG_LIBTOOL
# Whether linker support --version-script option
echo '{global:hello; local:*;};' > conftest.ver
AC_LIBTOOL_LINKER_OPTION(
[whether linker supports -version-script],
libthai_cv_have_version_script,
[-Wl,-version-script -Wl,conftest.ver])
AM_CONDITIONAL(LD_HAS_VERSION_SCRIPT,
test "$libthai_cv_have_version_script" = "yes")
dnl Check commandline options
AC_ARG_ENABLE(debug,
[AC_HELP_STRING([--enable-debug],
[enable assertion checks])],
, enable_debug="no")
AC_ARG_ENABLE(ansi,
[AC_HELP_STRING([--enable-ansi],
[turn on strict ansi])],
, enable_ansi="no")
if test "x$GCC" = "xyes"; then
case " $CFLAGS " in
*[[\ \ ]]-Wall[[\ \ ]]*) ;;
*) CFLAGS="$CFLAGS -Wall" ;;
esac
if test "x$enable_ansi" = "xyes"; then
case " $CFLAGS " in
*[[\ \ ]]-ansi[[\ \ ]]*) ;;
*) CFLAGS="$CFLAGS -ansi" ;;
esac
case " $CFLAGS " in
*[[\ \ ]]-pedantic[[\ \ ]]*) ;;
*) CFLAGS="$CFLAGS -pedantic" ;;
esac
fi
fi
if test "x$enable_debug" = "xno"; then
case " $CFLAGS " in
*[[\ \ ]]-DNDEBUG[[\ \ ]]*) ;;
*) CFLAGS="$CFLAGS -DNDEBUG" ;;
esac
fi
dnl Disable doc generation with doxygen option
AC_ARG_ENABLE(doxygen-doc,
[AC_HELP_STRING([--disable-doxygen-doc],
[disable document generation with doxygen])],
, enable_doxygen_doc="yes")
if test "x$enable_doxygen_doc" = "xyes"; then
AC_CHECK_PROG(DOXYGEN,doxygen,doxygen,no)
if test "x$DOXYGEN" = "xno"; then
enable_doxygen_doc="no"
fi
fi
dnl where to install the doxygen-generated HTML doc
AC_ARG_WITH(html-docdir,
[AC_HELP_STRING([--with-html-docdir=DIR],
[where to install the doxyten-generated HTML doc [PREFIX/share/doc/libthai/html]])],
[htmldocdir="$withval"], [htmldocdir=\$\{prefix\}/share/doc/libthai/html])
AC_SUBST(htmldocdir)
AM_CONDITIONAL(ENABLE_DOXYGEN_DOC,test "x$enable_doxygen_doc" = "xyes")
dnl dictionary data generation
AC_ARG_ENABLE(dict,
[AC_HELP_STRING([--disable-dict],
[disable dictionary data generation])],
, enable_dict="yes")
if test "x$enable_dict" = "xyes"; then
AC_CHECK_PROGS(TRIETOOL,trietool-0.2,no)
if test "x$TRIETOOL" = "xno"; then
AC_MSG_ERROR([You need trietool-0.2 (from libdatrie package) to generate dict, or just use --disable-dict to skip])
fi
fi
AM_CONDITIONAL(ENABLE_DICT,test "x$enable_dict" = "xyes")
dnl Checks for libraries.
PKG_CHECK_MODULES(DATRIE,datrie-0.2)
dnl Checks for header files.
AC_CHECK_HEADERS([stddef.h stdlib.h string.h wchar.h])
dnl Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
AC_TYPE_SIZE_T
dnl Checks for library functions.
dnl AC_FUNC_MALLOC
AC_OUTPUT(
libthai.pc
Makefile
include/Makefile
include/thai/Makefile
src/Makefile
src/thctype/Makefile
src/thstr/Makefile
src/thcell/Makefile
src/thinp/Makefile
src/thrend/Makefile
src/thcoll/Makefile
src/thbrk/Makefile
src/thwchar/Makefile
src/thwctype/Makefile
src/thwstr/Makefile
src/thwbrk/Makefile
data/Makefile
tests/Makefile
doc/Makefile
doc/Doxyfile
)
AC_MSG_RESULT([Type make to build libthai.])
|