| 1 | This file contains any messages produced by compilers while |
|---|
| 2 | running configure, to aid debugging if configure makes a mistake. |
|---|
| 3 | |
|---|
| 4 | It was created by GnuTLS configure 2.8.1, which was |
|---|
| 5 | generated by GNU Autoconf 2.63. Invocation command line was |
|---|
| 6 | |
|---|
| 7 | $ ./configure --prefix=/usr --build=x86_64-pc-linux-gnu --host=armv4tl-softfloat-linux-gnueabi --mandir=/usr/share/man --infodir=/usr/share/info --datadir=/usr/share --sysconfdir=/etc --localstatedir=/var/lib --htmldir=/usr/share/doc/gnutls-2.8.1/html --enable-cxx --disable-gtk-doc --disable-guile --enable-nls --with-zlib --without-lzo |
|---|
| 8 | |
|---|
| 9 | ## --------- ## |
|---|
| 10 | ## Platform. ## |
|---|
| 11 | ## --------- ## |
|---|
| 12 | |
|---|
| 13 | hostname = portable |
|---|
| 14 | uname -m = x86_64 |
|---|
| 15 | uname -r = 2.6.30-gentoo-r4 |
|---|
| 16 | uname -s = Linux |
|---|
| 17 | uname -v = #1 SMP Tue Jul 28 17:11:43 Local time zone must be set--see zic |
|---|
| 18 | |
|---|
| 19 | /usr/bin/uname -p = AMD Turion(tm) 64 X2 Mobile Technology TL-58 |
|---|
| 20 | /bin/uname -X = unknown |
|---|
| 21 | |
|---|
| 22 | /bin/arch = unknown |
|---|
| 23 | /usr/bin/arch -k = unknown |
|---|
| 24 | /usr/convex/getsysinfo = unknown |
|---|
| 25 | /usr/bin/hostinfo = unknown |
|---|
| 26 | /bin/machine = unknown |
|---|
| 27 | /usr/bin/oslevel = unknown |
|---|
| 28 | /bin/universe = unknown |
|---|
| 29 | |
|---|
| 30 | PATH: /usr/lib64/portage/bin/ebuild-helpers |
|---|
| 31 | PATH: /usr/local/sbin |
|---|
| 32 | PATH: /sbin |
|---|
| 33 | PATH: /usr/sbin |
|---|
| 34 | PATH: /usr/local/bin |
|---|
| 35 | PATH: /bin |
|---|
| 36 | PATH: /usr/bin |
|---|
| 37 | PATH: /opt/bin |
|---|
| 38 | PATH: /usr/armv4tl-softfloat-linux-gnueabi/gcc-bin/4.3.2 |
|---|
| 39 | |
|---|
| 40 | |
|---|
| 41 | ## ----------- ## |
|---|
| 42 | ## Core tests. ## |
|---|
| 43 | ## ----------- ## |
|---|
| 44 | |
|---|
| 45 | configure:2428: loading site script /usr/share/config.site |
|---|
| 46 | | #!/bin/bash |
|---|
| 47 | | # Copyright 2009 Gentoo Foundation |
|---|
| 48 | | # Distributed under the terms of the GNU General Public License v2 |
|---|
| 49 | | # $Header: /var/cvsroot/gentoo-projects/crossdev-wrappers/site/config.site,v 1.3 2009/03/20 01:25:56 solar Exp $ |
|---|
| 50 | | |
|---|
| 51 | | TOPDIR=/usr/share/crossdev/include/site |
|---|
| 52 | | |
|---|
| 53 | | config_site_arch() { |
|---|
| 54 | | local host=$(echo ${CHOST/-/ } | awk '{print $1}') |
|---|
| 55 | | |
|---|
| 56 | | [[ ${host/arm.*eb/} != ${host} ]] && host=armeb |
|---|
| 57 | | [[ ${host/arm/} != ${host} ]] && [[ ${host} != armeb ]] && host=arm |
|---|
| 58 | | |
|---|
| 59 | | [[ ${host/mips.*el/} != ${host} ]] && host=mipsel |
|---|
| 60 | | |
|---|
| 61 | | #[[ ${host/i[4-5]/6} != ${host} ]] && host=i686 |
|---|
| 62 | | |
|---|
| 63 | | echo ${host} |
|---|
| 64 | | } |
|---|
| 65 | | |
|---|
| 66 | | config_site_names() { |
|---|
| 67 | | local site_arch=$(config_site_arch) |
|---|
| 68 | | local sites="" |
|---|
| 69 | | local x |
|---|
| 70 | | |
|---|
| 71 | | [[ ${CHOST/-linux-/} != $CHOST ]] && sites+=" linux ${site_arch}-linux" |
|---|
| 72 | | [[ ${CHOST/darwin/} != $CHOST ]] && sites+=" darwin ${site_arch}-linux" |
|---|
| 73 | | |
|---|
| 74 | | [[ ${CHOST/-linux-uclibc/} != $CHOST ]] && sites+=" linux-uclibc ${site_arch}-linux-uclibc" |
|---|
| 75 | | [[ ${CHOST/-linux-gnu/} != $CHOST ]] && sites+=" linux-gnu ${site_arch}-linux-gnu" |
|---|
| 76 | | |
|---|
| 77 | | [[ ${CHOST/-linux-uclibceabi/} != $CHOST ]] && sites+=" linux-uclibceabi ${site_arch}-linux-uclibceabi" |
|---|
| 78 | | [[ ${CHOST/-linux-gnueabi/} != $CHOST ]] && sites+=" linux-gnueabi ${site_arch}-linux-gnueabi" |
|---|
| 79 | | |
|---|
| 80 | | for x in ${sites} ${CHOST}; do |
|---|
| 81 | | [[ -e ${TOPDIR}/${x} ]] && echo ${TOPDIR}/${x} |
|---|
| 82 | | done |
|---|
| 83 | | } |
|---|
| 84 | | |
|---|
| 85 | | if [[ ${CHOST} != "" ]]; then |
|---|
| 86 | | sites="$(config_site_names)" |
|---|
| 87 | | if [[ ${sites} != "" ]]; then |
|---|
| 88 | | for site in ${sites}; do |
|---|
| 89 | | echo "$(basename $0): loading site script ${site}" |
|---|
| 90 | | . ${site} |
|---|
| 91 | | done |
|---|
| 92 | | fi |
|---|
| 93 | | unset site |
|---|
| 94 | | unset sites |
|---|
| 95 | | fi |
|---|
| 96 | configure:2618: checking for a BSD-compatible install |
|---|
| 97 | configure:2686: result: /usr/bin/install -c |
|---|
| 98 | configure:2697: checking whether build environment is sane |
|---|
| 99 | configure:2740: result: yes |
|---|
| 100 | configure:2765: checking for a thread-safe mkdir -p |
|---|
| 101 | configure:2804: result: /bin/mkdir -p |
|---|
| 102 | configure:2817: checking for gawk |
|---|
| 103 | configure:2833: found /bin/gawk |
|---|
| 104 | configure:2844: result: gawk |
|---|
| 105 | configure:2855: checking whether make sets $(MAKE) |
|---|
| 106 | configure:2877: result: yes |
|---|
| 107 | configure:2957: checking for armv4tl-softfloat-linux-gnueabi-strip |
|---|
| 108 | configure:2973: found /usr/bin/armv4tl-softfloat-linux-gnueabi-strip |
|---|
| 109 | configure:2984: result: armv4tl-softfloat-linux-gnueabi-strip |
|---|
| 110 | configure:3066: result: *** |
|---|
| 111 | *** Checking for compilation programs... |
|---|
| 112 | |
|---|
| 113 | configure:3079: checking for armv4tl-softfloat-linux-gnueabi-gcc |
|---|
| 114 | configure:3095: found /usr/bin/armv4tl-softfloat-linux-gnueabi-gcc |
|---|
| 115 | configure:3106: result: armv4tl-softfloat-linux-gnueabi-gcc |
|---|
| 116 | configure:3378: checking for C compiler version |
|---|
| 117 | configure:3386: armv4tl-softfloat-linux-gnueabi-gcc --version >&5 |
|---|
| 118 | armv4tl-softfloat-linux-gnueabi-gcc (Gentoo 4.3.2-r4 p1.7, pie-10.1.5) 4.3.2 |
|---|
| 119 | Copyright (C) 2008 Free Software Foundation, Inc. |
|---|
| 120 | This is free software; see the source for copying conditions. There is NO |
|---|
| 121 | warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
|---|
| 122 | |
|---|
| 123 | configure:3390: $? = 0 |
|---|
| 124 | configure:3397: armv4tl-softfloat-linux-gnueabi-gcc -v >&5 |
|---|
| 125 | Using built-in specs. |
|---|
| 126 | Target: armv4tl-softfloat-linux-gnueabi |
|---|
| 127 | Configured with: /var/tmp/cross/armv4tl-softfloat-linux-gnueabi/portage/cross-armv4tl-softfloat-linux-gnueabi/gcc-4.3.2-r4/work/gcc-4.3.2/configure --prefix=/usr --bindir=/usr/x86_64-pc-linux-gnu/armv4tl-softfloat-linux-gnueabi/gcc-bin/4.3.2 --includedir=/usr/lib/gcc/armv4tl-softfloat-linux-gnueabi/4.3.2/include --datadir=/usr/share/gcc-data/armv4tl-softfloat-linux-gnueabi/4.3.2 --mandir=/usr/share/gcc-data/armv4tl-softfloat-linux-gnueabi/4.3.2/man --infodir=/usr/share/gcc-data/armv4tl-softfloat-linux-gnueabi/4.3.2/info --with-gxx-include-dir=/usr/lib/gcc/armv4tl-softfloat-linux-gnueabi/4.3.2/include/g++-v4 --host=x86_64-pc-linux-gnu --target=armv4tl-softfloat-linux-gnueabi --build=x86_64-pc-linux-gnu --disable-altivec --disable-fixed-point --with-float=soft --enable-nls --without-included-gettext --with-system-zlib --disable-checking --disable-werror --enable-secureplt --disable-multilib --disable-libmudflap --disable-libssp --disable-libgomp --enable-cld --disable-libgcj --enable-languages=c,c++,fortran --with-sysroot=/usr/armv4tl-softfloat-linux-gnueabi --disable-bootstrap --disable-libgomp --enable-__cxa_atexit --enable-clocale=gnu --with-bugurl=http://bugs.gentoo.org/ --with-pkgversion='Gentoo 4.3.2-r4 p1.7, pie-10.1.5' |
|---|
| 128 | Thread model: posix |
|---|
| 129 | gcc version 4.3.2 (Gentoo 4.3.2-r4 p1.7, pie-10.1.5) |
|---|
| 130 | configure:3401: $? = 0 |
|---|
| 131 | configure:3408: armv4tl-softfloat-linux-gnueabi-gcc -V >&5 |
|---|
| 132 | armv4tl-softfloat-linux-gnueabi-gcc: '-V' option must have argument |
|---|
| 133 | configure:3412: $? = 1 |
|---|
| 134 | configure:3435: checking for C compiler default output file name |
|---|
| 135 | configure:3457: armv4tl-softfloat-linux-gnueabi-gcc -Os -pipe -march=armv4t -mtune=arm920t -L/usr/armv4tl-softfloat-linux-gnueabi/lib -L/usr/armv4tl-softfloat-linux-gnueabi/usr/lib conftest.c >&5 |
|---|
| 136 | configure:3461: $? = 0 |
|---|
| 137 | configure:3499: result: a.out |
|---|
| 138 | configure:3518: checking whether the C compiler works |
|---|
| 139 | configure:3551: result: yes |
|---|
| 140 | configure:3558: checking whether we are cross compiling |
|---|
| 141 | configure:3560: result: yes |
|---|
| 142 | configure:3563: checking for suffix of executables |
|---|
| 143 | configure:3570: armv4tl-softfloat-linux-gnueabi-gcc -o conftest -Os -pipe -march=armv4t -mtune=arm920t -L/usr/armv4tl-softfloat-linux-gnueabi/lib -L/usr/armv4tl-softfloat-linux-gnueabi/usr/lib conftest.c >&5 |
|---|
| 144 | configure:3574: $? = 0 |
|---|
| 145 | configure:3600: result: |
|---|
| 146 | configure:3606: checking for suffix of object files |
|---|
| 147 | configure:3632: armv4tl-softfloat-linux-gnueabi-gcc -c -Os -pipe -march=armv4t -mtune=arm920t conftest.c >&5 |
|---|
| 148 | configure:3636: $? = 0 |
|---|
| 149 | configure:3661: result: o |
|---|
| 150 | configure:3665: checking whether we are using the GNU C compiler |
|---|
| 151 | configure:3694: armv4tl-softfloat-linux-gnueabi-gcc -c -Os -pipe -march=armv4t -mtune=arm920t conftest.c >&5 |
|---|
| 152 | configure:3701: $? = 0 |
|---|
| 153 | configure:3718: result: yes |
|---|
| 154 | configure:3727: checking whether armv4tl-softfloat-linux-gnueabi-gcc accepts -g |
|---|
| 155 | configure:3757: armv4tl-softfloat-linux-gnueabi-gcc -c -g conftest.c >&5 |
|---|
| 156 | configure:3764: $? = 0 |
|---|
| 157 | configure:3865: result: yes |
|---|
| 158 | configure:3882: checking for armv4tl-softfloat-linux-gnueabi-gcc option to accept ISO C89 |
|---|
| 159 | configure:3956: armv4tl-softfloat-linux-gnueabi-gcc -c -Os -pipe -march=armv4t -mtune=arm920t conftest.c >&5 |
|---|
| 160 | configure:3963: $? = 0 |
|---|
| 161 | configure:3986: result: none needed |
|---|
| 162 | configure:4015: checking for style of include used by make |
|---|
| 163 | configure:4043: result: GNU |
|---|
| 164 | configure:4068: checking dependency style of armv4tl-softfloat-linux-gnueabi-gcc |
|---|
| 165 | configure:4159: result: gcc3 |
|---|
| 166 | configure:4174: checking whether ln -s works |
|---|
| 167 | configure:4178: result: yes |
|---|
| 168 | configure:4191: checking for armv4tl-softfloat-linux-gnueabi-pkg-config |
|---|
| 169 | configure:4209: found /usr/bin/armv4tl-softfloat-linux-gnueabi-pkg-config |
|---|
| 170 | configure:4221: result: /usr/bin/armv4tl-softfloat-linux-gnueabi-pkg-config |
|---|
| 171 | configure:4289: checking pkg-config is at least version 0.9.0 |
|---|
| 172 | configure:4292: result: yes |
|---|
| 173 | configure:4305: checking for gtkdoc-check |
|---|
| 174 | configure:4338: result: no |
|---|
| 175 | configure:4347: checking for gtkdoc-rebase |
|---|
| 176 | configure:4380: result: no |
|---|
| 177 | configure:4391: checking for gtkdoc-mkpdf |
|---|
| 178 | configure:4424: result: no |
|---|
| 179 | configure:4464: checking whether to build gtk-doc documentation |
|---|
| 180 | configure:4466: result: no |
|---|
| 181 | configure:4532: checking for gaa |
|---|
| 182 | configure:4565: result: no |
|---|
| 183 | configure:4576: WARNING: *** |
|---|
| 184 | *** GAA was not found. It is only needed if you wish to modify |
|---|
| 185 | *** the source code or command-line description files. In this case, |
|---|
| 186 | *** you may want to get it from http://gaa.sourceforge.net/ and |
|---|
| 187 | *** read doc/README.gaa. |
|---|
| 188 | *** |
|---|
| 189 | configure:4588: checking for armv4tl-softfloat-linux-gnueabi-ranlib |
|---|
| 190 | configure:4604: found /usr/bin/armv4tl-softfloat-linux-gnueabi-ranlib |
|---|
| 191 | configure:4615: result: armv4tl-softfloat-linux-gnueabi-ranlib |
|---|
| 192 | configure:4683: checking build system type |
|---|
| 193 | configure:4701: result: x86_64-pc-linux-gnu |
|---|
| 194 | configure:4723: checking host system type |
|---|
| 195 | configure:4738: result: armv4tl-softfloat-linux-gnueabi |
|---|
| 196 | configure:4766: checking how to run the C preprocessor |
|---|
| 197 | configure:4806: armv4tl-softfloat-linux-gnueabi-gcc -E conftest.c |
|---|
| 198 | configure:4813: $? = 0 |
|---|
| 199 | configure:4844: armv4tl-softfloat-linux-gnueabi-gcc -E conftest.c |
|---|
| 200 | conftest.c:10:28: error: ac_nonexistent.h: No such file or directory |
|---|
| 201 | configure:4851: $? = 1 |
|---|
| 202 | configure: failed program was: |
|---|
| 203 | | /* confdefs.h. */ |
|---|
| 204 | | #define PACKAGE_NAME "GnuTLS" |
|---|
| 205 | | #define PACKAGE_TARNAME "gnutls" |
|---|
| 206 | | #define PACKAGE_VERSION "2.8.1" |
|---|
| 207 | | #define PACKAGE_STRING "GnuTLS 2.8.1" |
|---|
| 208 | | #define PACKAGE_BUGREPORT "bug-gnutls@gnu.org" |
|---|
| 209 | | #define PACKAGE "gnutls" |
|---|
| 210 | | #define VERSION "2.8.1" |
|---|
| 211 | | /* end confdefs.h. */ |
|---|
| 212 | | #include <ac_nonexistent.h> |
|---|
| 213 | configure:4884: result: armv4tl-softfloat-linux-gnueabi-gcc -E |
|---|
| 214 | configure:4913: armv4tl-softfloat-linux-gnueabi-gcc -E conftest.c |
|---|
| 215 | configure:4920: $? = 0 |
|---|
| 216 | configure:4951: armv4tl-softfloat-linux-gnueabi-gcc -E conftest.c |
|---|
| 217 | conftest.c:10:28: error: ac_nonexistent.h: No such file or directory |
|---|
| 218 | configure:4958: $? = 1 |
|---|
| 219 | configure: failed program was: |
|---|
| 220 | | /* confdefs.h. */ |
|---|
| 221 | | #define PACKAGE_NAME "GnuTLS" |
|---|
| 222 | | #define PACKAGE_TARNAME "gnutls" |
|---|
| 223 | | #define PACKAGE_VERSION "2.8.1" |
|---|
| 224 | | #define PACKAGE_STRING "GnuTLS 2.8.1" |
|---|
| 225 | | #define PACKAGE_BUGREPORT "bug-gnutls@gnu.org" |
|---|
| 226 | | #define PACKAGE "gnutls" |
|---|
| 227 | | #define VERSION "2.8.1" |
|---|
| 228 | | /* end confdefs.h. */ |
|---|
| 229 | | #include <ac_nonexistent.h> |
|---|
| 230 | configure:4998: checking for grep that handles long lines and -e |
|---|
| 231 | configure:5058: result: /bin/grep |
|---|
| 232 | configure:5063: checking for egrep |
|---|
| 233 | configure:5127: result: /bin/grep -E |
|---|
| 234 | configure:5132: checking for ANSI C header files |
|---|
| 235 | configure:5162: armv4tl-softfloat-linux-gnueabi-gcc -c -Os -pipe -march=armv4t -mtune=arm920t conftest.c >&5 |
|---|
| 236 | configure:5169: $? = 0 |
|---|
| 237 | configure:5300: result: yes |
|---|
| 238 | configure:5324: checking for sys/types.h |
|---|
| 239 | configure:5345: armv4tl-softfloat-linux-gnueabi-gcc -c -Os -pipe -march=armv4t -mtune=arm920t conftest.c >&5 |
|---|
| 240 | configure:5352: $? = 0 |
|---|
| 241 | configure:5369: result: yes |
|---|
| 242 | configure:5324: checking for sys/stat.h |
|---|
| 243 | configure:5345: armv4tl-softfloat-linux-gnueabi-gcc -c -Os -pipe -march=armv4t -mtune=arm920t conftest.c >&5 |
|---|
| 244 | configure:5352: $? = 0 |
|---|
| 245 | configure:5369: result: yes |
|---|
| 246 | configure:5324: checking for stdlib.h |
|---|
| 247 | configure:5345: armv4tl-softfloat-linux-gnueabi-gcc -c -Os -pipe -march=armv4t -mtune=arm920t conftest.c >&5 |
|---|
| 248 | configure:5352: $? = 0 |
|---|
| 249 | configure:5369: result: yes |
|---|
| 250 | configure:5324: checking for string.h |
|---|
| 251 | configure:5345: armv4tl-softfloat-linux-gnueabi-gcc -c -Os -pipe -march=armv4t -mtune=arm920t conftest.c >&5 |
|---|
| 252 | configure:5352: $? = 0 |
|---|
| 253 | configure:5369: result: yes |
|---|
| 254 | configure:5324: checking for memory.h |
|---|
| 255 | configure:5345: armv4tl-softfloat-linux-gnueabi-gcc -c -Os -pipe -march=armv4t -mtune=arm920t conftest.c >&5 |
|---|
| 256 | configure:5352: $? = 0 |
|---|
| 257 | configure:5369: result: yes |
|---|
| 258 | configure:5324: checking for strings.h |
|---|
| 259 | configure:5345: armv4tl-softfloat-linux-gnueabi-gcc -c -Os -pipe -march=armv4t -mtune=arm920t conftest.c >&5 |
|---|
| 260 | configure:5352: $? = 0 |
|---|
| 261 | configure:5369: result: yes |
|---|
| 262 | configure:5324: checking for inttypes.h |
|---|
| 263 | configure:5345: armv4tl-softfloat-linux-gnueabi-gcc -c -Os -pipe -march=armv4t -mtune=arm920t conftest.c >&5 |
|---|
| 264 | configure:5352: $? = 0 |
|---|
| 265 | configure:5369: result: yes |
|---|
| 266 | configure:5324: checking for stdint.h |
|---|
| 267 | configure:5345: armv4tl-softfloat-linux-gnueabi-gcc -c -Os -pipe -march=armv4t -mtune=arm920t conftest.c >&5 |
|---|
| 268 | configure:5352: $? = 0 |
|---|
| 269 | configure:5369: result: yes |
|---|
| 270 | configure:5324: checking for unistd.h |
|---|
| 271 | configure:5345: armv4tl-softfloat-linux-gnueabi-gcc -c -Os -pipe -march=armv4t -mtune=arm920t conftest.c >&5 |
|---|
| 272 | configure:5352: $? = 0 |
|---|
| 273 | configure:5369: result: yes |
|---|
| 274 | configure:5396: checking minix/config.h usability |
|---|
| 275 | configure:5413: armv4tl-softfloat-linux-gnueabi-gcc -c -Os -pipe -march=armv4t -mtune=arm920t conftest.c >&5 |
|---|
| 276 | conftest.c:53:26: error: minix/config.h: No such file or directory |
|---|
| 277 | configure:5420: $? = 1 |
|---|
| 278 | configure: failed program was: |
|---|
| 279 | | /* confdefs.h. */ |
|---|
| 280 | | #define PACKAGE_NAME "GnuTLS" |
|---|
| 281 | | #define PACKAGE_TARNAME "gnutls" |
|---|
| 282 | | #define PACKAGE_VERSION "2.8.1" |
|---|
| 283 | | #define PACKAGE_STRING "GnuTLS 2.8.1" |
|---|
| 284 | | #define PACKAGE_BUGREPORT "bug-gnutls@gnu.org" |
|---|
| 285 | | #define PACKAGE "gnutls" |
|---|
| 286 | | #define VERSION "2.8.1" |
|---|
| 287 | | #define STDC_HEADERS 1 |
|---|
| 288 | | #define HAVE_SYS_TYPES_H 1 |
|---|
| 289 | | #define HAVE_SYS_STAT_H 1 |
|---|
| 290 | | #define HAVE_STDLIB_H 1 |
|---|
| 291 | | #define HAVE_STRING_H 1 |
|---|
| 292 | | #define HAVE_MEMORY_H 1 |
|---|
| 293 | | #define HAVE_STRINGS_H 1 |
|---|
| 294 | | #define HAVE_INTTYPES_H 1 |
|---|
| 295 | | #define HAVE_STDINT_H 1 |
|---|
| 296 | | #define HAVE_UNISTD_H 1 |
|---|
| 297 | | /* end confdefs.h. */ |
|---|
| 298 | | #include <stdio.h> |
|---|
| 299 | | #ifdef HAVE_SYS_TYPES_H |
|---|
| 300 | | # include <sys/types.h> |
|---|
| 301 | | #endif |
|---|
| 302 | | #ifdef HAVE_SYS_STAT_H |
|---|
| 303 | | # include <sys/stat.h> |
|---|
| 304 | | #endif |
|---|
| 305 | | #ifdef STDC_HEADERS |
|---|
| 306 | | # include <stdlib.h> |
|---|
| 307 | | # include <stddef.h> |
|---|
| 308 | | #else |
|---|
| 309 | | # ifdef HAVE_STDLIB_H |
|---|
| 310 | | # include <stdlib.h> |
|---|
| 311 | | # endif |
|---|
| 312 | | #endif |
|---|
| 313 | | #ifdef HAVE_STRING_H |
|---|
| 314 | | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H |
|---|
| 315 | | # include <memory.h> |
|---|
| 316 | | # endif |
|---|
| 317 | | # include <string.h> |
|---|
| 318 | | #endif |
|---|
| 319 | | #ifdef HAVE_STRINGS_H |
|---|
| 320 | | # include <strings.h> |
|---|
| 321 | | #endif |
|---|
| 322 | | #ifdef HAVE_INTTYPES_H |
|---|
| 323 | | # include <inttypes.h> |
|---|
| 324 | | #endif |
|---|
| 325 | | #ifdef HAVE_STDINT_H |
|---|
| 326 | | # include <stdint.h> |
|---|
| 327 | | #endif |
|---|
| 328 | | #ifdef HAVE_UNISTD_H |
|---|
| 329 | | # include <unistd.h> |
|---|
| 330 | | #endif |
|---|
| 331 | | #include <minix/config.h> |
|---|
| 332 | configure:5434: result: no |
|---|
| 333 | configure:5438: checking minix/config.h presence |
|---|
| 334 | configure:5453: armv4tl-softfloat-linux-gnueabi-gcc -E conftest.c |
|---|
| 335 | conftest.c:20:26: error: minix/config.h: No such file or directory |
|---|
| 336 | configure:5460: $? = 1 |
|---|
| 337 | configure: failed program was: |
|---|
| 338 | | /* confdefs.h. */ |
|---|
| 339 | | #define PACKAGE_NAME "GnuTLS" |
|---|
| 340 | | #define PACKAGE_TARNAME "gnutls" |
|---|
| 341 | | #define PACKAGE_VERSION "2.8.1" |
|---|
| 342 | | #define PACKAGE_STRING "GnuTLS 2.8.1" |
|---|
| 343 | | #define PACKAGE_BUGREPORT "bug-gnutls@gnu.org" |
|---|
| 344 | | #define PACKAGE "gnutls" |
|---|
| 345 | | #define VERSION "2.8.1" |
|---|
| 346 | | #define STDC_HEADERS 1 |
|---|
| 347 | | #define HAVE_SYS_TYPES_H 1 |
|---|
| 348 | | #define HAVE_SYS_STAT_H 1 |
|---|
| 349 | | #define HAVE_STDLIB_H 1 |
|---|
| 350 | | #define HAVE_STRING_H 1 |
|---|
| 351 | | #define HAVE_MEMORY_H 1 |
|---|
| 352 | | #define HAVE_STRINGS_H 1 |
|---|
| 353 | | #define HAVE_INTTYPES_H 1 |
|---|
| 354 | | #define HAVE_STDINT_H 1 |
|---|
| 355 | | #define HAVE_UNISTD_H 1 |
|---|
| 356 | | /* end confdefs.h. */ |
|---|
| 357 | | #include <minix/config.h> |
|---|
| 358 | configure:5474: result: no |
|---|
| 359 | configure:5507: checking for minix/config.h |
|---|
| 360 | configure:5514: result: no |
|---|
| 361 | configure:5555: checking whether it is safe to define __EXTENSIONS__ |
|---|
| 362 | configure:5583: armv4tl-softfloat-linux-gnueabi-gcc -c -Os -pipe -march=armv4t -mtune=arm920t conftest.c >&5 |
|---|
| 363 | configure:5590: $? = 0 |
|---|
| 364 | configure:5605: result: yes |
|---|
| 365 | configure:5636: checking for _LARGEFILE_SOURCE value needed for large files |
|---|
| 366 | configure:5665: armv4tl-softfloat-linux-gnueabi-gcc -o conftest -Os -pipe -march=armv4t -mtune=arm920t -L/usr/armv4tl-softfloat-linux-gnueabi/lib -L/usr/armv4tl-softfloat-linux-gnueabi/usr/lib conftest.c >&5 |
|---|
| 367 | configure:5672: $? = 0 |
|---|
| 368 | configure:5745: result: no |
|---|
| 369 | configure:5770: checking for armv4tl-softfloat-linux-gnueabi-gcc option to accept ISO C99 |
|---|
| 370 | configure:5929: armv4tl-softfloat-linux-gnueabi-gcc -c -Os -pipe -march=armv4t -mtune=arm920t conftest.c >&5 |
|---|
| 371 | conftest.c:76: error: expected ';', ',' or ')' before 'text' |
|---|
| 372 | conftest.c: In function 'main': |
|---|
| 373 | conftest.c:130: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'newvar' |
|---|
| 374 | conftest.c:130: error: 'newvar' undeclared (first use in this function) |
|---|
| 375 | conftest.c:130: error: (Each undeclared identifier is reported only once |
|---|
| 376 | conftest.c:130: error: for each function it appears in.) |
|---|
| 377 | conftest.c:140: error: 'for' loop initial declaration used outside C99 mode |
|---|
| 378 | configure:5936: $? = 1 |
|---|
| 379 | configure: failed program was: |
|---|
| 380 | | /* confdefs.h. */ |
|---|
| 381 | | #define PACKAGE_NAME "GnuTLS" |
|---|
| 382 | | #define PACKAGE_TARNAME "gnutls" |
|---|
| 383 | | #define PACKAGE_VERSION "2.8.1" |
|---|
| 384 | | #define PACKAGE_STRING "GnuTLS 2.8.1" |
|---|
| 385 | | #define PACKAGE_BUGREPORT "bug-gnutls@gnu.org" |
|---|
| 386 | | #define PACKAGE "gnutls" |
|---|
| 387 | | #define VERSION "2.8.1" |
|---|
| 388 | | #define STDC_HEADERS 1 |
|---|
| 389 | | #define HAVE_SYS_TYPES_H 1 |
|---|
| 390 | | #define HAVE_SYS_STAT_H 1 |
|---|
| 391 | | #define HAVE_STDLIB_H 1 |
|---|
| 392 | | #define HAVE_STRING_H 1 |
|---|
| 393 | | #define HAVE_MEMORY_H 1 |
|---|
| 394 | | #define HAVE_STRINGS_H 1 |
|---|
| 395 | | #define HAVE_INTTYPES_H 1 |
|---|
| 396 | | #define HAVE_STDINT_H 1 |
|---|
| 397 | | #define HAVE_UNISTD_H 1 |
|---|
| 398 | | #define __EXTENSIONS__ 1 |
|---|
| 399 | | #define _ALL_SOURCE 1 |
|---|
| 400 | | #define _GNU_SOURCE 1 |
|---|
| 401 | | #define _POSIX_PTHREAD_SEMANTICS 1 |
|---|
| 402 | | #define _TANDEM_SOURCE 1 |
|---|
| 403 | | #define HAVE_FSEEKO 1 |
|---|
| 404 | | /* end confdefs.h. */ |
|---|
| 405 | | #include <stdarg.h> |
|---|
| 406 | | #include <stdbool.h> |
|---|
| 407 | | #include <stdlib.h> |
|---|
| 408 | | #include <wchar.h> |
|---|
| 409 | | #include <stdio.h> |
|---|
| 410 | | |
|---|
| 411 | | // Check varargs macros. These examples are taken from C99 6.10.3.5. |
|---|
| 412 | | #define debug(...) fprintf (stderr, __VA_ARGS__) |
|---|
| 413 | | #define showlist(...) puts (#__VA_ARGS__) |
|---|
| 414 | | #define report(test,...) ((test) ? puts (#test) : printf (__VA_ARGS__)) |
|---|
| 415 | | static void |
|---|
| 416 | | test_varargs_macros (void) |
|---|
| 417 | | { |
|---|
| 418 | | int x = 1234; |
|---|
| 419 | | int y = 5678; |
|---|
| 420 | | debug ("Flag"); |
|---|
| 421 | | debug ("X = %d\n", x); |
|---|
| 422 | | showlist (The first, second, and third items.); |
|---|
| 423 | | report (x>y, "x is %d but y is %d", x, y); |
|---|
| 424 | | } |
|---|
| 425 | | |
|---|
| 426 | | // Check long long types. |
|---|
| 427 | | #define BIG64 18446744073709551615ull |
|---|
| 428 | | #define BIG32 4294967295ul |
|---|
| 429 | | #define BIG_OK (BIG64 / BIG32 == 4294967297ull && BIG64 % BIG32 == 0) |
|---|
| 430 | | #if !BIG_OK |
|---|
| 431 | | your preprocessor is broken; |
|---|
| 432 | | #endif |
|---|
| 433 | | #if BIG_OK |
|---|
| 434 | | #else |
|---|
| 435 | | your preprocessor is broken; |
|---|
| 436 | | #endif |
|---|
| 437 | | static long long int bignum = -9223372036854775807LL; |
|---|
| 438 | | static unsigned long long int ubignum = BIG64; |
|---|
| 439 | | |
|---|
| 440 | | struct incomplete_array |
|---|
| 441 | | { |
|---|
| 442 | | int datasize; |
|---|
| 443 | | double data[]; |
|---|
| 444 | | }; |
|---|
| 445 | | |
|---|
| 446 | | struct named_init { |
|---|
| 447 | | int number; |
|---|
| 448 | | const wchar_t *name; |
|---|
| 449 | | double average; |
|---|
| 450 | | }; |
|---|
| 451 | | |
|---|
| 452 | | typedef const char *ccp; |
|---|
| 453 | | |
|---|
| 454 | | static inline int |
|---|
| 455 | | test_restrict (ccp restrict text) |
|---|
| 456 | | { |
|---|
| 457 | | // See if C++-style comments work. |
|---|
| 458 | | // Iterate through items via the restricted pointer. |
|---|
| 459 | | // Also check for declarations in for loops. |
|---|
| 460 | | for (unsigned int i = 0; *(text+i) != '\0'; ++i) |
|---|
| 461 | | continue; |
|---|
| 462 | | return 0; |
|---|
| 463 | | } |
|---|
| 464 | | |
|---|
| 465 | | // Check varargs and va_copy. |
|---|
| 466 | | static void |
|---|
| 467 | | test_varargs (const char *format, ...) |
|---|
| 468 | | { |
|---|
| 469 | | va_list args; |
|---|
| 470 | | va_start (args, format); |
|---|
| 471 | | va_list args_copy; |
|---|
| 472 | | va_copy (args_copy, args); |
|---|
| 473 | | |
|---|
| 474 | | const char *str; |
|---|
| 475 | | int number; |
|---|
| 476 | | float fnumber; |
|---|
| 477 | | |
|---|
| 478 | | while (*format) |
|---|
| 479 | | { |
|---|
| 480 | | switch (*format++) |
|---|
| 481 | | { |
|---|
| 482 | | case 's': // string |
|---|
| 483 | | str = va_arg (args_copy, const char *); |
|---|
| 484 | | break; |
|---|
| 485 | | case 'd': // int |
|---|
| 486 | | number = va_arg (args_copy, int); |
|---|
| 487 | | break; |
|---|
| 488 | | case 'f': // float |
|---|
| 489 | | fnumber = va_arg (args_copy, double); |
|---|
| 490 | | break; |
|---|
| 491 | | default: |
|---|
| 492 | | break; |
|---|
| 493 | | } |
|---|
| 494 | | } |
|---|
| 495 | | va_end (args_copy); |
|---|
| 496 | | va_end (args); |
|---|
| 497 | | } |
|---|
| 498 | | |
|---|
| 499 | | int |
|---|
| 500 | | main () |
|---|
| 501 | | { |
|---|
| 502 | | |
|---|
| 503 | | // Check bool. |
|---|
| 504 | | _Bool success = false; |
|---|
| 505 | | |
|---|
| 506 | | // Check restrict. |
|---|
| 507 | | if (test_restrict ("String literal") == 0) |
|---|
| 508 | | success = true; |
|---|
| 509 | | char *restrict newvar = "Another string"; |
|---|
| 510 | | |
|---|
| 511 | | // Check varargs. |
|---|
| 512 | | test_varargs ("s, d' f .", "string", 65, 34.234); |
|---|
| 513 | | test_varargs_macros (); |
|---|
| 514 | | |
|---|
| 515 | | // Check flexible array members. |
|---|
| 516 | | struct incomplete_array *ia = |
|---|
| 517 | | malloc (sizeof (struct incomplete_array) + (sizeof (double) * 10)); |
|---|
| 518 | | ia->datasize = 10; |
|---|
| 519 | | for (int i = 0; i < ia->datasize; ++i) |
|---|
| 520 | | ia->data[i] = i * 1.234; |
|---|
| 521 | | |
|---|
| 522 | | // Check named initializers. |
|---|
| 523 | | struct named_init ni = { |
|---|
| 524 | | .number = 34, |
|---|
| 525 | | .name = L"Test wide string", |
|---|
| 526 | | .average = 543.34343, |
|---|
| 527 | | }; |
|---|
| 528 | | |
|---|
| 529 | | ni.number = 58; |
|---|
| 530 | | |
|---|
| 531 | | int dynamic_array[ni.number]; |
|---|
| 532 | | dynamic_array[ni.number - 1] = 543; |
|---|
| 533 | | |
|---|
| 534 | | // work around unused variable warnings |
|---|
| 535 | | return (!success || bignum == 0LL || ubignum == 0uLL || newvar[0] == 'x' |
|---|
| 536 | | || dynamic_array[ni.number - 1] != 543); |
|---|
| 537 | | |
|---|
| 538 | | ; |
|---|
| 539 | | return 0; |
|---|
| 540 | | } |
|---|
| 541 | configure:5929: armv4tl-softfloat-linux-gnueabi-gcc -std=gnu99 -c -Os -pipe -march=armv4t -mtune=arm920t conftest.c >&5 |
|---|
| 542 | configure:5936: $? = 0 |
|---|
| 543 | configure:5966: result: -std=gnu99 |
|---|
| 544 | configure:6097: checking for armv4tl-softfloat-linux-gnueabi-gcc -std=gnu99 option to accept ISO Standard C |
|---|
| 545 | configure:6108: result: -std=gnu99 |
|---|
| 546 | configure:6122: autobuild project... GnuTLS |
|---|
| 547 | configure:6128: autobuild revision... 2.8.1 |
|---|
| 548 | configure:6133: autobuild hostname... portable |
|---|
| 549 | configure:6144: autobuild timestamp... 20090728T204829Z |
|---|
| 550 | configure:6152: checking for inline |
|---|
| 551 | configure:6178: armv4tl-softfloat-linux-gnueabi-gcc -std=gnu99 -c -Os -pipe -march=armv4t -mtune=arm920t conftest.c >&5 |
|---|
| 552 | configure:6185: $? = 0 |
|---|
| 553 | configure:6203: result: inline |
|---|
| 554 | configure:6238: checking for armv4tl-softfloat-linux-gnueabi-g++ |
|---|
| 555 | configure:6254: found /usr/bin/armv4tl-softfloat-linux-gnueabi-g++ |
|---|
| 556 | configure:6265: result: armv4tl-softfloat-linux-gnueabi-g++ |
|---|
| 557 | configure:6336: checking for C++ compiler version |
|---|
| 558 | configure:6344: armv4tl-softfloat-linux-gnueabi-g++ --version >&5 |
|---|
| 559 | armv4tl-softfloat-linux-gnueabi-g++ (Gentoo 4.3.2-r4 p1.7, pie-10.1.5) 4.3.2 |
|---|
| 560 | Copyright (C) 2008 Free Software Foundation, Inc. |
|---|
| 561 | This is free software; see the source for copying conditions. There is NO |
|---|
| 562 | warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
|---|
| 563 | |
|---|
| 564 | configure:6348: $? = 0 |
|---|
| 565 | configure:6355: armv4tl-softfloat-linux-gnueabi-g++ -v >&5 |
|---|
| 566 | Using built-in specs. |
|---|
| 567 | Target: armv4tl-softfloat-linux-gnueabi |
|---|
| 568 | Configured with: /var/tmp/cross/armv4tl-softfloat-linux-gnueabi/portage/cross-armv4tl-softfloat-linux-gnueabi/gcc-4.3.2-r4/work/gcc-4.3.2/configure --prefix=/usr --bindir=/usr/x86_64-pc-linux-gnu/armv4tl-softfloat-linux-gnueabi/gcc-bin/4.3.2 --includedir=/usr/lib/gcc/armv4tl-softfloat-linux-gnueabi/4.3.2/include --datadir=/usr/share/gcc-data/armv4tl-softfloat-linux-gnueabi/4.3.2 --mandir=/usr/share/gcc-data/armv4tl-softfloat-linux-gnueabi/4.3.2/man --infodir=/usr/share/gcc-data/armv4tl-softfloat-linux-gnueabi/4.3.2/info --with-gxx-include-dir=/usr/lib/gcc/armv4tl-softfloat-linux-gnueabi/4.3.2/include/g++-v4 --host=x86_64-pc-linux-gnu --target=armv4tl-softfloat-linux-gnueabi --build=x86_64-pc-linux-gnu --disable-altivec --disable-fixed-point --with-float=soft --enable-nls --without-included-gettext --with-system-zlib --disable-checking --disable-werror --enable-secureplt --disable-multilib --disable-libmudflap --disable-libssp --disable-libgomp --enable-cld --disable-libgcj --enable-languages=c,c++,fortran --with-sysroot=/usr/armv4tl-softfloat-linux-gnueabi --disable-bootstrap --disable-libgomp --enable-__cxa_atexit --enable-clocale=gnu --with-bugurl=http://bugs.gentoo.org/ --with-pkgversion='Gentoo 4.3.2-r4 p1.7, pie-10.1.5' |
|---|
| 569 | Thread model: posix |
|---|
| 570 | gcc version 4.3.2 (Gentoo 4.3.2-r4 p1.7, pie-10.1.5) |
|---|
| 571 | configure:6359: $? = 0 |
|---|
| 572 | configure:6366: armv4tl-softfloat-linux-gnueabi-g++ -V >&5 |
|---|
| 573 | armv4tl-softfloat-linux-gnueabi-g++: '-V' option must have argument |
|---|
| 574 | configure:6370: $? = 1 |
|---|
| 575 | configure:6373: checking whether we are using the GNU C++ compiler |
|---|
| 576 | configure:6402: armv4tl-softfloat-linux-gnueabi-g++ -c -Os -pipe -march=armv4t -mtune=arm920t conftest.cpp >&5 |
|---|
| 577 | configure:6409: $? = 0 |
|---|
| 578 | configure:6426: result: yes |
|---|
| 579 | configure:6435: checking whether armv4tl-softfloat-linux-gnueabi-g++ accepts -g |
|---|
| 580 | configure:6465: armv4tl-softfloat-linux-gnueabi-g++ -c -g conftest.cpp >&5 |
|---|
| 581 | configure:6472: $? = 0 |
|---|
| 582 | configure:6573: result: yes |
|---|
| 583 | configure:6598: checking dependency style of armv4tl-softfloat-linux-gnueabi-g++ |
|---|
| 584 | configure:6689: result: gcc3 |
|---|
| 585 | configure:6740: armv4tl-softfloat-linux-gnueabi-g++ -c -Os -pipe -march=armv4t -mtune=arm920t conftest.cpp >&5 |
|---|
| 586 | configure:6747: $? = 0 |
|---|
| 587 | configure:6817: checking for ld used by GCC |
|---|
| 588 | configure:6881: result: /usr/libexec/gcc/armv4tl-softfloat-linux-gnueabi/ld |
|---|
| 589 | configure:6890: checking if the linker (/usr/libexec/gcc/armv4tl-softfloat-linux-gnueabi/ld) is GNU ld |
|---|
| 590 | configure:6903: result: yes |
|---|
| 591 | configure:6910: checking for shared library run path origin |
|---|
| 592 | configure:6923: result: done |
|---|
| 593 | configure:7517: checking for libgcrypt |
|---|
| 594 | configure:7546: armv4tl-softfloat-linux-gnueabi-gcc -std=gnu99 -o conftest -Os -pipe -march=armv4t -mtune=arm920t -L/usr/armv4tl-softfloat-linux-gnueabi/lib -L/usr/armv4tl-softfloat-linux-gnueabi/usr/lib conftest.c /usr/lib/libgcrypt.so /usr/lib/libgpg-error.so >&5 |
|---|
| 595 | /usr/lib/libgcrypt.so: file not recognized: File format not recognized |
|---|
| 596 | collect2: ld returned 1 exit status |
|---|
| 597 | configure:7553: $? = 1 |
|---|
| 598 | configure: failed program was: |
|---|
| 599 | | /* confdefs.h. */ |
|---|
| 600 | | #define PACKAGE_NAME "GnuTLS" |
|---|
| 601 | | #define PACKAGE_TARNAME "gnutls" |
|---|
| 602 | | #define PACKAGE_VERSION "2.8.1" |
|---|
| 603 | | #define PACKAGE_STRING "GnuTLS 2.8.1" |
|---|
| 604 | | #define PACKAGE_BUGREPORT "bug-gnutls@gnu.org" |
|---|
| 605 | | #define PACKAGE "gnutls" |
|---|
| 606 | | #define VERSION "2.8.1" |
|---|
| 607 | | #define STDC_HEADERS 1 |
|---|
| 608 | | #define HAVE_SYS_TYPES_H 1 |
|---|
| 609 | | #define HAVE_SYS_STAT_H 1 |
|---|
| 610 | | #define HAVE_STDLIB_H 1 |
|---|
| 611 | | #define HAVE_STRING_H 1 |
|---|
| 612 | | #define HAVE_MEMORY_H 1 |
|---|
| 613 | | #define HAVE_STRINGS_H 1 |
|---|
| 614 | | #define HAVE_INTTYPES_H 1 |
|---|
| 615 | | #define HAVE_STDINT_H 1 |
|---|
| 616 | | #define HAVE_UNISTD_H 1 |
|---|
| 617 | | #define __EXTENSIONS__ 1 |
|---|
| 618 | | #define _ALL_SOURCE 1 |
|---|
| 619 | | #define _GNU_SOURCE 1 |
|---|
| 620 | | #define _POSIX_PTHREAD_SEMANTICS 1 |
|---|
| 621 | | #define _TANDEM_SOURCE 1 |
|---|
| 622 | | #define HAVE_FSEEKO 1 |
|---|
| 623 | | /* end confdefs.h. */ |
|---|
| 624 | | #include <gcrypt.h> |
|---|
| 625 | | int |
|---|
| 626 | | main () |
|---|
| 627 | | { |
|---|
| 628 | | enum gcry_cipher_algos i = GCRY_CIPHER_CAMELLIA128 |
|---|
| 629 | | ; |
|---|
| 630 | | return 0; |
|---|
| 631 | | } |
|---|
| 632 | configure:7575: result: no |
|---|
| 633 | configure:7608: error: |
|---|
| 634 | *** |
|---|
| 635 | *** libgcrypt was not found. You may want to get it from |
|---|
| 636 | *** ftp://ftp.gnupg.org/gcrypt/libgcrypt/ |
|---|
| 637 | *** |
|---|
| 638 | |
|---|
| 639 | |
|---|
| 640 | ## ---------------- ## |
|---|
| 641 | ## Cache variables. ## |
|---|
| 642 | ## ---------------- ## |
|---|
| 643 | |
|---|
| 644 | ac_cv___va_copy=yes |
|---|
| 645 | ac_cv_alignof_CORBA_boolean=1 |
|---|
| 646 | ac_cv_alignof_CORBA_char=1 |
|---|
| 647 | ac_cv_alignof_CORBA_double=8 |
|---|
| 648 | ac_cv_alignof_CORBA_float=4 |
|---|
| 649 | ac_cv_alignof_CORBA_long=4 |
|---|
| 650 | ac_cv_alignof_CORBA_long_double=8 |
|---|
| 651 | ac_cv_alignof_CORBA_long_long=8 |
|---|
| 652 | ac_cv_alignof_CORBA_octet=1 |
|---|
| 653 | ac_cv_alignof_CORBA_pointer=4 |
|---|
| 654 | ac_cv_alignof_CORBA_short=2 |
|---|
| 655 | ac_cv_alignof_CORBA_struct=1 |
|---|
| 656 | ac_cv_alignof_CORBA_wchar=2 |
|---|
| 657 | ac_cv_build=x86_64-pc-linux-gnu |
|---|
| 658 | ac_cv_c_bigendian=no |
|---|
| 659 | ac_cv_c_compiler_gnu=yes |
|---|
| 660 | ac_cv_c_inline=inline |
|---|
| 661 | ac_cv_c_littleendian=yes |
|---|
| 662 | ac_cv_c_long_double=yes |
|---|
| 663 | ac_cv_conv_longlong_to_float=yes |
|---|
| 664 | ac_cv_cxx_compiler_gnu=yes |
|---|
| 665 | ac_cv_dirent_have_space_d_name=yes |
|---|
| 666 | ac_cv_env_CCC_set= |
|---|
| 667 | ac_cv_env_CCC_value= |
|---|
| 668 | ac_cv_env_CC_set= |
|---|
| 669 | ac_cv_env_CC_value= |
|---|
| 670 | ac_cv_env_CFLAGS_set=set |
|---|
| 671 | ac_cv_env_CFLAGS_value='-Os -pipe -march=armv4t -mtune=arm920t' |
|---|
| 672 | ac_cv_env_CPPFLAGS_set= |
|---|
| 673 | ac_cv_env_CPPFLAGS_value= |
|---|
| 674 | ac_cv_env_CPP_set= |
|---|
| 675 | ac_cv_env_CPP_value= |
|---|
| 676 | ac_cv_env_CXXCPP_set= |
|---|
| 677 | ac_cv_env_CXXCPP_value= |
|---|
| 678 | ac_cv_env_CXXFLAGS_set=set |
|---|
| 679 | ac_cv_env_CXXFLAGS_value='-Os -pipe -march=armv4t -mtune=arm920t' |
|---|
| 680 | ac_cv_env_CXX_set= |
|---|
| 681 | ac_cv_env_CXX_value= |
|---|
| 682 | ac_cv_env_LDFLAGS_set=set |
|---|
| 683 | ac_cv_env_LDFLAGS_value='-L/usr/armv4tl-softfloat-linux-gnueabi/lib -L/usr/armv4tl-softfloat-linux-gnueabi/usr/lib' |
|---|
| 684 | ac_cv_env_LIBS_set= |
|---|
| 685 | ac_cv_env_LIBS_value= |
|---|
| 686 | ac_cv_env_PKG_CONFIG_set= |
|---|
| 687 | ac_cv_env_PKG_CONFIG_value= |
|---|
| 688 | ac_cv_env_build_alias_set=set |
|---|
| 689 | ac_cv_env_build_alias_value=x86_64-pc-linux-gnu |
|---|
| 690 | ac_cv_env_host_alias_set=set |
|---|
| 691 | ac_cv_env_host_alias_value=armv4tl-softfloat-linux-gnueabi |
|---|
| 692 | ac_cv_env_target_alias_set= |
|---|
| 693 | ac_cv_env_target_alias_value= |
|---|
| 694 | ac_cv_file___dev_urandom_=yes |
|---|
| 695 | ac_cv_file__bin_bash=yes |
|---|
| 696 | ac_cv_file__dev_arandom=no |
|---|
| 697 | ac_cv_file__dev_random=yes |
|---|
| 698 | ac_cv_file__dev_srandom=yes |
|---|
| 699 | ac_cv_file__dev_urandom=yes |
|---|
| 700 | ac_cv_file__dev_zero=yes |
|---|
| 701 | ac_cv_file__usr_share_sgml_X11_defs_ent=1 |
|---|
| 702 | ac_cv_func_calloc_0_nonnull=yes |
|---|
| 703 | ac_cv_func_fnmatch_works=yes |
|---|
| 704 | ac_cv_func_getaddrinfo=yes |
|---|
| 705 | ac_cv_func_getgrgid_r=yes |
|---|
| 706 | ac_cv_func_getpwuid_r=yes |
|---|
| 707 | ac_cv_func_lstat_dereferences_slashed_symlink=yes |
|---|
| 708 | ac_cv_func_lstat_empty_string_bug=no |
|---|
| 709 | ac_cv_func_malloc_0_nonnull=yes |
|---|
| 710 | ac_cv_func_malloc_works=yes |
|---|
| 711 | ac_cv_func_memcmp_working=yes |
|---|
| 712 | ac_cv_func_posix_getgrgid_r=yes |
|---|
| 713 | ac_cv_func_posix_getpwnam_r=yes |
|---|
| 714 | ac_cv_func_posix_getpwuid_r=yes |
|---|
| 715 | ac_cv_func_pthread_key_delete=yes |
|---|
| 716 | ac_cv_func_realloc_0_nonnull=yes |
|---|
| 717 | ac_cv_func_realloc_works=yes |
|---|
| 718 | ac_cv_func_setgrent_void=yes |
|---|
| 719 | ac_cv_func_setpgrp_void=yes |
|---|
| 720 | ac_cv_func_stat_empty_string_bug=no |
|---|
| 721 | ac_cv_func_stat_ignores_trailing_slash=no |
|---|
| 722 | ac_cv_func_strnlen_working=yes |
|---|
| 723 | ac_cv_have_abstract_sockets=no |
|---|
| 724 | ac_cv_have_accrights_in_msghdr=no |
|---|
| 725 | ac_cv_have_broken_snprintf=no |
|---|
| 726 | ac_cv_have_control_in_msghdr=yes |
|---|
| 727 | ac_cv_have_openpty_ctty_bug=yes |
|---|
| 728 | ac_cv_have_space_d_name_in_struct_dirent=yes |
|---|
| 729 | ac_cv_header_inttypes_h=yes |
|---|
| 730 | ac_cv_header_memory_h=yes |
|---|
| 731 | ac_cv_header_minix_config_h=no |
|---|
| 732 | ac_cv_header_netinet_sctp_h=no |
|---|
| 733 | ac_cv_header_netinet_sctp_uio_h=no |
|---|
| 734 | ac_cv_header_pwd_h=yes |
|---|
| 735 | ac_cv_header_stdc=yes |
|---|
| 736 | ac_cv_header_stdint_h=yes |
|---|
| 737 | ac_cv_header_stdlib_h=yes |
|---|
| 738 | ac_cv_header_string_h=yes |
|---|
| 739 | ac_cv_header_strings_h=yes |
|---|
| 740 | ac_cv_header_sys_stat_h=yes |
|---|
| 741 | ac_cv_header_sys_types_h=yes |
|---|
| 742 | ac_cv_header_unistd_h=yes |
|---|
| 743 | ac_cv_host=armv4tl-softfloat-linux-gnueabi |
|---|
| 744 | ac_cv_ispeed_offset=13 |
|---|
| 745 | ac_cv_lib_png_png_create_info_struct=yes |
|---|
| 746 | ac_cv_libgcrypt=no |
|---|
| 747 | ac_cv_libiconv_utf8=yes |
|---|
| 748 | ac_cv_linux_vers=2 |
|---|
| 749 | ac_cv_need_trio=no |
|---|
| 750 | ac_cv_objext=o |
|---|
| 751 | ac_cv_path_EGREP='/bin/grep -E' |
|---|
| 752 | ac_cv_path_GREP=/bin/grep |
|---|
| 753 | ac_cv_path_PKG_CONFIG=/usr/bin/armv4tl-softfloat-linux-gnueabi-pkg-config |
|---|
| 754 | ac_cv_path_install='/usr/bin/install -c' |
|---|
| 755 | ac_cv_path_mkdir=/bin/mkdir |
|---|
| 756 | ac_cv_pread=no |
|---|
| 757 | ac_cv_printf_zd_format=yes |
|---|
| 758 | ac_cv_prog_AWK=gawk |
|---|
| 759 | ac_cv_prog_CC=armv4tl-softfloat-linux-gnueabi-gcc |
|---|
| 760 | ac_cv_prog_CPP='armv4tl-softfloat-linux-gnueabi-gcc -E' |
|---|
| 761 | ac_cv_prog_CXX=armv4tl-softfloat-linux-gnueabi-g++ |
|---|
| 762 | ac_cv_prog_RANLIB=armv4tl-softfloat-linux-gnueabi-ranlib |
|---|
| 763 | ac_cv_prog_STRIP=armv4tl-softfloat-linux-gnueabi-strip |
|---|
| 764 | ac_cv_prog_cc_c89= |
|---|
| 765 | ac_cv_prog_cc_c99=-std=gnu99 |
|---|
| 766 | ac_cv_prog_cc_g=yes |
|---|
| 767 | ac_cv_prog_cc_stdc=-std=gnu99 |
|---|
| 768 | ac_cv_prog_cxx_g=yes |
|---|
| 769 | ac_cv_prog_make_make_set=yes |
|---|
| 770 | ac_cv_pwrite=no |
|---|
| 771 | ac_cv_regexec_segfault_emptystr=no |
|---|
| 772 | ac_cv_safe_to_define___extensions__=yes |
|---|
| 773 | ac_cv_sctp=no |
|---|
| 774 | ac_cv_sizeof___int64=0 |
|---|
| 775 | ac_cv_sizeof_char=1 |
|---|
| 776 | ac_cv_sizeof_int16_t=2 |
|---|
| 777 | ac_cv_sizeof_int32_t=4 |
|---|
| 778 | ac_cv_sizeof_int64_t=8 |
|---|
| 779 | ac_cv_sizeof_int=4 |
|---|
| 780 | ac_cv_sizeof_long=4 |
|---|
| 781 | ac_cv_sizeof_long_int=4 |
|---|
| 782 | ac_cv_sizeof_long_long=8 |
|---|
| 783 | ac_cv_sizeof_off_t=4 |
|---|
| 784 | ac_cv_sizeof_short=2 |
|---|
| 785 | ac_cv_sizeof_short_int=2 |
|---|
| 786 | ac_cv_sizeof_size_t=4 |
|---|
| 787 | ac_cv_sizeof_ssize_t=4 |
|---|
| 788 | ac_cv_sizeof_u_int16_t=2 |
|---|
| 789 | ac_cv_sizeof_u_int32_t=4 |
|---|
| 790 | ac_cv_sizeof_u_int64_t=8 |
|---|
| 791 | ac_cv_sizeof_uint16_t=2 |
|---|
| 792 | ac_cv_sizeof_uint32_t=4 |
|---|
| 793 | ac_cv_sizeof_uint64_t=8 |
|---|
| 794 | ac_cv_sizeof_unsigned_int=4 |
|---|
| 795 | ac_cv_sizeof_unsigned_long=4 |
|---|
| 796 | ac_cv_sizeof_unsigned_short=2 |
|---|
| 797 | ac_cv_sizeof_void_p=4 |
|---|
| 798 | ac_cv_sizeof_wchar_t=4 |
|---|
| 799 | ac_cv_strerror_r_SUSv3=no |
|---|
| 800 | ac_cv_sys_largefile_source=no |
|---|
| 801 | ac_cv_sys_restartable_syscalls=yes |
|---|
| 802 | ac_cv_time_r_type=POSIX |
|---|
| 803 | ac_cv_uchar=no |
|---|
| 804 | ac_cv_uint=yes |
|---|
| 805 | ac_cv_ulong=yes |
|---|
| 806 | ac_cv_ushort=yes |
|---|
| 807 | ac_cv_va_copy=yes |
|---|
| 808 | ac_cv_va_val_copy=yes |
|---|
| 809 | acl_cv_hardcode_direct=no |
|---|
| 810 | acl_cv_hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' |
|---|
| 811 | acl_cv_hardcode_libdir_separator= |
|---|
| 812 | acl_cv_hardcode_minus_L=no |
|---|
| 813 | acl_cv_libext=a |
|---|
| 814 | acl_cv_libname_spec='lib$name' |
|---|
| 815 | acl_cv_library_names_spec='$libname$shrext' |
|---|
| 816 | acl_cv_path_LD=/usr/libexec/gcc/armv4tl-softfloat-linux-gnueabi/ld |
|---|
| 817 | acl_cv_prog_gnu_ld=yes |
|---|
| 818 | acl_cv_rpath=done |
|---|
| 819 | acl_cv_shlibext=so |
|---|
| 820 | acl_cv_wl=-Wl, |
|---|
| 821 | am_cv_CC_dependencies_compiler_type=gcc3 |
|---|
| 822 | am_cv_CXX_dependencies_compiler_type=gcc3 |
|---|
| 823 | am_cv_func_working_getline=yes |
|---|
| 824 | apr_cv_process_shared_works=no |
|---|
| 825 | apr_cv_tcp_nodelay_with_cork=yes |
|---|
| 826 | as_cv_unaligned_access=no |
|---|
| 827 | bash_cv_dup2_broken=no |
|---|
| 828 | bash_cv_func_sigsetjmp=missing |
|---|
| 829 | bash_cv_func_strcoll_broken=no |
|---|
| 830 | bash_cv_getcwd_calls_popen=no |
|---|
| 831 | bash_cv_getenv_redef=yes |
|---|
| 832 | bash_cv_have_mbstate_t=yes |
|---|
| 833 | bash_cv_job_control_missing=present |
|---|
| 834 | bash_cv_must_reinstall_sighandlers=no |
|---|
| 835 | bash_cv_opendir_not_robust=no |
|---|
| 836 | bash_cv_pgrp_pipe=no |
|---|
| 837 | bash_cv_printf_a_format=yes |
|---|
| 838 | bash_cv_sys_named_pipes=present |
|---|
| 839 | bash_cv_type_rlimit=rlim_t |
|---|
| 840 | bash_cv_ulimit_maxfds=yes |
|---|
| 841 | bash_cv_unusable_rtsigs=no |
|---|
| 842 | compat_cv_func_basename_works=no |
|---|
| 843 | compat_cv_func_dirname_works=no |
|---|
| 844 | compat_cv_func_snprintf_works=yes |
|---|
| 845 | cvs_cv_func_printf_ptr=yes |
|---|
| 846 | db_cv_align_t='unsigned long long' |
|---|
| 847 | db_cv_alignp_t='unsigned long' |
|---|
| 848 | db_cv_fcntl_f_setfd=yes |
|---|
| 849 | db_cv_mutex=no |
|---|
| 850 | db_cv_path_ar=/usr/bin/ar |
|---|
| 851 | db_cv_path_chmod=/bin/chmod |
|---|
| 852 | db_cv_path_cp=/bin/cp |
|---|
| 853 | db_cv_path_ln=/bin/ln |
|---|
| 854 | db_cv_path_mkdir=/bin/mkdir |
|---|
| 855 | db_cv_path_ranlib=/usr/bin/ranlib |
|---|
| 856 | db_cv_path_rm=/bin/rm |
|---|
| 857 | db_cv_path_sh=/bin/sh |
|---|
| 858 | db_cv_path_strip=/usr/bin/strip |
|---|
| 859 | db_cv_posixmutexes=no |
|---|
| 860 | db_cv_spinlocks=no |
|---|
| 861 | db_cv_sprintf_count=yes |
|---|
| 862 | db_cv_uimutexes=no |
|---|
| 863 | dpkg_cv___va_copy=yes |
|---|
| 864 | dpkg_cv_va_copy=yes |
|---|
| 865 | ettercap_cv_type_socklen_t=yes |
|---|
| 866 | fu_cv_sys_stat_statvfs=yes |
|---|
| 867 | gl_cv_func_malloc_0_nonnull=yes |
|---|
| 868 | gl_cv_func_re_compile_pattern_working=yes |
|---|
| 869 | gl_cv_func_rename_trailing_dest_slash_bug=no |
|---|
| 870 | gl_cv_func_rename_trailing_slash_bug=no |
|---|
| 871 | gl_cv_func_wcwidth_works=yes |
|---|
| 872 | glib_cv___va_copy=yes |
|---|
| 873 | glib_cv_has__inline=yes |
|---|
| 874 | glib_cv_has__inline__=yes |
|---|
| 875 | glib_cv_hasinline=yes |
|---|
| 876 | glib_cv_long_long_format=ll |
|---|
| 877 | glib_cv_rtldglobal_broken=no |
|---|
| 878 | glib_cv_sane_realloc=yes |
|---|
| 879 | glib_cv_sizeof_gmutex=40 |
|---|
| 880 | glib_cv_sizeof_intmax_t=8 |
|---|
| 881 | glib_cv_sizeof_ptrdiff_t=4 |
|---|
| 882 | glib_cv_sizeof_size_t=4 |
|---|
| 883 | glib_cv_sizeof_system_thread=4 |
|---|
| 884 | glib_cv_stack_grows=no |
|---|
| 885 | glib_cv_sys_pthread_cond_timedwait_posix=yes |
|---|
| 886 | glib_cv_sys_pthread_getspecific_posix=yes |
|---|
| 887 | glib_cv_sys_pthread_mutex_trylock_posix=yes |
|---|
| 888 | glib_cv_sys_use_pid_niceness_surrogate=yes |
|---|
| 889 | glib_cv_uscore=no |
|---|
| 890 | glib_cv_use_pid_surrogate=yes |
|---|
| 891 | glib_cv_va_copy=yes |
|---|
| 892 | glib_cv_va_val_copy=no |
|---|
| 893 | jm_cv_func_working_readdir=yes |
|---|
| 894 | lf_cv_sane_realloc=yes |
|---|
| 895 | lftp_cv___va_copy=yes |
|---|
| 896 | lftp_cv_va_copy=yes |
|---|
| 897 | lftp_cv_va_val_copy=yes |
|---|
| 898 | libIDL_cv_long_long_format=ll |
|---|
| 899 | mr_cv_target_elf=yes |
|---|
| 900 | mysql_cv_func_atomic_add=no |
|---|
| 901 | mysql_cv_func_atomic_sub=no |
|---|
| 902 | nano_cv_func_regexec_segv_emptystr=no |
|---|
| 903 | php_cv_lib_cookie_io_functions_use_off64_t=yes |
|---|
| 904 | racoon_cv_bug_getaddrinfo=no |
|---|
| 905 | rsync_cv_HAVE_BROKEN_LARGEFILE=no |
|---|
| 906 | rsync_cv_HAVE_BROKEN_READDIR=no |
|---|
| 907 | rsync_cv_HAVE_C99_VSNPRINTF=yes |
|---|
| 908 | rsync_cv_HAVE_GETTIMEOFDAY_TZ=yes |
|---|
| 909 | rsync_cv_HAVE_LONGLONG=yes |
|---|
| 910 | rsync_cv_HAVE_OFF64_T=no |
|---|
| 911 | rsync_cv_HAVE_SECURE_MKSTEMP=yes |
|---|
| 912 | rsync_cv_HAVE_SHORT_INO_T=no |
|---|
| 913 | rsync_cv_HAVE_SOCKETPAIR=yes |
|---|
| 914 | rsync_cv_HAVE_UNSIGNED_CHAR=no |
|---|
| 915 | rsync_cv_REPLACE_INET_ATON=no |
|---|
| 916 | rsync_cv_REPLACE_INET_NTOA=no |
|---|
| 917 | sc_cv_termios_ispeed=yes |
|---|
| 918 | screen_cv_sys_bcopy_overlap=no |
|---|
| 919 | screen_cv_sys_fifo_broken_impl=yes |
|---|
| 920 | screen_cv_sys_fifo_usable=yes |
|---|
| 921 | screen_cv_sys_memcpy_overlap=no |
|---|
| 922 | screen_cv_sys_memmove_overlap=no |
|---|
| 923 | screen_cv_sys_select_broken_retval=no |
|---|
| 924 | screen_cv_sys_sockets_nofs=no |
|---|
| 925 | screen_cv_sys_sockets_usable=yes |
|---|
| 926 | screen_cv_sys_terminfo_used=yes |
|---|
| 927 | slrn_cv___va_copy=yes |
|---|
| 928 | slrn_cv_va_copy=yes |
|---|
| 929 | slrn_cv_va_val_copy=yes |
|---|
| 930 | sudo_cv_uid_t_len=10 |
|---|
| 931 | utils_cv_sys_open_max=1019 |
|---|
| 932 | vim_cv_getcwd_broken=no |
|---|
| 933 | vim_cv_memmove_handles_overlap=yes |
|---|
| 934 | vim_cv_stat_ignores_slash=yes |
|---|
| 935 | vim_cv_terminfo=yes |
|---|
| 936 | vim_cv_toupper_broken=no |
|---|
| 937 | vim_cv_tty_group=world |
|---|
| 938 | yeti_cv_func_scanf_modif_size_t=z |
|---|
| 939 | |
|---|
| 940 | ## ----------------- ## |
|---|
| 941 | ## Output variables. ## |
|---|
| 942 | ## ----------------- ## |
|---|
| 943 | |
|---|
| 944 | ACLOCAL='${SHELL} /var/tmp/portage/net-libs/gnutls-2.8.1/work/gnutls-2.8.1/build-aux/missing --run aclocal-1.10' |
|---|
| 945 | ALLOCA='' |
|---|
| 946 | ALLOCA_H='' |
|---|
| 947 | AMDEPBACKSLASH='\' |
|---|
| 948 | AMDEP_FALSE='#' |
|---|
| 949 | AMDEP_TRUE='' |
|---|
| 950 | AMTAR='${SHELL} /var/tmp/portage/net-libs/gnutls-2.8.1/work/gnutls-2.8.1/build-aux/missing --run tar' |
|---|
| 951 | APPLE_UNIVERSAL_BUILD='' |
|---|
| 952 | AR='' |
|---|
| 953 | ARPA_INET_H='' |
|---|
| 954 | AS='' |
|---|
| 955 | AUTOCONF='${SHELL} /var/tmp/portage/net-libs/gnutls-2.8.1/work/gnutls-2.8.1/build-aux/missing --run autoconf' |
|---|
| 956 | AUTOHEADER='${SHELL} /var/tmp/portage/net-libs/gnutls-2.8.1/work/gnutls-2.8.1/build-aux/missing --run autoheader' |
|---|
| 957 | AUTOMAKE='${SHELL} /var/tmp/portage/net-libs/gnutls-2.8.1/work/gnutls-2.8.1/build-aux/missing --run automake-1.10' |
|---|
| 958 | AWK='gawk' |
|---|
| 959 | BITSIZEOF_PTRDIFF_T='' |
|---|
| 960 | BITSIZEOF_SIG_ATOMIC_T='' |
|---|
| 961 | BITSIZEOF_SIZE_T='' |
|---|
| 962 | BITSIZEOF_WCHAR_T='' |
|---|
| 963 | BITSIZEOF_WINT_T='' |
|---|
| 964 | CC='armv4tl-softfloat-linux-gnueabi-gcc -std=gnu99' |
|---|
| 965 | CCDEPMODE='depmode=gcc3' |
|---|
| 966 | CFLAGS='-Os -pipe -march=armv4t -mtune=arm920t' |
|---|
| 967 | CPP='armv4tl-softfloat-linux-gnueabi-gcc -E' |
|---|
| 968 | CPPFLAGS='' |
|---|
| 969 | CXX='armv4tl-softfloat-linux-gnueabi-g++' |
|---|
| 970 | CXXCPP='' |
|---|
| 971 | CXXDEPMODE='depmode=gcc3' |
|---|
| 972 | CXXFLAGS='-Os -pipe -march=armv4t -mtune=arm920t' |
|---|
| 973 | CYGPATH_W='echo' |
|---|
| 974 | DEFS='' |
|---|
| 975 | DEPDIR='.deps' |
|---|
| 976 | DLLTOOL='' |
|---|
| 977 | DLL_VERSION='26' |
|---|
| 978 | DSYMUTIL='' |
|---|
| 979 | DUMPBIN='' |
|---|
| 980 | ECHO_C='' |
|---|
| 981 | ECHO_N='-n' |
|---|
| 982 | ECHO_T='' |
|---|
| 983 | EGREP='/bin/grep -E' |
|---|
| 984 | EMULTIHOP_HIDDEN='' |
|---|
| 985 | EMULTIHOP_VALUE='' |
|---|
| 986 | ENABLE_ANON_FALSE='' |
|---|
| 987 | ENABLE_ANON_TRUE='' |
|---|
| 988 | ENABLE_CXX_FALSE='#' |
|---|
| 989 | ENABLE_CXX_TRUE='' |
|---|
| 990 | ENABLE_GTK_DOC_FALSE='' |
|---|
| 991 | ENABLE_GTK_DOC_TRUE='#' |
|---|
| 992 | ENABLE_MINITASN1_FALSE='' |
|---|
| 993 | ENABLE_MINITASN1_TRUE='' |
|---|
| 994 | ENABLE_OPENPGP_FALSE='' |
|---|
| 995 | ENABLE_OPENPGP_TRUE='' |
|---|
| 996 | ENABLE_OPENSSL_FALSE='' |
|---|
| 997 | ENABLE_OPENSSL_TRUE='' |
|---|
| 998 | ENABLE_OPRFI_FALSE='' |
|---|
| 999 | ENABLE_OPRFI_TRUE='' |
|---|
| 1000 | ENABLE_PKI_FALSE='' |
|---|
| 1001 | ENABLE_PKI_TRUE='' |
|---|
| 1002 | ENABLE_PSK_FALSE='' |
|---|
| 1003 | ENABLE_PSK_TRUE='' |
|---|
| 1004 | ENABLE_SRP_FALSE='' |
|---|
| 1005 | ENABLE_SRP_TRUE='' |
|---|
| 1006 | ENOLINK_HIDDEN='' |
|---|
| 1007 | ENOLINK_VALUE='' |
|---|
| 1008 | EOVERFLOW_HIDDEN='' |
|---|
| 1009 | EOVERFLOW_VALUE='' |
|---|
| 1010 | ERRNO_H='' |
|---|
| 1011 | EXEEXT='' |
|---|
| 1012 | FGREP='' |
|---|
| 1013 | FLOAT_H='' |
|---|
| 1014 | GAA='' |
|---|
| 1015 | GETADDRINFO_LIB='' |
|---|
| 1016 | GL_COND_LIBTOOL_FALSE='' |
|---|
| 1017 | GL_COND_LIBTOOL_TRUE='' |
|---|
| 1018 | GNULIB_ACCEPT='' |
|---|
| 1019 | GNULIB_ATOLL='' |
|---|
| 1020 | GNULIB_BIND='' |
|---|
| 1021 | GNULIB_BTOWC='' |
|---|
| 1022 | GNULIB_CALLOC_POSIX='' |
|---|
| 1023 | GNULIB_CHOWN='' |
|---|
| 1024 | GNULIB_CLOSE='' |
|---|
| 1025 | GNULIB_CONNECT='' |
|---|
| 1026 | GNULIB_DPRINTF='' |
|---|
| 1027 | GNULIB_DUP2='' |
|---|
| 1028 | GNULIB_ENVIRON='' |
|---|
| 1029 | GNULIB_EUIDACCESS='' |
|---|
| 1030 | GNULIB_FCHDIR='' |
|---|
| 1031 | GNULIB_FCLOSE='' |
|---|
| 1032 | GNULIB_FFLUSH='' |
|---|
| 1033 | GNULIB_FOPEN='' |
|---|
| 1034 | GNULIB_FPRINTF='' |
|---|
| 1035 | GNULIB_FPRINTF_POSIX='' |
|---|
| 1036 | GNULIB_FPUTC='' |
|---|
| 1037 | GNULIB_FPUTS='' |
|---|
| 1038 | GNULIB_FREOPEN='' |
|---|
| 1039 | GNULIB_FSEEK='' |
|---|
| 1040 | GNULIB_FSEEKO='' |
|---|
| 1041 | GNULIB_FSYNC='' |
|---|
| 1042 | GNULIB_FTELL='' |
|---|
| 1043 | GNULIB_FTELLO='' |
|---|
| 1044 | GNULIB_FTRUNCATE='' |
|---|
| 1045 | GNULIB_FWRITE='' |
|---|
| 1046 | GNULIB_GETADDRINFO='' |
|---|
| 1047 | GNULIB_GETCWD='' |
|---|
| 1048 | GNULIB_GETDELIM='' |
|---|
| 1049 | GNULIB_GETDOMAINNAME='' |
|---|
| 1050 | GNULIB_GETDTABLESIZE='' |
|---|
| 1051 | GNULIB_GETHOSTNAME='' |
|---|
| 1052 | GNULIB_GETLINE='' |
|---|
| 1053 | GNULIB_GETLOADAVG='' |
|---|
| 1054 | GNULIB_GETLOGIN_R='' |
|---|
| 1055 | GNULIB_GETPAGESIZE='' |
|---|
| 1056 | GNULIB_GETPEERNAME='' |
|---|
| 1057 | GNULIB_GETSOCKNAME='' |
|---|
| 1058 | GNULIB_GETSOCKOPT='' |
|---|
| 1059 | GNULIB_GETSUBOPT='' |
|---|
| 1060 | GNULIB_GETUSERSHELL='' |
|---|
| 1061 | GNULIB_INET_NTOP='' |
|---|
| 1062 | GNULIB_INET_PTON='' |
|---|
| 1063 | GNULIB_IOCTL='' |
|---|
| 1064 | GNULIB_LCHMOD='' |
|---|
| 1065 | GNULIB_LCHOWN='' |
|---|
| 1066 | GNULIB_LINK='' |
|---|
| 1067 | GNULIB_LISTEN='' |
|---|
| 1068 | GNULIB_LSEEK='' |
|---|
| 1069 | GNULIB_LSTAT='' |
|---|
| 1070 | GNULIB_MALLOC_POSIX='' |
|---|
| 1071 | GNULIB_MBRLEN='' |
|---|
| 1072 | GNULIB_MBRTOWC='' |
|---|
| 1073 | GNULIB_MBSCASECMP='' |
|---|
| 1074 | GNULIB_MBSCASESTR='' |
|---|
| 1075 | GNULIB_MBSCHR='' |
|---|
| 1076 | GNULIB_MBSCSPN='' |
|---|
| 1077 | GNULIB_MBSINIT='' |
|---|
| 1078 | GNULIB_MBSLEN='' |
|---|
| 1079 | GNULIB_MBSNCASECMP='' |
|---|
| 1080 | GNULIB_MBSNLEN='' |
|---|
| 1081 | GNULIB_MBSNRTOWCS='' |
|---|
| 1082 | GNULIB_MBSPBRK='' |
|---|
| 1083 | GNULIB_MBSPCASECMP='' |
|---|
| 1084 | GNULIB_MBSRCHR='' |
|---|
| 1085 | GNULIB_MBSRTOWCS='' |
|---|
| 1086 | GNULIB_MBSSEP='' |
|---|
| 1087 | GNULIB_MBSSPN='' |
|---|
| 1088 | GNULIB_MBSSTR='' |
|---|
| 1089 | GNULIB_MBSTOK_R='' |
|---|
| 1090 | GNULIB_MEMMEM='' |
|---|
| 1091 | GNULIB_MEMPCPY='' |
|---|
| 1092 | GNULIB_MEMRCHR='' |
|---|
| 1093 | GNULIB_MKDTEMP='' |
|---|
| 1094 | GNULIB_MKSTEMP='' |
|---|
| 1095 | GNULIB_OBSTACK_PRINTF='' |
|---|
| 1096 | GNULIB_OBSTACK_PRINTF_POSIX='' |
|---|
| 1097 | GNULIB_PERROR='' |
|---|
| 1098 | GNULIB_PRINTF='' |
|---|
| 1099 | GNULIB_PRINTF_POSIX='' |
|---|
| 1100 | GNULIB_PUTC='' |
|---|
| 1101 | GNULIB_PUTCHAR='' |
|---|
| 1102 | GNULIB_PUTENV='' |
|---|
| 1103 | GNULIB_PUTS='' |
|---|
| 1104 | GNULIB_RANDOM_R='' |
|---|
| 1105 | GNULIB_RAWMEMCHR='' |
|---|
| 1106 | GNULIB_READLINK='' |
|---|
| 1107 | GNULIB_REALLOC_POSIX='' |
|---|
| 1108 | GNULIB_RECV='' |
|---|
| 1109 | GNULIB_RECVFROM='' |
|---|
| 1110 | GNULIB_RPMATCH='' |
|---|
| 1111 | GNULIB_SELECT='' |
|---|
| 1112 | GNULIB_SEND='' |
|---|
| 1113 | GNULIB_SENDTO='' |
|---|
| 1114 | GNULIB_SETENV='' |
|---|
| 1115 | GNULIB_SETSOCKOPT='' |
|---|
| 1116 | GNULIB_SHUTDOWN='' |
|---|
| 1117 | GNULIB_SLEEP='' |
|---|
| 1118 | GNULIB_SNPRINTF='' |
|---|
| 1119 | GNULIB_SOCKET='' |
|---|
| 1120 | GNULIB_SPRINTF_POSIX='' |
|---|
| 1121 | GNULIB_STDIO_H_SIGPIPE='' |
|---|
| 1122 | GNULIB_STPCPY='' |
|---|
| 1123 | GNULIB_STPNCPY='' |
|---|
| 1124 | GNULIB_STRCASESTR='' |
|---|
| 1125 | GNULIB_STRCHRNUL='' |
|---|
| 1126 | GNULIB_STRDUP='' |
|---|
| 1127 | GNULIB_STRERROR='' |
|---|
| 1128 | GNULIB_STRNDUP='' |
|---|
| 1129 | GNULIB_STRNLEN='' |
|---|
| 1130 | GNULIB_STRPBRK='' |
|---|
| 1131 | GNULIB_STRSEP='' |
|---|
| 1132 | GNULIB_STRSIGNAL='' |
|---|
| 1133 | GNULIB_STRSTR='' |
|---|
| 1134 | GNULIB_STRTOD='' |
|---|
| 1135 | GNULIB_STRTOK_R='' |
|---|
| 1136 | GNULIB_STRTOLL='' |
|---|
| 1137 | GNULIB_STRTOULL='' |
|---|
| 1138 | GNULIB_STRVERSCMP='' |
|---|
| 1139 | GNULIB_UNISTD_H_SIGPIPE='' |
|---|
| 1140 | GNULIB_UNSETENV='' |
|---|
| 1141 | GNULIB_VASPRINTF='' |
|---|
| 1142 | GNULIB_VDPRINTF='' |
|---|
| 1143 | GNULIB_VFPRINTF='' |
|---|
| 1144 | GNULIB_VFPRINTF_POSIX='' |
|---|
| 1145 | GNULIB_VPRINTF='' |
|---|
| 1146 | GNULIB_VPRINTF_POSIX='' |
|---|
| 1147 | GNULIB_VSNPRINTF='' |
|---|
| 1148 | GNULIB_VSPRINTF_POSIX='' |
|---|
| 1149 | GNULIB_WCRTOMB='' |
|---|
| 1150 | GNULIB_WCSNRTOMBS='' |
|---|
| 1151 | GNULIB_WCSRTOMBS='' |
|---|
| 1152 | GNULIB_WCTOB='' |
|---|
| 1153 | GNULIB_WCWIDTH='' |
|---|
| 1154 | GNULIB_WRITE='' |
|---|
| 1155 | GREP='/bin/grep' |
|---|
| 1156 | GTKDOC_CHECK='' |
|---|
| 1157 | GTKDOC_MKPDF='' |
|---|
| 1158 | GTKDOC_REBASE='true' |
|---|
| 1159 | GTK_DOC_BUILD_HTML_FALSE='#' |
|---|
| 1160 | GTK_DOC_BUILD_HTML_TRUE='' |
|---|
| 1161 | GTK_DOC_BUILD_PDF_FALSE='' |
|---|
| 1162 | GTK_DOC_BUILD_PDF_TRUE='#' |
|---|
| 1163 | GTK_DOC_USE_LIBTOOL_FALSE='' |
|---|
| 1164 | GTK_DOC_USE_LIBTOOL_TRUE='#' |
|---|
| 1165 | GTK_DOC_USE_REBASE_FALSE='#' |
|---|
| 1166 | GTK_DOC_USE_REBASE_TRUE='' |
|---|
| 1167 | GUILE='' |
|---|
| 1168 | GUILE_CFLAGS='' |
|---|
| 1169 | GUILE_CONFIG='' |
|---|
| 1170 | GUILE_LDFLAGS='' |
|---|
| 1171 | GUILE_SITE='' |
|---|
| 1172 | GUILE_TOOLS='' |
|---|
| 1173 | HAVE_ARPA_INET_H='' |
|---|
| 1174 | HAVE_ATOLL='' |
|---|
| 1175 | HAVE_BTOWC='' |
|---|
| 1176 | HAVE_CALLOC_POSIX='' |
|---|
| 1177 | HAVE_DECL_ENVIRON='' |
|---|
| 1178 | HAVE_DECL_FREEADDRINFO='' |
|---|
| 1179 | HAVE_DECL_GAI_STRERROR='' |
|---|
| 1180 | HAVE_DECL_GETADDRINFO='' |
|---|
| 1181 | HAVE_DECL_GETDELIM='' |
|---|
| 1182 | HAVE_DECL_GETLINE='' |
|---|
| 1183 | HAVE_DECL_GETLOADAVG='' |
|---|
| 1184 | HAVE_DECL_GETLOGIN_R='' |
|---|
| 1185 | HAVE_DECL_GETNAMEINFO='' |
|---|
| 1186 | HAVE_DECL_INET_NTOP='' |
|---|
| 1187 | HAVE_DECL_INET_PTON='' |
|---|
| 1188 | HAVE_DECL_MEMMEM='' |
|---|
| 1189 | HAVE_DECL_MEMRCHR='' |
|---|
| 1190 | HAVE_DECL_OBSTACK_PRINTF='' |
|---|
| 1191 | HAVE_DECL_SNPRINTF='' |
|---|
| 1192 | HAVE_DECL_STRDUP='' |
|---|
| 1193 | HAVE_DECL_STRERROR='' |
|---|
| 1194 | HAVE_DECL_STRNDUP='' |
|---|
| 1195 | HAVE_DECL_STRNLEN='' |
|---|
| 1196 | HAVE_DECL_STRSIGNAL='' |
|---|
| 1197 | HAVE_DECL_STRTOK_R='' |
|---|
| 1198 | HAVE_DECL_VSNPRINTF='' |
|---|
| 1199 | HAVE_DECL_WCTOB='' |
|---|
| 1200 | HAVE_DECL_WCWIDTH='' |
|---|
| 1201 | HAVE_DPRINTF='' |
|---|
| 1202 | HAVE_DUP2='' |
|---|
| 1203 | HAVE_EUIDACCESS='' |
|---|
| 1204 | HAVE_FORK_FALSE='' |
|---|
| 1205 | HAVE_FORK_TRUE='' |
|---|
| 1206 | HAVE_FSEEKO='' |
|---|
| 1207 | HAVE_FSYNC='' |
|---|
| 1208 | HAVE_FTELLO='' |
|---|
| 1209 | HAVE_FTRUNCATE='' |
|---|
| 1210 | HAVE_GCC_FALSE='' |
|---|
| 1211 | HAVE_GCC_GNU89_INLINE_OPTION_FALSE='' |
|---|
| 1212 | HAVE_GCC_GNU89_INLINE_OPTION_TRUE='' |
|---|
| 1213 | HAVE_GCC_TRUE='' |
|---|
| 1214 | HAVE_GETDOMAINNAME='' |
|---|
| 1215 | HAVE_GETDTABLESIZE='' |
|---|
| 1216 | HAVE_GETHOSTNAME='' |
|---|
| 1217 | HAVE_GETPAGESIZE='' |
|---|
| 1218 | HAVE_GETSUBOPT='' |
|---|
| 1219 | HAVE_GETUSERSHELL='' |
|---|
| 1220 | HAVE_GUILE_FALSE='' |
|---|
| 1221 | HAVE_GUILE_TRUE='' |
|---|
| 1222 | HAVE_INTTYPES_H='' |
|---|
| 1223 | HAVE_LCHMOD='' |
|---|
| 1224 | HAVE_LIBCFG_FALSE='' |
|---|
| 1225 | HAVE_LIBCFG_TRUE='' |
|---|
| 1226 | HAVE_LIBGCRYPT='no' |
|---|
| 1227 | HAVE_LIBTASN1='' |
|---|
| 1228 | HAVE_LINK='' |
|---|
| 1229 | HAVE_LONG_LONG_INT='' |
|---|
| 1230 | HAVE_LSTAT='' |
|---|
| 1231 | HAVE_MALLOC_POSIX='' |
|---|
| 1232 | HAVE_MBRLEN='' |
|---|
| 1233 | HAVE_MBRTOWC='' |
|---|
| 1234 | HAVE_MBSINIT='' |
|---|
| 1235 | HAVE_MBSNRTOWCS='' |
|---|
| 1236 | HAVE_MBSRTOWCS='' |
|---|
| 1237 | HAVE_MEMPCPY='' |
|---|
| 1238 | HAVE_MKDTEMP='' |
|---|
| 1239 | HAVE_NETDB_H='' |
|---|
| 1240 | HAVE_NETINET_IN_H='' |
|---|
| 1241 | HAVE_OS_H='' |
|---|
| 1242 | HAVE_RANDOM_H='' |
|---|
| 1243 | HAVE_RANDOM_R='' |
|---|
| 1244 | HAVE_RAWMEMCHR='' |
|---|
| 1245 | HAVE_READLINK='' |
|---|
| 1246 | HAVE_REALLOC_POSIX='' |
|---|
| 1247 | HAVE_RPMATCH='' |
|---|
| 1248 | HAVE_SA_FAMILY_T='' |
|---|
| 1249 | HAVE_SETENV='' |
|---|
| 1250 | HAVE_SIGNED_SIG_ATOMIC_T='' |
|---|
| 1251 | HAVE_SIGNED_WCHAR_T='' |
|---|
| 1252 | HAVE_SIGNED_WINT_T='' |
|---|
| 1253 | HAVE_SLEEP='' |
|---|
| 1254 | HAVE_STDINT_H='' |
|---|
| 1255 | HAVE_STPCPY='' |
|---|
| 1256 | HAVE_STPNCPY='' |
|---|
| 1257 | HAVE_STRCASESTR='' |
|---|
| 1258 | HAVE_STRCHRNUL='' |
|---|
| 1259 | HAVE_STRNDUP='' |
|---|
| 1260 | HAVE_STRPBRK='' |
|---|
| 1261 | HAVE_STRSEP='' |
|---|
| 1262 | HAVE_STRTOD='' |
|---|
| 1263 | HAVE_STRTOLL='' |
|---|
| 1264 | HAVE_STRTOULL='' |
|---|
| 1265 | HAVE_STRUCT_ADDRINFO='' |
|---|
| 1266 | HAVE_STRUCT_RANDOM_DATA='' |
|---|
| 1267 | HAVE_STRUCT_SOCKADDR_STORAGE='' |
|---|
| 1268 | HAVE_STRUCT_TIMEVAL='' |
|---|
| 1269 | HAVE_STRVERSCMP='' |
|---|
| 1270 | HAVE_SYS_BITYPES_H='' |
|---|
| 1271 | HAVE_SYS_INTTYPES_H='' |
|---|
| 1272 | HAVE_SYS_IOCTL_H='' |
|---|
| 1273 | HAVE_SYS_LOADAVG_H='' |
|---|
| 1274 | HAVE_SYS_PARAM_H='' |
|---|
| 1275 | HAVE_SYS_SELECT_H='' |
|---|
| 1276 | HAVE_SYS_SOCKET_H='' |
|---|
| 1277 | HAVE_SYS_TIME_H='' |
|---|
| 1278 | HAVE_SYS_TYPES_H='' |
|---|
| 1279 | HAVE_UNISTD_H='' |
|---|
| 1280 | HAVE_UNSETENV='' |
|---|
| 1281 | HAVE_UNSIGNED_LONG_LONG_INT='' |
|---|
| 1282 | HAVE_VASPRINTF='' |
|---|
| 1283 | HAVE_VDPRINTF='' |
|---|
| 1284 | HAVE_WCHAR_H='' |
|---|
| 1285 | HAVE_WCRTOMB='' |
|---|
| 1286 | HAVE_WCSNRTOMBS='' |
|---|
| 1287 | HAVE_WCSRTOMBS='' |
|---|
| 1288 | HAVE_WINSOCK2_H='' |
|---|
| 1289 | HAVE_WINT_T='' |
|---|
| 1290 | HAVE_WS2TCPIP_H='' |
|---|
| 1291 | HAVE__BOOL='' |
|---|
| 1292 | HOSTENT_LIB='' |
|---|
| 1293 | HTML_DIR='${datadir}/gtk-doc/html' |
|---|
| 1294 | INCLUDE_NEXT='' |
|---|
| 1295 | INCLUDE_NEXT_AS_FIRST_DIRECTIVE='' |
|---|
| 1296 | INSTALL_DATA='${INSTALL} -m 644' |
|---|
| 1297 | INSTALL_PROGRAM='${INSTALL}' |
|---|
| 1298 | INSTALL_SCRIPT='${INSTALL}' |
|---|
| 1299 | INSTALL_STRIP_PROGRAM='$(install_sh) -c -s' |
|---|
| 1300 | LD='/usr/libexec/gcc/armv4tl-softfloat-linux-gnueabi/ld' |
|---|
| 1301 | LDFLAGS='-L/usr/armv4tl-softfloat-linux-gnueabi/lib -L/usr/armv4tl-softfloat-linux-gnueabi/usr/lib' |
|---|
| 1302 | LIBGCRYPT='' |
|---|
| 1303 | LIBGCRYPT_PREFIX='' |
|---|
| 1304 | LIBINTL='' |
|---|
| 1305 | LIBOBJS='' |
|---|
| 1306 | LIBREADLINE='' |
|---|
| 1307 | LIBS='' |
|---|
| 1308 | LIBSOCKET='' |
|---|
| 1309 | LIBTASN1='' |
|---|
| 1310 | LIBTASN1_PREFIX='' |
|---|
| 1311 | LIBTESTS_LIBDEPS='' |
|---|
| 1312 | LIBTOOL='' |
|---|
| 1313 | LIPO='' |
|---|
| 1314 | LN_S='ln -s' |
|---|
| 1315 | LTALLOCA='' |
|---|
| 1316 | LTLIBGCRYPT='' |
|---|
| 1317 | LTLIBINTL='' |
|---|
| 1318 | LTLIBOBJS='' |
|---|
| 1319 | LTLIBREADLINE='' |
|---|
| 1320 | LTLIBTASN1='' |
|---|
| 1321 | LT_AGE='14' |
|---|
| 1322 | LT_CURRENT='40' |
|---|
| 1323 | LT_REVISION='8' |
|---|
| 1324 | LZO_LIBS='' |
|---|
| 1325 | MAKEINFO='${SHELL} /var/tmp/portage/net-libs/gnutls-2.8.1/work/gnutls-2.8.1/build-aux/missing --run makeinfo' |
|---|
| 1326 | MKDIR_P='/bin/mkdir -p' |
|---|
| 1327 | NETDB_H='' |
|---|
| 1328 | NETINET_IN_H='' |
|---|
| 1329 | NEXT_ARPA_INET_H='' |
|---|
| 1330 | NEXT_ERRNO_H='' |
|---|
| 1331 | NEXT_FLOAT_H='' |
|---|
| 1332 | NEXT_NETDB_H='' |
|---|
| 1333 | NEXT_NETINET_IN_H='' |
|---|
| 1334 | NEXT_STDARG_H='' |
|---|
| 1335 | NEXT_STDINT_H='' |
|---|
| 1336 | NEXT_STDIO_H='' |
|---|
| 1337 | NEXT_STDLIB_H='' |
|---|
| 1338 | NEXT_STRING_H='' |
|---|
| 1339 | NEXT_SYS_IOCTL_H='' |
|---|
| 1340 | NEXT_SYS_SELECT_H='' |
|---|
| 1341 | NEXT_SYS_SOCKET_H='' |
|---|
| 1342 | NEXT_SYS_STAT_H='' |
|---|
| 1343 | NEXT_SYS_TIME_H='' |
|---|
| 1344 | NEXT_UNISTD_H='' |
|---|
| 1345 | NEXT_WCHAR_H='' |
|---|
| 1346 | NM='' |
|---|
| 1347 | NMEDIT='' |
|---|
| 1348 | OBJDUMP='' |
|---|
| 1349 | OBJEXT='o' |
|---|
| 1350 | OTOOL64='' |
|---|
| 1351 | OTOOL='' |
|---|
| 1352 | PACKAGE='gnutls' |
|---|
| 1353 | PACKAGE_BUGREPORT='bug-gnutls@gnu.org' |
|---|
| 1354 | PACKAGE_NAME='GnuTLS' |
|---|
| 1355 | PACKAGE_STRING='GnuTLS 2.8.1' |
|---|
| 1356 | PACKAGE_TARNAME='gnutls' |
|---|
| 1357 | PACKAGE_VERSION='2.8.1' |
|---|
| 1358 | PATH_SEPARATOR=':' |
|---|
| 1359 | PKG_CONFIG='/usr/bin/armv4tl-softfloat-linux-gnueabi-pkg-config' |
|---|
| 1360 | PMCCABE='' |
|---|
| 1361 | PRAGMA_SYSTEM_HEADER='' |
|---|
| 1362 | PTRDIFF_T_SUFFIX='' |
|---|
| 1363 | RANLIB='armv4tl-softfloat-linux-gnueabi-ranlib' |
|---|
| 1364 | REPLACE_BTOWC='' |
|---|
| 1365 | REPLACE_CHOWN='' |
|---|
| 1366 | REPLACE_CLOSE='' |
|---|
| 1367 | REPLACE_DPRINTF='' |
|---|
| 1368 | REPLACE_FCHDIR='' |
|---|
| 1369 | REPLACE_FCLOSE='' |
|---|
| 1370 | REPLACE_FFLUSH='' |
|---|
| 1371 | REPLACE_FOPEN='' |
|---|
| 1372 | REPLACE_FPRINTF='' |
|---|
| 1373 | REPLACE_FREOPEN='' |
|---|
| 1374 | REPLACE_FSEEK='' |
|---|
| 1375 | REPLACE_FSEEKO='' |
|---|
| 1376 | REPLACE_FTELL='' |
|---|
| 1377 | REPLACE_FTELLO='' |
|---|
| 1378 | REPLACE_GETCWD='' |
|---|
| 1379 | REPLACE_GETLINE='' |
|---|
| 1380 | REPLACE_GETPAGESIZE='' |
|---|
| 1381 | REPLACE_GETTIMEOFDAY='' |
|---|
| 1382 | REPLACE_LCHOWN='' |
|---|
| 1383 | REPLACE_LSEEK='' |
|---|
| 1384 | REPLACE_LSTAT='' |
|---|
| 1385 | REPLACE_MBRLEN='' |
|---|
| 1386 | REPLACE_MBRTOWC='' |
|---|
| 1387 | REPLACE_MBSINIT='' |
|---|
| 1388 | REPLACE_MBSNRTOWCS='' |
|---|
| 1389 | REPLACE_MBSRTOWCS='' |
|---|
| 1390 | REPLACE_MBSTATE_T='' |
|---|
| 1391 | REPLACE_MEMMEM='' |
|---|
| 1392 | REPLACE_MKDIR='' |
|---|
| 1393 | REPLACE_MKSTEMP='' |
|---|
| 1394 | REPLACE_OBSTACK_PRINTF='' |
|---|
| 1395 | REPLACE_PERROR='' |
|---|
| 1396 | REPLACE_PRINTF='' |
|---|
| 1397 | REPLACE_PUTENV='' |
|---|
| 1398 | REPLACE_SELECT='' |
|---|
| 1399 | REPLACE_SNPRINTF='' |
|---|
| 1400 | REPLACE_SPRINTF='' |
|---|
| 1401 | REPLACE_STDIO_WRITE_FUNCS='' |
|---|
| 1402 | REPLACE_STRCASESTR='' |
|---|
| 1403 | REPLACE_STRDUP='' |
|---|
| 1404 | REPLACE_STRERROR='' |
|---|
| 1405 | REPLACE_STRSIGNAL='' |
|---|
| 1406 | REPLACE_STRSTR='' |
|---|
| 1407 | REPLACE_STRTOD='' |
|---|
| 1408 | REPLACE_VASPRINTF='' |
|---|
| 1409 | REPLACE_VDPRINTF='' |
|---|
| 1410 | REPLACE_VFPRINTF='' |
|---|
| 1411 | REPLACE_VPRINTF='' |
|---|
| 1412 | REPLACE_VSNPRINTF='' |
|---|
| 1413 | REPLACE_VSPRINTF='' |
|---|
| 1414 | REPLACE_WCRTOMB='' |
|---|
| 1415 | REPLACE_WCSNRTOMBS='' |
|---|
| 1416 | REPLACE_WCSRTOMBS='' |
|---|
| 1417 | REPLACE_WCTOB='' |
|---|
| 1418 | REPLACE_WCWIDTH='' |
|---|
| 1419 | REPLACE_WRITE='' |
|---|
| 1420 | SED='' |
|---|
| 1421 | SERVENT_LIB='' |
|---|
| 1422 | SET_MAKE='' |
|---|
| 1423 | SHELL='/bin/sh' |
|---|
| 1424 | SIG_ATOMIC_T_SUFFIX='' |
|---|
| 1425 | SIZE_T_SUFFIX='' |
|---|
| 1426 | STDARG_H='' |
|---|
| 1427 | STDBOOL_H='' |
|---|
| 1428 | STDINT_H='' |
|---|
| 1429 | STRIP='armv4tl-softfloat-linux-gnueabi-strip' |
|---|
| 1430 | SYS_IOCTL_H='' |
|---|
| 1431 | SYS_IOCTL_H_HAVE_WINSOCK2_H='' |
|---|
| 1432 | SYS_SELECT_H='' |
|---|
| 1433 | SYS_SOCKET_H='' |
|---|
| 1434 | SYS_STAT_H='' |
|---|
| 1435 | SYS_TIME_H='' |
|---|
| 1436 | UNISTD_H_HAVE_WINSOCK2_H='' |
|---|
| 1437 | USE_LZO_FALSE='' |
|---|
| 1438 | USE_LZO_TRUE='' |
|---|
| 1439 | VALGRIND='' |
|---|
| 1440 | VERSION='2.8.1' |
|---|
| 1441 | VOID_UNSETENV='' |
|---|
| 1442 | WARN_CFLAGS='' |
|---|
| 1443 | WCHAR_H='' |
|---|
| 1444 | WCHAR_T_SUFFIX='' |
|---|
| 1445 | WERROR_CFLAGS='' |
|---|
| 1446 | WINT_T_SUFFIX='' |
|---|
| 1447 | abs_aux_dir='' |
|---|
| 1448 | ac_ct_CC='' |
|---|
| 1449 | ac_ct_CXX='' |
|---|
| 1450 | ac_ct_DUMPBIN='' |
|---|
| 1451 | am__fastdepCC_FALSE='#' |
|---|
| 1452 | am__fastdepCC_TRUE='' |
|---|
| 1453 | am__fastdepCXX_FALSE='#' |
|---|
| 1454 | am__fastdepCXX_TRUE='' |
|---|
| 1455 | am__include='include' |
|---|
| 1456 | am__isrc='' |
|---|
| 1457 | am__leading_dot='.' |
|---|
| 1458 | am__quote='' |
|---|
| 1459 | am__tar='${AMTAR} chof - "$$tardir"' |
|---|
| 1460 | am__untar='${AMTAR} xf -' |
|---|
| 1461 | bindir='${exec_prefix}/bin' |
|---|
| 1462 | build='x86_64-pc-linux-gnu' |
|---|
| 1463 | build_alias='x86_64-pc-linux-gnu' |
|---|
| 1464 | build_cpu='x86_64' |
|---|
| 1465 | build_os='linux-gnu' |
|---|
| 1466 | build_vendor='pc' |
|---|
| 1467 | datadir='/usr/share' |
|---|
| 1468 | datarootdir='${prefix}/share' |
|---|
| 1469 | docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' |
|---|
| 1470 | dvidir='${docdir}' |
|---|
| 1471 | exec_prefix='NONE' |
|---|
| 1472 | gl_LIBOBJS='' |
|---|
| 1473 | gl_LTLIBOBJS='' |
|---|
| 1474 | gltests_LIBOBJS='' |
|---|
| 1475 | gltests_LTLIBOBJS='' |
|---|
| 1476 | guile_snarf='' |
|---|
| 1477 | host='armv4tl-softfloat-linux-gnueabi' |
|---|
| 1478 | host_alias='armv4tl-softfloat-linux-gnueabi' |
|---|
| 1479 | host_cpu='armv4tl' |
|---|
| 1480 | host_os='linux-gnueabi' |
|---|
| 1481 | host_vendor='softfloat' |
|---|
| 1482 | htmldir='/usr/share/doc/gnutls-2.8.1/html' |
|---|
| 1483 | includedir='${prefix}/include' |
|---|
| 1484 | infodir='/usr/share/info' |
|---|
| 1485 | install_sh='$(SHELL) /var/tmp/portage/net-libs/gnutls-2.8.1/work/gnutls-2.8.1/build-aux/install-sh' |
|---|
| 1486 | libdir='${exec_prefix}/lib' |
|---|
| 1487 | libexecdir='${exec_prefix}/libexec' |
|---|
| 1488 | localedir='${datarootdir}/locale' |
|---|
| 1489 | localstatedir='/var/lib' |
|---|
| 1490 | lt_ECHO='echo' |
|---|
| 1491 | mandir='/usr/share/man' |
|---|
| 1492 | mkdir_p='/bin/mkdir -p' |
|---|
| 1493 | oldincludedir='/usr/include' |
|---|
| 1494 | pdfdir='${docdir}' |
|---|
| 1495 | prefix='/usr' |
|---|
| 1496 | program_transform_name='s,x,x,' |
|---|
| 1497 | psdir='${docdir}' |
|---|
| 1498 | sbindir='${exec_prefix}/sbin' |
|---|
| 1499 | sharedstatedir='${prefix}/com' |
|---|
| 1500 | subdirs='' |
|---|
| 1501 | sysconfdir='/etc' |
|---|
| 1502 | target_alias='' |
|---|
| 1503 | |
|---|
| 1504 | ## ----------- ## |
|---|
| 1505 | ## confdefs.h. ## |
|---|
| 1506 | ## ----------- ## |
|---|
| 1507 | |
|---|
| 1508 | #define PACKAGE_NAME "GnuTLS" |
|---|
| 1509 | #define PACKAGE_TARNAME "gnutls" |
|---|
| 1510 | #define PACKAGE_VERSION "2.8.1" |
|---|
| 1511 | #define PACKAGE_STRING "GnuTLS 2.8.1" |
|---|
| 1512 | #define PACKAGE_BUGREPORT "bug-gnutls@gnu.org" |
|---|
| 1513 | #define PACKAGE "gnutls" |
|---|
| 1514 | #define VERSION "2.8.1" |
|---|
| 1515 | #define STDC_HEADERS 1 |
|---|
| 1516 | #define HAVE_SYS_TYPES_H 1 |
|---|
| 1517 | #define HAVE_SYS_STAT_H 1 |
|---|
| 1518 | #define HAVE_STDLIB_H 1 |
|---|
| 1519 | #define HAVE_STRING_H 1 |
|---|
| 1520 | #define HAVE_MEMORY_H 1 |
|---|
| 1521 | #define HAVE_STRINGS_H 1 |
|---|
| 1522 | #define HAVE_INTTYPES_H 1 |
|---|
| 1523 | #define HAVE_STDINT_H 1 |
|---|
| 1524 | #define HAVE_UNISTD_H 1 |
|---|
| 1525 | #define __EXTENSIONS__ 1 |
|---|
| 1526 | #define _ALL_SOURCE 1 |
|---|
| 1527 | #define _GNU_SOURCE 1 |
|---|
| 1528 | #define _POSIX_PTHREAD_SEMANTICS 1 |
|---|
| 1529 | #define _TANDEM_SOURCE 1 |
|---|
| 1530 | #define HAVE_FSEEKO 1 |
|---|
| 1531 | |
|---|
| 1532 | configure: exit 1 |
|---|