From 60a9eee30d3546c0574a894cc71085cb155c2b5d Mon Sep 17 00:00:00 2001 From: Albrecht Schlosser Date: Fri, 23 Dec 2016 15:34:39 +0000 Subject: [PATCH] Fix inverted configure logic for option --enable-print. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.4@12154 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 8c2a51bd0..48d17f0eb 100644 --- a/configure.ac +++ b/configure.ac @@ -994,7 +994,7 @@ case $host_os_gui in dnl Check whether print support was disabled... AC_ARG_ENABLE(print, [ --enable-print turn on print support (X11 platform) [[default=yes]]]) - if test x$enable_print != xyes; then + if test x$enable_print = xno; then AC_DEFINE(FL_NO_PRINT_SUPPORT) fi