summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorCarl Worth <cworth@cworth.org>2009-09-18 10:39:19 -0700
committerCarl Worth <cworth@cworth.org>2009-09-18 11:10:53 -0700
commit1888d7d3e3ae81b5cb23e3a0852317362c8e215a (patch)
treefd89e914a1920d557b2fdff396c84110b6759909 /configure.ac
parent4982bbc3b49b1b61e63a8461ea803e41318c8187 (diff)
configure: Fix broken quoting for initialization of REQUIRED_MODULES
A recent change switched to C-style automatic string concatenation, (presumably for better readability and maintainability), but this doesn't actually work for the shell. So we revert to the previously working initialization. This commit reverts one hunk of c947605eda082fbca0821efc0cc14fec8f958fd0
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac16
1 files changed, 1 insertions, 15 deletions
diff --git a/configure.ac b/configure.ac
index 3e02308c2..ede590f4e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -735,21 +735,7 @@ WINDOWSWMPROTO="windowswmproto"
APPLEWMPROTO="applewmproto >= 1.4"
dnl Core modules for most extensions, et al.
-REQUIRED_MODULES="randrproto >= 1.2.99.3 " \
- "renderproto >= 0.11 " \
- "damageproto >= 1.1 " \
- "xcmiscproto >= 1.2.0 " \
- "xextproto >= 7.0.99.3 " \
- "xproto >= 7.0.13 " \
- "xtrans >= 1.2.2 " \
- "bigreqsproto >= 1.1.0 " \
- "resourceproto " \
- "fontsproto " \
- "inputproto >= 1.9.99.902 " \
- "kbproto >= 1.0.3 " \
- "fixesproto >= 4.0"
-
-
+REQUIRED_MODULES="[randrproto >= 1.2.99.3] [renderproto >= 0.11] [fixesproto >= 4.0] [damageproto >= 1.1] [xcmiscproto >= 1.2.0] [xextproto >= 7.0.99.3] [xproto >= 7.0.13] [xtrans >= 1.2.2] [bigreqsproto >= 1.1.0] resourceproto fontsproto [inputproto >= 1.9.99.902] [kbproto >= 1.0.3]"
REQUIRED_LIBS="xfont xau [pixman-1 >= 0.15.20]"
dnl HAVE_DBUS is true if we actually have the D-Bus library, whereas