From 91bdc37f5337aa9a8bda5e9efd13ee27fea34e27 Mon Sep 17 00:00:00 2001 From: "Yann E. MORIN\"" Date: Tue, 14 Feb 2012 23:40:24 +0100 Subject: [PATCH] configure: enable all frontends if --enable-frontends has no list If the user passes '--enable-frontends' without a list of frontends to enable, interpret this as enabling all frontends. Note, this is different from '--enable-frontends=', where the list exists, but is empty. Signed-off-by: "Yann E. MORIN" --- configure.ac | 1 + 1 file changed, 1 insertion(+) diff --git a/configure.ac b/configure.ac index 903487a..b8d8894 100644 --- a/configure.ac +++ b/configure.ac @@ -102,6 +102,7 @@ AC_ARG_ENABLE( [for f in conf mconf nconf gconf qconf; do AS_CASE( ["$enableval"], + [yes], [eval enable_$f=yes], ["$f"], [eval enable_$f=yes], ["$f",*], [eval enable_$f=yes], [*,"$f"], [eval enable_$f=yes], -- 2.39.5