-
Notifications
You must be signed in to change notification settings - Fork 2
/
configure.ac
55 lines (47 loc) · 1.6 KB
/
configure.ac
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
dnl FIXME: pick up from realgud.el
AC_INIT(realgud-inspect, 1.0.0,)
AC_CONFIG_SRCDIR(realgud-node-inspect/node-inspect.el)
AM_INIT_AUTOMAKE([foreign])
AM_MAINTAINER_MODE
AC_PATH_PROG([EMACS], [emacs], [emacs])
AC_ARG_WITH(emacs, AC_HELP_STRING([--with-emacs],
[location of emacs program]), EMACS=$withval)
AC_MSG_NOTICE("Checking emacs version")
$EMACS -batch -q --no-site-file -eval \
'(if (<= emacs-major-version 24)
(progn
(error "You need GNU Emacs 25 or later.")
(kill-emacs 1)
)
)'
if test $? -ne 0 ; then
AC_MSG_ERROR([Can't continue until above error is corrected.])
fi
##################################################################
# See if --with-lispdir was set. If not, set it to a reasonable default
# based on where bash thinks bashdb is supposed to be installed.
##################################################################
AM_MISSING_PROG(GIT2CL, git2cl, $missing_dir)
# Check whether --with-lispdir was given.
if test "${with_lispdir+set}" = set; then :
else
my_lispdir=$(EMACS_PROG=$EMACS $SH_PROG $(dirname $0)/compute-lispdir.sh)
if test "${my_lispdir+set}" = set; then :
with_lispdir=$my_lispdir
echo "'compute-lispdir.sh' lispdir install directory override: '$with_lispdir'"
fi
fi
##
## Find out where to install the debugger emacs lisp files
##
AM_PATH_LISPDIR
lispdir_realgud=$lispdir/realgud
AC_SUBST([lispdir])
AC_SUBST([lispdir_realgud])
AM_CONDITIONAL(INSTALL_EMACS_LISP, test "x$lispdir_realgud" != "x")
AC_CONFIG_FILES([Makefile \
common.mk \
realgud-node-inspect/Makefile \
test/Makefile \
])
AC_OUTPUT