summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorDavid Tardon <dtardon@redhat.com>2012-05-24 08:58:00 +0200
committerDavid Tardon <dtardon@redhat.com>2012-05-29 07:34:11 +0200
commit150e6bfddde86f89bbbdc85a6cb341d9168cb14a (patch)
tree91851beb33d03ac8e12f09d47bfb749fae44ac40 /configure.in
parentfbc237fb970883a87f8a13ef769995d34056c2a5 (diff)
do not allow both kde and tde at the same time
Change-Id: I423c621c2bd543775c0d6f238fca40a64acaf0cc
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in5
1 files changed, 5 insertions, 0 deletions
diff --git a/configure.in b/configure.in
index 1c3af6ca76ee..4576511d5ea4 100644
--- a/configure.in
+++ b/configure.in
@@ -8757,6 +8757,11 @@ AC_SUBST(ENABLE_GTK)
ENABLE_TDE=""
if test "x$enable_tde" = "xyes"; then
+ # Libs kab and tdeab in connectivity and kdeab and tdeab in shell
+ # are built from the same sources. So we only allow one of them.
+ if test "x$enable_kde" = "xyes"; then
+ AC_MSG_ERROR([enabling both KDE and TDE is not supported])
+ fi
ENABLE_TDE="TRUE"
R="$R tde"
fi