From c0eff36375f7a0a603fdbeac9e9ab12f3ab1dc61 Mon Sep 17 00:00:00 2001 From: freem Date: Wed, 9 Jul 2014 22:25:34 -0500 Subject: [PATCH] fix autogen freaking out after the Minimaid commit thanks to @spigwitmer for the fix --- configure.ac | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/configure.ac b/configure.ac index 283497289b..230986785f 100644 --- a/configure.ac +++ b/configure.ac @@ -175,6 +175,10 @@ powerpc*) esac AM_CONDITIONAL(HAVE_PARALLEL_PORT, test "${have_parallel_port-yes}" = "yes") +# Minimaid support flag +AC_ARG_WITH(minimaid, AS_HELP_STRING([--with-minimaid],[Enable Minimaid support]), with_minimaid=$withval, with_minimaid=no) +AM_CONDITIONAL(HAVE_MINIMAID, test "$with_minimaid" = "yes") + AC_C_BIGENDIAN( AC_DEFINE(ENDIAN_BIG, 1, [Big endian]), AC_DEFINE(ENDIAN_LITTLE, 1, [Little endian]),