From 0e38b3c395d34e3f226b87795e45f1b5fef23f5e Mon Sep 17 00:00:00 2001 From: "benjamin.drung@gmail.com" Date: Fri, 15 Nov 2013 23:38:43 +0000 Subject: [PATCH] Fix check for expat (stupid me). --- configure | 2 +- configure.ac | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index 891b514f9..c0dd3af3a 100755 --- a/configure +++ b/configure @@ -8676,7 +8676,7 @@ done # * we need to have portaudio way or another # * we can only use one of libsoxr, libsamplerate and libresample -if test "$LIBEXPAT_USE_LOCAL" != "yes" -a "$LIBEXPAT_USE_SYSTEM" != "yes"; then +if test "$EXPAT_USE_LOCAL" != "yes" -a "$EXPAT_USE_SYSTEM" != "yes"; then as_fn_error $? "Audacity requires expat to be enabled." "$LINENO" 5 fi diff --git a/configure.ac b/configure.ac index f440ce005..62071616f 100644 --- a/configure.ac +++ b/configure.ac @@ -411,7 +411,7 @@ done # * we need to have portaudio way or another # * we can only use one of libsoxr, libsamplerate and libresample -if test "$LIBEXPAT_USE_LOCAL" != "yes" -a "$LIBEXPAT_USE_SYSTEM" != "yes"; then +if test "$EXPAT_USE_LOCAL" != "yes" -a "$EXPAT_USE_SYSTEM" != "yes"; then AC_MSG_ERROR([Audacity requires expat to be enabled.]) fi