]> code.delx.au - gnu-emacs-elpa/blob - packages/load-relative/configure.ac
Merge commit '0cda39255827f283e7578cd469ae42daad9556a2' from js2-mode
[gnu-emacs-elpa] / packages / load-relative / configure.ac
1 AC_INIT(emacs-load-relative, 1.0,)
2 AC_CONFIG_SRCDIR(load-relative.el)
3 AM_INIT_AUTOMAKE
4 AM_MAINTAINER_MODE
5 AM_MISSING_PROG(GIT2CL, git2cl, $missing_dir)
6
7 AC_PATH_PROG(EMACS, emacs, no)
8 if test x$EMACS != xno ; then
9 $EMACS -batch -q -no-site-file -eval \
10 '(if (<= emacs-major-version 22)
11 (progn
12 (error "You need GNU Emacs 23 or better for this package.")
13 (kill-emacs 1)
14 ))'
15 if test $? -ne 0 ; then
16 EMACS=no
17 fi
18 fi
19
20
21 ##
22 ## Find out where to install the debugger emacs lisp files
23 ##
24 AM_PATH_LISPDIR
25 AM_CONDITIONAL(INSTALL_EMACS_LISP, test "x$lispdir" != "x")
26
27 AC_CONFIG_FILES([Makefile test/Makefile])
28 AC_OUTPUT