Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
GNOME
GIMP
Commits
bc54cbfd
Commit
bc54cbfd
authored
Jun 01, 2010
by
Martin Nordholts
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add --without-mac-twain to configure
parent
5ab64953
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
4 deletions
+12
-4
INSTALL
INSTALL
+3
-0
configure.ac
configure.ac
+9
-4
No files found.
INSTALL
View file @
bc54cbfd
...
...
@@ -204,6 +204,9 @@ These are:
--without-hal. If you want to build the Linux Input controller module
without HAL support, you can use the --without-hal option.
--without-mac-twain. If you don't want to compile the Mac OS X
TWAIN plug-in, you can use the --without-mac-twain option.
--with-gif-compression=[lzw|rle|none]. Allows to tune the compression
algorithm used by the GIF plug-in. If you are afraid of Unisys' LZW
patent (which should have expired in most countries by now), you
...
...
configure.ac
View file @
bc54cbfd
...
...
@@ -1745,13 +1745,18 @@ esac
# Check for Mac OS X TWAIN framework
####################################
AC_ARG_WITH(mac-twain, [ --without-mac-twain don't build the Mac TWAIN plug-in])
mac_twain_ok=no
AC_MSG_CHECKING([for Mac OS X TWAIN support])
AC_TRY_CPP([
if test "x$with_mac_twain" != xno; then
AC_MSG_CHECKING([for Mac OS X TWAIN support])
AC_TRY_CPP([
#include <Carbon/Carbon.h>
#include <TWAIN/TWAIN.h>
], mac_twain_ok=yes)
AC_MSG_RESULT($mac_twain_ok)
], mac_twain_ok=yes)
AC_MSG_RESULT($mac_twain_ok)
fi
AM_CONDITIONAL(HAVE_MAC_TWAIN, test "x$mac_twain_ok" = xyes)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment