summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlbrecht Schlosser <albrechts.fltk@online.de>2016-12-23 15:34:39 +0000
committerAlbrecht Schlosser <albrechts.fltk@online.de>2016-12-23 15:34:39 +0000
commit60a9eee30d3546c0574a894cc71085cb155c2b5d (patch)
tree623bbc53164f1f997c9aa67d2a09490634175555
parent461750c38e1835e4a730e0f83a48fe090f41feae (diff)
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
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
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