1dnl
2dnl Copyright (C) 1996 Ken MacLeod
3dnl See the file COPYING for distribution terms.
4dnl
5dnl $Id: configure.ac,v 1.5 2001/11/30 23:55:12 sano Exp $
6dnl
7dnl This is an autoconf script.
8dnl To rebuild the `configure' script from this, execute the command
9dnl     autoconf
10dnl in the directory containing this script.
11
12AC_INIT(iso-entities.cat)
13VERSION=8879.1986.2
14AC_SUBST(VERSION)
15PACKAGE='iso-entities'
16AC_SUBST(PACKAGE)
17
18AC_CONFIG_AUX_DIR(config)
19AC_PROG_INSTALL
20AC_PROG_MAKE_SET
21AC_ARG_PROGRAM
22
23AC_CHECK_PROG(SED, sed, sed)
24AC_PATH_PROGS(PERL5, perl5 perl)
25
26AC_SUBST(docdir)
27docdir=\${datadir}/doc/\${PACKAGE}-\${VERSION}
28AC_SUBST(sgmldir)
29sgmldir=\${datadir}/sgml
30
31# The ISO 8879:1986 character entities are static, the additional
32# point release is the packaging, so we leave off the point release
33# on the install directory.
34AC_SUBST(isoentdir)
35isoentdir=\${sgmldir}/\${PACKAGE}-8879.1986
36
37AC_OUTPUT(Makefile)
38