From 3e2cd27d05d773617491b48d7748566e3af854a2 Mon Sep 17 00:00:00 2001 From: Erik de Castro Lopo Date: Wed, 4 Jul 2012 19:53:31 +1000 Subject: [PATCH] configure.ac : Make sure FLAC__HAS_OGG gets defined to either 0 or 1. --- configure.ac | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index ff7bf11..2db9035 100644 --- a/configure.ac +++ b/configure.ac @@ -297,8 +297,9 @@ fi AM_CONDITIONAL(FLaC__HAS_OGG, [test "x$have_ogg" = xyes]) if test "x$have_ogg" = xyes ; then -AC_DEFINE(FLAC__HAS_OGG) -AH_TEMPLATE(FLAC__HAS_OGG, [define if you have the ogg library]) + AC_DEFINE_UNQUOTED([FLAC__HAS_OGG],1,[define if you have the ogg library]) +else + AC_DEFINE_UNQUOTED([FLAC__HAS_OGG],0) fi dnl check for i18n(internationalization); these are from libiconv/gettext -- 2.7.4