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
This commit is contained in:
Albrecht Schlosser 2016-12-23 15:34:39 +00:00
parent 461750c38e
commit 60a9eee30d
1 changed files with 1 additions and 1 deletions

View File

@ -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