mirror of https://github.com/GNOME/gimp.git
configure: let the test for TWAIN fail on 64 bit OSX
Somebody needs to port the stuff to not using the parts of Carbon that are not there on 64 bit, or preferrably not use Carbon at all.
This commit is contained in:
parent
87b38809ff
commit
b40e1c44b6
|
@ -1794,6 +1794,9 @@ if test "x$with_mac_twain" != xno; then
|
|||
AC_TRY_CPP([
|
||||
#include <Carbon/Carbon.h>
|
||||
#include <TWAIN/TWAIN.h>
|
||||
#ifdef __x86_64__
|
||||
#error Please somebody port this to non-deprecated and non-removed APIs
|
||||
#endif
|
||||
], mac_twain_ok=yes)
|
||||
AC_MSG_RESULT($mac_twain_ok)
|
||||
fi
|
||||
|
|
Loading…
Reference in New Issue