summaryrefslogtreecommitdiff
path: root/Build/source/utils/xindy/configure.ac
blob: 41579916ee71d87f173111be8e1a536cb2281f2c (plain)
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
197
198
199
200
201
202
203
204
205
dnl Process this file with autoconf to produce a configure script.
dnl
dnl   Copyright (C) 2009-2013 Peter Breitenlohner <tex-live@tug.org>
dnl
dnl   This file is free software; the copyright holder
dnl   gives unlimited permission to copy and/or distribute it,
dnl   with or without modifications, as long as this notice is preserved.
dnl
dnl *********************************************************************
dnl
dnl  Adapted for TeX Live from xindy-2.4-rc1/configure.ac
dnl  Copyright (C) 2004-2005 by Gour.
dnl  Copyright (C) 2008,2009 by Joachim Schrod.
dnl
dnl *********************************************************************
dnl
m4_include([version.ac])[] dnl define xindy_version
AC_INIT([xindy for TeX Live], xindy_version, [tex-k@tug.org])
AC_PREREQ([2.65])
AC_CONFIG_SRCDIR([xindy-]xindy_version[/ChangeLog.Gour])
AC_CONFIG_AUX_DIR([../../build-aux])
AC_CONFIG_MACRO_DIR([../../m4])

KPSE_BASIC([xindy], [no-define])

# Configure options for xindy also shown at the TeX Live top-level.
m4_include([ac/xindy.ac])

AS_CASE([$enable_xindy_rules],
        [yes | no], ,
        [AS_IF([test "x$enable_native_texlive_build" = xyes],
               [enable_xindy_rules=no],
               [enable_xindy_rules=yes])])
AS_CASE([$enable_xindy_docs],
        [yes | no], ,
        [AS_IF([test "x$enable_native_texlive_build" = xyes],
               [enable_xindy_docs=no],
               [enable_xindy_docs=yes])])

# Installation directories for TeX Live.
memdir='$(bindir)'
pkglibdir='$(datarootdir)/texmf-dist/xindy'
docdir='$(datarootdir)/texmf-dist/doc/xindy'
AC_SUBST([memdir])
AC_SUBST([pkglibdir])
AM_CONDITIONAL([TEXLIVE_BUILD], [test "x$enable_texlive_build" = xyes])

# Checks for programs.
AC_PROG_CC
AC_PROG_LEX
AC_PROG_LN_S

# Check system type
AC_CANONICAL_HOST

AC_CHECK_PROGS([CLISP], [clisp], [no])
KPSE_CHECK_PERL
KPSE_CHECK_LATEX
KPSE_CHECK_PDFLATEX

if test "x$enable_build" != xno || test -f config.force; then

if test "x$CLISP" = xno; then
  AC_MSG_ERROR([CLISP is required to build and run xindy])
fi

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

if test "x$with_clisp_runtime" != xsystem; then
  AC_MSG_CHECKING([for clisp runtime])
  if test "x$with_clisp_runtime" = xdefault; then
    # Convert dos line endings from cygwin clisp.
    LISP_RUN=`echo '(format t "~a" *lib-directory*)' \
              | $CLISP -q -norc - | tr -d '\r'`base/$LISP_RUN
  else
    LISP_RUN=$with_clisp_runtime
  fi
  AC_MSG_RESULT([$LISP_RUN])
  if test ! -f "$LISP_RUN"; then
    AC_MSG_ERROR([no such file: "$LISP_RUN"])
  fi
fi

AC_SUBST([XINDY_RUN])
AC_SUBST([LISP_RUN])

if test "x$enable_xindy_rules:$PERL" = xyes:no; then
  AC_MSG_ERROR([PERL is required to build xindy rules])
fi

if test "x$enable_xindy_rules:$LATEX" = xyes:no; then
  AC_MSG_ERROR([LATEX is required to build xindy rules])
fi

if test "x$enable_xindy_rules:$enable_xindy_docs:$PDFLATEX" = xyes:yes:no; then
  AC_MSG_ERROR([PDFLATEX is required to build xindy docs])
fi

if test "x$with_recode" = xyes; then
  AC_CHECK_PROG([CONVERT_FROM_UTF8], [recode], [recode UTF-8..])
  if test "x$CONVERT_FROM_UTF8" != 'xrecode UTF-8..'; then
    AC_MSG_ERROR([--with-xindy-recode specified, but `recode' not found])
  fi
else
  CONVERT_FROM_UTF8='iconv -f UTF-8 -t #' # May need the trailing blank
fi
AC_SUBST([CONVERT_FROM_UTF8])

# No checks for header files. We use stdio.h, unistd.h, and string.h.
# Today, they are universally available if a C compiler is installed.

# Checks for typedefs, structures, and compiler characteristics.

# Checks for library functions.
# The code in tex2indy.l simply assumes that strtoul() is there, would
# need a replacement.
AC_CHECK_FUNCS([strtoul], [],
               [AC_MSG_ERROR([strtoul() is needed])])

echo timestamp >config.force
fi

KPSE_COND_WIN32_WRAP

AC_SUBST([XINDY_TREE], [xindy-]xindy_version)

AM_CONDITIONAL([CLISP_RUNTIME], [test "x$with_clisp_runtime" != xsystem])
AM_CONDITIONAL([BUILDRULES], [test "x$enable_xindy_rules" = xyes])
AM_CONDITIONAL([BUILDDOCS], [test "x$enable_xindy_docs" = xyes])

AC_CONFIG_FILES([Makefile \
		xindy-]xindy_version[/Makefile \
		xindy-]xindy_version[/src/Makefile \
		xindy-]xindy_version[/tex2xindy/Makefile \
		xindy-]xindy_version[/modules/Makefile \
		xindy-]xindy_version[/modules/base/Makefile \
		xindy-]xindy_version[/modules/class/Makefile \
		xindy-]xindy_version[/modules/lang/Makefile \
		xindy-]xindy_version[/modules/lang/german/Makefile \
		xindy-]xindy_version[/modules/lang/latin/Makefile \
		xindy-]xindy_version[/modules/ord/Makefile \
		xindy-]xindy_version[/modules/rules/Makefile \
		xindy-]xindy_version[/modules/styles/Makefile \
		xindy-]xindy_version[/user-commands/Makefile \
		xindy-]xindy_version[/make-rules/Makefile \
		xindy-]xindy_version[/make-rules/alphabets/Makefile \
		xindy-]xindy_version[/make-rules/alphabets/albanian/Makefile \
		xindy-]xindy_version[/make-rules/alphabets/belarusian/Makefile \
		xindy-]xindy_version[/make-rules/alphabets/bulgarian/Makefile \
		xindy-]xindy_version[/make-rules/alphabets/croatian/Makefile \
		xindy-]xindy_version[/make-rules/alphabets/czech/Makefile \
		xindy-]xindy_version[/make-rules/alphabets/danish/Makefile \
		xindy-]xindy_version[/make-rules/alphabets/dutch/Makefile \
		xindy-]xindy_version[/make-rules/alphabets/english/Makefile \
		xindy-]xindy_version[/make-rules/alphabets/esperanto/Makefile \
		xindy-]xindy_version[/make-rules/alphabets/estonian/Makefile \
		xindy-]xindy_version[/make-rules/alphabets/finnish/Makefile \
		xindy-]xindy_version[/make-rules/alphabets/french/Makefile \
		xindy-]xindy_version[/make-rules/alphabets/general/Makefile \
		xindy-]xindy_version[/make-rules/alphabets/georgian/Makefile \
		xindy-]xindy_version[/make-rules/alphabets/german/Makefile \
		xindy-]xindy_version[/make-rules/alphabets/greek/Makefile \
		xindy-]xindy_version[/make-rules/alphabets/gypsy/Makefile \
		xindy-]xindy_version[/make-rules/alphabets/hausa/Makefile \
		xindy-]xindy_version[/make-rules/alphabets/hebrew/Makefile \
		xindy-]xindy_version[/make-rules/alphabets/hungarian/Makefile \
		xindy-]xindy_version[/make-rules/alphabets/icelandic/Makefile \
		xindy-]xindy_version[/make-rules/alphabets/italian/Makefile \
		xindy-]xindy_version[/make-rules/alphabets/klingon/Makefile \
		xindy-]xindy_version[/make-rules/alphabets/kurdish/Makefile \
		xindy-]xindy_version[/make-rules/alphabets/latin/Makefile \
		xindy-]xindy_version[/make-rules/alphabets/latvian/Makefile \
		xindy-]xindy_version[/make-rules/alphabets/lithuanian/Makefile \
		xindy-]xindy_version[/make-rules/alphabets/lower-sorbian/Makefile \
		xindy-]xindy_version[/make-rules/alphabets/macedonian/Makefile \
		xindy-]xindy_version[/make-rules/alphabets/mongolian/Makefile \
		xindy-]xindy_version[/make-rules/alphabets/norwegian/Makefile \
		xindy-]xindy_version[/make-rules/alphabets/persian/Makefile \
		xindy-]xindy_version[/make-rules/alphabets/polish/Makefile \
		xindy-]xindy_version[/make-rules/alphabets/portuguese/Makefile \
		xindy-]xindy_version[/make-rules/alphabets/romanian/Makefile \
		xindy-]xindy_version[/make-rules/alphabets/russian/Makefile \
		xindy-]xindy_version[/make-rules/alphabets/serbian/Makefile \
		xindy-]xindy_version[/make-rules/alphabets/slovak/Makefile \
		xindy-]xindy_version[/make-rules/alphabets/slovenian/Makefile \
		xindy-]xindy_version[/make-rules/alphabets/spanish/Makefile \
		xindy-]xindy_version[/make-rules/alphabets/swedish/Makefile \
		xindy-]xindy_version[/make-rules/alphabets/test1/Makefile \
		xindy-]xindy_version[/make-rules/alphabets/turkish/Makefile \
		xindy-]xindy_version[/make-rules/alphabets/ukrainian/Makefile \
		xindy-]xindy_version[/make-rules/alphabets/upper-sorbian/Makefile \
		xindy-]xindy_version[/make-rules/alphabets/vietnamese/Makefile \
		xindy-]xindy_version[/make-rules/inputenc/Makefile \
		xindy-]xindy_version[/make-rules/styles/Makefile \
		xindy-]xindy_version[/doc/Makefile \
	    	xindy-]xindy_version[/doc/style-tutorial/Makefile \
])

AC_OUTPUT