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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
|
## -*- Autoconf -*-
## Use `autoreconf' in top-level directory to recreate all
## autoconf/automake files.
## Or, call `autoconf' to create only configure.
## Copyright (C) 2004-2005 by Gour.
## Copyright (C) 2008 by Joachim Schrod.
##
## This program is free software; you can redistribute it and/or
## modify it under the terms of the GNU General Public License as
## published by the Free Software Foundation; either version 2 of the
## License, or (at your option) any later version.
##
## This program is distributed in the hope that it will be useful, but
## WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
## General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with this program in the file LICENSE; if not, write to the
## Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
## Boston, MA 02110-1301 USA.
AC_PREREQ(2.60)
AC_INIT([xindy], [2.3], [xindy-discuss@lists.sourceforge.net])
AM_INIT_AUTOMAKE([foreign])
AM_MAINTAINER_MODE
# Checks for programs.
AC_PROG_CC
AM_PROG_LEX
dnl test "x$LEX" != "x:" || AC_MSG_ERROR([flex or lex is required, but not found])
AC_PROG_INSTALL
AC_PROG_MAKE_SET
AC_ARG_ENABLE(make-rules, AS_HELP_STRING([--enable-make-rules],[build and install make-rules package (default is YES)]))
AC_ARG_ENABLE(docs, AS_HELP_STRING([--enable-docs],[build and install documentation (default is YES)]))
AC_ARG_ENABLE(tetex-build, AS_HELP_STRING([--enable-tetex-build],[Build as part of a TeX Live installation]))
AC_ARG_WITH(clisp, AS_HELP_STRING([--with-clisp=...],[Use the specified location of the clisp executable (default is search in PATH)]))
if test "x$enable_tetex_build" = xyes; then
dnl we don't really care whether $srcdir/../../texk/kpathsea is found, so don't test for it.
AC_MSG_NOTICE([Using installation layout for TeX Live])
datadir="$prefix/texmf"
docdir="$prefix/texmf/doc/$PACKAGE_NAME"
mandir="$prefix/texmf/doc/man"
if test -z "$enable_docs"; then
AC_MSG_NOTICE([Disabling docs building])
enable_docs=no;
fi
if test -z "$enable_make_rules"; then
AC_MSG_NOTICE([Disabling make-rules building])
enable_make_rules=no;
fi
fi
AM_CONDITIONAL([TETEX_BUILD],[test "x$enable_tetex_build" = xyes])
if test "x$enable_make_rules" != xno; then
AC_PROG_LATEX
fi
AM_CONDITIONAL([BUILDRULES], [test "x$enable_make_rules" != xno])
if test "x$enable_docs" != xno; then
AC_PROG_PDFLATEX
fi
AM_CONDITIONAL([BUILDDOCS], [test "x$enable_docs" != xno])
CLISP=
if test "x$with_clisp" = xyes; then
AC_PATH_PROG(CLISP, clisp)
elif test "x$with_clisp" = xno; then
AC_MSG_ERROR([--without-clisp specified, but clisp is required])
elif test -n "$with_clisp"; then
CLISP="$with_clisp"
else
AC_PATH_PROG(CLISP, clisp)
fi
if test -n "$CLISP"; then
test -x "$CLISP" || AC_MSG_ERROR([clisp is not executable: $CLISP])
AC_MSG_CHECKING([for clisp library directory])
CLISP_LIB=`$CLISP -q -norc -x '(progn (princ *lib-directory*) (values))'`
AC_MSG_RESULT([$CLISP_LIB])
test -f "$CLISP_LIB/clisp-link" || AC_MSG_ERROR([clisp is not usable: expected file is not found: $CLISP_LIB/clisp-link])
test -d "$CLISP_LIB/full" || AC_MSG_ERROR([clisp is not usable: expected directory is not found: $CLISP_LIB/full])
test -d "$CLISP_LIB/linkkit" || AC_MSG_ERROR([clisp is not usable: expected directory is not found: $CLISP_LIB/linkkit])
else
AC_MSG_ERROR([clisp is required but not found in PATH.
Please install clisp or specify the clisp executable location
via the --with-clisp=... option.])
fi
AC_SUBST(CLISP)
AC_SUBST(CLISP_LIB)
dnl CLISP_LIB may end with a backslash (on mingw)
_AM_SUBST_NOTMAKE(CLISP_LIB)
if test "x$EXEEXT" = "x.exe"; then
XINDY_RUN=xindy-lisp.exe
LISP_RUN=lisp.exe
else
XINDY_RUN=xindy.run
LISP_RUN=lisp.run
fi
AC_SUBST(XINDY_RUN)
AC_SUBST(LISP_RUN)
# Checks for libraries.
# Checks for header files.
AC_HEADER_STDC
AC_CHECK_HEADERS([stdlib.h string.h regex.h],[],[AC_MSG_ERROR([required C header file is missing])])
dnl check system type
AC_CANONICAL_HOST
AC_SUBST(host_cpu)
AC_SUBST(host_os)
# Checks for typedefs, structures, and compiler characteristics.
# Checks for library functions.
AC_CHECK_FUNCS([strrchr strtoul])
AC_CONFIG_FILES([Makefile \
rte/Makefile \
rte/ordrules/Makefile \
rte/ordrules/version.lisp \
binaries/Makefile \
tex2xindy/Makefile \
modules/Makefile \
modules/base/Makefile \
modules/class/Makefile \
modules/lang/Makefile \
modules/lang/german/Makefile \
modules/lang/latin/Makefile \
modules/ord/Makefile \
modules/rules/Makefile \
modules/styles/Makefile \
user-commands/Makefile \
make-rules/Makefile \
make-rules/alphabets/Makefile \
make-rules/alphabets/albanian/Makefile \
make-rules/alphabets/belarusian/Makefile \
make-rules/alphabets/bulgarian/Makefile \
make-rules/alphabets/croatian/Makefile \
make-rules/alphabets/czech/Makefile \
make-rules/alphabets/danish/Makefile \
make-rules/alphabets/dutch/Makefile \
make-rules/alphabets/english/Makefile \
make-rules/alphabets/esperanto/Makefile \
make-rules/alphabets/estonian/Makefile \
make-rules/alphabets/finnish/Makefile \
make-rules/alphabets/french/Makefile \
make-rules/alphabets/general/Makefile \
make-rules/alphabets/georgian/Makefile \
make-rules/alphabets/german/Makefile \
make-rules/alphabets/greek/Makefile \
make-rules/alphabets/gypsy/Makefile \
make-rules/alphabets/hausa/Makefile \
make-rules/alphabets/hebrew/Makefile \
make-rules/alphabets/hungarian/Makefile \
make-rules/alphabets/icelandic/Makefile \
make-rules/alphabets/italian/Makefile \
make-rules/alphabets/klingon/Makefile \
make-rules/alphabets/kurdish/Makefile \
make-rules/alphabets/latin/Makefile \
make-rules/alphabets/latvian/Makefile \
make-rules/alphabets/lithuanian/Makefile \
make-rules/alphabets/lower-sorbian/Makefile \
make-rules/alphabets/macedonian/Makefile \
make-rules/alphabets/mongolian/Makefile \
make-rules/alphabets/norwegian/Makefile \
make-rules/alphabets/polish/Makefile \
make-rules/alphabets/portuguese/Makefile \
make-rules/alphabets/romanian/Makefile \
make-rules/alphabets/russian/Makefile \
make-rules/alphabets/serbian/Makefile \
make-rules/alphabets/slovak/Makefile \
make-rules/alphabets/slovenian/Makefile \
make-rules/alphabets/spanish/Makefile \
make-rules/alphabets/swedish/Makefile \
make-rules/alphabets/test1/Makefile \
make-rules/alphabets/turkish/Makefile \
make-rules/alphabets/ukrainian/Makefile \
make-rules/alphabets/upper-sorbian/Makefile \
make-rules/alphabets/vietnamese/Makefile \
make-rules/inputenc/Makefile \
make-rules/styles/Makefile \
doc/Makefile \
doc/style-tutorial/Makefile \
src/Makefile
])
AC_OUTPUT
|