-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathconfigure.ac
109 lines (90 loc) · 3 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
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
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.59)
AC_INIT(Deep Space Window Manager (part of Deep Space Style project), 0.0.4, [email protected])
AC_SUBST(MODULES_DIR)
AC_SUBST(LISP_PROGRAM)
AC_SUBST(LISP)
AC_SUBST(PPCRE_PATH)
AC_SUBST(DSWM_BIN_DIR)
# Checks for programs.
AC_ARG_WITH(lisp, [ --with-lisp=IMPL use the specified lisp (sbcl, clisp, ccl or ecl)], LISP=$withval, LISP="sbcl")
AC_ARG_WITH(sbcl, [ --with-sbcl=PATH specify location of sbcl], SBCL_PATH=$withval, SBCL_PATH="")
AC_ARG_WITH(clisp, [ --with-clisp=PATH specify location of clisp], CLISP_PATH=$withval, CLISP_PATH="")
AC_ARG_WITH(ccl, [ --with-ccl=PATH specify location of ccl], CCL_PATH=$withval, CCL_PATH="")
AC_ARG_WITH(ecl, [ --with-ecl=PATH specify location of ecl], ECL_PATH=$withval, ECL_PATH="")
AC_ARG_WITH(ppcre, [ --with-ppcre=PATH specify location of cl-ppcre], PPCRE_PATH=$withval, PPCRE_PATH="`pwd`/cl-ppcre")
if test -x "$SBCL_PATH"; then
SBCL=$SBCL_PATH
AC_MSG_CHECKING([for sbcl])
AC_MSG_RESULT($SBCL)
else
AC_PATH_PROG([SBCL], sbcl,"")
fi
if test -x "$CLISP_PATH"; then
CLISP=$CLISP_PATH
AC_MSG_CHECKING([for clisp])
AC_MSG_RESULT($CLISP)
else
AC_PATH_PROG([CLISP],clisp,"")
fi
if test "x$LISP" = "xclisp"; then
if test "x$CLISP" = "x"; then
LISP=sbcl
LISP_PROGRAM=$SBCL
else
LISP_PROGRAM=$CLISP
fi
elif test "x$LISP" = "xsbcl"; then
if test "x$SBCL" = "x"; then
LISP=clisp
LISP_PROGRAM=$CLISP
else
LISP_PROGRAM=$SBCL
fi
elif test "x$LISP" = "xccl"; then
if test "x$CCL" = "x"; then
LISP=sbcl
LISP_PROGRAM=$SBCL
else
LISP_PROGRAM=$CCL
fi
elif test "x$LISP" = "xecl"; then
if test "x$ECL" = "x"; then
LISP=sbcl
LISP_PROGRAM=$SBCL
else
LISP_PROGRAM=$ECL
fi
fi
if test "x$LISP_PROGRAM" = "x"; then
AC_MSG_ERROR([*** No lisp is available.])
fi
AC_MSG_NOTICE([Using $LISP at $LISP_PROGRAM])
# check for makeinfo
AC_CHECK_PROG(MAKEINFO,makeinfo,yes,no)
if test "$MAKEINFO" = "no"; then
AC_MSG_ERROR([Please install makeinfo for the manual.])
fi
AC_CHECK_PROG(XDPYINFO,xdpyinfo,yes,no)
if test "$XDPINFO" = "no"; then
AC_MSG_WARN([xdpyinfo is needed for xinerama support.])
fi
if test "$LISP" = "clisp"; then
AC_CHECK_FILE([$PPCRE_PATH/cl-ppcre.asd],,AC_MSG_ERROR([Cannot find ppcre. When using clisp you must specify its location using --with-ppcre]))
fi
# XXX How to do an OR ?
if test "$LISP" = "ecl"; then
AC_CHECK_FILE([$PPCRE_PATH/cl-ppcre.asd],,AC_MSG_ERROR([Cannot find ppcre. When using ecl you must specify its location using --with-ppcre]))
fi
# Checks for libraries.
# Checks for header files.
# Checks for typedefs, structures, and compiler characteristics.
# Checks for library functions.
AC_OUTPUT(Makefile)
AC_OUTPUT(make-image.lisp)
AC_OUTPUT(module.lisp)
AC_OUTPUT(help.lisp)
AC_OUTPUT(dswm.desktop)
AC_OUTPUT(dswm.texi)
AC_OUTPUT(dswm.asd)