summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2001-12-16 12:50:40 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2001-12-16 12:50:40 +0000
commitaed06dfd941155e89807b8cd6c3ddead1a20b0f7 (patch)
tree601870b54d57ab700e9d4b45a18c744874e13d4c
parent431363a7bc5cf5427dd3677d81a098b6d9182080 (diff)
check tests betterBRANCH-BUILD1-20011216
Original commit message from CVS: check tests better
-rw-r--r--configure.ac10
1 files changed, 6 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac
index 66f5115f21..22268d5074 100644
--- a/configure.ac
+++ b/configure.ac
@@ -84,9 +84,11 @@ esac],
[EXPERIMENTAL=no]) dnl Default value
if test "x$EXPERIMENTAL" = "$xyes"; then
- USE_FLACLIB="no"
-else
+ AC_MSG_WARN(building experimental plugins)
USE_FLACLIB="yes"
+else
+ AC_MSG_NOTICE(not building experimental plugins)
+ USE_FLACLIB="no"
fi
dnl broken plugins; stuff that doesn't seem to build at the moment
@@ -98,15 +100,15 @@ AC_ARG_ENABLE(broken,
esac],
[BROKEN=no]) dnl Default value
-AM_CONDITIONAL(PLUGINS_EXP, test "$broken-plugins" = "$xyes")
-
if test "x$broken-plugins" = "$xyes"; then
+ AC_MSG_WARN(building broken plugins)
USE_ARTS="yes"
USE_ARTSC="yes"
USE_LIBGSM="yes"
USE_FLACLIB="yes"
USE_LIBAVIFILE="yes"
else
+ AC_MSG_NOTICE(not building broken plugins)
USE_ARTS="no"
USE_ARTSC="no"
USE_LIBGSM="no"