mirror of
https://github.com/tesseract-ocr/tesseract.git
synced 2024-11-24 02:59:07 +08:00
Add configure option --with-curl (check for libcurl by default)
Signed-off-by: Stefan Weil <sw@weilnetz.de>
This commit is contained in:
parent
f1b9e326d0
commit
2ba3f69667
21
configure.ac
21
configure.ac
@ -462,11 +462,24 @@ AC_CHECK_TYPES([long long int])
|
||||
# Test auxiliary packages
|
||||
# ----------------------------------------
|
||||
|
||||
PKG_CHECK_MODULES([libcurl], [libcurl], [have_libcurl=true], [have_libcurl=false])
|
||||
AM_CONDITIONAL([HAVE_LIBCURL], $have_libcurl)
|
||||
if $have_libcurl; then
|
||||
AC_ARG_WITH([curl],
|
||||
AS_HELP_STRING([--with-curl],
|
||||
[Build with libcurl which supports processing an image URL @<:@default=check@:>@]
|
||||
))
|
||||
|
||||
AM_CONDITIONAL([HAVE_LIBCURL], false)
|
||||
AS_IF([test "x$with_curl" != xno], [
|
||||
PKG_CHECK_MODULES([libcurl], [libcurl], [have_libcurl=true], [have_libcurl=false])
|
||||
AM_CONDITIONAL([HAVE_LIBCURL], $have_libcurl)
|
||||
if $have_libcurl; then
|
||||
AC_DEFINE([HAVE_LIBCURL], [1], [Enable libcurl])
|
||||
fi
|
||||
else
|
||||
AS_IF([test "x$with_curl" != xcheck], [
|
||||
AC_MSG_FAILURE(
|
||||
[--with-curl was given, but test for libcurl failed])
|
||||
])
|
||||
fi
|
||||
])
|
||||
|
||||
PKG_CHECK_MODULES([LEPTONICA], [lept >= 1.74], [have_lept=true], [have_lept=false])
|
||||
if $have_lept; then
|
||||
|
Loading…
Reference in New Issue
Block a user