From 537bde05cc76decb8053725a7118b28ba9322074 Mon Sep 17 00:00:00 2001 From: James Zern Date: Wed, 13 Mar 2013 13:53:02 -0700 Subject: [PATCH] autoconf: normalize experimental define EXPERIMENTAL -> WEBP_EXPERIMENTAL_FEATURES the former is not used in the source; this adds WEBP_EXPERIMENTAL_FEATURES to config.h Change-Id: I4822bd3be1ea631e96629ae249dc778cdb5d8bb6 --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 546dad91..da8c458a 100644 --- a/configure.ac +++ b/configure.ac @@ -244,8 +244,8 @@ AC_MSG_CHECKING(if --enable-experimental option is specified) AC_ARG_ENABLE([experimental], AS_HELP_STRING([--enable-experimental], [Activate experimental features])) if test "$enable_experimental" = "yes"; then - AC_DEFINE(EXPERIMENTAL,,[Enable experimental code]) - USE_EXPERIMENTAL_CODE="-DWEBP_EXPERIMENTAL_FEATURES" + AC_DEFINE(WEBP_EXPERIMENTAL_FEATURES, [1], [Enable experimental code]) + USE_EXPERIMENTAL_CODE="-DWEBP_EXPERIMENTAL_FEATURES" fi AC_MSG_RESULT(${enable_experimental-no}) AC_SUBST(USE_EXPERIMENTAL_CODE)