Lines Matching refs:fseeko
1 # CMake support for fseeko
38 # Check for the availability of fseeko()
41 # * Native fseeko()
49 message(STATUS "Looking for native fseeko support")
50 check_symbol_exists(fseeko stdio.h fseeko_native)
53 message(STATUS "Looking for native fseeko support - found")
56 message(STATUS "Looking for native fseeko support - not found")
64 check_symbol_exists(fseeko stdio.h fseeko_need_largefile_source)
67 message(STATUS "Looking for fseeko support with _LARGEFILE_SOURCE - found")
71 message(STATUS "Looking for fseeko support with _LARGEFILE_SOURCE - not found")
75 set(FSEEKO_DEFINITIONS ${_fseeko_cppflags} CACHE STRING "Extra definitions for fseeko support")
76 set(FSEEKO_COMPILE_OPTIONS "" CACHE STRING "Extra compiler options for fseeko support")
77 set(FSEEKO_LIBRARIES "" CACHE STRING "Extra definitions for fseeko support")
78 set(FSEEKO_FOUND ${FSEEKO_FOUND} CACHE INTERNAL "Found fseeko")
85 find_package_handle_standard_args(FSEEKO "Could not find fseeko. Set FSEEKO_DEFINITIONS, FSEEKO_COM…