mirror of
https://github.com/tesseract-ocr/tesseract.git
synced 2025-01-18 14:41:36 +08:00
Removed image directory
git-svn-id: https://tesseract-ocr.googlecode.com/svn/trunk@967 d0cd1f9f-072b-0410-8dd7-cf729c803f20
This commit is contained in:
parent
fa69183548
commit
31f98f7fc9
@ -14,7 +14,7 @@ endif
|
||||
|
||||
.PHONY: install-langs ScrollView.jar install-jars $(TRAINING_SUBDIR)
|
||||
|
||||
SUBDIRS = ccutil viewer cutil image opencl ccstruct dict classify wordrec neural_networks/runtime textord cube ccmain api . tessdata
|
||||
SUBDIRS = ccutil viewer cutil opencl ccstruct dict classify wordrec neural_networks/runtime textord cube ccmain api . tessdata
|
||||
|
||||
EXTRA_DIST = eurotext.tif phototest.tif ReleaseNotes \
|
||||
aclocal.m4 config configure.ac autogen.sh tesseract.spec contrib \
|
||||
|
27
configure.ac
27
configure.ac
@ -18,8 +18,8 @@ AC_PREFIX_DEFAULT(/usr/local)
|
||||
# Define date of package, etc. Could be useful in auto-generated
|
||||
# documentation.
|
||||
# TODO(luc) Generate good documentation using doxygen or equivalent
|
||||
PACKAGE_YEAR=2013
|
||||
PACKAGE_DATE="08/13"
|
||||
PACKAGE_YEAR=2014
|
||||
PACKAGE_DATE="01/14"
|
||||
|
||||
AC_DEFINE_UNQUOTED(PACKAGE_NAME,["${PACKAGE_NAME}"],[Name of package])
|
||||
AC_DEFINE_UNQUOTED(PACKAGE_VERSION,["${PACKAGE_VERSION}"],[Version number])
|
||||
@ -356,6 +356,28 @@ if !($have_icu); then
|
||||
fi
|
||||
AM_CONDITIONAL(ENABLE_TRAINING, $have_icu)
|
||||
|
||||
# Check location of pango headers
|
||||
have_pango=false
|
||||
AC_CHECK_HEADERS(pango-1.0/pango/pango-features.h, have_pango=true, have_pango=false)
|
||||
if !($have_pango); then
|
||||
AC_MSG_WARN(Training tools WILL NOT be built because of missing pango library.)
|
||||
AC_MSG_WARN(Try to install libpango1.0-dev package.)
|
||||
else
|
||||
CPPFLAGS="$CPPFLAGS $(pkg-config --cflags pango)"
|
||||
fi
|
||||
AM_CONDITIONAL(ENABLE_TRAINING, $have_pango)
|
||||
|
||||
# Check location of cairo headers
|
||||
have_cairo=false
|
||||
AC_CHECK_HEADERS(cairo/cairo-version.h, have_cairo=true, have_cairo=false)
|
||||
if !($have_cairo); then
|
||||
AC_MSG_WARN(Training tools WILL NOT be built because of missing cairo library.)
|
||||
AC_MSG_WARN(Try to install libcairo-dev?? package.)
|
||||
else
|
||||
CPPFLAGS="$CPPFLAGS $(pkg-config --cflags cairo)"
|
||||
fi
|
||||
AM_CONDITIONAL(ENABLE_TRAINING, $have_cairo)
|
||||
|
||||
# ----------------------------------------
|
||||
# Final Tasks and Output
|
||||
# ----------------------------------------
|
||||
@ -371,7 +393,6 @@ AC_CONFIG_FILES(classify/Makefile)
|
||||
AC_CONFIG_FILES(cube/Makefile)
|
||||
AC_CONFIG_FILES(cutil/Makefile)
|
||||
AC_CONFIG_FILES(dict/Makefile)
|
||||
AC_CONFIG_FILES(image/Makefile)
|
||||
AC_CONFIG_FILES(neural_networks/runtime/Makefile)
|
||||
AC_CONFIG_FILES(textord/Makefile)
|
||||
AC_CONFIG_FILES(viewer/Makefile)
|
||||
|
Loading…
Reference in New Issue
Block a user