-
Notifications
You must be signed in to change notification settings - Fork 13
/
configure.ac
36 lines (28 loc) · 876 Bytes
/
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
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ([2.69])
AC_INIT([guile-wm], [1.0], [[email protected]])
AC_CONFIG_AUX_DIR([build_aux])
AM_INIT_AUTOMAKE([gnu std-options])
AC_CONFIG_FILES([
Makefile
module/Makefile
])
GUILE_PKG([2.0 2.2])
GUILE_SITE_DIR
GUILE_PROGS
GUILE_MODULE_REQUIRED([xcb xml])
GUILE_MODULE_REQUIRED([xcb xml xproto])
GUILE_MODULE_REQUIRED([xcb xml struct])
GUILE_MODULE_REQUIRED([xcb xml ext randr])
GUILE_MODULE_REQUIRED([xcb event-loop])
AC_ARG_WITH([guile-site-dir],
[AS_HELP_STRING([--with-guile-site-dir],
[use the specified installation path for Guile modules]
)],
[guilesitedir="$withval"],
[guilesitedir="$GUILE_SITE"]
)
AC_SUBST([guilesitedir])
AC_MSG_RESULT($guilesitedir)
AC_OUTPUT