Dave Barach | 8d0f2f0 | 2018-03-12 09:31:36 -0400 | [diff] [blame] | 1 | # Copyright (c) 2015 Cisco and/or its affiliates. |
| 2 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 3 | # you may not use this file except in compliance with the License. |
| 4 | # You may obtain a copy of the License at: |
| 5 | # |
| 6 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 7 | # |
| 8 | # Unless required by applicable law or agreed to in writing, software |
| 9 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 10 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 11 | # See the License for the specific language governing permissions and |
| 12 | # limitations under the License. |
| 13 | |
| 14 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 15 | ###################################################################### |
| 16 | # glibc |
| 17 | ###################################################################### |
| 18 | |
| 19 | # glibc needs this for cross compiling |
| 20 | libc_cv_forced_unwind=yes |
| 21 | libc_cv_c_cleanup=yes |
| 22 | libc_cv_ssp=no |
| 23 | # fixes gentoo build; not sure why? |
| 24 | libc_cv_uname_release="" |
| 25 | libc_cv_uname_version="" |
| 26 | ac_cv_header_cpuid_h=yes |
| 27 | ###################################################################### |
| 28 | # bash |
| 29 | ###################################################################### |
| 30 | |
| 31 | # Bash configure.in uses this to work around an autoconf 2.53 bug |
| 32 | ac_cv_func_setvbuf_reversed=no |
| 33 | ac_cv_rl_version=5.1 |
| 34 | bash_cv_termcap_lib=libncurses |
| 35 | |
| 36 | # These mostly come from debian bash-2.05b changes |
| 37 | # They are needed to make a functioning bash. Without these |
| 38 | # settings gdbserver exiting would cause the invoking bash to |
| 39 | # exit also. |
| 40 | bash_cv_have_mbstate_t=yes |
| 41 | bash_cv_dup2_broken=no |
| 42 | bash_cv_pgrp_pipe=no |
| 43 | bash_cv_sys_siglist=yes |
| 44 | bash_cv_under_sys_siglist=yes |
| 45 | bash_cv_opendir_not_robust=no |
| 46 | bash_cv_printf_declared=yes |
| 47 | bash_cv_ulimit_maxfds=yes |
| 48 | bash_cv_getenv_redef=yes |
| 49 | bash_cv_getcwd_calls_popen=no |
| 50 | bash_cv_func_strcoll_broken=no |
| 51 | bash_cv_must_reinstall_sighandlers=no |
| 52 | bash_cv_type_quad_t=yes |
| 53 | bash_cv_func_sigsetjmp=present |
| 54 | bash_cv_job_control_missing=present |
| 55 | bash_cv_sys_named_pipes=present |
| 56 | bash_cv_type_rlimit=long |
| 57 | bash_cv_printf_a_format=yes |
| 58 | bash_cv_unusable_rtsigs=no |
| 59 | |
| 60 | ###################################################################### |
| 61 | # Apache |
| 62 | ###################################################################### |
| 63 | ac_cv_func_setpgrp_void=yes |
| 64 | apr_cv_process_shared_works=yes |
| 65 | apr_cv_tcp_nodelay_with_cork=yes |
| 66 | ap_void_ptr_lt_long=no |
| 67 | |
| 68 | case ${host_cpu} in |
| 69 | x86_64 | alpha) |
| 70 | ac_cv_sizeof_ssize_t=8 |
| 71 | ac_cv_sizeof_size_t=8 |
| 72 | ac_cv_sizeof_pid_t=4 |
| 73 | ;; |
| 74 | *) |
| 75 | ac_cv_sizeof_ssize_t=4 |
| 76 | ac_cv_sizeof_size_t=4 |
| 77 | ac_cv_sizeof_pid_t=4 |
| 78 | ;; |
| 79 | esac |
| 80 | |
| 81 | ###################################################################### |
| 82 | # gdb |
| 83 | ###################################################################### |
| 84 | gdb_cv_func_ptrace_args=int,int,long,long |
| 85 | |
| 86 | ###################################################################### |
| 87 | # dpkg |
| 88 | ###################################################################### |
| 89 | dpkg_cv_va_copy=yes |
| 90 | |
| 91 | ###################################################################### |
| 92 | # coreutils |
| 93 | ###################################################################### |
| 94 | ac_cv_search_clock_gettime=no |
| 95 | gl_cv_fs_space=yes |
| 96 | |
| 97 | ###################################################################### |
| 98 | # valgrind |
| 99 | ###################################################################### |
| 100 | ac_cv_file__proc_self_fd=yes |
| 101 | ac_cv_file__proc_self_exe=yes |
| 102 | ac_cv_file__proc_self_maps=yes |
| 103 | |
| 104 | ###################################################################### |
| 105 | # tcpdump |
| 106 | ###################################################################### |
| 107 | ac_cv_linux_vers=2 |
| 108 | ac_cv_func_pcap_findalldevs=no |
| 109 | |
| 110 | ###################################################################### |
| 111 | # flex |
| 112 | ###################################################################### |
| 113 | ac_cv_func_malloc_0_nonnull=yes |
| 114 | ac_cv_func_realloc_0_nonnull=yes |
| 115 | |
| 116 | ###################################################################### |
| 117 | # tar |
| 118 | ###################################################################### |
| 119 | tar_gl_cv_func_mknod_works=yes |