summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian.droege@collabora.co.uk>2011-06-03 12:08:24 +0200
committerFelipe Contreras <felipe.contreras@nokia.com>2011-07-15 15:04:13 +0300
commitbe25bede12b3cbaafcbd0e9e4e054cd19758c58e (patch)
tree5a8c5e33585581394f6f82a7240d38266ad33a13
parentb378609152d0a9bb99398acbcbffe727ae7f711d (diff)
build: correctly #define EXPERIMENTAL to 1
Defining it to nothing gives problems in some scenarios if only #if is used instead of #ifdef. Signed-off-by: Felipe Contreras <felipe.contreras@nokia.com>
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 8f62033..f3b520e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -58,7 +58,7 @@ AG_GST_ARG_WITH_PACKAGE_ORIGIN
AC_ARG_ENABLE([experimental], AC_HELP_STRING([--enable-experimental]), [EXPERIMENTAL=$enableval], [EXPERIMENTAL=no])
AM_CONDITIONAL([EXPERIMENTAL], [test x$EXPERIMENTAL = xyes])
if test x$EXPERIMENTAL = xyes; then
- AC_DEFINE([EXPERIMENTAL], , [Enable experimental elements])
+ AC_DEFINE([EXPERIMENTAL], 1, [Enable experimental elements])
fi
dnl ** checks **