diff --git a/recipes/apr/all/conanfile.py b/recipes/apr/all/conanfile.py index 932bac9dcf2ea..135aeb2cd48ec 100644 --- a/recipes/apr/all/conanfile.py +++ b/recipes/apr/all/conanfile.py @@ -37,6 +37,7 @@ class AprConan(ConanFile): "fPIC": True, "force_apr_uuid": True, } + exports_sources = "cross_build/*" @property def _settings_build(self): @@ -69,7 +70,26 @@ def layout(self): def validate_build(self): if cross_building(self) and not is_msvc(self): - raise ConanInvalidConfiguration("apr recipe doesn't support cross-build yet due to runtime checks in autoconf") + """ The APR configure.in script makes extensive (30 instances) use + of AC_TRY_RUN (to determine system capabilities) and checks for /dev/zero. + These runtime checks only work when run on the host so + the configure script will fail when cross compiling + unless the relevant configuration variables + are provided in a cache file or on the command line or in an environment variable. + The configuration variable values are most easily determined by running the configure script on a host system using: + ./configure --cache-file={gnu_host_triplet}.cache + and then removing the 'precious' autoconf variables: + ac_cv_env_* + The generated cache file can be repeatedly used to cross-compile to the targeted host system + by including it with the recipe data. + The default targeted host system name can be overriden in the profile using (for example). + [conf] + tools.gnu:host_triplet=arm-linux-gnueabihf + This recipe assumes the generated cache file is stored in the 'cross_build' directory. + """ + gnu_host_triplet = self.conf.get("tools.gnu:host_triplet", check_type=str) + if not gnu_host_triplet: + raise ConanInvalidConfiguration("apr cross-build requires a [conf] tools.gnu:host_triplet=XXXXX profile entry and a cross_build/XXXXX.cache file") def build_requirements(self): if not is_msvc(self): @@ -95,7 +115,12 @@ def generate(self): tc = AutotoolsToolchain(self) tc.configure_args.append("--with-installbuilddir=${prefix}/res/build-1") if cross_building(self): - tc.configure_args.append("apr_cv_mutex_robust_shared=yes") + gnu_host_triplet = self.conf.get("tools.gnu:host_triplet", check_type=str) + if gnu_host_triplet: + cacheFile = os.path.join(os.path.dirname(self.source_folder), "cross_build", os.path.basename(gnu_host_triplet + ".cache")) + if not os.path.exists(cacheFile): + raise ConanInvalidConfiguration(f"apr cross-building requires {gnu_host_triplet}.cache file in the 'cross_build' folder") + tc.configure_args.append(f"--cache-file={cacheFile}") tc.generate() def _patch_sources(self): diff --git a/recipes/apr/all/cross_build/aarch64-linux-gnu.cache b/recipes/apr/all/cross_build/aarch64-linux-gnu.cache new file mode 100644 index 0000000000000..1d724c6c0fc34 --- /dev/null +++ b/recipes/apr/all/cross_build/aarch64-linux-gnu.cache @@ -0,0 +1,372 @@ +# This file is a shell script that caches the results of configure +# tests run on this system so they can be shared between configure +# scripts and configure runs, see configure's option --config-cache. +# It is not useful on other systems. If it contains results you don't +# want to keep, you may remove or edit it. +# +# config.status only pays attention to the cache file if you give it +# the --recheck option to rerun configure. +# +# `ac_cv_env_foo' variables (set or unset) will be overridden when +# loading this file, other *unset* `ac_cv_foo' will be assigned the +# following values. + +ac_cv_build=${ac_cv_build=aarch64-unknown-linux-gnu} +ac_cv_build_prog_CPP=${ac_cv_build_prog_CPP='gcc -E'} +ac_cv_build_prog_cc_g=${ac_cv_build_prog_cc_g=yes} +ac_cv_c_bigendian=${ac_cv_c_bigendian=no} +ac_cv_c_compiler_gnu=${ac_cv_c_compiler_gnu=yes} +ac_cv_c_const=${ac_cv_c_const=yes} +ac_cv_c_inline=${ac_cv_c_inline=inline} +ac_cv_c_undeclared_builtin_options=${ac_cv_c_undeclared_builtin_options='none needed'} +ac_cv_define_F_SETLK=${ac_cv_define_F_SETLK=yes} +ac_cv_define_GETHOSTBYADDR_IS_THREAD_SAFE=${ac_cv_define_GETHOSTBYADDR_IS_THREAD_SAFE=no} +ac_cv_define_GETHOSTBYNAME_IS_THREAD_SAFE=${ac_cv_define_GETHOSTBYNAME_IS_THREAD_SAFE=no} +ac_cv_define_GETSERVBYNAME_IS_THREAD_SAFE=${ac_cv_define_GETSERVBYNAME_IS_THREAD_SAFE=no} +ac_cv_define_LOCK_EX=${ac_cv_define_LOCK_EX=yes} +ac_cv_define_MAP_ANON=${ac_cv_define_MAP_ANON=yes} +ac_cv_define_POLLIN=${ac_cv_define_POLLIN=yes} +ac_cv_define_PTHREAD_PROCESS_SHARED=${ac_cv_define_PTHREAD_PROCESS_SHARED=yes} +ac_cv_define_READDIR_IS_THREAD_SAFE=${ac_cv_define_READDIR_IS_THREAD_SAFE=yes} +ac_cv_define_SEM_UNDO=${ac_cv_define_SEM_UNDO=yes} +ac_cv_define_SO_ACCEPTFILTER=${ac_cv_define_SO_ACCEPTFILTER=no} +ac_cv_define_TCP_CORK=${ac_cv_define_TCP_CORK=yes} +ac_cv_define_TCP_NOPUSH=${ac_cv_define_TCP_NOPUSH=no} +ac_cv_define_sockaddr_in6=${ac_cv_define_sockaddr_in6=yes} +ac_cv_define_sockaddr_un=${ac_cv_define_sockaddr_un=yes} +ac_cv_ebcdic=${ac_cv_ebcdic=no} +ac_cv_file__dev_zero=${ac_cv_file__dev_zero=yes} +ac_cv_func__getch=${ac_cv_func__getch=no} +ac_cv_func_acquire_sem=${ac_cv_func_acquire_sem=no} +ac_cv_func_acquire_sem_etc=${ac_cv_func_acquire_sem_etc=no} +ac_cv_func_alloca_works=${ac_cv_func_alloca_works=yes} +ac_cv_func_arc4random_buf=${ac_cv_func_arc4random_buf=no} +ac_cv_func_calloc=${ac_cv_func_calloc=yes} +ac_cv_func_create_area=${ac_cv_func_create_area=no} +ac_cv_func_create_sem=${ac_cv_func_create_sem=no} +ac_cv_func_dlopen=${ac_cv_func_dlopen=no} +ac_cv_func_dlsym=${ac_cv_func_dlsym=yes} +ac_cv_func_fdatasync=${ac_cv_func_fdatasync=yes} +ac_cv_func_flock=${ac_cv_func_flock=yes} +ac_cv_func_fork=${ac_cv_func_fork=yes} +ac_cv_func_gai_strerror=${ac_cv_func_gai_strerror=yes} +ac_cv_func_getenv=${ac_cv_func_getenv=yes} +ac_cv_func_getgrgid_r=${ac_cv_func_getgrgid_r=yes} +ac_cv_func_getgrnam_r=${ac_cv_func_getgrnam_r=yes} +ac_cv_func_gethostbyaddr_r=${ac_cv_func_gethostbyaddr_r=yes} +ac_cv_func_gethostbyname_r=${ac_cv_func_gethostbyname_r=yes} +ac_cv_func_getifaddrs=${ac_cv_func_getifaddrs=yes} +ac_cv_func_getpass=${ac_cv_func_getpass=yes} +ac_cv_func_getpassphrase=${ac_cv_func_getpassphrase=no} +ac_cv_func_getpwnam_r=${ac_cv_func_getpwnam_r=yes} +ac_cv_func_getpwuid_r=${ac_cv_func_getpwuid_r=yes} +ac_cv_func_getrandom=${ac_cv_func_getrandom=yes} +ac_cv_func_getrlimit=${ac_cv_func_getrlimit=yes} +ac_cv_func_getservbyname_r=${ac_cv_func_getservbyname_r=yes} +ac_cv_func_gmtime_r=${ac_cv_func_gmtime_r=yes} +ac_cv_func_if_indextoname=${ac_cv_func_if_indextoname=yes} +ac_cv_func_if_nametoindex=${ac_cv_func_if_nametoindex=yes} +ac_cv_func_inet_addr=${ac_cv_func_inet_addr=yes} +ac_cv_func_inet_network=${ac_cv_func_inet_network=yes} +ac_cv_func_isinf=${ac_cv_func_isinf=yes} +ac_cv_func_isnan=${ac_cv_func_isnan=yes} +ac_cv_func_kqueue=${ac_cv_func_kqueue=no} +ac_cv_func_localtime_r=${ac_cv_func_localtime_r=yes} +ac_cv_func_memchr=${ac_cv_func_memchr=yes} +ac_cv_func_memmove=${ac_cv_func_memmove=yes} +ac_cv_func_mkstemp=${ac_cv_func_mkstemp=yes} +ac_cv_func_mmap=${ac_cv_func_mmap=yes} +ac_cv_func_mprotect=${ac_cv_func_mprotect=yes} +ac_cv_func_munmap=${ac_cv_func_munmap=yes} +ac_cv_func_nl_langinfo=${ac_cv_func_nl_langinfo=yes} +ac_cv_func_poll=${ac_cv_func_poll=yes} +ac_cv_func_port_create=${ac_cv_func_port_create=no} +ac_cv_func_pthread_attr_setguardsize=${ac_cv_func_pthread_attr_setguardsize=yes} +ac_cv_func_pthread_condattr_setpshared=${ac_cv_func_pthread_condattr_setpshared=yes} +ac_cv_func_pthread_key_delete=${ac_cv_func_pthread_key_delete=yes} +ac_cv_func_pthread_mutex_timedlock=${ac_cv_func_pthread_mutex_timedlock=yes} +ac_cv_func_pthread_mutexattr_setpshared=${ac_cv_func_pthread_mutexattr_setpshared=yes} +ac_cv_func_pthread_rwlock_init=${ac_cv_func_pthread_rwlock_init=yes} +ac_cv_func_pthread_yield=${ac_cv_func_pthread_yield=yes} +ac_cv_func_putenv=${ac_cv_func_putenv=yes} +ac_cv_func_sem_close=${ac_cv_func_sem_close=yes} +ac_cv_func_sem_open=${ac_cv_func_sem_open=yes} +ac_cv_func_sem_post=${ac_cv_func_sem_post=yes} +ac_cv_func_sem_timedwait=${ac_cv_func_sem_timedwait=yes} +ac_cv_func_sem_unlink=${ac_cv_func_sem_unlink=yes} +ac_cv_func_sem_wait=${ac_cv_func_sem_wait=yes} +ac_cv_func_semctl=${ac_cv_func_semctl=yes} +ac_cv_func_semget=${ac_cv_func_semget=yes} +ac_cv_func_semop=${ac_cv_func_semop=yes} +ac_cv_func_semtimedop=${ac_cv_func_semtimedop=yes} +ac_cv_func_send_file=${ac_cv_func_send_file=no} +ac_cv_func_sendfile=${ac_cv_func_sendfile=yes} +ac_cv_func_sendfilev=${ac_cv_func_sendfilev=no} +ac_cv_func_set_h_errno=${ac_cv_func_set_h_errno=no} +ac_cv_func_setenv=${ac_cv_func_setenv=yes} +ac_cv_func_setpgrp_void=${ac_cv_func_setpgrp_void=yes} +ac_cv_func_setrlimit=${ac_cv_func_setrlimit=yes} +ac_cv_func_setsid=${ac_cv_func_setsid=yes} +ac_cv_func_shm_open=${ac_cv_func_shm_open=yes} +ac_cv_func_shm_unlink=${ac_cv_func_shm_unlink=yes} +ac_cv_func_shmat=${ac_cv_func_shmat=yes} +ac_cv_func_shmctl=${ac_cv_func_shmctl=yes} +ac_cv_func_shmdt=${ac_cv_func_shmdt=yes} +ac_cv_func_shmget=${ac_cv_func_shmget=yes} +ac_cv_func_sigaction=${ac_cv_func_sigaction=yes} +ac_cv_func_sigsuspend=${ac_cv_func_sigsuspend=yes} +ac_cv_func_sigwait=${ac_cv_func_sigwait=yes} +ac_cv_func_strcasecmp=${ac_cv_func_strcasecmp=yes} +ac_cv_func_strdup=${ac_cv_func_strdup=yes} +ac_cv_func_strerror_r=${ac_cv_func_strerror_r=yes} +ac_cv_func_stricmp=${ac_cv_func_stricmp=no} +ac_cv_func_strncasecmp=${ac_cv_func_strncasecmp=yes} +ac_cv_func_strnicmp=${ac_cv_func_strnicmp=no} +ac_cv_func_strstr=${ac_cv_func_strstr=yes} +ac_cv_func_strtol=${ac_cv_func_strtol=yes} +ac_cv_func_unsetenv=${ac_cv_func_unsetenv=yes} +ac_cv_func_utime=${ac_cv_func_utime=yes} +ac_cv_func_utimes=${ac_cv_func_utimes=yes} +ac_cv_func_uuid_create=${ac_cv_func_uuid_create=no} +ac_cv_func_uuid_generate=${ac_cv_func_uuid_generate=yes} +ac_cv_func_waitpid=${ac_cv_func_waitpid=yes} +ac_cv_func_writev=${ac_cv_func_writev=yes} +ac_cv_gethostbyname_r_arg=${ac_cv_gethostbyname_r_arg=char} +ac_cv_gethostbyname_r_style=${ac_cv_gethostbyname_r_style=glibc2} +ac_cv_getservbyname_r_style=${ac_cv_getservbyname_r_style=glibc2} +ac_cv_h_errno_cppflags=${ac_cv_h_errno_cppflags=yes} +ac_cv_have_decl_SYS_getrandom=${ac_cv_have_decl_SYS_getrandom=yes} +ac_cv_have_decl_sys_siglist=${ac_cv_have_decl_sys_siglist=yes} +ac_cv_header_ByteOrder_h=${ac_cv_header_ByteOrder_h=no} +ac_cv_header_OS_h=${ac_cv_header_OS_h=no} +ac_cv_header_arpa_inet_h=${ac_cv_header_arpa_inet_h=yes} +ac_cv_header_conio_h=${ac_cv_header_conio_h=no} +ac_cv_header_crypt_h=${ac_cv_header_crypt_h=yes} +ac_cv_header_ctype_h=${ac_cv_header_ctype_h=yes} +ac_cv_header_dir_h=${ac_cv_header_dir_h=no} +ac_cv_header_dirent_h=${ac_cv_header_dirent_h=yes} +ac_cv_header_dl_h=${ac_cv_header_dl_h=no} +ac_cv_header_dlfcn_h=${ac_cv_header_dlfcn_h=yes} +ac_cv_header_errno_h=${ac_cv_header_errno_h=yes} +ac_cv_header_fcntl_h=${ac_cv_header_fcntl_h=yes} +ac_cv_header_grp_h=${ac_cv_header_grp_h=yes} +ac_cv_header_inttypes_h=${ac_cv_header_inttypes_h=yes} +ac_cv_header_io_h=${ac_cv_header_io_h=no} +ac_cv_header_kernel_OS_h=${ac_cv_header_kernel_OS_h=no} +ac_cv_header_langinfo_h=${ac_cv_header_langinfo_h=yes} +ac_cv_header_limits_h=${ac_cv_header_limits_h=yes} +ac_cv_header_linux_random_h=${ac_cv_header_linux_random_h=yes} +ac_cv_header_mach_o_dyld_h=${ac_cv_header_mach_o_dyld_h=no} +ac_cv_header_malloc_h=${ac_cv_header_malloc_h=yes} +ac_cv_header_memory_h=${ac_cv_header_memory_h=yes} +ac_cv_header_minix_config_h=${ac_cv_header_minix_config_h=no} +ac_cv_header_net_errno_h=${ac_cv_header_net_errno_h=no} +ac_cv_header_net_if_h=${ac_cv_header_net_if_h=yes} +ac_cv_header_netdb_h=${ac_cv_header_netdb_h=yes} +ac_cv_header_netinet_in_h=${ac_cv_header_netinet_in_h=yes} +ac_cv_header_netinet_sctp_h=${ac_cv_header_netinet_sctp_h=no} +ac_cv_header_netinet_sctp_uio_h=${ac_cv_header_netinet_sctp_uio_h=no} +ac_cv_header_os2_h=${ac_cv_header_os2_h=no} +ac_cv_header_osreldate_h=${ac_cv_header_osreldate_h=no} +ac_cv_header_poll_h=${ac_cv_header_poll_h=yes} +ac_cv_header_process_h=${ac_cv_header_process_h=no} +ac_cv_header_pthread_h=${ac_cv_header_pthread_h=yes} +ac_cv_header_pwd_h=${ac_cv_header_pwd_h=yes} +ac_cv_header_semaphore_h=${ac_cv_header_semaphore_h=yes} +ac_cv_header_signal_h=${ac_cv_header_signal_h=yes} +ac_cv_header_stdarg_h=${ac_cv_header_stdarg_h=yes} +ac_cv_header_stddef_h=${ac_cv_header_stddef_h=yes} +ac_cv_header_stdint_h=${ac_cv_header_stdint_h=yes} +ac_cv_header_stdio_h=${ac_cv_header_stdio_h=yes} +ac_cv_header_stdlib_h=${ac_cv_header_stdlib_h=yes} +ac_cv_header_string_h=${ac_cv_header_string_h=yes} +ac_cv_header_strings_h=${ac_cv_header_strings_h=yes} +ac_cv_header_sys_file_h=${ac_cv_header_sys_file_h=yes} +ac_cv_header_sys_ioctl_h=${ac_cv_header_sys_ioctl_h=yes} +ac_cv_header_sys_ipc_h=${ac_cv_header_sys_ipc_h=yes} +ac_cv_header_sys_mman_h=${ac_cv_header_sys_mman_h=yes} +ac_cv_header_sys_mutex_h=${ac_cv_header_sys_mutex_h=no} +ac_cv_header_sys_param_h=${ac_cv_header_sys_param_h=yes} +ac_cv_header_sys_poll_h=${ac_cv_header_sys_poll_h=yes} +ac_cv_header_sys_random_h=${ac_cv_header_sys_random_h=yes} +ac_cv_header_sys_resource_h=${ac_cv_header_sys_resource_h=yes} +ac_cv_header_sys_select_h=${ac_cv_header_sys_select_h=yes} +ac_cv_header_sys_sem_h=${ac_cv_header_sys_sem_h=yes} +ac_cv_header_sys_sendfile_h=${ac_cv_header_sys_sendfile_h=yes} +ac_cv_header_sys_shm_h=${ac_cv_header_sys_shm_h=yes} +ac_cv_header_sys_signal_h=${ac_cv_header_sys_signal_h=yes} +ac_cv_header_sys_socket_h=${ac_cv_header_sys_socket_h=yes} +ac_cv_header_sys_sockio_h=${ac_cv_header_sys_sockio_h=no} +ac_cv_header_sys_stat_h=${ac_cv_header_sys_stat_h=yes} +ac_cv_header_sys_syscall_h=${ac_cv_header_sys_syscall_h=yes} +ac_cv_header_sys_sysctl_h=${ac_cv_header_sys_sysctl_h=yes} +ac_cv_header_sys_syslimits_h=${ac_cv_header_sys_syslimits_h=no} +ac_cv_header_sys_time_h=${ac_cv_header_sys_time_h=yes} +ac_cv_header_sys_types_h=${ac_cv_header_sys_types_h=yes} +ac_cv_header_sys_uio_h=${ac_cv_header_sys_uio_h=yes} +ac_cv_header_sys_un_h=${ac_cv_header_sys_un_h=yes} +ac_cv_header_sys_wait_h=${ac_cv_header_sys_wait_h=yes} +ac_cv_header_sysapi_h=${ac_cv_header_sysapi_h=no} +ac_cv_header_sysgtime_h=${ac_cv_header_sysgtime_h=no} +ac_cv_header_termios_h=${ac_cv_header_termios_h=yes} +ac_cv_header_time_h=${ac_cv_header_time_h=yes} +ac_cv_header_tpfeq_h=${ac_cv_header_tpfeq_h=no} +ac_cv_header_tpfio_h=${ac_cv_header_tpfio_h=no} +ac_cv_header_unistd_h=${ac_cv_header_unistd_h=yes} +ac_cv_header_unix_h=${ac_cv_header_unix_h=no} +ac_cv_header_uuid_h=${ac_cv_header_uuid_h=no} +ac_cv_header_uuid_uuid_h=${ac_cv_header_uuid_uuid_h=yes} +ac_cv_header_wchar_h=${ac_cv_header_wchar_h=yes} +ac_cv_header_windows_h=${ac_cv_header_windows_h=no} +ac_cv_header_winsock2_h=${ac_cv_header_winsock2_h=no} +ac_cv_host=${ac_cv_host=aarch64-unknown-linux-gnu} +ac_cv_lib_c_r_gethostbyaddr=${ac_cv_lib_c_r_gethostbyaddr=no} +ac_cv_lib_c_r_gethostbyname=${ac_cv_lib_c_r_gethostbyname=no} +ac_cv_lib_c_r_getservbyname=${ac_cv_lib_c_r_getservbyname=no} +ac_cv_lib_dl_dlopen=${ac_cv_lib_dl_dlopen=yes} +ac_cv_lib_sendfile_sendfilev=${ac_cv_lib_sendfile_sendfilev=no} +ac_cv_lib_truerand_main=${ac_cv_lib_truerand_main=no} +ac_cv_member_struct_stat_st_atim_tv_nsec=${ac_cv_member_struct_stat_st_atim_tv_nsec=yes} +ac_cv_member_struct_stat_st_atime_n=${ac_cv_member_struct_stat_st_atime_n=no} +ac_cv_member_struct_stat_st_atimensec=${ac_cv_member_struct_stat_st_atimensec=no} +ac_cv_member_struct_stat_st_blocks=${ac_cv_member_struct_stat_st_blocks=yes} +ac_cv_member_struct_stat_st_ctim_tv_nsec=${ac_cv_member_struct_stat_st_ctim_tv_nsec=yes} +ac_cv_member_struct_stat_st_ctime_n=${ac_cv_member_struct_stat_st_ctime_n=no} +ac_cv_member_struct_stat_st_ctimensec=${ac_cv_member_struct_stat_st_ctimensec=no} +ac_cv_member_struct_stat_st_mtim_tv_nsec=${ac_cv_member_struct_stat_st_mtim_tv_nsec=yes} +ac_cv_member_struct_stat_st_mtime_n=${ac_cv_member_struct_stat_st_mtime_n=no} +ac_cv_member_struct_stat_st_mtimensec=${ac_cv_member_struct_stat_st_mtimensec=no} +ac_cv_member_struct_tm___tm_gmtoff=${ac_cv_member_struct_tm___tm_gmtoff=no} +ac_cv_member_struct_tm_tm_gmtoff=${ac_cv_member_struct_tm_tm_gmtoff=yes} +ac_cv_mkdir_p=${ac_cv_mkdir_p=yes} +ac_cv_negative_eai=${ac_cv_negative_eai=yes} +ac_cv_o_nonblock_inherited=${ac_cv_o_nonblock_inherited=no} +ac_cv_objext=${ac_cv_objext=o} +ac_cv_path_EGREP=${ac_cv_path_EGREP='/usr/bin/grep -E'} +ac_cv_path_FGREP=${ac_cv_path_FGREP='/usr/bin/grep -F'} +ac_cv_path_GREP=${ac_cv_path_GREP=/usr/bin/grep} +ac_cv_path_SED=${ac_cv_path_SED=/usr/bin/sed} +ac_cv_path_install=${ac_cv_path_install='/usr/bin/install -c'} +ac_cv_path_lt_DD=${ac_cv_path_lt_DD=/usr/bin/dd} +ac_cv_prog_AS=${ac_cv_prog_AS=as} +ac_cv_prog_ASCPP=${ac_cv_prog_ASCPP=cpp} +ac_cv_prog_AWK=${ac_cv_prog_AWK=gawk} +ac_cv_prog_CPP=${ac_cv_prog_CPP='gcc -E'} +ac_cv_prog_RM=${ac_cv_prog_RM=rm} +ac_cv_prog_ac_ct_AR=${ac_cv_prog_ac_ct_AR=ar} +ac_cv_prog_ac_ct_CC=${ac_cv_prog_ac_ct_CC=gcc} +ac_cv_prog_ac_ct_CC_FOR_BUILD=${ac_cv_prog_ac_ct_CC_FOR_BUILD=gcc} +ac_cv_prog_ac_ct_DLLTOOL=${ac_cv_prog_ac_ct_DLLTOOL=dlltool} +ac_cv_prog_ac_ct_FILECMD=${ac_cv_prog_ac_ct_FILECMD=file} +ac_cv_prog_ac_ct_MANIFEST_TOOL=${ac_cv_prog_ac_ct_MANIFEST_TOOL=mt} +ac_cv_prog_ac_ct_OBJDUMP=${ac_cv_prog_ac_ct_OBJDUMP=objdump} +ac_cv_prog_ac_ct_RANLIB=${ac_cv_prog_ac_ct_RANLIB=ranlib} +ac_cv_prog_ac_ct_STRIP=${ac_cv_prog_ac_ct_STRIP=strip} +ac_cv_prog_cc_c11=${ac_cv_prog_cc_c11=} +ac_cv_prog_cc_g=${ac_cv_prog_cc_g=yes} +ac_cv_prog_cc_stdc=${ac_cv_prog_cc_stdc=} +ac_cv_prog_make_make_set=${ac_cv_prog_make_make_set=yes} +ac_cv_pthread_attr_getdetachstate_one_arg=${ac_cv_pthread_attr_getdetachstate_one_arg=no} +ac_cv_pthread_getspecific_two_args=${ac_cv_pthread_getspecific_two_args=no} +ac_cv_safe_to_define___extensions__=${ac_cv_safe_to_define___extensions__=yes} +ac_cv_search_crypt=${ac_cv_search_crypt=-lcrypt} +ac_cv_search_gai_strerror=${ac_cv_search_gai_strerror='none required'} +ac_cv_search_getaddrinfo=${ac_cv_search_getaddrinfo='none required'} +ac_cv_search_gethostbyname=${ac_cv_search_gethostbyname='none required'} +ac_cv_search_gethostname=${ac_cv_search_gethostname='none required'} +ac_cv_search_getnameinfo=${ac_cv_search_getnameinfo='none required'} +ac_cv_search_modf=${ac_cv_search_modf='none required'} +ac_cv_search_sem_open=${ac_cv_search_sem_open='none required'} +ac_cv_search_shm_open=${ac_cv_search_shm_open=-lrt} +ac_cv_search_socket=${ac_cv_search_socket='none required'} +ac_cv_search_strerror=${ac_cv_search_strerror='none required'} +ac_cv_search_uuid_create=${ac_cv_search_uuid_create=no} +ac_cv_search_uuid_generate=${ac_cv_search_uuid_generate=-luuid} +ac_cv_should_define__xopen_source=${ac_cv_should_define__xopen_source=no} +ac_cv_sigwait_one_arg=${ac_cv_sigwait_one_arg=no} +ac_cv_sizeof_char=${ac_cv_sizeof_char=1} +ac_cv_sizeof_ino_t=${ac_cv_sizeof_ino_t=8} +ac_cv_sizeof_int=${ac_cv_sizeof_int=4} +ac_cv_sizeof_long=${ac_cv_sizeof_long=8} +ac_cv_sizeof_long_long=${ac_cv_sizeof_long_long=8} +ac_cv_sizeof_off_t=${ac_cv_sizeof_off_t=8} +ac_cv_sizeof_pid_t=${ac_cv_sizeof_pid_t=4} +ac_cv_sizeof_short=${ac_cv_sizeof_short=2} +ac_cv_sizeof_size_t=${ac_cv_sizeof_size_t=8} +ac_cv_sizeof_ssize_t=${ac_cv_sizeof_ssize_t=8} +ac_cv_sizeof_struct_iovec=${ac_cv_sizeof_struct_iovec=16} +ac_cv_sizeof_voidp=${ac_cv_sizeof_voidp=8} +ac_cv_socklen_t=${ac_cv_socklen_t=yes} +ac_cv_strerror_r_rc_int=${ac_cv_strerror_r_rc_int=no} +ac_cv_struct_rlimit=${ac_cv_struct_rlimit=yes} +ac_cv_target=${ac_cv_target=aarch64-unknown-linux-gnu} +ac_cv_tcp_nodelay_inherited=${ac_cv_tcp_nodelay_inherited=yes} +ac_cv_type_in_addr=${ac_cv_type_in_addr=yes} +ac_cv_type_off_t=${ac_cv_type_off_t=yes} +ac_cv_type_pid_t=${ac_cv_type_pid_t=yes} +ac_cv_type_size_t=${ac_cv_type_size_t=yes} +ac_cv_type_ssize_t=${ac_cv_type_ssize_t=yes} +ac_cv_type_uid_t=${ac_cv_type_uid_t=yes} +ac_cv_working_alloca_h=${ac_cv_working_alloca_h=yes} +ac_cv_working_getaddrinfo=${ac_cv_working_getaddrinfo=yes} +ac_cv_working_getnameinfo=${ac_cv_working_getnameinfo=yes} +ap_cv__atomic_builtins64=${ap_cv__atomic_builtins64=yes} +ap_cv__atomic_builtins=${ap_cv__atomic_builtins=yes} +ap_cv_atomic_builtins64=${ap_cv_atomic_builtins64=yes} +ap_cv_atomic_builtins=${ap_cv_atomic_builtins=yes} +apr_cv_accept4=${apr_cv_accept4=yes} +apr_cv_aio_msgq=${apr_cv_aio_msgq=no} +apr_cv_define_INT64_C=${apr_cv_define_INT64_C=yes} +apr_cv_define_sockaddr_storage=${apr_cv_define_sockaddr_storage=yes} +apr_cv_dirent_inode=${apr_cv_dirent_inode=d_fileno} +apr_cv_dirent_type=${apr_cv_dirent_type=d_type} +apr_cv_dup3=${apr_cv_dup3=yes} +apr_cv_epoll=${apr_cv_epoll=yes} +apr_cv_epoll_create1=${apr_cv_epoll_create1=yes} +apr_cv_gai_addrconfig=${apr_cv_gai_addrconfig=yes} +apr_cv_hdr_netinet_tcp_h=${apr_cv_hdr_netinet_tcp_h=yes} +apr_cv_mutex_recursive=${apr_cv_mutex_recursive=yes} +apr_cv_mutex_robust_shared=${apr_cv_mutex_robust_shared=yes} +apr_cv_osuuid=${apr_cv_osuuid=yes} +apr_cv_process_shared_works=${apr_cv_process_shared_works=yes} +apr_cv_pthreads_cflags=${apr_cv_pthreads_cflags=-pthread} +apr_cv_pthreads_lib=${apr_cv_pthreads_lib=-lpthread} +apr_cv_sctp=${apr_cv_sctp=no} +apr_cv_sock_cloexec=${apr_cv_sock_cloexec=yes} +apr_cv_struct_ipmreq=${apr_cv_struct_ipmreq=yes} +apr_cv_tcp_nodelay_with_cork=${apr_cv_tcp_nodelay_with_cork=yes} +apr_cv_type_rwlock_t=${apr_cv_type_rwlock_t=yes} +apr_cv_typematch_int64_t_int_d=${apr_cv_typematch_int64_t_int_d=no} +apr_cv_typematch_int64_t_long_ld=${apr_cv_typematch_int64_t_long_ld=yes} +apr_cv_typematch_off_t_long_ld=${apr_cv_typematch_off_t_long_ld=yes} +apr_cv_typematch_size_t_unsigned_long_lu=${apr_cv_typematch_size_t_unsigned_long_lu=yes} +apr_cv_typematch_ssize_t_long_ld=${apr_cv_typematch_ssize_t_long_ld=yes} +apr_cv_use_lfs64=${apr_cv_use_lfs64=no} +lt_cv_ar_at_file=${lt_cv_ar_at_file=@} +lt_cv_archive_cmds_need_lc=${lt_cv_archive_cmds_need_lc=no} +lt_cv_deplibs_check_method=${lt_cv_deplibs_check_method=pass_all} +lt_cv_file_magic_cmd=${lt_cv_file_magic_cmd='$MAGIC_CMD'} +lt_cv_file_magic_test_file=${lt_cv_file_magic_test_file=} +lt_cv_ld_reload_flag=${lt_cv_ld_reload_flag=-r} +lt_cv_nm_interface=${lt_cv_nm_interface='BSD nm'} +lt_cv_objdir=${lt_cv_objdir=.libs} +lt_cv_path_LD=${lt_cv_path_LD=/usr/bin/ld} +lt_cv_path_NM=${lt_cv_path_NM='/usr/bin/nm -B'} +lt_cv_path_mainfest_tool=${lt_cv_path_mainfest_tool=no} +lt_cv_prog_compiler_c_o=${lt_cv_prog_compiler_c_o=yes} +lt_cv_prog_compiler_pic=${lt_cv_prog_compiler_pic='-fPIC -DPIC'} +lt_cv_prog_compiler_pic_works=${lt_cv_prog_compiler_pic_works=yes} +lt_cv_prog_compiler_rtti_exceptions=${lt_cv_prog_compiler_rtti_exceptions=no} +lt_cv_prog_compiler_static_works=${lt_cv_prog_compiler_static_works=yes} +lt_cv_prog_gnu_ld=${lt_cv_prog_gnu_ld=yes} +lt_cv_sharedlib_from_linklib_cmd=${lt_cv_sharedlib_from_linklib_cmd='printf %s\n'} +lt_cv_shlibpath_overrides_runpath=${lt_cv_shlibpath_overrides_runpath=yes} +lt_cv_sys_global_symbol_pipe=${lt_cv_sys_global_symbol_pipe='/usr/bin/sed -n -e '\''s/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\'' | /usr/bin/sed '\''/ __gnu_lto/d'\'''} +test ${lt_cv_sys_global_symbol_to_c_name_address+y} || lt_cv_sys_global_symbol_to_c_name_address='/usr/bin/sed -n -e '\''s/^: \(.*\) .*$/ {"\1", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/ {"\1", (void *) \&\1},/p'\''' +test ${lt_cv_sys_global_symbol_to_c_name_address_lib_prefix+y} || lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='/usr/bin/sed -n -e '\''s/^: \(.*\) .*$/ {"\1", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(lib.*\)$/ {"\1", (void *) \&\1},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/ {"lib\1", (void *) \&\1},/p'\''' +lt_cv_sys_global_symbol_to_cdecl=${lt_cv_sys_global_symbol_to_cdecl='/usr/bin/sed -n -e '\''s/^T .* \(.*\)$/extern int \1();/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/extern char \1;/p'\'''} +lt_cv_sys_global_symbol_to_import=${lt_cv_sys_global_symbol_to_import=} +lt_cv_sys_max_cmd_len=${lt_cv_sys_max_cmd_len=1572864} +lt_cv_to_host_file_cmd=${lt_cv_to_host_file_cmd=func_convert_file_noop} +lt_cv_to_tool_file_cmd=${lt_cv_to_tool_file_cmd=func_convert_file_noop} +lt_cv_truncate_bin=${lt_cv_truncate_bin='/usr/bin/dd bs=4096 count=1'} diff --git a/recipes/apr/all/cross_build/arm-linux-gnueabihf.cache b/recipes/apr/all/cross_build/arm-linux-gnueabihf.cache new file mode 100644 index 0000000000000..2c5e0ef637869 --- /dev/null +++ b/recipes/apr/all/cross_build/arm-linux-gnueabihf.cache @@ -0,0 +1,379 @@ +# This file is a shell script that caches the results of configure +# tests run on this system so they can be shared between configure +# scripts and configure runs, see configure's option --config-cache. +# It is not useful on other systems. If it contains results you don't +# want to keep, you may remove or edit it. +# +# config.status only pays attention to the cache file if you give it +# the --recheck option to rerun configure. +# +# `ac_cv_env_foo' variables (set or unset) will be overridden when +# loading this file, other *unset* `ac_cv_foo' will be assigned the +# following values. + +ac_cv_build=${ac_cv_build=armv7l-unknown-linux-gnueabihf} +ac_cv_build_prog_CPP=${ac_cv_build_prog_CPP='gcc -E'} +ac_cv_build_prog_cc_g=${ac_cv_build_prog_cc_g=yes} +ac_cv_c_bigendian=${ac_cv_c_bigendian=no} +ac_cv_c_compiler_gnu=${ac_cv_c_compiler_gnu=yes} +ac_cv_c_const=${ac_cv_c_const=yes} +ac_cv_c_inline=${ac_cv_c_inline=inline} +ac_cv_c_undeclared_builtin_options=${ac_cv_c_undeclared_builtin_options='none needed'} +ac_cv_define_F_SETLK=${ac_cv_define_F_SETLK=yes} +ac_cv_define_GETHOSTBYADDR_IS_THREAD_SAFE=${ac_cv_define_GETHOSTBYADDR_IS_THREAD_SAFE=no} +ac_cv_define_GETHOSTBYNAME_IS_THREAD_SAFE=${ac_cv_define_GETHOSTBYNAME_IS_THREAD_SAFE=no} +ac_cv_define_GETSERVBYNAME_IS_THREAD_SAFE=${ac_cv_define_GETSERVBYNAME_IS_THREAD_SAFE=no} +ac_cv_define_LOCK_EX=${ac_cv_define_LOCK_EX=yes} +ac_cv_define_MAP_ANON=${ac_cv_define_MAP_ANON=yes} +ac_cv_define_POLLIN=${ac_cv_define_POLLIN=yes} +ac_cv_define_PTHREAD_PROCESS_SHARED=${ac_cv_define_PTHREAD_PROCESS_SHARED=yes} +ac_cv_define_READDIR_IS_THREAD_SAFE=${ac_cv_define_READDIR_IS_THREAD_SAFE=yes} +ac_cv_define_SEM_UNDO=${ac_cv_define_SEM_UNDO=yes} +ac_cv_define_SO_ACCEPTFILTER=${ac_cv_define_SO_ACCEPTFILTER=no} +ac_cv_define_TCP_CORK=${ac_cv_define_TCP_CORK=yes} +ac_cv_define_TCP_NOPUSH=${ac_cv_define_TCP_NOPUSH=no} +ac_cv_define_sockaddr_in6=${ac_cv_define_sockaddr_in6=yes} +ac_cv_define_sockaddr_un=${ac_cv_define_sockaddr_un=yes} +ac_cv_ebcdic=${ac_cv_ebcdic=no} +ac_cv_file__dev_zero=${ac_cv_file__dev_zero=yes} +ac_cv_func__getch=${ac_cv_func__getch=no} +ac_cv_func_acquire_sem=${ac_cv_func_acquire_sem=no} +ac_cv_func_acquire_sem_etc=${ac_cv_func_acquire_sem_etc=no} +ac_cv_func_alloca_works=${ac_cv_func_alloca_works=yes} +ac_cv_func_arc4random_buf=${ac_cv_func_arc4random_buf=no} +ac_cv_func_calloc=${ac_cv_func_calloc=yes} +ac_cv_func_create_area=${ac_cv_func_create_area=no} +ac_cv_func_create_sem=${ac_cv_func_create_sem=no} +ac_cv_func_dlopen=${ac_cv_func_dlopen=no} +ac_cv_func_dlsym=${ac_cv_func_dlsym=yes} +ac_cv_func_fdatasync=${ac_cv_func_fdatasync=yes} +ac_cv_func_flock=${ac_cv_func_flock=yes} +ac_cv_func_fork=${ac_cv_func_fork=yes} +ac_cv_func_gai_strerror=${ac_cv_func_gai_strerror=yes} +ac_cv_func_getenv=${ac_cv_func_getenv=yes} +ac_cv_func_getgrgid_r=${ac_cv_func_getgrgid_r=yes} +ac_cv_func_getgrnam_r=${ac_cv_func_getgrnam_r=yes} +ac_cv_func_gethostbyaddr_r=${ac_cv_func_gethostbyaddr_r=yes} +ac_cv_func_gethostbyname_r=${ac_cv_func_gethostbyname_r=yes} +ac_cv_func_getifaddrs=${ac_cv_func_getifaddrs=yes} +ac_cv_func_getpass=${ac_cv_func_getpass=yes} +ac_cv_func_getpassphrase=${ac_cv_func_getpassphrase=no} +ac_cv_func_getpwnam_r=${ac_cv_func_getpwnam_r=yes} +ac_cv_func_getpwuid_r=${ac_cv_func_getpwuid_r=yes} +ac_cv_func_getrandom=${ac_cv_func_getrandom=yes} +ac_cv_func_getrlimit=${ac_cv_func_getrlimit=yes} +ac_cv_func_getservbyname_r=${ac_cv_func_getservbyname_r=yes} +ac_cv_func_gmtime_r=${ac_cv_func_gmtime_r=yes} +ac_cv_func_if_indextoname=${ac_cv_func_if_indextoname=yes} +ac_cv_func_if_nametoindex=${ac_cv_func_if_nametoindex=yes} +ac_cv_func_inet_addr=${ac_cv_func_inet_addr=yes} +ac_cv_func_inet_network=${ac_cv_func_inet_network=yes} +ac_cv_func_isinf=${ac_cv_func_isinf=yes} +ac_cv_func_isnan=${ac_cv_func_isnan=yes} +ac_cv_func_kqueue=${ac_cv_func_kqueue=no} +ac_cv_func_localtime_r=${ac_cv_func_localtime_r=yes} +ac_cv_func_memchr=${ac_cv_func_memchr=yes} +ac_cv_func_memmove=${ac_cv_func_memmove=yes} +ac_cv_func_mkstemp64=${ac_cv_func_mkstemp64=yes} +ac_cv_func_mkstemp=${ac_cv_func_mkstemp=yes} +ac_cv_func_mmap64=${ac_cv_func_mmap64=yes} +ac_cv_func_mmap=${ac_cv_func_mmap=yes} +ac_cv_func_mprotect=${ac_cv_func_mprotect=yes} +ac_cv_func_munmap=${ac_cv_func_munmap=yes} +ac_cv_func_nl_langinfo=${ac_cv_func_nl_langinfo=yes} +ac_cv_func_poll=${ac_cv_func_poll=yes} +ac_cv_func_port_create=${ac_cv_func_port_create=no} +ac_cv_func_pthread_attr_setguardsize=${ac_cv_func_pthread_attr_setguardsize=yes} +ac_cv_func_pthread_condattr_setpshared=${ac_cv_func_pthread_condattr_setpshared=yes} +ac_cv_func_pthread_key_delete=${ac_cv_func_pthread_key_delete=yes} +ac_cv_func_pthread_mutex_timedlock=${ac_cv_func_pthread_mutex_timedlock=yes} +ac_cv_func_pthread_mutexattr_setpshared=${ac_cv_func_pthread_mutexattr_setpshared=yes} +ac_cv_func_pthread_rwlock_init=${ac_cv_func_pthread_rwlock_init=yes} +ac_cv_func_pthread_yield=${ac_cv_func_pthread_yield=yes} +ac_cv_func_putenv=${ac_cv_func_putenv=yes} +ac_cv_func_readdir64_r=${ac_cv_func_readdir64_r=yes} +ac_cv_func_sem_close=${ac_cv_func_sem_close=yes} +ac_cv_func_sem_open=${ac_cv_func_sem_open=yes} +ac_cv_func_sem_post=${ac_cv_func_sem_post=yes} +ac_cv_func_sem_timedwait=${ac_cv_func_sem_timedwait=yes} +ac_cv_func_sem_unlink=${ac_cv_func_sem_unlink=yes} +ac_cv_func_sem_wait=${ac_cv_func_sem_wait=yes} +ac_cv_func_semctl=${ac_cv_func_semctl=yes} +ac_cv_func_semget=${ac_cv_func_semget=yes} +ac_cv_func_semop=${ac_cv_func_semop=yes} +ac_cv_func_semtimedop=${ac_cv_func_semtimedop=yes} +ac_cv_func_send_file=${ac_cv_func_send_file=no} +ac_cv_func_sendfile64=${ac_cv_func_sendfile64=yes} +ac_cv_func_sendfile=${ac_cv_func_sendfile=yes} +ac_cv_func_sendfilev64=${ac_cv_func_sendfilev64=no} +ac_cv_func_sendfilev=${ac_cv_func_sendfilev=no} +ac_cv_func_set_h_errno=${ac_cv_func_set_h_errno=no} +ac_cv_func_setenv=${ac_cv_func_setenv=yes} +ac_cv_func_setpgrp_void=${ac_cv_func_setpgrp_void=yes} +ac_cv_func_setrlimit=${ac_cv_func_setrlimit=yes} +ac_cv_func_setsid=${ac_cv_func_setsid=yes} +ac_cv_func_shm_open=${ac_cv_func_shm_open=yes} +ac_cv_func_shm_unlink=${ac_cv_func_shm_unlink=yes} +ac_cv_func_shmat=${ac_cv_func_shmat=yes} +ac_cv_func_shmctl=${ac_cv_func_shmctl=yes} +ac_cv_func_shmdt=${ac_cv_func_shmdt=yes} +ac_cv_func_shmget=${ac_cv_func_shmget=yes} +ac_cv_func_sigaction=${ac_cv_func_sigaction=yes} +ac_cv_func_sigsuspend=${ac_cv_func_sigsuspend=yes} +ac_cv_func_sigwait=${ac_cv_func_sigwait=yes} +ac_cv_func_strcasecmp=${ac_cv_func_strcasecmp=yes} +ac_cv_func_strdup=${ac_cv_func_strdup=yes} +ac_cv_func_strerror_r=${ac_cv_func_strerror_r=yes} +ac_cv_func_stricmp=${ac_cv_func_stricmp=no} +ac_cv_func_strncasecmp=${ac_cv_func_strncasecmp=yes} +ac_cv_func_strnicmp=${ac_cv_func_strnicmp=no} +ac_cv_func_strstr=${ac_cv_func_strstr=yes} +ac_cv_func_strtoll=${ac_cv_func_strtoll=yes} +ac_cv_func_unsetenv=${ac_cv_func_unsetenv=yes} +ac_cv_func_utime=${ac_cv_func_utime=yes} +ac_cv_func_utimes=${ac_cv_func_utimes=yes} +ac_cv_func_uuid_create=${ac_cv_func_uuid_create=no} +ac_cv_func_uuid_generate=${ac_cv_func_uuid_generate=yes} +ac_cv_func_waitpid=${ac_cv_func_waitpid=yes} +ac_cv_func_writev=${ac_cv_func_writev=yes} +ac_cv_gethostbyname_r_arg=${ac_cv_gethostbyname_r_arg=char} +ac_cv_gethostbyname_r_style=${ac_cv_gethostbyname_r_style=glibc2} +ac_cv_getservbyname_r_style=${ac_cv_getservbyname_r_style=glibc2} +ac_cv_h_errno_cppflags=${ac_cv_h_errno_cppflags=yes} +ac_cv_have_decl_SYS_getrandom=${ac_cv_have_decl_SYS_getrandom=yes} +ac_cv_have_decl_sys_siglist=${ac_cv_have_decl_sys_siglist=yes} +ac_cv_header_ByteOrder_h=${ac_cv_header_ByteOrder_h=no} +ac_cv_header_OS_h=${ac_cv_header_OS_h=no} +ac_cv_header_arpa_inet_h=${ac_cv_header_arpa_inet_h=yes} +ac_cv_header_conio_h=${ac_cv_header_conio_h=no} +ac_cv_header_crypt_h=${ac_cv_header_crypt_h=yes} +ac_cv_header_ctype_h=${ac_cv_header_ctype_h=yes} +ac_cv_header_dir_h=${ac_cv_header_dir_h=no} +ac_cv_header_dirent_h=${ac_cv_header_dirent_h=yes} +ac_cv_header_dl_h=${ac_cv_header_dl_h=no} +ac_cv_header_dlfcn_h=${ac_cv_header_dlfcn_h=yes} +ac_cv_header_errno_h=${ac_cv_header_errno_h=yes} +ac_cv_header_fcntl_h=${ac_cv_header_fcntl_h=yes} +ac_cv_header_grp_h=${ac_cv_header_grp_h=yes} +ac_cv_header_inttypes_h=${ac_cv_header_inttypes_h=yes} +ac_cv_header_io_h=${ac_cv_header_io_h=no} +ac_cv_header_kernel_OS_h=${ac_cv_header_kernel_OS_h=no} +ac_cv_header_langinfo_h=${ac_cv_header_langinfo_h=yes} +ac_cv_header_limits_h=${ac_cv_header_limits_h=yes} +ac_cv_header_linux_random_h=${ac_cv_header_linux_random_h=yes} +ac_cv_header_mach_o_dyld_h=${ac_cv_header_mach_o_dyld_h=no} +ac_cv_header_malloc_h=${ac_cv_header_malloc_h=yes} +ac_cv_header_memory_h=${ac_cv_header_memory_h=yes} +ac_cv_header_minix_config_h=${ac_cv_header_minix_config_h=no} +ac_cv_header_net_errno_h=${ac_cv_header_net_errno_h=no} +ac_cv_header_net_if_h=${ac_cv_header_net_if_h=yes} +ac_cv_header_netdb_h=${ac_cv_header_netdb_h=yes} +ac_cv_header_netinet_in_h=${ac_cv_header_netinet_in_h=yes} +ac_cv_header_netinet_sctp_h=${ac_cv_header_netinet_sctp_h=no} +ac_cv_header_netinet_sctp_uio_h=${ac_cv_header_netinet_sctp_uio_h=no} +ac_cv_header_os2_h=${ac_cv_header_os2_h=no} +ac_cv_header_osreldate_h=${ac_cv_header_osreldate_h=no} +ac_cv_header_poll_h=${ac_cv_header_poll_h=yes} +ac_cv_header_process_h=${ac_cv_header_process_h=no} +ac_cv_header_pthread_h=${ac_cv_header_pthread_h=yes} +ac_cv_header_pwd_h=${ac_cv_header_pwd_h=yes} +ac_cv_header_semaphore_h=${ac_cv_header_semaphore_h=yes} +ac_cv_header_signal_h=${ac_cv_header_signal_h=yes} +ac_cv_header_stdarg_h=${ac_cv_header_stdarg_h=yes} +ac_cv_header_stddef_h=${ac_cv_header_stddef_h=yes} +ac_cv_header_stdint_h=${ac_cv_header_stdint_h=yes} +ac_cv_header_stdio_h=${ac_cv_header_stdio_h=yes} +ac_cv_header_stdlib_h=${ac_cv_header_stdlib_h=yes} +ac_cv_header_string_h=${ac_cv_header_string_h=yes} +ac_cv_header_strings_h=${ac_cv_header_strings_h=yes} +ac_cv_header_sys_file_h=${ac_cv_header_sys_file_h=yes} +ac_cv_header_sys_ioctl_h=${ac_cv_header_sys_ioctl_h=yes} +ac_cv_header_sys_ipc_h=${ac_cv_header_sys_ipc_h=yes} +ac_cv_header_sys_mman_h=${ac_cv_header_sys_mman_h=yes} +ac_cv_header_sys_mutex_h=${ac_cv_header_sys_mutex_h=no} +ac_cv_header_sys_param_h=${ac_cv_header_sys_param_h=yes} +ac_cv_header_sys_poll_h=${ac_cv_header_sys_poll_h=yes} +ac_cv_header_sys_random_h=${ac_cv_header_sys_random_h=yes} +ac_cv_header_sys_resource_h=${ac_cv_header_sys_resource_h=yes} +ac_cv_header_sys_select_h=${ac_cv_header_sys_select_h=yes} +ac_cv_header_sys_sem_h=${ac_cv_header_sys_sem_h=yes} +ac_cv_header_sys_sendfile_h=${ac_cv_header_sys_sendfile_h=yes} +ac_cv_header_sys_shm_h=${ac_cv_header_sys_shm_h=yes} +ac_cv_header_sys_signal_h=${ac_cv_header_sys_signal_h=yes} +ac_cv_header_sys_socket_h=${ac_cv_header_sys_socket_h=yes} +ac_cv_header_sys_sockio_h=${ac_cv_header_sys_sockio_h=no} +ac_cv_header_sys_stat_h=${ac_cv_header_sys_stat_h=yes} +ac_cv_header_sys_syscall_h=${ac_cv_header_sys_syscall_h=yes} +ac_cv_header_sys_sysctl_h=${ac_cv_header_sys_sysctl_h=yes} +ac_cv_header_sys_syslimits_h=${ac_cv_header_sys_syslimits_h=no} +ac_cv_header_sys_time_h=${ac_cv_header_sys_time_h=yes} +ac_cv_header_sys_types_h=${ac_cv_header_sys_types_h=yes} +ac_cv_header_sys_uio_h=${ac_cv_header_sys_uio_h=yes} +ac_cv_header_sys_un_h=${ac_cv_header_sys_un_h=yes} +ac_cv_header_sys_wait_h=${ac_cv_header_sys_wait_h=yes} +ac_cv_header_sysapi_h=${ac_cv_header_sysapi_h=no} +ac_cv_header_sysgtime_h=${ac_cv_header_sysgtime_h=no} +ac_cv_header_termios_h=${ac_cv_header_termios_h=yes} +ac_cv_header_time_h=${ac_cv_header_time_h=yes} +ac_cv_header_tpfeq_h=${ac_cv_header_tpfeq_h=no} +ac_cv_header_tpfio_h=${ac_cv_header_tpfio_h=no} +ac_cv_header_unistd_h=${ac_cv_header_unistd_h=yes} +ac_cv_header_unix_h=${ac_cv_header_unix_h=no} +ac_cv_header_uuid_h=${ac_cv_header_uuid_h=no} +ac_cv_header_uuid_uuid_h=${ac_cv_header_uuid_uuid_h=yes} +ac_cv_header_wchar_h=${ac_cv_header_wchar_h=yes} +ac_cv_header_windows_h=${ac_cv_header_windows_h=no} +ac_cv_header_winsock2_h=${ac_cv_header_winsock2_h=no} +ac_cv_host=${ac_cv_host=armv7l-unknown-linux-gnueabihf} +ac_cv_lib_c_r_gethostbyaddr=${ac_cv_lib_c_r_gethostbyaddr=no} +ac_cv_lib_c_r_gethostbyname=${ac_cv_lib_c_r_gethostbyname=no} +ac_cv_lib_c_r_getservbyname=${ac_cv_lib_c_r_getservbyname=no} +ac_cv_lib_dl_dlopen=${ac_cv_lib_dl_dlopen=yes} +ac_cv_lib_sendfile_sendfilev=${ac_cv_lib_sendfile_sendfilev=no} +ac_cv_lib_truerand_main=${ac_cv_lib_truerand_main=no} +ac_cv_member_struct_stat_st_atim_tv_nsec=${ac_cv_member_struct_stat_st_atim_tv_nsec=yes} +ac_cv_member_struct_stat_st_atime_n=${ac_cv_member_struct_stat_st_atime_n=no} +ac_cv_member_struct_stat_st_atimensec=${ac_cv_member_struct_stat_st_atimensec=no} +ac_cv_member_struct_stat_st_blocks=${ac_cv_member_struct_stat_st_blocks=yes} +ac_cv_member_struct_stat_st_ctim_tv_nsec=${ac_cv_member_struct_stat_st_ctim_tv_nsec=yes} +ac_cv_member_struct_stat_st_ctime_n=${ac_cv_member_struct_stat_st_ctime_n=no} +ac_cv_member_struct_stat_st_ctimensec=${ac_cv_member_struct_stat_st_ctimensec=no} +ac_cv_member_struct_stat_st_mtim_tv_nsec=${ac_cv_member_struct_stat_st_mtim_tv_nsec=yes} +ac_cv_member_struct_stat_st_mtime_n=${ac_cv_member_struct_stat_st_mtime_n=no} +ac_cv_member_struct_stat_st_mtimensec=${ac_cv_member_struct_stat_st_mtimensec=no} +ac_cv_member_struct_tm___tm_gmtoff=${ac_cv_member_struct_tm___tm_gmtoff=no} +ac_cv_member_struct_tm_tm_gmtoff=${ac_cv_member_struct_tm_tm_gmtoff=yes} +ac_cv_mkdir_p=${ac_cv_mkdir_p=yes} +ac_cv_negative_eai=${ac_cv_negative_eai=yes} +ac_cv_o_nonblock_inherited=${ac_cv_o_nonblock_inherited=no} +ac_cv_objext=${ac_cv_objext=o} +ac_cv_path_EGREP=${ac_cv_path_EGREP='/bin/grep -E'} +ac_cv_path_FGREP=${ac_cv_path_FGREP='/bin/grep -F'} +ac_cv_path_GREP=${ac_cv_path_GREP=/bin/grep} +ac_cv_path_SED=${ac_cv_path_SED=/bin/sed} +ac_cv_path_install=${ac_cv_path_install='/usr/bin/install -c'} +ac_cv_path_lt_DD=${ac_cv_path_lt_DD=/bin/dd} +ac_cv_prog_AS=${ac_cv_prog_AS=as} +ac_cv_prog_ASCPP=${ac_cv_prog_ASCPP=cpp} +ac_cv_prog_AWK=${ac_cv_prog_AWK=mawk} +ac_cv_prog_CPP=${ac_cv_prog_CPP='gcc -E'} +ac_cv_prog_RM=${ac_cv_prog_RM=rm} +ac_cv_prog_ac_ct_AR=${ac_cv_prog_ac_ct_AR=ar} +ac_cv_prog_ac_ct_CC=${ac_cv_prog_ac_ct_CC=gcc} +ac_cv_prog_ac_ct_CC_FOR_BUILD=${ac_cv_prog_ac_ct_CC_FOR_BUILD=gcc} +ac_cv_prog_ac_ct_DLLTOOL=${ac_cv_prog_ac_ct_DLLTOOL=dlltool} +ac_cv_prog_ac_ct_FILECMD=${ac_cv_prog_ac_ct_FILECMD=file} +ac_cv_prog_ac_ct_MANIFEST_TOOL=${ac_cv_prog_ac_ct_MANIFEST_TOOL=mt} +ac_cv_prog_ac_ct_OBJDUMP=${ac_cv_prog_ac_ct_OBJDUMP=objdump} +ac_cv_prog_ac_ct_RANLIB=${ac_cv_prog_ac_ct_RANLIB=ranlib} +ac_cv_prog_ac_ct_STRIP=${ac_cv_prog_ac_ct_STRIP=strip} +ac_cv_prog_cc_c11=${ac_cv_prog_cc_c11=} +ac_cv_prog_cc_g=${ac_cv_prog_cc_g=yes} +ac_cv_prog_cc_stdc=${ac_cv_prog_cc_stdc=} +ac_cv_prog_make_make_set=${ac_cv_prog_make_make_set=yes} +ac_cv_pthread_attr_getdetachstate_one_arg=${ac_cv_pthread_attr_getdetachstate_one_arg=no} +ac_cv_pthread_getspecific_two_args=${ac_cv_pthread_getspecific_two_args=no} +ac_cv_safe_to_define___extensions__=${ac_cv_safe_to_define___extensions__=yes} +ac_cv_search_crypt=${ac_cv_search_crypt=-lcrypt} +ac_cv_search_gai_strerror=${ac_cv_search_gai_strerror='none required'} +ac_cv_search_getaddrinfo=${ac_cv_search_getaddrinfo='none required'} +ac_cv_search_gethostbyname=${ac_cv_search_gethostbyname='none required'} +ac_cv_search_gethostname=${ac_cv_search_gethostname='none required'} +ac_cv_search_getnameinfo=${ac_cv_search_getnameinfo='none required'} +ac_cv_search_modf=${ac_cv_search_modf='none required'} +ac_cv_search_sem_open=${ac_cv_search_sem_open='none required'} +ac_cv_search_shm_open=${ac_cv_search_shm_open=-lrt} +ac_cv_search_socket=${ac_cv_search_socket='none required'} +ac_cv_search_strerror=${ac_cv_search_strerror='none required'} +ac_cv_search_uuid_create=${ac_cv_search_uuid_create=no} +ac_cv_search_uuid_generate=${ac_cv_search_uuid_generate=-luuid} +ac_cv_should_define__xopen_source=${ac_cv_should_define__xopen_source=no} +ac_cv_sigwait_one_arg=${ac_cv_sigwait_one_arg=no} +ac_cv_sizeof_char=${ac_cv_sizeof_char=1} +ac_cv_sizeof_ino_t=${ac_cv_sizeof_ino_t=4} +ac_cv_sizeof_int=${ac_cv_sizeof_int=4} +ac_cv_sizeof_long=${ac_cv_sizeof_long=4} +ac_cv_sizeof_long_long=${ac_cv_sizeof_long_long=8} +ac_cv_sizeof_off_t=${ac_cv_sizeof_off_t=4} +ac_cv_sizeof_pid_t=${ac_cv_sizeof_pid_t=4} +ac_cv_sizeof_short=${ac_cv_sizeof_short=2} +ac_cv_sizeof_size_t=${ac_cv_sizeof_size_t=4} +ac_cv_sizeof_ssize_t=${ac_cv_sizeof_ssize_t=4} +ac_cv_sizeof_struct_iovec=${ac_cv_sizeof_struct_iovec=8} +ac_cv_sizeof_voidp=${ac_cv_sizeof_voidp=4} +ac_cv_socklen_t=${ac_cv_socklen_t=yes} +ac_cv_strerror_r_rc_int=${ac_cv_strerror_r_rc_int=no} +ac_cv_struct_rlimit=${ac_cv_struct_rlimit=yes} +ac_cv_target=${ac_cv_target=armv7l-unknown-linux-gnueabihf} +ac_cv_tcp_nodelay_inherited=${ac_cv_tcp_nodelay_inherited=yes} +ac_cv_type_in_addr=${ac_cv_type_in_addr=yes} +ac_cv_type_off_t=${ac_cv_type_off_t=yes} +ac_cv_type_pid_t=${ac_cv_type_pid_t=yes} +ac_cv_type_size_t=${ac_cv_type_size_t=yes} +ac_cv_type_ssize_t=${ac_cv_type_ssize_t=yes} +ac_cv_type_uid_t=${ac_cv_type_uid_t=yes} +ac_cv_working_alloca_h=${ac_cv_working_alloca_h=yes} +ac_cv_working_getaddrinfo=${ac_cv_working_getaddrinfo=yes} +ac_cv_working_getnameinfo=${ac_cv_working_getnameinfo=yes} +ap_cv__atomic_builtins64=${ap_cv__atomic_builtins64=no} +ap_cv__atomic_builtins=${ap_cv__atomic_builtins=yes} +ap_cv_atomic_builtins64=${ap_cv_atomic_builtins64=yes} +ap_cv_atomic_builtins=${ap_cv_atomic_builtins=yes} +apr_cv_accept4=${apr_cv_accept4=yes} +apr_cv_aio_msgq=${apr_cv_aio_msgq=no} +apr_cv_define_INT64_C=${apr_cv_define_INT64_C=yes} +apr_cv_define_sockaddr_storage=${apr_cv_define_sockaddr_storage=yes} +apr_cv_dirent_inode=${apr_cv_dirent_inode=d_fileno} +apr_cv_dirent_type=${apr_cv_dirent_type=d_type} +apr_cv_dup3=${apr_cv_dup3=yes} +apr_cv_epoll=${apr_cv_epoll=yes} +apr_cv_epoll_create1=${apr_cv_epoll_create1=yes} +apr_cv_gai_addrconfig=${apr_cv_gai_addrconfig=yes} +apr_cv_hdr_netinet_tcp_h=${apr_cv_hdr_netinet_tcp_h=yes} +apr_cv_mutex_recursive=${apr_cv_mutex_recursive=yes} +apr_cv_mutex_robust_shared=${apr_cv_mutex_robust_shared=yes} +apr_cv_osuuid=${apr_cv_osuuid=yes} +apr_cv_process_shared_works=${apr_cv_process_shared_works=yes} +apr_cv_pthreads_cflags=${apr_cv_pthreads_cflags=-pthread} +apr_cv_pthreads_lib=${apr_cv_pthreads_lib=-lpthread} +apr_cv_sctp=${apr_cv_sctp=no} +apr_cv_sock_cloexec=${apr_cv_sock_cloexec=yes} +apr_cv_struct_ipmreq=${apr_cv_struct_ipmreq=yes} +apr_cv_tcp_nodelay_with_cork=${apr_cv_tcp_nodelay_with_cork=yes} +apr_cv_type_rwlock_t=${apr_cv_type_rwlock_t=yes} +apr_cv_typematch_int64_t_int_d=${apr_cv_typematch_int64_t_int_d=no} +apr_cv_typematch_int64_t_long_ld=${apr_cv_typematch_int64_t_long_ld=no} +apr_cv_typematch_int64_t_long_long_lld=${apr_cv_typematch_int64_t_long_long_lld=yes} +apr_cv_typematch_size_t_unsigned_int_u=${apr_cv_typematch_size_t_unsigned_int_u=yes} +apr_cv_typematch_size_t_unsigned_long_lu=${apr_cv_typematch_size_t_unsigned_long_lu=no} +apr_cv_typematch_ssize_t_int_d=${apr_cv_typematch_ssize_t_int_d=yes} +apr_cv_typematch_ssize_t_long_ld=${apr_cv_typematch_ssize_t_long_ld=no} +apr_cv_use_lfs64=${apr_cv_use_lfs64=yes} +lt_cv_ar_at_file=${lt_cv_ar_at_file=@} +lt_cv_archive_cmds_need_lc=${lt_cv_archive_cmds_need_lc=no} +lt_cv_deplibs_check_method=${lt_cv_deplibs_check_method=pass_all} +lt_cv_file_magic_cmd=${lt_cv_file_magic_cmd='$MAGIC_CMD'} +lt_cv_file_magic_test_file=${lt_cv_file_magic_test_file=} +lt_cv_ld_reload_flag=${lt_cv_ld_reload_flag=-r} +lt_cv_nm_interface=${lt_cv_nm_interface='BSD nm'} +lt_cv_objdir=${lt_cv_objdir=.libs} +lt_cv_path_LD=${lt_cv_path_LD=/usr/bin/ld} +lt_cv_path_NM=${lt_cv_path_NM='/usr/bin/nm -B'} +lt_cv_path_mainfest_tool=${lt_cv_path_mainfest_tool=no} +lt_cv_prog_compiler_c_o=${lt_cv_prog_compiler_c_o=yes} +lt_cv_prog_compiler_pic=${lt_cv_prog_compiler_pic='-fPIC -DPIC'} +lt_cv_prog_compiler_pic_works=${lt_cv_prog_compiler_pic_works=yes} +lt_cv_prog_compiler_rtti_exceptions=${lt_cv_prog_compiler_rtti_exceptions=no} +lt_cv_prog_compiler_static_works=${lt_cv_prog_compiler_static_works=yes} +lt_cv_prog_gnu_ld=${lt_cv_prog_gnu_ld=yes} +lt_cv_sharedlib_from_linklib_cmd=${lt_cv_sharedlib_from_linklib_cmd='printf %s\n'} +lt_cv_shlibpath_overrides_runpath=${lt_cv_shlibpath_overrides_runpath=yes} +lt_cv_sys_global_symbol_pipe=${lt_cv_sys_global_symbol_pipe='/bin/sed -n -e '\''s/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\'' | /bin/sed '\''/ __gnu_lto/d'\'''} +test ${lt_cv_sys_global_symbol_to_c_name_address+y} || lt_cv_sys_global_symbol_to_c_name_address='/bin/sed -n -e '\''s/^: \(.*\) .*$/ {"\1", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/ {"\1", (void *) \&\1},/p'\''' +test ${lt_cv_sys_global_symbol_to_c_name_address_lib_prefix+y} || lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='/bin/sed -n -e '\''s/^: \(.*\) .*$/ {"\1", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(lib.*\)$/ {"\1", (void *) \&\1},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/ {"lib\1", (void *) \&\1},/p'\''' +lt_cv_sys_global_symbol_to_cdecl=${lt_cv_sys_global_symbol_to_cdecl='/bin/sed -n -e '\''s/^T .* \(.*\)$/extern int \1();/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/extern char \1;/p'\'''} +lt_cv_sys_global_symbol_to_import=${lt_cv_sys_global_symbol_to_import=} +lt_cv_sys_max_cmd_len=${lt_cv_sys_max_cmd_len=1572864} +lt_cv_to_host_file_cmd=${lt_cv_to_host_file_cmd=func_convert_file_noop} +lt_cv_to_tool_file_cmd=${lt_cv_to_tool_file_cmd=func_convert_file_noop} +lt_cv_truncate_bin=${lt_cv_truncate_bin='/bin/dd bs=4096 count=1'} diff --git a/recipes/apr/all/cross_build/x86_64-pc-mingw64.cache b/recipes/apr/all/cross_build/x86_64-pc-mingw64.cache new file mode 100644 index 0000000000000..7ccc7f757fa04 --- /dev/null +++ b/recipes/apr/all/cross_build/x86_64-pc-mingw64.cache @@ -0,0 +1,355 @@ +# This file is a shell script that caches the results of configure +# tests run on this system so they can be shared between configure +# scripts and configure runs, see configure's option --config-cache. +# It is not useful on other systems. If it contains results you don't +# want to keep, you may remove or edit it. +# +# config.status only pays attention to the cache file if you give it +# the --recheck option to rerun configure. +# +# `ac_cv_env_foo' variables (set or unset) will be overridden when +# loading this file, other *unset* `ac_cv_foo' will be assigned the +# following values. + +ac_cv_build=${ac_cv_build=x86_64-pc-mingw64} +ac_cv_build_prog_CPP=${ac_cv_build_prog_CPP='gcc -E'} +ac_cv_build_prog_cc_g=${ac_cv_build_prog_cc_g=yes} +ac_cv_c_bigendian=${ac_cv_c_bigendian=no} +ac_cv_c_compiler_gnu=${ac_cv_c_compiler_gnu=yes} +ac_cv_c_const=${ac_cv_c_const=yes} +ac_cv_c_inline=${ac_cv_c_inline=inline} +ac_cv_c_undeclared_builtin_options=${ac_cv_c_undeclared_builtin_options='none needed'} +ac_cv_define_F_SETLK=${ac_cv_define_F_SETLK=no} +ac_cv_define_GETHOSTBYADDR_IS_THREAD_SAFE=${ac_cv_define_GETHOSTBYADDR_IS_THREAD_SAFE=no} +ac_cv_define_GETHOSTBYNAME_IS_THREAD_SAFE=${ac_cv_define_GETHOSTBYNAME_IS_THREAD_SAFE=no} +ac_cv_define_GETSERVBYNAME_IS_THREAD_SAFE=${ac_cv_define_GETSERVBYNAME_IS_THREAD_SAFE=no} +ac_cv_define_LOCK_EX=${ac_cv_define_LOCK_EX=no} +ac_cv_define_MAP_ANON=${ac_cv_define_MAP_ANON=no} +ac_cv_define_POLLIN=${ac_cv_define_POLLIN=no} +ac_cv_define_PTHREAD_PROCESS_SHARED=${ac_cv_define_PTHREAD_PROCESS_SHARED=yes} +ac_cv_define_READDIR_IS_THREAD_SAFE=${ac_cv_define_READDIR_IS_THREAD_SAFE=yes} +ac_cv_define_SEM_UNDO=${ac_cv_define_SEM_UNDO=no} +ac_cv_define_SO_ACCEPTFILTER=${ac_cv_define_SO_ACCEPTFILTER=no} +ac_cv_define_TCP_CORK=${ac_cv_define_TCP_CORK=no} +ac_cv_define_TCP_NOPUSH=${ac_cv_define_TCP_NOPUSH=no} +ac_cv_define_sockaddr_in6=${ac_cv_define_sockaddr_in6=yes} +ac_cv_define_sockaddr_un=${ac_cv_define_sockaddr_un=no} +ac_cv_ebcdic=${ac_cv_ebcdic=no} +ac_cv_exeext=${ac_cv_exeext=.exe} +ac_cv_file__dev_zero=${ac_cv_file__dev_zero=no} +ac_cv_func_CreateFileMapping=${ac_cv_func_CreateFileMapping=yes} +ac_cv_func__getch=${ac_cv_func__getch=yes} +ac_cv_func__strtoi64=${ac_cv_func__strtoi64=yes} +ac_cv_func_acquire_sem=${ac_cv_func_acquire_sem=no} +ac_cv_func_acquire_sem_etc=${ac_cv_func_acquire_sem_etc=no} +ac_cv_func_alloca_works=${ac_cv_func_alloca_works=yes} +ac_cv_func_arc4random_buf=${ac_cv_func_arc4random_buf=no} +ac_cv_func_calloc=${ac_cv_func_calloc=yes} +ac_cv_func_create_area=${ac_cv_func_create_area=no} +ac_cv_func_create_sem=${ac_cv_func_create_sem=no} +ac_cv_func_fdatasync=${ac_cv_func_fdatasync=no} +ac_cv_func_flock=${ac_cv_func_flock=no} +ac_cv_func_fork=${ac_cv_func_fork=no} +ac_cv_func_gai_strerror=${ac_cv_func_gai_strerror=yes} +ac_cv_func_getenv=${ac_cv_func_getenv=yes} +ac_cv_func_getgrgid_r=${ac_cv_func_getgrgid_r=no} +ac_cv_func_getgrnam_r=${ac_cv_func_getgrnam_r=no} +ac_cv_func_gethostbyaddr_r=${ac_cv_func_gethostbyaddr_r=no} +ac_cv_func_gethostbyname_r=${ac_cv_func_gethostbyname_r=no} +ac_cv_func_getifaddrs=${ac_cv_func_getifaddrs=no} +ac_cv_func_getpass=${ac_cv_func_getpass=no} +ac_cv_func_getpassphrase=${ac_cv_func_getpassphrase=no} +ac_cv_func_getpwnam_r=${ac_cv_func_getpwnam_r=no} +ac_cv_func_getpwuid_r=${ac_cv_func_getpwuid_r=no} +ac_cv_func_getrandom=${ac_cv_func_getrandom=no} +ac_cv_func_getrlimit=${ac_cv_func_getrlimit=no} +ac_cv_func_getservbyname_r=${ac_cv_func_getservbyname_r=no} +ac_cv_func_gmtime_r=${ac_cv_func_gmtime_r=no} +ac_cv_func_if_indextoname=${ac_cv_func_if_indextoname=no} +ac_cv_func_if_nametoindex=${ac_cv_func_if_nametoindex=no} +ac_cv_func_inet_addr=${ac_cv_func_inet_addr=yes} +ac_cv_func_inet_network=${ac_cv_func_inet_network=no} +ac_cv_func_isinf=${ac_cv_func_isinf=no} +ac_cv_func_isnan=${ac_cv_func_isnan=yes} +ac_cv_func_kqueue=${ac_cv_func_kqueue=no} +ac_cv_func_localtime_r=${ac_cv_func_localtime_r=no} +ac_cv_func_memchr=${ac_cv_func_memchr=yes} +ac_cv_func_memmove=${ac_cv_func_memmove=yes} +ac_cv_func_mkstemp64=${ac_cv_func_mkstemp64=no} +ac_cv_func_mkstemp=${ac_cv_func_mkstemp=yes} +ac_cv_func_mmap64=${ac_cv_func_mmap64=no} +ac_cv_func_mmap=${ac_cv_func_mmap=yes} +ac_cv_func_mprotect=${ac_cv_func_mprotect=yes} +ac_cv_func_munmap=${ac_cv_func_munmap=no} +ac_cv_func_nl_langinfo=${ac_cv_func_nl_langinfo=no} +ac_cv_func_poll=${ac_cv_func_poll=no} +ac_cv_func_port_create=${ac_cv_func_port_create=no} +ac_cv_func_pthread_condattr_setpshared=${ac_cv_func_pthread_condattr_setpshared=yes} +ac_cv_func_pthread_mutex_timedlock=${ac_cv_func_pthread_mutex_timedlock=yes} +ac_cv_func_pthread_mutexattr_setpshared=${ac_cv_func_pthread_mutexattr_setpshared=yes} +ac_cv_func_putenv=${ac_cv_func_putenv=yes} +ac_cv_func_readdir64_r=${ac_cv_func_readdir64_r=no} +ac_cv_func_sem_close=${ac_cv_func_sem_close=yes} +ac_cv_func_sem_open=${ac_cv_func_sem_open=no} +ac_cv_func_sem_post=${ac_cv_func_sem_post=yes} +ac_cv_func_sem_timedwait=${ac_cv_func_sem_timedwait=yes} +ac_cv_func_sem_unlink=${ac_cv_func_sem_unlink=yes} +ac_cv_func_sem_wait=${ac_cv_func_sem_wait=yes} +ac_cv_func_semctl=${ac_cv_func_semctl=no} +ac_cv_func_semget=${ac_cv_func_semget=no} +ac_cv_func_semop=${ac_cv_func_semop=no} +ac_cv_func_semtimedop=${ac_cv_func_semtimedop=no} +ac_cv_func_send_file=${ac_cv_func_send_file=no} +ac_cv_func_sendfile64=${ac_cv_func_sendfile64=no} +ac_cv_func_sendfile=${ac_cv_func_sendfile=no} +ac_cv_func_sendfilev64=${ac_cv_func_sendfilev64=no} +ac_cv_func_sendfilev=${ac_cv_func_sendfilev=no} +ac_cv_func_set_h_errno=${ac_cv_func_set_h_errno=no} +ac_cv_func_setenv=${ac_cv_func_setenv=no} +ac_cv_func_setpgrp_void=${ac_cv_func_setpgrp_void=no} +ac_cv_func_setrlimit=${ac_cv_func_setrlimit=no} +ac_cv_func_setsid=${ac_cv_func_setsid=no} +ac_cv_func_shm_open=${ac_cv_func_shm_open=no} +ac_cv_func_shm_unlink=${ac_cv_func_shm_unlink=no} +ac_cv_func_shmat=${ac_cv_func_shmat=no} +ac_cv_func_shmctl=${ac_cv_func_shmctl=no} +ac_cv_func_shmdt=${ac_cv_func_shmdt=no} +ac_cv_func_shmget=${ac_cv_func_shmget=no} +ac_cv_func_sigaction=${ac_cv_func_sigaction=no} +ac_cv_func_sigsuspend=${ac_cv_func_sigsuspend=no} +ac_cv_func_sigwait=${ac_cv_func_sigwait=no} +ac_cv_func_strcasecmp=${ac_cv_func_strcasecmp=yes} +ac_cv_func_strdup=${ac_cv_func_strdup=yes} +ac_cv_func_strerror_r=${ac_cv_func_strerror_r=no} +ac_cv_func_stricmp=${ac_cv_func_stricmp=yes} +ac_cv_func_strncasecmp=${ac_cv_func_strncasecmp=yes} +ac_cv_func_strnicmp=${ac_cv_func_strnicmp=yes} +ac_cv_func_strstr=${ac_cv_func_strstr=yes} +ac_cv_func_unsetenv=${ac_cv_func_unsetenv=no} +ac_cv_func_utime=${ac_cv_func_utime=yes} +ac_cv_func_utimes=${ac_cv_func_utimes=no} +ac_cv_func_uuid_create=${ac_cv_func_uuid_create=no} +ac_cv_func_uuid_generate=${ac_cv_func_uuid_generate=no} +ac_cv_func_waitpid=${ac_cv_func_waitpid=no} +ac_cv_func_writev=${ac_cv_func_writev=no} +ac_cv_have_decl_SYS_getrandom=${ac_cv_have_decl_SYS_getrandom=no} +ac_cv_have_decl_sys_siglist=${ac_cv_have_decl_sys_siglist=no} +ac_cv_header_ByteOrder_h=${ac_cv_header_ByteOrder_h=no} +ac_cv_header_OS_h=${ac_cv_header_OS_h=no} +ac_cv_header_arpa_inet_h=${ac_cv_header_arpa_inet_h=no} +ac_cv_header_conio_h=${ac_cv_header_conio_h=yes} +ac_cv_header_crypt_h=${ac_cv_header_crypt_h=no} +ac_cv_header_ctype_h=${ac_cv_header_ctype_h=yes} +ac_cv_header_dir_h=${ac_cv_header_dir_h=yes} +ac_cv_header_dirent_h=${ac_cv_header_dirent_h=yes} +ac_cv_header_dl_h=${ac_cv_header_dl_h=no} +ac_cv_header_dlfcn_h=${ac_cv_header_dlfcn_h=no} +ac_cv_header_errno_h=${ac_cv_header_errno_h=yes} +ac_cv_header_fcntl_h=${ac_cv_header_fcntl_h=yes} +ac_cv_header_grp_h=${ac_cv_header_grp_h=no} +ac_cv_header_inttypes_h=${ac_cv_header_inttypes_h=yes} +ac_cv_header_io_h=${ac_cv_header_io_h=yes} +ac_cv_header_kernel_OS_h=${ac_cv_header_kernel_OS_h=no} +ac_cv_header_langinfo_h=${ac_cv_header_langinfo_h=no} +ac_cv_header_limits_h=${ac_cv_header_limits_h=yes} +ac_cv_header_linux_random_h=${ac_cv_header_linux_random_h=no} +ac_cv_header_mach_o_dyld_h=${ac_cv_header_mach_o_dyld_h=no} +ac_cv_header_malloc_h=${ac_cv_header_malloc_h=yes} +ac_cv_header_memory_h=${ac_cv_header_memory_h=yes} +ac_cv_header_minix_config_h=${ac_cv_header_minix_config_h=no} +ac_cv_header_net_errno_h=${ac_cv_header_net_errno_h=no} +ac_cv_header_net_if_h=${ac_cv_header_net_if_h=no} +ac_cv_header_netdb_h=${ac_cv_header_netdb_h=no} +ac_cv_header_netinet_in_h=${ac_cv_header_netinet_in_h=no} +ac_cv_header_netinet_sctp_h=${ac_cv_header_netinet_sctp_h=no} +ac_cv_header_netinet_sctp_uio_h=${ac_cv_header_netinet_sctp_uio_h=no} +ac_cv_header_os2_h=${ac_cv_header_os2_h=no} +ac_cv_header_osreldate_h=${ac_cv_header_osreldate_h=no} +ac_cv_header_poll_h=${ac_cv_header_poll_h=no} +ac_cv_header_process_h=${ac_cv_header_process_h=yes} +ac_cv_header_pwd_h=${ac_cv_header_pwd_h=no} +ac_cv_header_semaphore_h=${ac_cv_header_semaphore_h=yes} +ac_cv_header_signal_h=${ac_cv_header_signal_h=yes} +ac_cv_header_stdarg_h=${ac_cv_header_stdarg_h=yes} +ac_cv_header_stddef_h=${ac_cv_header_stddef_h=yes} +ac_cv_header_stdint_h=${ac_cv_header_stdint_h=yes} +ac_cv_header_stdio_h=${ac_cv_header_stdio_h=yes} +ac_cv_header_stdlib_h=${ac_cv_header_stdlib_h=yes} +ac_cv_header_string_h=${ac_cv_header_string_h=yes} +ac_cv_header_strings_h=${ac_cv_header_strings_h=yes} +ac_cv_header_sys_file_h=${ac_cv_header_sys_file_h=yes} +ac_cv_header_sys_ioctl_h=${ac_cv_header_sys_ioctl_h=no} +ac_cv_header_sys_ipc_h=${ac_cv_header_sys_ipc_h=no} +ac_cv_header_sys_mman_h=${ac_cv_header_sys_mman_h=no} +ac_cv_header_sys_mutex_h=${ac_cv_header_sys_mutex_h=no} +ac_cv_header_sys_param_h=${ac_cv_header_sys_param_h=yes} +ac_cv_header_sys_poll_h=${ac_cv_header_sys_poll_h=no} +ac_cv_header_sys_random_h=${ac_cv_header_sys_random_h=no} +ac_cv_header_sys_resource_h=${ac_cv_header_sys_resource_h=no} +ac_cv_header_sys_select_h=${ac_cv_header_sys_select_h=no} +ac_cv_header_sys_sem_h=${ac_cv_header_sys_sem_h=no} +ac_cv_header_sys_sendfile_h=${ac_cv_header_sys_sendfile_h=no} +ac_cv_header_sys_shm_h=${ac_cv_header_sys_shm_h=no} +ac_cv_header_sys_signal_h=${ac_cv_header_sys_signal_h=no} +ac_cv_header_sys_socket_h=${ac_cv_header_sys_socket_h=no} +ac_cv_header_sys_sockio_h=${ac_cv_header_sys_sockio_h=no} +ac_cv_header_sys_stat_h=${ac_cv_header_sys_stat_h=yes} +ac_cv_header_sys_syscall_h=${ac_cv_header_sys_syscall_h=no} +ac_cv_header_sys_sysctl_h=${ac_cv_header_sys_sysctl_h=no} +ac_cv_header_sys_syslimits_h=${ac_cv_header_sys_syslimits_h=no} +ac_cv_header_sys_time_h=${ac_cv_header_sys_time_h=yes} +ac_cv_header_sys_types_h=${ac_cv_header_sys_types_h=yes} +ac_cv_header_sys_uio_h=${ac_cv_header_sys_uio_h=no} +ac_cv_header_sys_un_h=${ac_cv_header_sys_un_h=no} +ac_cv_header_sys_uuid_h=${ac_cv_header_sys_uuid_h=no} +ac_cv_header_sys_wait_h=${ac_cv_header_sys_wait_h=no} +ac_cv_header_sysapi_h=${ac_cv_header_sysapi_h=no} +ac_cv_header_sysgtime_h=${ac_cv_header_sysgtime_h=no} +ac_cv_header_termios_h=${ac_cv_header_termios_h=no} +ac_cv_header_time_h=${ac_cv_header_time_h=yes} +ac_cv_header_tpfeq_h=${ac_cv_header_tpfeq_h=no} +ac_cv_header_tpfio_h=${ac_cv_header_tpfio_h=no} +ac_cv_header_unistd_h=${ac_cv_header_unistd_h=yes} +ac_cv_header_unix_h=${ac_cv_header_unix_h=no} +ac_cv_header_uuid_h=${ac_cv_header_uuid_h=no} +ac_cv_header_uuid_uuid_h=${ac_cv_header_uuid_uuid_h=no} +ac_cv_header_wchar_h=${ac_cv_header_wchar_h=yes} +ac_cv_header_windows_h=${ac_cv_header_windows_h=yes} +ac_cv_header_winsock2_h=${ac_cv_header_winsock2_h=yes} +ac_cv_host=${ac_cv_host=x86_64-pc-mingw64} +ac_cv_lib_c_r_gethostbyaddr=${ac_cv_lib_c_r_gethostbyaddr=no} +ac_cv_lib_c_r_gethostbyname=${ac_cv_lib_c_r_gethostbyname=no} +ac_cv_lib_c_r_getservbyname=${ac_cv_lib_c_r_getservbyname=no} +ac_cv_lib_sendfile_sendfilev=${ac_cv_lib_sendfile_sendfilev=no} +ac_cv_member_struct_stat_st_atim_tv_nsec=${ac_cv_member_struct_stat_st_atim_tv_nsec=no} +ac_cv_member_struct_stat_st_atime_n=${ac_cv_member_struct_stat_st_atime_n=no} +ac_cv_member_struct_stat_st_atimensec=${ac_cv_member_struct_stat_st_atimensec=no} +ac_cv_member_struct_stat_st_blocks=${ac_cv_member_struct_stat_st_blocks=no} +ac_cv_member_struct_stat_st_ctim_tv_nsec=${ac_cv_member_struct_stat_st_ctim_tv_nsec=no} +ac_cv_member_struct_stat_st_ctime_n=${ac_cv_member_struct_stat_st_ctime_n=no} +ac_cv_member_struct_stat_st_ctimensec=${ac_cv_member_struct_stat_st_ctimensec=no} +ac_cv_member_struct_stat_st_mtim_tv_nsec=${ac_cv_member_struct_stat_st_mtim_tv_nsec=no} +ac_cv_member_struct_stat_st_mtime_n=${ac_cv_member_struct_stat_st_mtime_n=no} +ac_cv_member_struct_stat_st_mtimensec=${ac_cv_member_struct_stat_st_mtimensec=no} +ac_cv_member_struct_tm___tm_gmtoff=${ac_cv_member_struct_tm___tm_gmtoff=no} +ac_cv_member_struct_tm_tm_gmtoff=${ac_cv_member_struct_tm_tm_gmtoff=no} +ac_cv_mkdir_p=${ac_cv_mkdir_p=yes} +ac_cv_negative_eai=${ac_cv_negative_eai=no} +ac_cv_o_nonblock_inherited=${ac_cv_o_nonblock_inherited=yes} +ac_cv_objext=${ac_cv_objext=o} +ac_cv_path_EGREP=${ac_cv_path_EGREP='/usr/bin/grep -E'} +ac_cv_path_FGREP=${ac_cv_path_FGREP='/usr/bin/grep -F'} +ac_cv_path_GREP=${ac_cv_path_GREP=/usr/bin/grep} +ac_cv_path_SED=${ac_cv_path_SED=/usr/bin/sed} +ac_cv_path_install=${ac_cv_path_install='/usr/bin/install -c'} +ac_cv_path_lt_DD=${ac_cv_path_lt_DD=/usr/bin/dd} +ac_cv_prog_AS=${ac_cv_prog_AS=as} +ac_cv_prog_ASCPP=${ac_cv_prog_ASCPP=cpp} +ac_cv_prog_AWK=${ac_cv_prog_AWK=gawk} +ac_cv_prog_CPP=${ac_cv_prog_CPP='gcc -E'} +ac_cv_prog_RM=${ac_cv_prog_RM=rm} +ac_cv_prog_ac_ct_AR=${ac_cv_prog_ac_ct_AR=ar} +ac_cv_prog_ac_ct_CC=${ac_cv_prog_ac_ct_CC=gcc} +ac_cv_prog_ac_ct_CC_FOR_BUILD=${ac_cv_prog_ac_ct_CC_FOR_BUILD=gcc} +ac_cv_prog_ac_ct_DLLTOOL=${ac_cv_prog_ac_ct_DLLTOOL=dlltool} +ac_cv_prog_ac_ct_FILECMD=${ac_cv_prog_ac_ct_FILECMD=file} +ac_cv_prog_ac_ct_OBJDUMP=${ac_cv_prog_ac_ct_OBJDUMP=objdump} +ac_cv_prog_ac_ct_RANLIB=${ac_cv_prog_ac_ct_RANLIB=ranlib} +ac_cv_prog_ac_ct_STRIP=${ac_cv_prog_ac_ct_STRIP=strip} +ac_cv_prog_cc_c11=${ac_cv_prog_cc_c11=} +ac_cv_prog_cc_g=${ac_cv_prog_cc_g=yes} +ac_cv_prog_cc_stdc=${ac_cv_prog_cc_stdc=} +ac_cv_prog_make_make_set=${ac_cv_prog_make_make_set=no} +ac_cv_safe_to_define___extensions__=${ac_cv_safe_to_define___extensions__=yes} +ac_cv_search_gai_strerror=${ac_cv_search_gai_strerror=no} +ac_cv_search_getaddrinfo=${ac_cv_search_getaddrinfo='none required'} +ac_cv_search_getnameinfo=${ac_cv_search_getnameinfo='none required'} +ac_cv_search_sem_open=${ac_cv_search_sem_open='none required'} +ac_cv_search_shm_open=${ac_cv_search_shm_open=no} +ac_cv_search_strerror=${ac_cv_search_strerror='none required'} +ac_cv_search_uuid_create=${ac_cv_search_uuid_create=no} +ac_cv_search_uuid_generate=${ac_cv_search_uuid_generate=no} +ac_cv_should_define__xopen_source=${ac_cv_should_define__xopen_source=no} +ac_cv_sigwait_one_arg=${ac_cv_sigwait_one_arg=no} +ac_cv_sizeof_char=${ac_cv_sizeof_char=1} +ac_cv_sizeof_int=${ac_cv_sizeof_int=4} +ac_cv_sizeof_long=${ac_cv_sizeof_long=4} +ac_cv_sizeof_long_long=${ac_cv_sizeof_long_long=8} +ac_cv_sizeof_off_t=${ac_cv_sizeof_off_t=4} +ac_cv_sizeof_pid_t=${ac_cv_sizeof_pid_t=8} +ac_cv_sizeof_short=${ac_cv_sizeof_short=2} +ac_cv_sizeof_size_t=${ac_cv_sizeof_size_t=8} +ac_cv_sizeof_ssize_t=${ac_cv_sizeof_ssize_t=8} +ac_cv_sizeof_struct_iovec=${ac_cv_sizeof_struct_iovec=0} +ac_cv_sizeof_voidp=${ac_cv_sizeof_voidp=8} +ac_cv_socklen_t=${ac_cv_socklen_t=no} +ac_cv_struct_rlimit=${ac_cv_struct_rlimit=no} +ac_cv_target=${ac_cv_target=x86_64-pc-mingw64} +ac_cv_tcp_nodelay_inherited=${ac_cv_tcp_nodelay_inherited=yes} +ac_cv_type_in_addr=${ac_cv_type_in_addr=yes} +ac_cv_type_off_t=${ac_cv_type_off_t=yes} +ac_cv_type_pid_t=${ac_cv_type_pid_t=yes} +ac_cv_type_size_t=${ac_cv_type_size_t=yes} +ac_cv_type_ssize_t=${ac_cv_type_ssize_t=yes} +ac_cv_type_uid_t=${ac_cv_type_uid_t=no} +ac_cv_working_alloca_h=${ac_cv_working_alloca_h=no} +ac_cv_working_getaddrinfo=${ac_cv_working_getaddrinfo=yes} +ac_cv_working_getnameinfo=${ac_cv_working_getnameinfo=yes} +ap_cv__atomic_builtins64=${ap_cv__atomic_builtins64=yes} +ap_cv__atomic_builtins=${ap_cv__atomic_builtins=yes} +ap_cv_atomic_builtins64=${ap_cv_atomic_builtins64=yes} +ap_cv_atomic_builtins=${ap_cv_atomic_builtins=yes} +apr_cv_accept4=${apr_cv_accept4=no} +apr_cv_aio_msgq=${apr_cv_aio_msgq=no} +apr_cv_define_INT64_C=${apr_cv_define_INT64_C=yes} +apr_cv_define_sockaddr_storage=${apr_cv_define_sockaddr_storage=no} +apr_cv_dirent_inode=${apr_cv_dirent_inode=d_ino} +apr_cv_dirent_type=${apr_cv_dirent_type=no} +apr_cv_dup3=${apr_cv_dup3=no} +apr_cv_epoll=${apr_cv_epoll=no} +apr_cv_epoll_create1=${apr_cv_epoll_create1=no} +apr_cv_gai_addrconfig=${apr_cv_gai_addrconfig=no} +apr_cv_hdr_netinet_tcp_h=${apr_cv_hdr_netinet_tcp_h=no} +apr_cv_mutex_robust_shared=${apr_cv_mutex_robust_shared=no} +apr_cv_osuuid=${apr_cv_osuuid=yes} +apr_cv_sctp=${apr_cv_sctp=no} +apr_cv_sock_cloexec=${apr_cv_sock_cloexec=no} +apr_cv_struct_ipmreq=${apr_cv_struct_ipmreq=no} +apr_cv_tcp_nodelay_with_cork=${apr_cv_tcp_nodelay_with_cork=no} +apr_cv_typematch_int64_t_int_d=${apr_cv_typematch_int64_t_int_d=no} +apr_cv_typematch_int64_t_long_ld=${apr_cv_typematch_int64_t_long_ld=no} +apr_cv_typematch_int64_t_long_long_lld=${apr_cv_typematch_int64_t_long_long_lld=yes} +apr_cv_typematch_size_t_unsigned_int_u=${apr_cv_typematch_size_t_unsigned_int_u=no} +apr_cv_typematch_size_t_unsigned_long_long_llu=${apr_cv_typematch_size_t_unsigned_long_long_llu=yes} +apr_cv_typematch_size_t_unsigned_long_lu=${apr_cv_typematch_size_t_unsigned_long_lu=no} +apr_cv_typematch_ssize_t_int_d=${apr_cv_typematch_ssize_t_int_d=no} +apr_cv_typematch_ssize_t_long_ld=${apr_cv_typematch_ssize_t_long_ld=no} +apr_cv_typematch_ssize_t_long_long_lld=${apr_cv_typematch_ssize_t_long_long_lld=yes} +apr_cv_use_lfs64=${apr_cv_use_lfs64=yes} +lt_cv_ar_at_file=${lt_cv_ar_at_file=@} +lt_cv_archive_cmds_need_lc=${lt_cv_archive_cmds_need_lc=yes} +lt_cv_deplibs_check_method=${lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL'} +lt_cv_file_magic_cmd=${lt_cv_file_magic_cmd=func_win32_libid} +lt_cv_file_magic_test_file=${lt_cv_file_magic_test_file=} +lt_cv_ld_reload_flag=${lt_cv_ld_reload_flag=-r} +lt_cv_nm_interface=${lt_cv_nm_interface='BSD nm'} +lt_cv_objdir=${lt_cv_objdir=.libs} +lt_cv_path_LD=${lt_cv_path_LD=C:/Tools/Strawberry/c/x86_64-w64-mingw32/bin/ld.exe} +lt_cv_path_NM=${lt_cv_path_NM='/c/Tools/Strawberry/c/bin/nm -B'} +lt_cv_path_mainfest_tool=${lt_cv_path_mainfest_tool=no} +lt_cv_prog_compiler_c_o=${lt_cv_prog_compiler_c_o=yes} +lt_cv_prog_compiler_pic=${lt_cv_prog_compiler_pic='-DDLL_EXPORT -DPIC'} +lt_cv_prog_compiler_pic_works=${lt_cv_prog_compiler_pic_works=yes} +lt_cv_prog_compiler_rtti_exceptions=${lt_cv_prog_compiler_rtti_exceptions=no} +lt_cv_prog_compiler_static_works=${lt_cv_prog_compiler_static_works=yes} +lt_cv_prog_gnu_ld=${lt_cv_prog_gnu_ld=yes} +lt_cv_sharedlib_from_linklib_cmd=${lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib} +test ${lt_cv_sys_global_symbol_pipe+y} || lt_cv_sys_global_symbol_pipe='/usr/bin/sed -n -e '\''s/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\) \{0,1\}$/\1 \2 \2/p'\'' | /usr/bin/sed '\''/ __gnu_lto/d'\''' +test ${lt_cv_sys_global_symbol_to_c_name_address+y} || lt_cv_sys_global_symbol_to_c_name_address='/usr/bin/sed -n -e '\''s/^: \(.*\) .*$/ {"\1", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/ {"\1", (void *) \&\1},/p'\''' +test ${lt_cv_sys_global_symbol_to_c_name_address_lib_prefix+y} || lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='/usr/bin/sed -n -e '\''s/^: \(.*\) .*$/ {"\1", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(lib.*\)$/ {"\1", (void *) \&\1},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/ {"lib\1", (void *) \&\1},/p'\''' +lt_cv_sys_global_symbol_to_cdecl=${lt_cv_sys_global_symbol_to_cdecl='/usr/bin/sed -n -e '\''s/^T .* \(.*\)$/extern int \1();/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/extern char \1;/p'\'''} +lt_cv_sys_global_symbol_to_import=${lt_cv_sys_global_symbol_to_import=} +lt_cv_sys_max_cmd_len=${lt_cv_sys_max_cmd_len=8192} +lt_cv_to_host_file_cmd=${lt_cv_to_host_file_cmd=func_convert_file_msys_to_w32} +lt_cv_to_tool_file_cmd=${lt_cv_to_tool_file_cmd=func_convert_file_msys_to_w32} +lt_cv_truncate_bin=${lt_cv_truncate_bin='/usr/bin/dd bs=4096 count=1'}