mirror of
https://github.com/tesseract-ocr/tesseract.git
synced 2024-11-24 11:09:06 +08:00
4bbebd3f7e
The Tesseract code does not use getline. Signed-off-by: Stefan Weil <sw@weilnetz.de>
139 lines
4.0 KiB
CMake
139 lines
4.0 KiB
CMake
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
################################################################################
|
|
#
|
|
# configure
|
|
#
|
|
################################################################################
|
|
|
|
########################################
|
|
# FUNCTION check_includes
|
|
########################################
|
|
function(check_includes files)
|
|
foreach(F ${${files}})
|
|
set(name ${F})
|
|
string(REPLACE "-" "_" name ${name})
|
|
string(REPLACE "." "_" name ${name})
|
|
string(REPLACE "/" "_" name ${name})
|
|
string(TOUPPER ${name} name)
|
|
check_include_files(${F} HAVE_${name})
|
|
file(APPEND ${AUTOCONFIG_SRC} "/* Define to 1 if you have the <${F}> header file. */\n")
|
|
file(APPEND ${AUTOCONFIG_SRC} "#cmakedefine HAVE_${name} 1\n")
|
|
file(APPEND ${AUTOCONFIG_SRC} "\n")
|
|
endforeach()
|
|
endfunction(check_includes)
|
|
|
|
########################################
|
|
# FUNCTION check_functions
|
|
########################################
|
|
function(check_functions functions)
|
|
foreach(F ${${functions}})
|
|
set(name ${F})
|
|
string(TOUPPER ${name} name)
|
|
check_function_exists(${F} HAVE_${name})
|
|
file(APPEND ${AUTOCONFIG_SRC} "/* Define to 1 if you have the `${F}' function. */\n")
|
|
file(APPEND ${AUTOCONFIG_SRC} "#cmakedefine HAVE_${name} 1\n")
|
|
file(APPEND ${AUTOCONFIG_SRC} "\n")
|
|
endforeach()
|
|
endfunction(check_functions)
|
|
|
|
########################################
|
|
# FUNCTION check_types
|
|
########################################
|
|
function(check_types types)
|
|
foreach(T ${${types}})
|
|
set(name ${T})
|
|
string(REPLACE " " "_" name ${name})
|
|
string(REPLACE "-" "_" name ${name})
|
|
string(REPLACE "." "_" name ${name})
|
|
string(REPLACE "/" "_" name ${name})
|
|
string(TOUPPER ${name} name)
|
|
check_type_size(${T} HAVE_${name})
|
|
file(APPEND ${AUTOCONFIG_SRC} "/* Define to 1 if the system has the type `${T}'. */\n")
|
|
file(APPEND ${AUTOCONFIG_SRC} "#cmakedefine HAVE_${name} 1\n")
|
|
file(APPEND ${AUTOCONFIG_SRC} "\n")
|
|
endforeach()
|
|
endfunction(check_types)
|
|
|
|
########################################
|
|
|
|
file(WRITE ${AUTOCONFIG_SRC})
|
|
|
|
include(CheckCSourceCompiles)
|
|
include(CheckCSourceRuns)
|
|
include(CheckCXXSourceCompiles)
|
|
include(CheckCXXSourceRuns)
|
|
include(CheckFunctionExists)
|
|
include(CheckIncludeFiles)
|
|
include(CheckLibraryExists)
|
|
include(CheckPrototypeDefinition)
|
|
include(CheckStructHasMember)
|
|
include(CheckSymbolExists)
|
|
include(CheckTypeSize)
|
|
include(TestBigEndian)
|
|
|
|
set(include_files_list
|
|
dlfcn.h
|
|
inttypes.h
|
|
limits.h
|
|
malloc.h
|
|
memory.h
|
|
stdbool.h
|
|
stdint.h
|
|
stdlib.h
|
|
string.h
|
|
sys/ipc.h
|
|
sys/shm.h
|
|
sys/stat.h
|
|
sys/types.h
|
|
sys/wait.h
|
|
unistd.h
|
|
|
|
cairo/cairo-version.h
|
|
CL/cl.h
|
|
OpenCL/cl.h
|
|
pango-1.0/pango/pango-features.h
|
|
tiffio.h
|
|
unicode/uchar.h
|
|
)
|
|
check_includes(include_files_list)
|
|
|
|
set(functions_list
|
|
snprintf
|
|
)
|
|
check_functions(functions_list)
|
|
|
|
set(types_list
|
|
"long long int"
|
|
off_t
|
|
mbstate_t
|
|
wchar_t
|
|
_Bool
|
|
)
|
|
check_types(types_list)
|
|
|
|
set(PACKAGE_VERSION "${VERSION_PLAIN}")
|
|
file(APPEND ${AUTOCONFIG_SRC} "
|
|
/* Version number */
|
|
#cmakedefine PACKAGE_VERSION \"${VERSION_PLAIN}\"
|
|
")
|
|
|
|
test_big_endian(WORDS_BIGENDIAN)
|
|
|
|
file(APPEND ${AUTOCONFIG_SRC} "
|
|
/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
|
|
significant byte first (like Motorola and SPARC, unlike Intel). */
|
|
#cmakedefine WORDS_BIGENDIAN 1
|
|
")
|
|
|
|
########################################
|
|
|
|
################################################################################
|