jisx0213
[elisp/tamago.git] / configure.in
1 dnl Process this file with autoconf to produce a configure script.
2 AC_INIT(egg.el)
3
4 dnl Checks for programs.
5 AC_PROG_INSTALL
6 AC_PROG_MAKE_SET
7
8 dnl Checks for libraries.
9
10 dnl Checks for header files.
11
12 dnl Checks for typedefs, structures, and compiler characteristics.
13
14 dnl Checks for library functions.
15
16 dnl check if jisx0213 is supported or not
17 AC_MSG_CHECKING(jisx0213)
18 if emacs -batch -q -no-site-file -no-init-file -l ${srcdir}/check-jisx0213.el; then
19   echo "yes"; HAVE_JISX0213=""
20 else
21   echo "no"; HAVE_JISX0213="# "
22 fi
23 AC_SUBST(HAVE_JISX0213)
24
25 lispdir=${datadir}/emacs/site-lisp
26 AC_SUBST(lispdir)
27 AC_OUTPUT(Makefile)