diff options
author | David Tardon <dtardon@redhat.com> | 2012-05-24 08:58:00 +0200 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2012-05-29 07:34:11 +0200 |
commit | 150e6bfddde86f89bbbdc85a6cb341d9168cb14a (patch) | |
tree | 91851beb33d03ac8e12f09d47bfb749fae44ac40 | |
parent | fbc237fb970883a87f8a13ef769995d34056c2a5 (diff) |
do not allow both kde and tde at the same time
Change-Id: I423c621c2bd543775c0d6f238fca40a64acaf0cc
-rw-r--r-- | configure.in | 5 |
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 |