commit 2424d25
Michael Forney
·
2013-09-05 07:14:45 +0000 UTC
parent 52c642d
Follow autoconf capitalization conventions
1 files changed,
+6,
-6
+6,
-6
1@@ -23,7 +23,7 @@ dnl Options {{{
2 # Debugging
3 AC_ARG_ENABLE([debug],
4 AS_HELP_STRING([--enable-debug],
5- [Enable debugging messages]),
6+ [enable debugging messages]),
7 enable_debug=$enableval,
8 enable_debug=no)
9 if test "x$enable_debug" = "xyes" ; then
10@@ -33,7 +33,7 @@ fi
11 # Wayland
12 AC_ARG_WITH([wayland],
13 AS_HELP_STRING([--without-wayland],
14- [Disable Wayland support]),
15+ [disable Wayland support]),
16 with_wayland=$withval,
17 with_wayland=yes)
18 if test "x$with_wayland" = "xyes" ; then
19@@ -50,7 +50,7 @@ AM_CONDITIONAL([WITH_WAYLAND], test "x$with_wayland" = "xyes")
20 # Wayland DRM
21 AC_ARG_ENABLE([drm],
22 AS_HELP_STRING([--disable-drm],
23- [Disable Wayland DRM support]),
24+ [disable Wayland DRM support]),
25 enable_drm=$enableval,
26 enable_drm=$with_wayland)
27 if test "x$enable_drm" = "xyes" ; then
28@@ -64,7 +64,7 @@ AM_CONDITIONAL([ENABLE_WAYLAND_DRM], test "x$enable_drm" = "xyes")
29 # Wayland SHM
30 AC_ARG_ENABLE([shm],
31 AS_HELP_STRING([--disable-shm],
32- [Disable Wayland SHM support]),
33+ [disable Wayland SHM support]),
34 enable_shm=$enableval,
35 enable_shm=$with_wayland)
36 if test "x$enable_shm" = "xyes" ; then
37@@ -78,7 +78,7 @@ AM_CONDITIONAL([ENABLE_WAYLAND_SHM], test "x$enable_shm" = "xyes")
38 # Intel
39 AC_ARG_ENABLE([intel],
40 AS_HELP_STRING([--disable-intel],
41- [Disable Intel drawable support]),
42+ [disable Intel drawable support]),
43 enable_intel=$enableval,
44 enable_intel=auto)
45 if test "x$enable_intel" = "xyes" -o "x$enable_intel" = "xauto" ; then
46@@ -110,7 +110,7 @@ AM_CONDITIONAL([ENABLE_INTEL], test "x$enable_intel" = "xyes")
47 # Pixman
48 AC_ARG_ENABLE([pixman],
49 AS_HELP_STRING([--disable-pixman],
50- [Disable pixman drawable support]),
51+ [disable pixman drawable support]),
52 enable_pixman=$enableval,
53 enable_pixman=yes)
54 if test "x$enable_pixman" = "xyes" ; then