From 6fbd2a72122d6bcd70edbf599baa7465e3e9acb6 Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Sun, 2 Aug 2009 07:35:00 +0200 Subject: include config.h and defined ENABLE_HACKS Use --disable-hacks to NOT enable hacks like the N*128/N*512 hack when running configure. Hacks are enabled by default. --- configure.ac | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 55ce7af..d8c10f8 100644 --- a/configure.ac +++ b/configure.ac @@ -18,6 +18,20 @@ AC_PROG_INSTALL PKG_CHECK_MODULES(libusb, libusb >= 0.1.12) +# check for options +AC_ARG_ENABLE([hacks], + [AS_HELP_STRING([--disable-hacks], + [disable hacks that provide workarounds for certain problems])], + [enable_hacks=no], + [enable_hacks=yes]) +if test "x$enable_hacks" = xyes; then + AC_DEFINE(ENABLE_HACKS, 1, [Define if you want hacks enabled]) + echo "Note: hacks are enabled." +else + echo "Note: hacks are DISABLED." +fi +AM_CONDITIONAL(ENABLE_HACKS, test "x$enable_hacks" = xyes) + # Output files AC_OUTPUT([ -- cgit v1.1-32-gdbae