Running `./configure --help` indicates that debugging is disabled by default, but this is not the case. Change the documentation to state that it is enabled, and show the "--disable-debugging" option to make it clear.
Signed-off-by: Jason Gerecke <killert...@gmail.com> --- configure.ac | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index 5eae74d..b1a89bd 100644 --- a/configure.ac +++ b/configure.ac @@ -77,9 +77,10 @@ AC_SUBST([DRIVER_NAME]) # ----------------------------------------------------------------------------- # Define a configure option for code debugging AC_ARG_ENABLE(debug, - AS_HELP_STRING([--enable-debug], - [Enable debugging (default: disabled)]), - [DEBUGGING=$enableval], [DEBUGGING=yes]) + AS_HELP_STRING([--disable-debug], + [Disable debugging (default: enabled)]), + [DEBUGGING=$enableval], + [DEBUGGING=yes]) # Define the C preprocessor macro DEBUG in config.h if test "x$DEBUGGING" = xyes; then -- 1.9.2 ------------------------------------------------------------------------------ "Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE Instantly run your Selenium tests across 300+ browser/OS combos. Get unparalleled scalability from the best Selenium testing platform available. Simple to use. Nothing to install. Get started now for free." http://p.sf.net/sfu/SauceLabs _______________________________________________ Linuxwacom-devel mailing list Linuxwacom-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/linuxwacom-devel