| 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 configure, 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 --libdir=/usr/lib --docdir=/usr/share/doc/pam-1.1.0 --htmldir=/usr/share/doc/pam-1.1.0/html --enable-securedir=/lib/security --enable-isadir=/lib/security --enable-nls --disable-selinux --enable-cracklib --disable-audit --disable-debug --disable-db --disable-dependency-tracking --disable-prelude |
|---|
| 8 | |
|---|
| 9 | ## --------- ## |
|---|
| 10 | ## Platform. ## |
|---|
| 11 | ## --------- ## |
|---|
| 12 | |
|---|
| 13 | hostname = brlx0004 |
|---|
| 14 | uname -m = x86_64 |
|---|
| 15 | uname -r = 2.6.29.5 |
|---|
| 16 | uname -s = Linux |
|---|
| 17 | uname -v = #1 SMP PREEMPT Mon Jun 29 15:12:07 CST 2009 |
|---|
| 18 | |
|---|
| 19 | /usr/bin/uname -p = Intel(R) Core(TM)2 CPU T7400 @ 2.16GHz |
|---|
| 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 | |
|---|
| 39 | |
|---|
| 40 | ## ----------- ## |
|---|
| 41 | ## Core tests. ## |
|---|
| 42 | ## ----------- ## |
|---|
| 43 | |
|---|
| 44 | configure:2046: loading site script /usr/share/config.site |
|---|
| 45 | | #!/bin/bash |
|---|
| 46 | | # Copyright 2009 Gentoo Foundation |
|---|
| 47 | | # Distributed under the terms of the GNU General Public License v2 |
|---|
| 48 | | # $Header: /var/cvsroot/gentoo-projects/crossdev-wrappers/site/config.site,v 1.3 2009/03/20 01:25:56 solar Exp $ |
|---|
| 49 | | |
|---|
| 50 | | TOPDIR=/usr/share/crossdev/include/site |
|---|
| 51 | | |
|---|
| 52 | | config_site_arch() { |
|---|
| 53 | | local host=$(echo ${CHOST/-/ } | awk '{print $1}') |
|---|
| 54 | | |
|---|
| 55 | | [[ ${host/arm.*eb/} != ${host} ]] && host=armeb |
|---|
| 56 | | [[ ${host/arm/} != ${host} ]] && [[ ${host} != armeb ]] && host=arm |
|---|
| 57 | | |
|---|
| 58 | | [[ ${host/mips.*el/} != ${host} ]] && host=mipsel |
|---|
| 59 | | |
|---|
| 60 | | #[[ ${host/i[4-5]/6} != ${host} ]] && host=i686 |
|---|
| 61 | | |
|---|
| 62 | | echo ${host} |
|---|
| 63 | | } |
|---|
| 64 | | |
|---|
| 65 | | config_site_names() { |
|---|
| 66 | | local site_arch=$(config_site_arch) |
|---|
| 67 | | local sites="" |
|---|
| 68 | | local x |
|---|
| 69 | | |
|---|
| 70 | | [[ ${CHOST/-linux-/} != $CHOST ]] && sites+=" linux ${site_arch}-linux" |
|---|
| 71 | | [[ ${CHOST/darwin/} != $CHOST ]] && sites+=" darwin ${site_arch}-linux" |
|---|
| 72 | | |
|---|
| 73 | | [[ ${CHOST/-linux-uclibc/} != $CHOST ]] && sites+=" linux-uclibc ${site_arch}-linux-uclibc" |
|---|
| 74 | | [[ ${CHOST/-linux-gnu/} != $CHOST ]] && sites+=" linux-gnu ${site_arch}-linux-gnu" |
|---|
| 75 | | |
|---|
| 76 | | [[ ${CHOST/-linux-uclibceabi/} != $CHOST ]] && sites+=" linux-uclibceabi ${site_arch}-linux-uclibceabi" |
|---|
| 77 | | [[ ${CHOST/-linux-gnueabi/} != $CHOST ]] && sites+=" linux-gnueabi ${site_arch}-linux-gnueabi" |
|---|
| 78 | | |
|---|
| 79 | | for x in ${sites} ${CHOST}; do |
|---|
| 80 | | [[ -e ${TOPDIR}/${x} ]] && echo ${TOPDIR}/${x} |
|---|
| 81 | | done |
|---|
| 82 | | } |
|---|
| 83 | | |
|---|
| 84 | | if [[ ${CHOST} != "" ]]; then |
|---|
| 85 | | sites="$(config_site_names)" |
|---|
| 86 | | if [[ ${sites} != "" ]]; then |
|---|
| 87 | | for site in ${sites}; do |
|---|
| 88 | | echo "$(basename $0): loading site script ${site}" |
|---|
| 89 | | . ${site} |
|---|
| 90 | | done |
|---|
| 91 | | fi |
|---|
| 92 | | unset site |
|---|
| 93 | | unset sites |
|---|
| 94 | | fi |
|---|
| 95 | configure:2202: checking for a BSD-compatible install |
|---|
| 96 | configure:2270: result: /usr/bin/install -c |
|---|
| 97 | configure:2281: checking whether build environment is sane |
|---|
| 98 | configure:2324: result: yes |
|---|
| 99 | configure:2349: checking for a thread-safe mkdir -p |
|---|
| 100 | configure:2388: result: /bin/mkdir -p |
|---|
| 101 | configure:2401: checking for gawk |
|---|
| 102 | configure:2417: found /bin/gawk |
|---|
| 103 | configure:2428: result: gawk |
|---|
| 104 | configure:2439: checking whether make sets $(MAKE) |
|---|
| 105 | configure:2461: result: yes |
|---|
| 106 | configure:2541: checking for armv4tl-softfloat-linux-gnueabi-strip |
|---|
| 107 | configure:2557: found /usr/bin/armv4tl-softfloat-linux-gnueabi-strip |
|---|
| 108 | configure:2568: result: armv4tl-softfloat-linux-gnueabi-strip |
|---|
| 109 | configure:2655: checking build system type |
|---|
| 110 | configure:2673: result: x86_64-pc-linux-gnu |
|---|
| 111 | configure:2695: checking host system type |
|---|
| 112 | configure:2710: result: armv4tl-softfloat-linux-gnueabi |
|---|
| 113 | configure:2925: checking for style of include used by make |
|---|
| 114 | configure:2953: result: GNU |
|---|
| 115 | configure:2983: checking for armv4tl-softfloat-linux-gnueabi-gcc |
|---|
| 116 | configure:2999: found /usr/bin/armv4tl-softfloat-linux-gnueabi-gcc |
|---|
| 117 | configure:3010: result: armv4tl-softfloat-linux-gnueabi-gcc |
|---|
| 118 | configure:3282: checking for C compiler version |
|---|
| 119 | configure:3290: armv4tl-softfloat-linux-gnueabi-gcc --version >&5 |
|---|
| 120 | armv4tl-softfloat-linux-gnueabi-gcc (Gentoo 4.3.2-r4 p1.7, pie-10.1.5) 4.3.2 |
|---|
| 121 | Copyright (C) 2008 Free Software Foundation, Inc. |
|---|
| 122 | This is free software; see the source for copying conditions. There is NO |
|---|
| 123 | warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
|---|
| 124 | |
|---|
| 125 | configure:3294: $? = 0 |
|---|
| 126 | configure:3301: armv4tl-softfloat-linux-gnueabi-gcc -v >&5 |
|---|
| 127 | Using built-in specs. |
|---|
| 128 | Target: armv4tl-softfloat-linux-gnueabi |
|---|
| 129 | 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' |
|---|
| 130 | Thread model: posix |
|---|
| 131 | gcc version 4.3.2 (Gentoo 4.3.2-r4 p1.7, pie-10.1.5) |
|---|
| 132 | configure:3305: $? = 0 |
|---|
| 133 | configure:3312: armv4tl-softfloat-linux-gnueabi-gcc -V >&5 |
|---|
| 134 | armv4tl-softfloat-linux-gnueabi-gcc: '-V' option must have argument |
|---|
| 135 | configure:3316: $? = 1 |
|---|
| 136 | configure:3339: checking for C compiler default output file name |
|---|
| 137 | configure:3361: armv4tl-softfloat-linux-gnueabi-gcc -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -L/usr/armv4tl-softfloat-linux-gnueabi/usr/lib -L/usr/armv4tl-softfloat-linux-gnueabi/lib conftest.c >&5 |
|---|
| 138 | configure:3365: $? = 0 |
|---|
| 139 | configure:3403: result: a.out |
|---|
| 140 | configure:3422: checking whether the C compiler works |
|---|
| 141 | configure:3455: result: yes |
|---|
| 142 | configure:3462: checking whether we are cross compiling |
|---|
| 143 | configure:3464: result: yes |
|---|
| 144 | configure:3467: checking for suffix of executables |
|---|
| 145 | configure:3474: armv4tl-softfloat-linux-gnueabi-gcc -o conftest -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -L/usr/armv4tl-softfloat-linux-gnueabi/usr/lib -L/usr/armv4tl-softfloat-linux-gnueabi/lib conftest.c >&5 |
|---|
| 146 | configure:3478: $? = 0 |
|---|
| 147 | configure:3504: result: |
|---|
| 148 | configure:3510: checking for suffix of object files |
|---|
| 149 | configure:3536: armv4tl-softfloat-linux-gnueabi-gcc -c -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ conftest.c >&5 |
|---|
| 150 | configure:3540: $? = 0 |
|---|
| 151 | configure:3565: result: o |
|---|
| 152 | configure:3569: checking whether we are using the GNU C compiler |
|---|
| 153 | configure:3598: armv4tl-softfloat-linux-gnueabi-gcc -c -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ conftest.c >&5 |
|---|
| 154 | configure:3605: $? = 0 |
|---|
| 155 | configure:3622: result: yes |
|---|
| 156 | configure:3631: checking whether armv4tl-softfloat-linux-gnueabi-gcc accepts -g |
|---|
| 157 | configure:3661: armv4tl-softfloat-linux-gnueabi-gcc -c -g conftest.c >&5 |
|---|
| 158 | configure:3668: $? = 0 |
|---|
| 159 | configure:3769: result: yes |
|---|
| 160 | configure:3786: checking for armv4tl-softfloat-linux-gnueabi-gcc option to accept ISO C89 |
|---|
| 161 | configure:3860: armv4tl-softfloat-linux-gnueabi-gcc -c -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ conftest.c >&5 |
|---|
| 162 | configure:3867: $? = 0 |
|---|
| 163 | configure:3890: result: none needed |
|---|
| 164 | configure:3910: checking dependency style of armv4tl-softfloat-linux-gnueabi-gcc |
|---|
| 165 | configure:4001: result: none |
|---|
| 166 | configure:4022: checking how to run the C preprocessor |
|---|
| 167 | configure:4062: armv4tl-softfloat-linux-gnueabi-gcc -E conftest.c |
|---|
| 168 | configure:4069: $? = 0 |
|---|
| 169 | configure:4100: armv4tl-softfloat-linux-gnueabi-gcc -E conftest.c |
|---|
| 170 | conftest.c:10:28: error: ac_nonexistent.h: No such file or directory |
|---|
| 171 | configure:4107: $? = 1 |
|---|
| 172 | configure: failed program was: |
|---|
| 173 | | /* confdefs.h. */ |
|---|
| 174 | | #define PACKAGE_NAME "" |
|---|
| 175 | | #define PACKAGE_TARNAME "" |
|---|
| 176 | | #define PACKAGE_VERSION "" |
|---|
| 177 | | #define PACKAGE_STRING "" |
|---|
| 178 | | #define PACKAGE_BUGREPORT "" |
|---|
| 179 | | #define PACKAGE "Linux-PAM" |
|---|
| 180 | | #define VERSION "1.1.0" |
|---|
| 181 | | /* end confdefs.h. */ |
|---|
| 182 | | #include <ac_nonexistent.h> |
|---|
| 183 | configure:4140: result: armv4tl-softfloat-linux-gnueabi-gcc -E |
|---|
| 184 | configure:4169: armv4tl-softfloat-linux-gnueabi-gcc -E conftest.c |
|---|
| 185 | configure:4176: $? = 0 |
|---|
| 186 | configure:4207: armv4tl-softfloat-linux-gnueabi-gcc -E conftest.c |
|---|
| 187 | conftest.c:10:28: error: ac_nonexistent.h: No such file or directory |
|---|
| 188 | configure:4214: $? = 1 |
|---|
| 189 | configure: failed program was: |
|---|
| 190 | | /* confdefs.h. */ |
|---|
| 191 | | #define PACKAGE_NAME "" |
|---|
| 192 | | #define PACKAGE_TARNAME "" |
|---|
| 193 | | #define PACKAGE_VERSION "" |
|---|
| 194 | | #define PACKAGE_STRING "" |
|---|
| 195 | | #define PACKAGE_BUGREPORT "" |
|---|
| 196 | | #define PACKAGE "Linux-PAM" |
|---|
| 197 | | #define VERSION "1.1.0" |
|---|
| 198 | | /* end confdefs.h. */ |
|---|
| 199 | | #include <ac_nonexistent.h> |
|---|
| 200 | configure:4254: checking for grep that handles long lines and -e |
|---|
| 201 | configure:4314: result: /bin/grep |
|---|
| 202 | configure:4319: checking for egrep |
|---|
| 203 | configure:4383: result: /bin/grep -E |
|---|
| 204 | configure:4388: checking for ANSI C header files |
|---|
| 205 | configure:4418: armv4tl-softfloat-linux-gnueabi-gcc -c -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ conftest.c >&5 |
|---|
| 206 | configure:4425: $? = 0 |
|---|
| 207 | configure:4556: result: yes |
|---|
| 208 | configure:4580: checking for sys/types.h |
|---|
| 209 | configure:4601: armv4tl-softfloat-linux-gnueabi-gcc -c -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ conftest.c >&5 |
|---|
| 210 | configure:4608: $? = 0 |
|---|
| 211 | configure:4625: result: yes |
|---|
| 212 | configure:4580: checking for sys/stat.h |
|---|
| 213 | configure:4601: armv4tl-softfloat-linux-gnueabi-gcc -c -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ conftest.c >&5 |
|---|
| 214 | configure:4608: $? = 0 |
|---|
| 215 | configure:4625: result: yes |
|---|
| 216 | configure:4580: checking for stdlib.h |
|---|
| 217 | configure:4601: armv4tl-softfloat-linux-gnueabi-gcc -c -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ conftest.c >&5 |
|---|
| 218 | configure:4608: $? = 0 |
|---|
| 219 | configure:4625: result: yes |
|---|
| 220 | configure:4580: checking for string.h |
|---|
| 221 | configure:4601: armv4tl-softfloat-linux-gnueabi-gcc -c -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ conftest.c >&5 |
|---|
| 222 | configure:4608: $? = 0 |
|---|
| 223 | configure:4625: result: yes |
|---|
| 224 | configure:4580: checking for memory.h |
|---|
| 225 | configure:4601: armv4tl-softfloat-linux-gnueabi-gcc -c -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ conftest.c >&5 |
|---|
| 226 | configure:4608: $? = 0 |
|---|
| 227 | configure:4625: result: yes |
|---|
| 228 | configure:4580: checking for strings.h |
|---|
| 229 | configure:4601: armv4tl-softfloat-linux-gnueabi-gcc -c -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ conftest.c >&5 |
|---|
| 230 | configure:4608: $? = 0 |
|---|
| 231 | configure:4625: result: yes |
|---|
| 232 | configure:4580: checking for inttypes.h |
|---|
| 233 | configure:4601: armv4tl-softfloat-linux-gnueabi-gcc -c -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ conftest.c >&5 |
|---|
| 234 | configure:4608: $? = 0 |
|---|
| 235 | configure:4625: result: yes |
|---|
| 236 | configure:4580: checking for stdint.h |
|---|
| 237 | configure:4601: armv4tl-softfloat-linux-gnueabi-gcc -c -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ conftest.c >&5 |
|---|
| 238 | configure:4608: $? = 0 |
|---|
| 239 | configure:4625: result: yes |
|---|
| 240 | configure:4580: checking for unistd.h |
|---|
| 241 | configure:4601: armv4tl-softfloat-linux-gnueabi-gcc -c -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ conftest.c >&5 |
|---|
| 242 | configure:4608: $? = 0 |
|---|
| 243 | configure:4625: result: yes |
|---|
| 244 | configure:4650: checking minix/config.h usability |
|---|
| 245 | configure:4667: armv4tl-softfloat-linux-gnueabi-gcc -c -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ conftest.c >&5 |
|---|
| 246 | conftest.c:53:26: error: minix/config.h: No such file or directory |
|---|
| 247 | configure:4674: $? = 1 |
|---|
| 248 | configure: failed program was: |
|---|
| 249 | | /* confdefs.h. */ |
|---|
| 250 | | #define PACKAGE_NAME "" |
|---|
| 251 | | #define PACKAGE_TARNAME "" |
|---|
| 252 | | #define PACKAGE_VERSION "" |
|---|
| 253 | | #define PACKAGE_STRING "" |
|---|
| 254 | | #define PACKAGE_BUGREPORT "" |
|---|
| 255 | | #define PACKAGE "Linux-PAM" |
|---|
| 256 | | #define VERSION "1.1.0" |
|---|
| 257 | | #define STDC_HEADERS 1 |
|---|
| 258 | | #define HAVE_SYS_TYPES_H 1 |
|---|
| 259 | | #define HAVE_SYS_STAT_H 1 |
|---|
| 260 | | #define HAVE_STDLIB_H 1 |
|---|
| 261 | | #define HAVE_STRING_H 1 |
|---|
| 262 | | #define HAVE_MEMORY_H 1 |
|---|
| 263 | | #define HAVE_STRINGS_H 1 |
|---|
| 264 | | #define HAVE_INTTYPES_H 1 |
|---|
| 265 | | #define HAVE_STDINT_H 1 |
|---|
| 266 | | #define HAVE_UNISTD_H 1 |
|---|
| 267 | | /* end confdefs.h. */ |
|---|
| 268 | | #include <stdio.h> |
|---|
| 269 | | #ifdef HAVE_SYS_TYPES_H |
|---|
| 270 | | # include <sys/types.h> |
|---|
| 271 | | #endif |
|---|
| 272 | | #ifdef HAVE_SYS_STAT_H |
|---|
| 273 | | # include <sys/stat.h> |
|---|
| 274 | | #endif |
|---|
| 275 | | #ifdef STDC_HEADERS |
|---|
| 276 | | # include <stdlib.h> |
|---|
| 277 | | # include <stddef.h> |
|---|
| 278 | | #else |
|---|
| 279 | | # ifdef HAVE_STDLIB_H |
|---|
| 280 | | # include <stdlib.h> |
|---|
| 281 | | # endif |
|---|
| 282 | | #endif |
|---|
| 283 | | #ifdef HAVE_STRING_H |
|---|
| 284 | | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H |
|---|
| 285 | | # include <memory.h> |
|---|
| 286 | | # endif |
|---|
| 287 | | # include <string.h> |
|---|
| 288 | | #endif |
|---|
| 289 | | #ifdef HAVE_STRINGS_H |
|---|
| 290 | | # include <strings.h> |
|---|
| 291 | | #endif |
|---|
| 292 | | #ifdef HAVE_INTTYPES_H |
|---|
| 293 | | # include <inttypes.h> |
|---|
| 294 | | #endif |
|---|
| 295 | | #ifdef HAVE_STDINT_H |
|---|
| 296 | | # include <stdint.h> |
|---|
| 297 | | #endif |
|---|
| 298 | | #ifdef HAVE_UNISTD_H |
|---|
| 299 | | # include <unistd.h> |
|---|
| 300 | | #endif |
|---|
| 301 | | #include <minix/config.h> |
|---|
| 302 | configure:4688: result: no |
|---|
| 303 | configure:4692: checking minix/config.h presence |
|---|
| 304 | configure:4707: armv4tl-softfloat-linux-gnueabi-gcc -E conftest.c |
|---|
| 305 | conftest.c:20:26: error: minix/config.h: No such file or directory |
|---|
| 306 | configure:4714: $? = 1 |
|---|
| 307 | configure: failed program was: |
|---|
| 308 | | /* confdefs.h. */ |
|---|
| 309 | | #define PACKAGE_NAME "" |
|---|
| 310 | | #define PACKAGE_TARNAME "" |
|---|
| 311 | | #define PACKAGE_VERSION "" |
|---|
| 312 | | #define PACKAGE_STRING "" |
|---|
| 313 | | #define PACKAGE_BUGREPORT "" |
|---|
| 314 | | #define PACKAGE "Linux-PAM" |
|---|
| 315 | | #define VERSION "1.1.0" |
|---|
| 316 | | #define STDC_HEADERS 1 |
|---|
| 317 | | #define HAVE_SYS_TYPES_H 1 |
|---|
| 318 | | #define HAVE_SYS_STAT_H 1 |
|---|
| 319 | | #define HAVE_STDLIB_H 1 |
|---|
| 320 | | #define HAVE_STRING_H 1 |
|---|
| 321 | | #define HAVE_MEMORY_H 1 |
|---|
| 322 | | #define HAVE_STRINGS_H 1 |
|---|
| 323 | | #define HAVE_INTTYPES_H 1 |
|---|
| 324 | | #define HAVE_STDINT_H 1 |
|---|
| 325 | | #define HAVE_UNISTD_H 1 |
|---|
| 326 | | /* end confdefs.h. */ |
|---|
| 327 | | #include <minix/config.h> |
|---|
| 328 | configure:4728: result: no |
|---|
| 329 | configure:4756: checking for minix/config.h |
|---|
| 330 | configure:4763: result: no |
|---|
| 331 | configure:4794: checking whether it is safe to define __EXTENSIONS__ |
|---|
| 332 | configure:4822: armv4tl-softfloat-linux-gnueabi-gcc -c -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ conftest.c >&5 |
|---|
| 333 | configure:4829: $? = 0 |
|---|
| 334 | configure:4844: result: yes |
|---|
| 335 | configure:4876: checking for armv4tl-softfloat-linux-gnueabi-gcc |
|---|
| 336 | configure:4903: result: armv4tl-softfloat-linux-gnueabi-gcc |
|---|
| 337 | configure:5175: checking for C compiler version |
|---|
| 338 | configure:5183: armv4tl-softfloat-linux-gnueabi-gcc --version >&5 |
|---|
| 339 | armv4tl-softfloat-linux-gnueabi-gcc (Gentoo 4.3.2-r4 p1.7, pie-10.1.5) 4.3.2 |
|---|
| 340 | Copyright (C) 2008 Free Software Foundation, Inc. |
|---|
| 341 | This is free software; see the source for copying conditions. There is NO |
|---|
| 342 | warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
|---|
| 343 | |
|---|
| 344 | configure:5187: $? = 0 |
|---|
| 345 | configure:5194: armv4tl-softfloat-linux-gnueabi-gcc -v >&5 |
|---|
| 346 | Using built-in specs. |
|---|
| 347 | Target: armv4tl-softfloat-linux-gnueabi |
|---|
| 348 | 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' |
|---|
| 349 | Thread model: posix |
|---|
| 350 | gcc version 4.3.2 (Gentoo 4.3.2-r4 p1.7, pie-10.1.5) |
|---|
| 351 | configure:5198: $? = 0 |
|---|
| 352 | configure:5205: armv4tl-softfloat-linux-gnueabi-gcc -V >&5 |
|---|
| 353 | armv4tl-softfloat-linux-gnueabi-gcc: '-V' option must have argument |
|---|
| 354 | configure:5209: $? = 1 |
|---|
| 355 | configure:5212: checking whether we are using the GNU C compiler |
|---|
| 356 | configure:5265: result: yes |
|---|
| 357 | configure:5274: checking whether armv4tl-softfloat-linux-gnueabi-gcc accepts -g |
|---|
| 358 | configure:5412: result: yes |
|---|
| 359 | configure:5429: checking for armv4tl-softfloat-linux-gnueabi-gcc option to accept ISO C89 |
|---|
| 360 | configure:5533: result: none needed |
|---|
| 361 | configure:5553: checking dependency style of armv4tl-softfloat-linux-gnueabi-gcc |
|---|
| 362 | configure:5644: result: none |
|---|
| 363 | configure:5663: checking for bison |
|---|
| 364 | configure:5679: found /usr/bin/bison |
|---|
| 365 | configure:5690: result: bison -y |
|---|
| 366 | configure:5706: checking for flex |
|---|
| 367 | configure:5722: found /usr/bin/flex |
|---|
| 368 | configure:5733: result: flex |
|---|
| 369 | configure:5770: flex conftest.l |
|---|
| 370 | configure:5774: $? = 0 |
|---|
| 371 | configure:5776: checking lex output file root |
|---|
| 372 | configure:5792: result: lex.yy |
|---|
| 373 | configure:5797: checking lex library |
|---|
| 374 | configure:5816: armv4tl-softfloat-linux-gnueabi-gcc -o conftest -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -L/usr/armv4tl-softfloat-linux-gnueabi/usr/lib -L/usr/armv4tl-softfloat-linux-gnueabi/lib conftest.c >&5 |
|---|
| 375 | /usr/armv4tl-softfloat-linux-gnueabi/tmp/portage/sys-libs/pam-1.1.0/temp/ccekZpmO.o: In function `yylex': |
|---|
| 376 | conftest.c:(.text+0x124c): undefined reference to `yywrap' |
|---|
| 377 | conftest.c:(.text+0x156c): undefined reference to `yywrap' |
|---|
| 378 | /usr/armv4tl-softfloat-linux-gnueabi/tmp/portage/sys-libs/pam-1.1.0/temp/ccekZpmO.o: In function `main': |
|---|
| 379 | conftest.c:(.text+0x16d0): undefined reference to `yywrap' |
|---|
| 380 | collect2: ld returned 1 exit status |
|---|
| 381 | configure:5823: $? = 1 |
|---|
| 382 | configure: failed program was: |
|---|
| 383 | | |
|---|
| 384 | | #line 3 "lex.yy.c" |
|---|
| 385 | | |
|---|
| 386 | | #define YY_INT_ALIGNED short int |
|---|
| 387 | | |
|---|
| 388 | | /* A lexical scanner generated by flex */ |
|---|
| 389 | | |
|---|
| 390 | | #define FLEX_SCANNER |
|---|
| 391 | | #define YY_FLEX_MAJOR_VERSION 2 |
|---|
| 392 | | #define YY_FLEX_MINOR_VERSION 5 |
|---|
| 393 | | #define YY_FLEX_SUBMINOR_VERSION 35 |
|---|
| 394 | | #if YY_FLEX_SUBMINOR_VERSION > 0 |
|---|
| 395 | | #define FLEX_BETA |
|---|
| 396 | | #endif |
|---|
| 397 | | |
|---|
| 398 | | /* First, we deal with platform-specific or compiler-specific issues. */ |
|---|
| 399 | | |
|---|
| 400 | | /* begin standard C headers. */ |
|---|
| 401 | | #include <stdio.h> |
|---|
| 402 | | #include <string.h> |
|---|
| 403 | | #include <errno.h> |
|---|
| 404 | | #include <stdlib.h> |
|---|
| 405 | | |
|---|
| 406 | | /* end standard C headers. */ |
|---|
| 407 | | |
|---|
| 408 | | /* flex integer type definitions */ |
|---|
| 409 | | |
|---|
| 410 | | #ifndef FLEXINT_H |
|---|
| 411 | | #define FLEXINT_H |
|---|
| 412 | | |
|---|
| 413 | | /* C99 systems have <inttypes.h>. Non-C99 systems may or may not. */ |
|---|
| 414 | | |
|---|
| 415 | | #if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L |
|---|
| 416 | | |
|---|
| 417 | | /* C99 says to define __STDC_LIMIT_MACROS before including stdint.h, |
|---|
| 418 | | * if you want the limit (max/min) macros for int types. |
|---|
| 419 | | */ |
|---|
| 420 | | #ifndef __STDC_LIMIT_MACROS |
|---|
| 421 | | #define __STDC_LIMIT_MACROS 1 |
|---|
| 422 | | #endif |
|---|
| 423 | | |
|---|
| 424 | | #include <inttypes.h> |
|---|
| 425 | | typedef int8_t flex_int8_t; |
|---|
| 426 | | typedef uint8_t flex_uint8_t; |
|---|
| 427 | | typedef int16_t flex_int16_t; |
|---|
| 428 | | typedef uint16_t flex_uint16_t; |
|---|
| 429 | | typedef int32_t flex_int32_t; |
|---|
| 430 | | typedef uint32_t flex_uint32_t; |
|---|
| 431 | | #else |
|---|
| 432 | | typedef signed char flex_int8_t; |
|---|
| 433 | | typedef short int flex_int16_t; |
|---|
| 434 | | typedef int flex_int32_t; |
|---|
| 435 | | typedef unsigned char flex_uint8_t; |
|---|
| 436 | | typedef unsigned short int flex_uint16_t; |
|---|
| 437 | | typedef unsigned int flex_uint32_t; |
|---|
| 438 | | #endif /* ! C99 */ |
|---|
| 439 | | |
|---|
| 440 | | /* Limits of integral types. */ |
|---|
| 441 | | #ifndef INT8_MIN |
|---|
| 442 | | #define INT8_MIN (-128) |
|---|
| 443 | | #endif |
|---|
| 444 | | #ifndef INT16_MIN |
|---|
| 445 | | #define INT16_MIN (-32767-1) |
|---|
| 446 | | #endif |
|---|
| 447 | | #ifndef INT32_MIN |
|---|
| 448 | | #define INT32_MIN (-2147483647-1) |
|---|
| 449 | | #endif |
|---|
| 450 | | #ifndef INT8_MAX |
|---|
| 451 | | #define INT8_MAX (127) |
|---|
| 452 | | #endif |
|---|
| 453 | | #ifndef INT16_MAX |
|---|
| 454 | | #define INT16_MAX (32767) |
|---|
| 455 | | #endif |
|---|
| 456 | | #ifndef INT32_MAX |
|---|
| 457 | | #define INT32_MAX (2147483647) |
|---|
| 458 | | #endif |
|---|
| 459 | | #ifndef UINT8_MAX |
|---|
| 460 | | #define UINT8_MAX (255U) |
|---|
| 461 | | #endif |
|---|
| 462 | | #ifndef UINT16_MAX |
|---|
| 463 | | #define UINT16_MAX (65535U) |
|---|
| 464 | | #endif |
|---|
| 465 | | #ifndef UINT32_MAX |
|---|
| 466 | | #define UINT32_MAX (4294967295U) |
|---|
| 467 | | #endif |
|---|
| 468 | | |
|---|
| 469 | | #endif /* ! FLEXINT_H */ |
|---|
| 470 | | |
|---|
| 471 | | #ifdef __cplusplus |
|---|
| 472 | | |
|---|
| 473 | | /* The "const" storage-class-modifier is valid. */ |
|---|
| 474 | | #define YY_USE_CONST |
|---|
| 475 | | |
|---|
| 476 | | #else /* ! __cplusplus */ |
|---|
| 477 | | |
|---|
| 478 | | /* C99 requires __STDC__ to be defined as 1. */ |
|---|
| 479 | | #if defined (__STDC__) |
|---|
| 480 | | |
|---|
| 481 | | #define YY_USE_CONST |
|---|
| 482 | | |
|---|
| 483 | | #endif /* defined (__STDC__) */ |
|---|
| 484 | | #endif /* ! __cplusplus */ |
|---|
| 485 | | |
|---|
| 486 | | #ifdef YY_USE_CONST |
|---|
| 487 | | #define yyconst const |
|---|
| 488 | | #else |
|---|
| 489 | | #define yyconst |
|---|
| 490 | | #endif |
|---|
| 491 | | |
|---|
| 492 | | /* Returned upon end-of-file. */ |
|---|
| 493 | | #define YY_NULL 0 |
|---|
| 494 | | |
|---|
| 495 | | /* Promotes a possibly negative, possibly signed char to an unsigned |
|---|
| 496 | | * integer for use as an array index. If the signed char is negative, |
|---|
| 497 | | * we want to instead treat it as an 8-bit unsigned char, hence the |
|---|
| 498 | | * double cast. |
|---|
| 499 | | */ |
|---|
| 500 | | #define YY_SC_TO_UI(c) ((unsigned int) (unsigned char) c) |
|---|
| 501 | | |
|---|
| 502 | | /* Enter a start condition. This macro really ought to take a parameter, |
|---|
| 503 | | * but we do it the disgusting crufty way forced on us by the ()-less |
|---|
| 504 | | * definition of BEGIN. |
|---|
| 505 | | */ |
|---|
| 506 | | #define BEGIN (yy_start) = 1 + 2 * |
|---|
| 507 | | |
|---|
| 508 | | /* Translate the current start state into a value that can be later handed |
|---|
| 509 | | * to BEGIN to return to the state. The YYSTATE alias is for lex |
|---|
| 510 | | * compatibility. |
|---|
| 511 | | */ |
|---|
| 512 | | #define YY_START (((yy_start) - 1) / 2) |
|---|
| 513 | | #define YYSTATE YY_START |
|---|
| 514 | | |
|---|
| 515 | | /* Action number for EOF rule of a given start state. */ |
|---|
| 516 | | #define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1) |
|---|
| 517 | | |
|---|
| 518 | | /* Special action meaning "start processing a new file". */ |
|---|
| 519 | | #define YY_NEW_FILE yyrestart(yyin ) |
|---|
| 520 | | |
|---|
| 521 | | #define YY_END_OF_BUFFER_CHAR 0 |
|---|
| 522 | | |
|---|
| 523 | | /* Size of default input buffer. */ |
|---|
| 524 | | #ifndef YY_BUF_SIZE |
|---|
| 525 | | #define YY_BUF_SIZE 16384 |
|---|
| 526 | | #endif |
|---|
| 527 | | |
|---|
| 528 | | /* The state buf must be large enough to hold one state per character in the main buffer. |
|---|
| 529 | | */ |
|---|
| 530 | | #define YY_STATE_BUF_SIZE ((YY_BUF_SIZE + 2) * sizeof(yy_state_type)) |
|---|
| 531 | | |
|---|
| 532 | | #ifndef YY_TYPEDEF_YY_BUFFER_STATE |
|---|
| 533 | | #define YY_TYPEDEF_YY_BUFFER_STATE |
|---|
| 534 | | typedef struct yy_buffer_state *YY_BUFFER_STATE; |
|---|
| 535 | | #endif |
|---|
| 536 | | |
|---|
| 537 | | extern int yyleng; |
|---|
| 538 | | |
|---|
| 539 | | extern FILE *yyin, *yyout; |
|---|
| 540 | | |
|---|
| 541 | | #define EOB_ACT_CONTINUE_SCAN 0 |
|---|
| 542 | | #define EOB_ACT_END_OF_FILE 1 |
|---|
| 543 | | #define EOB_ACT_LAST_MATCH 2 |
|---|
| 544 | | |
|---|
| 545 | | #define YY_LESS_LINENO(n) |
|---|
| 546 | | |
|---|
| 547 | | /* Return all but the first "n" matched characters back to the input stream. */ |
|---|
| 548 | | #define yyless(n) \ |
|---|
| 549 | | do \ |
|---|
| 550 | | { \ |
|---|
| 551 | | /* Undo effects of setting up yytext. */ \ |
|---|
| 552 | | int yyless_macro_arg = (n); \ |
|---|
| 553 | | YY_LESS_LINENO(yyless_macro_arg);\ |
|---|
| 554 | | *yy_cp = (yy_hold_char); \ |
|---|
| 555 | | YY_RESTORE_YY_MORE_OFFSET \ |
|---|
| 556 | | (yy_c_buf_p) = yy_cp = yy_bp + yyless_macro_arg - YY_MORE_ADJ; \ |
|---|
| 557 | | YY_DO_BEFORE_ACTION; /* set up yytext again */ \ |
|---|
| 558 | | } \ |
|---|
| 559 | | while ( 0 ) |
|---|
| 560 | | |
|---|
| 561 | | #define unput(c) yyunput( c, (yytext_ptr) ) |
|---|
| 562 | | |
|---|
| 563 | | #ifndef YY_TYPEDEF_YY_SIZE_T |
|---|
| 564 | | #define YY_TYPEDEF_YY_SIZE_T |
|---|
| 565 | | typedef size_t yy_size_t; |
|---|
| 566 | | #endif |
|---|
| 567 | | |
|---|
| 568 | | #ifndef YY_STRUCT_YY_BUFFER_STATE |
|---|
| 569 | | #define YY_STRUCT_YY_BUFFER_STATE |
|---|
| 570 | | struct yy_buffer_state |
|---|
| 571 | | { |
|---|
| 572 | | FILE *yy_input_file; |
|---|
| 573 | | |
|---|
| 574 | | char *yy_ch_buf; /* input buffer */ |
|---|
| 575 | | char *yy_buf_pos; /* current position in input buffer */ |
|---|
| 576 | | |
|---|
| 577 | | /* Size of input buffer in bytes, not including room for EOB |
|---|
| 578 | | * characters. |
|---|
| 579 | | */ |
|---|
| 580 | | yy_size_t yy_buf_size; |
|---|
| 581 | | |
|---|
| 582 | | /* Number of characters read into yy_ch_buf, not including EOB |
|---|
| 583 | | * characters. |
|---|
| 584 | | */ |
|---|
| 585 | | int yy_n_chars; |
|---|
| 586 | | |
|---|
| 587 | | /* Whether we "own" the buffer - i.e., we know we created it, |
|---|
| 588 | | * and can realloc() it to grow it, and should free() it to |
|---|
| 589 | | * delete it. |
|---|
| 590 | | */ |
|---|
| 591 | | int yy_is_our_buffer; |
|---|
| 592 | | |
|---|
| 593 | | /* Whether this is an "interactive" input source; if so, and |
|---|
| 594 | | * if we're using stdio for input, then we want to use getc() |
|---|
| 595 | | * instead of fread(), to make sure we stop fetching input after |
|---|
| 596 | | * each newline. |
|---|
| 597 | | */ |
|---|
| 598 | | int yy_is_interactive; |
|---|
| 599 | | |
|---|
| 600 | | /* Whether we're considered to be at the beginning of a line. |
|---|
| 601 | | * If so, '^' rules will be active on the next match, otherwise |
|---|
| 602 | | * not. |
|---|
| 603 | | */ |
|---|
| 604 | | int yy_at_bol; |
|---|
| 605 | | |
|---|
| 606 | | int yy_bs_lineno; /**< The line count. */ |
|---|
| 607 | | int yy_bs_column; /**< The column count. */ |
|---|
| 608 | | |
|---|
| 609 | | /* Whether to try to fill the input buffer when we reach the |
|---|
| 610 | | * end of it. |
|---|
| 611 | | */ |
|---|
| 612 | | int yy_fill_buffer; |
|---|
| 613 | | |
|---|
| 614 | | int yy_buffer_status; |
|---|
| 615 | | |
|---|
| 616 | | #define YY_BUFFER_NEW 0 |
|---|
| 617 | | #define YY_BUFFER_NORMAL 1 |
|---|
| 618 | | /* When an EOF's been seen but there's still some text to process |
|---|
| 619 | | * then we mark the buffer as YY_EOF_PENDING, to indicate that we |
|---|
| 620 | | * shouldn't try reading from the input source any more. We might |
|---|
| 621 | | * still have a bunch of tokens to match, though, because of |
|---|
| 622 | | * possible backing-up. |
|---|
| 623 | | * |
|---|
| 624 | | * When we actually see the EOF, we change the status to "new" |
|---|
| 625 | | * (via yyrestart()), so that the user can continue scanning by |
|---|
| 626 | | * just pointing yyin at a new input file. |
|---|
| 627 | | */ |
|---|
| 628 | | #define YY_BUFFER_EOF_PENDING 2 |
|---|
| 629 | | |
|---|
| 630 | | }; |
|---|
| 631 | | #endif /* !YY_STRUCT_YY_BUFFER_STATE */ |
|---|
| 632 | | |
|---|
| 633 | | /* Stack of input buffers. */ |
|---|
| 634 | | static size_t yy_buffer_stack_top = 0; /**< index of top of stack. */ |
|---|
| 635 | | static size_t yy_buffer_stack_max = 0; /**< capacity of stack. */ |
|---|
| 636 | | static YY_BUFFER_STATE * yy_buffer_stack = 0; /**< Stack as an array. */ |
|---|
| 637 | | |
|---|
| 638 | | /* We provide macros for accessing buffer states in case in the |
|---|
| 639 | | * future we want to put the buffer states in a more general |
|---|
| 640 | | * "scanner state". |
|---|
| 641 | | * |
|---|
| 642 | | * Returns the top of the stack, or NULL. |
|---|
| 643 | | */ |
|---|
| 644 | | #define YY_CURRENT_BUFFER ( (yy_buffer_stack) \ |
|---|
| 645 | | ? (yy_buffer_stack)[(yy_buffer_stack_top)] \ |
|---|
| 646 | | : NULL) |
|---|
| 647 | | |
|---|
| 648 | | /* Same as previous macro, but useful when we know that the buffer stack is not |
|---|
| 649 | | * NULL or when we need an lvalue. For internal use only. |
|---|
| 650 | | */ |
|---|
| 651 | | #define YY_CURRENT_BUFFER_LVALUE (yy_buffer_stack)[(yy_buffer_stack_top)] |
|---|
| 652 | | |
|---|
| 653 | | /* yy_hold_char holds the character lost when yytext is formed. */ |
|---|
| 654 | | static char yy_hold_char; |
|---|
| 655 | | static int yy_n_chars; /* number of characters read into yy_ch_buf */ |
|---|
| 656 | | int yyleng; |
|---|
| 657 | | |
|---|
| 658 | | /* Points to current character in buffer. */ |
|---|
| 659 | | static char *yy_c_buf_p = (char *) 0; |
|---|
| 660 | | static int yy_init = 0; /* whether we need to initialize */ |
|---|
| 661 | | static int yy_start = 0; /* start state number */ |
|---|
| 662 | | |
|---|
| 663 | | /* Flag which is used to allow yywrap()'s to do buffer switches |
|---|
| 664 | | * instead of setting up a fresh yyin. A bit of a hack ... |
|---|
| 665 | | */ |
|---|
| 666 | | static int yy_did_buffer_switch_on_eof; |
|---|
| 667 | | |
|---|
| 668 | | void yyrestart (FILE *input_file ); |
|---|
| 669 | | void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer ); |
|---|
| 670 | | YY_BUFFER_STATE yy_create_buffer (FILE *file,int size ); |
|---|
| 671 | | void yy_delete_buffer (YY_BUFFER_STATE b ); |
|---|
| 672 | | void yy_flush_buffer (YY_BUFFER_STATE b ); |
|---|
| 673 | | void yypush_buffer_state (YY_BUFFER_STATE new_buffer ); |
|---|
| 674 | | void yypop_buffer_state (void ); |
|---|
| 675 | | |
|---|
| 676 | | static void yyensure_buffer_stack (void ); |
|---|
| 677 | | static void yy_load_buffer_state (void ); |
|---|
| 678 | | static void yy_init_buffer (YY_BUFFER_STATE b,FILE *file ); |
|---|
| 679 | | |
|---|
| 680 | | #define YY_FLUSH_BUFFER yy_flush_buffer(YY_CURRENT_BUFFER ) |
|---|
| 681 | | |
|---|
| 682 | | YY_BUFFER_STATE yy_scan_buffer (char *base,yy_size_t size ); |
|---|
| 683 | | YY_BUFFER_STATE yy_scan_string (yyconst char *yy_str ); |
|---|
| 684 | | YY_BUFFER_STATE yy_scan_bytes (yyconst char *bytes,int len ); |
|---|
| 685 | | |
|---|
| 686 | | void *yyalloc (yy_size_t ); |
|---|
| 687 | | void *yyrealloc (void *,yy_size_t ); |
|---|
| 688 | | void yyfree (void * ); |
|---|
| 689 | | |
|---|
| 690 | | #define yy_new_buffer yy_create_buffer |
|---|
| 691 | | |
|---|
| 692 | | #define yy_set_interactive(is_interactive) \ |
|---|
| 693 | | { \ |
|---|
| 694 | | if ( ! YY_CURRENT_BUFFER ){ \ |
|---|
| 695 | | yyensure_buffer_stack (); \ |
|---|
| 696 | | YY_CURRENT_BUFFER_LVALUE = \ |
|---|
| 697 | | yy_create_buffer(yyin,YY_BUF_SIZE ); \ |
|---|
| 698 | | } \ |
|---|
| 699 | | YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \ |
|---|
| 700 | | } |
|---|
| 701 | | |
|---|
| 702 | | #define yy_set_bol(at_bol) \ |
|---|
| 703 | | { \ |
|---|
| 704 | | if ( ! YY_CURRENT_BUFFER ){\ |
|---|
| 705 | | yyensure_buffer_stack (); \ |
|---|
| 706 | | YY_CURRENT_BUFFER_LVALUE = \ |
|---|
| 707 | | yy_create_buffer(yyin,YY_BUF_SIZE ); \ |
|---|
| 708 | | } \ |
|---|
| 709 | | YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol; \ |
|---|
| 710 | | } |
|---|
| 711 | | |
|---|
| 712 | | #define YY_AT_BOL() (YY_CURRENT_BUFFER_LVALUE->yy_at_bol) |
|---|
| 713 | | |
|---|
| 714 | | /* Begin user sect3 */ |
|---|
| 715 | | |
|---|
| 716 | | typedef unsigned char YY_CHAR; |
|---|
| 717 | | |
|---|
| 718 | | FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0; |
|---|
| 719 | | |
|---|
| 720 | | typedef int yy_state_type; |
|---|
| 721 | | |
|---|
| 722 | | extern int yylineno; |
|---|
| 723 | | |
|---|
| 724 | | int yylineno = 1; |
|---|
| 725 | | |
|---|
| 726 | | extern char *yytext; |
|---|
| 727 | | #define yytext_ptr yytext |
|---|
| 728 | | |
|---|
| 729 | | static yy_state_type yy_get_previous_state (void ); |
|---|
| 730 | | static yy_state_type yy_try_NUL_trans (yy_state_type current_state ); |
|---|
| 731 | | static int yy_get_next_buffer (void ); |
|---|
| 732 | | static void yy_fatal_error (yyconst char msg[] ); |
|---|
| 733 | | |
|---|
| 734 | | /* Done after the current pattern has been matched and before the |
|---|
| 735 | | * corresponding action - sets up yytext. |
|---|
| 736 | | */ |
|---|
| 737 | | #define YY_DO_BEFORE_ACTION \ |
|---|
| 738 | | (yytext_ptr) = yy_bp; \ |
|---|
| 739 | | (yytext_ptr) -= (yy_more_len); \ |
|---|
| 740 | | yyleng = (size_t) (yy_cp - (yytext_ptr)); \ |
|---|
| 741 | | (yy_hold_char) = *yy_cp; \ |
|---|
| 742 | | *yy_cp = '\0'; \ |
|---|
| 743 | | (yy_c_buf_p) = yy_cp; |
|---|
| 744 | | |
|---|
| 745 | | #define YY_NUM_RULES 8 |
|---|
| 746 | | #define YY_END_OF_BUFFER 9 |
|---|
| 747 | | /* This struct is not used in this scanner, |
|---|
| 748 | | but its presence is necessary. */ |
|---|
| 749 | | struct yy_trans_info |
|---|
| 750 | | { |
|---|
| 751 | | flex_int32_t yy_verify; |
|---|
| 752 | | flex_int32_t yy_nxt; |
|---|
| 753 | | }; |
|---|
| 754 | | static yyconst flex_int16_t yy_acclist[23] = |
|---|
| 755 | | { 0, |
|---|
| 756 | | 9, 7, 8, 8, 1, 7, 8, 2, 7, 8, |
|---|
| 757 | | 3, 7, 8, 4, 7, 8, 5, 7, 8, 6, |
|---|
| 758 | | 7, 8 |
|---|
| 759 | | } ; |
|---|
| 760 | | |
|---|
| 761 | | static yyconst flex_int16_t yy_accept[14] = |
|---|
| 762 | | { 0, |
|---|
| 763 | | 1, 1, 1, 2, 4, 5, 8, 11, 14, 17, |
|---|
| 764 | | 20, 23, 23 |
|---|
| 765 | | } ; |
|---|
| 766 | | |
|---|
| 767 | | static yyconst flex_int32_t yy_ec[256] = |
|---|
| 768 | | { 0, |
|---|
| 769 | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, |
|---|
| 770 | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
|---|
| 771 | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
|---|
| 772 | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
|---|
| 773 | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
|---|
| 774 | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
|---|
| 775 | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
|---|
| 776 | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
|---|
| 777 | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
|---|
| 778 | | 1, 1, 1, 1, 1, 1, 3, 4, 5, 6, |
|---|
| 779 | | |
|---|
| 780 | | 7, 8, 1, 1, 1, 1, 1, 1, 1, 1, |
|---|
| 781 | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
|---|
| 782 | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
|---|
| 783 | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
|---|
| 784 | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
|---|
| 785 | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
|---|
| 786 | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
|---|
| 787 | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
|---|
| 788 | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
|---|
| 789 | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
|---|
| 790 | | |
|---|
| 791 | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
|---|
| 792 | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
|---|
| 793 | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
|---|
| 794 | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
|---|
| 795 | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, |
|---|
| 796 | | 1, 1, 1, 1, 1 |
|---|
| 797 | | } ; |
|---|
| 798 | | |
|---|
| 799 | | static yyconst flex_int32_t yy_meta[9] = |
|---|
| 800 | | { 0, |
|---|
| 801 | | 1, 1, 1, 1, 1, 1, 1, 1 |
|---|
| 802 | | } ; |
|---|
| 803 | | |
|---|
| 804 | | static yyconst flex_int16_t yy_base[13] = |
|---|
| 805 | | { 0, |
|---|
| 806 | | 0, 0, 9, 10, 10, 10, 10, 10, 10, 10, |
|---|
| 807 | | 10, 10 |
|---|
| 808 | | } ; |
|---|
| 809 | | |
|---|
| 810 | | static yyconst flex_int16_t yy_def[13] = |
|---|
| 811 | | { 0, |
|---|
| 812 | | 12, 1, 12, 12, 12, 12, 12, 12, 12, 12, |
|---|
| 813 | | 12, 0 |
|---|
| 814 | | } ; |
|---|
| 815 | | |
|---|
| 816 | | static yyconst flex_int16_t yy_nxt[19] = |
|---|
| 817 | | { 0, |
|---|
| 818 | | 4, 5, 6, 7, 8, 9, 10, 11, 12, 3, |
|---|
| 819 | | 12, 12, 12, 12, 12, 12, 12, 12 |
|---|
| 820 | | } ; |
|---|
| 821 | | |
|---|
| 822 | | static yyconst flex_int16_t yy_chk[19] = |
|---|
| 823 | | { 0, |
|---|
| 824 | | 1, 1, 1, 1, 1, 1, 1, 1, 3, 12, |
|---|
| 825 | | 12, 12, 12, 12, 12, 12, 12, 12 |
|---|
| 826 | | } ; |
|---|
| 827 | | |
|---|
| 828 | | extern int yy_flex_debug; |
|---|
| 829 | | int yy_flex_debug = 0; |
|---|
| 830 | | |
|---|
| 831 | | static yy_state_type *yy_state_buf=0, *yy_state_ptr=0; |
|---|
| 832 | | static char *yy_full_match; |
|---|
| 833 | | static int yy_lp; |
|---|
| 834 | | #define REJECT \ |
|---|
| 835 | | { \ |
|---|
| 836 | | *yy_cp = (yy_hold_char); /* undo effects of setting up yytext */ \ |
|---|
| 837 | | yy_cp = (yy_full_match); /* restore poss. backed-over text */ \ |
|---|
| 838 | | ++(yy_lp); \ |
|---|
| 839 | | goto find_rule; \ |
|---|
| 840 | | } |
|---|
| 841 | | |
|---|
| 842 | | static int yy_more_flag = 0; |
|---|
| 843 | | static int yy_more_len = 0; |
|---|
| 844 | | #define yymore() ((yy_more_flag) = 1) |
|---|
| 845 | | #define YY_MORE_ADJ (yy_more_len) |
|---|
| 846 | | #define YY_RESTORE_YY_MORE_OFFSET |
|---|
| 847 | | char *yytext; |
|---|
| 848 | | #line 1 "conftest.l" |
|---|
| 849 | | #line 468 "lex.yy.c" |
|---|
| 850 | | |
|---|
| 851 | | #define INITIAL 0 |
|---|
| 852 | | |
|---|
| 853 | | #ifndef YY_NO_UNISTD_H |
|---|
| 854 | | /* Special case for "unistd.h", since it is non-ANSI. We include it way |
|---|
| 855 | | * down here because we want the user's section 1 to have been scanned first. |
|---|
| 856 | | * The user has a chance to override it with an option. |
|---|
| 857 | | */ |
|---|
| 858 | | #include <unistd.h> |
|---|
| 859 | | #endif |
|---|
| 860 | | |
|---|
| 861 | | #ifndef YY_EXTRA_TYPE |
|---|
| 862 | | #define YY_EXTRA_TYPE void * |
|---|
| 863 | | #endif |
|---|
| 864 | | |
|---|
| 865 | | static int yy_init_globals (void ); |
|---|
| 866 | | |
|---|
| 867 | | /* Accessor methods to globals. |
|---|
| 868 | | These are made visible to non-reentrant scanners for convenience. */ |
|---|
| 869 | | |
|---|
| 870 | | int yylex_destroy (void ); |
|---|
| 871 | | |
|---|
| 872 | | int yyget_debug (void ); |
|---|
| 873 | | |
|---|
| 874 | | void yyset_debug (int debug_flag ); |
|---|
| 875 | | |
|---|
| 876 | | YY_EXTRA_TYPE yyget_extra (void ); |
|---|
| 877 | | |
|---|
| 878 | | void yyset_extra (YY_EXTRA_TYPE user_defined ); |
|---|
| 879 | | |
|---|
| 880 | | FILE *yyget_in (void ); |
|---|
| 881 | | |
|---|
| 882 | | void yyset_in (FILE * in_str ); |
|---|
| 883 | | |
|---|
| 884 | | FILE *yyget_out (void ); |
|---|
| 885 | | |
|---|
| 886 | | void yyset_out (FILE * out_str ); |
|---|
| 887 | | |
|---|
| 888 | | int yyget_leng (void ); |
|---|
| 889 | | |
|---|
| 890 | | char *yyget_text (void ); |
|---|
| 891 | | |
|---|
| 892 | | int yyget_lineno (void ); |
|---|
| 893 | | |
|---|
| 894 | | void yyset_lineno (int line_number ); |
|---|
| 895 | | |
|---|
| 896 | | /* Macros after this point can all be overridden by user definitions in |
|---|
| 897 | | * section 1. |
|---|
| 898 | | */ |
|---|
| 899 | | |
|---|
| 900 | | #ifndef YY_SKIP_YYWRAP |
|---|
| 901 | | #ifdef __cplusplus |
|---|
| 902 | | extern "C" int yywrap (void ); |
|---|
| 903 | | #else |
|---|
| 904 | | extern int yywrap (void ); |
|---|
| 905 | | #endif |
|---|
| 906 | | #endif |
|---|
| 907 | | |
|---|
| 908 | | static void yyunput (int c,char *buf_ptr ); |
|---|
| 909 | | |
|---|
| 910 | | #ifndef yytext_ptr |
|---|
| 911 | | static void yy_flex_strncpy (char *,yyconst char *,int ); |
|---|
| 912 | | #endif |
|---|
| 913 | | |
|---|
| 914 | | #ifdef YY_NEED_STRLEN |
|---|
| 915 | | static int yy_flex_strlen (yyconst char * ); |
|---|
| 916 | | #endif |
|---|
| 917 | | |
|---|
| 918 | | #ifndef YY_NO_INPUT |
|---|
| 919 | | |
|---|
| 920 | | #ifdef __cplusplus |
|---|
| 921 | | static int yyinput (void ); |
|---|
| 922 | | #else |
|---|
| 923 | | static int input (void ); |
|---|
| 924 | | #endif |
|---|
| 925 | | |
|---|
| 926 | | #endif |
|---|
| 927 | | |
|---|
| 928 | | /* Amount of stuff to slurp up with each read. */ |
|---|
| 929 | | #ifndef YY_READ_BUF_SIZE |
|---|
| 930 | | #define YY_READ_BUF_SIZE 8192 |
|---|
| 931 | | #endif |
|---|
| 932 | | |
|---|
| 933 | | /* Copy whatever the last rule matched to the standard output. */ |
|---|
| 934 | | #ifndef ECHO |
|---|
| 935 | | /* This used to be an fputs(), but since the string might contain NUL's, |
|---|
| 936 | | * we now use fwrite(). |
|---|
| 937 | | */ |
|---|
| 938 | | #define ECHO fwrite( yytext, yyleng, 1, yyout ) |
|---|
| 939 | | #endif |
|---|
| 940 | | |
|---|
| 941 | | /* Gets input and stuffs it into "buf". number of characters read, or YY_NULL, |
|---|
| 942 | | * is returned in "result". |
|---|
| 943 | | */ |
|---|
| 944 | | #ifndef YY_INPUT |
|---|
| 945 | | #define YY_INPUT(buf,result,max_size) \ |
|---|
| 946 | | if ( YY_CURRENT_BUFFER_LVALUE->yy_is_interactive ) \ |
|---|
| 947 | | { \ |
|---|
| 948 | | int c = '*'; \ |
|---|
| 949 | | int n; \ |
|---|
| 950 | | for ( n = 0; n < max_size && \ |
|---|
| 951 | | (c = getc( yyin )) != EOF && c != '\n'; ++n ) \ |
|---|
| 952 | | buf[n] = (char) c; \ |
|---|
| 953 | | if ( c == '\n' ) \ |
|---|
| 954 | | buf[n++] = (char) c; \ |
|---|
| 955 | | if ( c == EOF && ferror( yyin ) ) \ |
|---|
| 956 | | YY_FATAL_ERROR( "input in flex scanner failed" ); \ |
|---|
| 957 | | result = n; \ |
|---|
| 958 | | } \ |
|---|
| 959 | | else \ |
|---|
| 960 | | { \ |
|---|
| 961 | | errno=0; \ |
|---|
| 962 | | while ( (result = fread(buf, 1, max_size, yyin))==0 && ferror(yyin)) \ |
|---|
| 963 | | { \ |
|---|
| 964 | | if( errno != EINTR) \ |
|---|
| 965 | | { \ |
|---|
| 966 | | YY_FATAL_ERROR( "input in flex scanner failed" ); \ |
|---|
| 967 | | break; \ |
|---|
| 968 | | } \ |
|---|
| 969 | | errno=0; \ |
|---|
| 970 | | clearerr(yyin); \ |
|---|
| 971 | | } \ |
|---|
| 972 | | }\ |
|---|
| 973 | | \ |
|---|
| 974 | | |
|---|
| 975 | | #endif |
|---|
| 976 | | |
|---|
| 977 | | /* No semi-colon after return; correct usage is to write "yyterminate();" - |
|---|
| 978 | | * we don't want an extra ';' after the "return" because that will cause |
|---|
| 979 | | * some compilers to complain about unreachable statements. |
|---|
| 980 | | */ |
|---|
| 981 | | #ifndef yyterminate |
|---|
| 982 | | #define yyterminate() return YY_NULL |
|---|
| 983 | | #endif |
|---|
| 984 | | |
|---|
| 985 | | /* Number of entries by which start-condition stack grows. */ |
|---|
| 986 | | #ifndef YY_START_STACK_INCR |
|---|
| 987 | | #define YY_START_STACK_INCR 25 |
|---|
| 988 | | #endif |
|---|
| 989 | | |
|---|
| 990 | | /* Report a fatal error. */ |
|---|
| 991 | | #ifndef YY_FATAL_ERROR |
|---|
| 992 | | #define YY_FATAL_ERROR(msg) yy_fatal_error( msg ) |
|---|
| 993 | | #endif |
|---|
| 994 | | |
|---|
| 995 | | /* end tables serialization structures and prototypes */ |
|---|
| 996 | | |
|---|
| 997 | | /* Default declaration of generated scanner - a define so the user can |
|---|
| 998 | | * easily add parameters. |
|---|
| 999 | | */ |
|---|
| 1000 | | #ifndef YY_DECL |
|---|
| 1001 | | #define YY_DECL_IS_OURS 1 |
|---|
| 1002 | | |
|---|
| 1003 | | extern int yylex (void); |
|---|
| 1004 | | |
|---|
| 1005 | | #define YY_DECL int yylex (void) |
|---|
| 1006 | | #endif /* !YY_DECL */ |
|---|
| 1007 | | |
|---|
| 1008 | | /* Code executed at the beginning of each rule, after yytext and yyleng |
|---|
| 1009 | | * have been set up. |
|---|
| 1010 | | */ |
|---|
| 1011 | | #ifndef YY_USER_ACTION |
|---|
| 1012 | | #define YY_USER_ACTION |
|---|
| 1013 | | #endif |
|---|
| 1014 | | |
|---|
| 1015 | | /* Code executed at the end of each rule. */ |
|---|
| 1016 | | #ifndef YY_BREAK |
|---|
| 1017 | | #define YY_BREAK break; |
|---|
| 1018 | | #endif |
|---|
| 1019 | | |
|---|
| 1020 | | #define YY_RULE_SETUP \ |
|---|
| 1021 | | YY_USER_ACTION |
|---|
| 1022 | | |
|---|
| 1023 | | /** The main scanner function which does all the work. |
|---|
| 1024 | | */ |
|---|
| 1025 | | YY_DECL |
|---|
| 1026 | | { |
|---|
| 1027 | | register yy_state_type yy_current_state; |
|---|
| 1028 | | register char *yy_cp, *yy_bp; |
|---|
| 1029 | | register int yy_act; |
|---|
| 1030 | | |
|---|
| 1031 | | #line 1 "conftest.l" |
|---|
| 1032 | | |
|---|
| 1033 | | #line 652 "lex.yy.c" |
|---|
| 1034 | | |
|---|
| 1035 | | if ( !(yy_init) ) |
|---|
| 1036 | | { |
|---|
| 1037 | | (yy_init) = 1; |
|---|
| 1038 | | |
|---|
| 1039 | | #ifdef YY_USER_INIT |
|---|
| 1040 | | YY_USER_INIT; |
|---|
| 1041 | | #endif |
|---|
| 1042 | | |
|---|
| 1043 | | /* Create the reject buffer large enough to save one state per allowed character. */ |
|---|
| 1044 | | if ( ! (yy_state_buf) ) |
|---|
| 1045 | | (yy_state_buf) = (yy_state_type *)yyalloc(YY_STATE_BUF_SIZE ); |
|---|
| 1046 | | if ( ! (yy_state_buf) ) |
|---|
| 1047 | | YY_FATAL_ERROR( "out of dynamic memory in yylex()" ); |
|---|
| 1048 | | |
|---|
| 1049 | | if ( ! (yy_start) ) |
|---|
| 1050 | | (yy_start) = 1; /* first start state */ |
|---|
| 1051 | | |
|---|
| 1052 | | if ( ! yyin ) |
|---|
| 1053 | | yyin = stdin; |
|---|
| 1054 | | |
|---|
| 1055 | | if ( ! yyout ) |
|---|
| 1056 | | yyout = stdout; |
|---|
| 1057 | | |
|---|
| 1058 | | if ( ! YY_CURRENT_BUFFER ) { |
|---|
| 1059 | | yyensure_buffer_stack (); |
|---|
| 1060 | | YY_CURRENT_BUFFER_LVALUE = |
|---|
| 1061 | | yy_create_buffer(yyin,YY_BUF_SIZE ); |
|---|
| 1062 | | } |
|---|
| 1063 | | |
|---|
| 1064 | | yy_load_buffer_state( ); |
|---|
| 1065 | | } |
|---|
| 1066 | | |
|---|
| 1067 | | while ( 1 ) /* loops until end-of-file is reached */ |
|---|
| 1068 | | { |
|---|
| 1069 | | (yy_more_len) = 0; |
|---|
| 1070 | | if ( (yy_more_flag) ) |
|---|
| 1071 | | { |
|---|
| 1072 | | (yy_more_len) = (yy_c_buf_p) - (yytext_ptr); |
|---|
| 1073 | | (yy_more_flag) = 0; |
|---|
| 1074 | | } |
|---|
| 1075 | | yy_cp = (yy_c_buf_p); |
|---|
| 1076 | | |
|---|
| 1077 | | /* Support of yytext. */ |
|---|
| 1078 | | *yy_cp = (yy_hold_char); |
|---|
| 1079 | | |
|---|
| 1080 | | /* yy_bp points to the position in yy_ch_buf of the start of |
|---|
| 1081 | | * the current run. |
|---|
| 1082 | | */ |
|---|
| 1083 | | yy_bp = yy_cp; |
|---|
| 1084 | | |
|---|
| 1085 | | yy_current_state = (yy_start); |
|---|
| 1086 | | |
|---|
| 1087 | | (yy_state_ptr) = (yy_state_buf); |
|---|
| 1088 | | *(yy_state_ptr)++ = yy_current_state; |
|---|
| 1089 | | |
|---|
| 1090 | | yy_match: |
|---|
| 1091 | | do |
|---|
| 1092 | | { |
|---|
| 1093 | | register YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)]; |
|---|
| 1094 | | while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) |
|---|
| 1095 | | { |
|---|
| 1096 | | yy_current_state = (int) yy_def[yy_current_state]; |
|---|
| 1097 | | if ( yy_current_state >= 13 ) |
|---|
| 1098 | | yy_c = yy_meta[(unsigned int) yy_c]; |
|---|
| 1099 | | } |
|---|
| 1100 | | yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; |
|---|
| 1101 | | *(yy_state_ptr)++ = yy_current_state; |
|---|
| 1102 | | ++yy_cp; |
|---|
| 1103 | | } |
|---|
| 1104 | | while ( yy_base[yy_current_state] != 10 ); |
|---|
| 1105 | | |
|---|
| 1106 | | yy_find_action: |
|---|
| 1107 | | yy_current_state = *--(yy_state_ptr); |
|---|
| 1108 | | (yy_lp) = yy_accept[yy_current_state]; |
|---|
| 1109 | | find_rule: /* we branch to this label when backing up */ |
|---|
| 1110 | | for ( ; ; ) /* until we find what rule we matched */ |
|---|
| 1111 | | { |
|---|
| 1112 | | if ( (yy_lp) && (yy_lp) < yy_accept[yy_current_state + 1] ) |
|---|
| 1113 | | { |
|---|
| 1114 | | yy_act = yy_acclist[(yy_lp)]; |
|---|
| 1115 | | { |
|---|
| 1116 | | (yy_full_match) = yy_cp; |
|---|
| 1117 | | break; |
|---|
| 1118 | | } |
|---|
| 1119 | | } |
|---|
| 1120 | | --yy_cp; |
|---|
| 1121 | | yy_current_state = *--(yy_state_ptr); |
|---|
| 1122 | | (yy_lp) = yy_accept[yy_current_state]; |
|---|
| 1123 | | } |
|---|
| 1124 | | |
|---|
| 1125 | | YY_DO_BEFORE_ACTION; |
|---|
| 1126 | | |
|---|
| 1127 | | do_action: /* This label is used only to access EOF actions. */ |
|---|
| 1128 | | |
|---|
| 1129 | | switch ( yy_act ) |
|---|
| 1130 | | { /* beginning of action switch */ |
|---|
| 1131 | | case 1: |
|---|
| 1132 | | YY_RULE_SETUP |
|---|
| 1133 | | #line 2 "conftest.l" |
|---|
| 1134 | | { ECHO; } |
|---|
| 1135 | | YY_BREAK |
|---|
| 1136 | | case 2: |
|---|
| 1137 | | YY_RULE_SETUP |
|---|
| 1138 | | #line 3 "conftest.l" |
|---|
| 1139 | | { REJECT; } |
|---|
| 1140 | | YY_BREAK |
|---|
| 1141 | | case 3: |
|---|
| 1142 | | YY_RULE_SETUP |
|---|
| 1143 | | #line 4 "conftest.l" |
|---|
| 1144 | | { yymore (); } |
|---|
| 1145 | | YY_BREAK |
|---|
| 1146 | | case 4: |
|---|
| 1147 | | YY_RULE_SETUP |
|---|
| 1148 | | #line 5 "conftest.l" |
|---|
| 1149 | | { yyless (1); } |
|---|
| 1150 | | YY_BREAK |
|---|
| 1151 | | case 5: |
|---|
| 1152 | | YY_RULE_SETUP |
|---|
| 1153 | | #line 6 "conftest.l" |
|---|
| 1154 | | { yyless (input () != 0); } |
|---|
| 1155 | | YY_BREAK |
|---|
| 1156 | | case 6: |
|---|
| 1157 | | YY_RULE_SETUP |
|---|
| 1158 | | #line 7 "conftest.l" |
|---|
| 1159 | | { unput (yytext[0]); } |
|---|
| 1160 | | YY_BREAK |
|---|
| 1161 | | case 7: |
|---|
| 1162 | | YY_RULE_SETUP |
|---|
| 1163 | | #line 8 "conftest.l" |
|---|
| 1164 | | { BEGIN INITIAL; } |
|---|
| 1165 | | YY_BREAK |
|---|
| 1166 | | case 8: |
|---|
| 1167 | | YY_RULE_SETUP |
|---|
| 1168 | | #line 9 "conftest.l" |
|---|
| 1169 | | ECHO; |
|---|
| 1170 | | YY_BREAK |
|---|
| 1171 | | #line 790 "lex.yy.c" |
|---|
| 1172 | | case YY_STATE_EOF(INITIAL): |
|---|
| 1173 | | yyterminate(); |
|---|
| 1174 | | |
|---|
| 1175 | | case YY_END_OF_BUFFER: |
|---|
| 1176 | | { |
|---|
| 1177 | | /* Amount of text matched not including the EOB char. */ |
|---|
| 1178 | | int yy_amount_of_matched_text = (int) (yy_cp - (yytext_ptr)) - 1; |
|---|
| 1179 | | |
|---|
| 1180 | | /* Undo the effects of YY_DO_BEFORE_ACTION. */ |
|---|
| 1181 | | *yy_cp = (yy_hold_char); |
|---|
| 1182 | | YY_RESTORE_YY_MORE_OFFSET |
|---|
| 1183 | | |
|---|
| 1184 | | if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_NEW ) |
|---|
| 1185 | | { |
|---|
| 1186 | | /* We're scanning a new file or input source. It's |
|---|
| 1187 | | * possible that this happened because the user |
|---|
| 1188 | | * just pointed yyin at a new source and called |
|---|
| 1189 | | * yylex(). If so, then we have to assure |
|---|
| 1190 | | * consistency between YY_CURRENT_BUFFER and our |
|---|
| 1191 | | * globals. Here is the right place to do so, because |
|---|
| 1192 | | * this is the first action (other than possibly a |
|---|
| 1193 | | * back-up) that will match for the new input source. |
|---|
| 1194 | | */ |
|---|
| 1195 | | (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars; |
|---|
| 1196 | | YY_CURRENT_BUFFER_LVALUE->yy_input_file = yyin; |
|---|
| 1197 | | YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_NORMAL; |
|---|
| 1198 | | } |
|---|
| 1199 | | |
|---|
| 1200 | | /* Note that here we test for yy_c_buf_p "<=" to the position |
|---|
| 1201 | | * of the first EOB in the buffer, since yy_c_buf_p will |
|---|
| 1202 | | * already have been incremented past the NUL character |
|---|
| 1203 | | * (since all states make transitions on EOB to the |
|---|
| 1204 | | * end-of-buffer state). Contrast this with the test |
|---|
| 1205 | | * in input(). |
|---|
| 1206 | | */ |
|---|
| 1207 | | if ( (yy_c_buf_p) <= &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] ) |
|---|
| 1208 | | { /* This was really a NUL. */ |
|---|
| 1209 | | yy_state_type yy_next_state; |
|---|
| 1210 | | |
|---|
| 1211 | | (yy_c_buf_p) = (yytext_ptr) + yy_amount_of_matched_text; |
|---|
| 1212 | | |
|---|
| 1213 | | yy_current_state = yy_get_previous_state( ); |
|---|
| 1214 | | |
|---|
| 1215 | | /* Okay, we're now positioned to make the NUL |
|---|
| 1216 | | * transition. We couldn't have |
|---|
| 1217 | | * yy_get_previous_state() go ahead and do it |
|---|
| 1218 | | * for us because it doesn't know how to deal |
|---|
| 1219 | | * with the possibility of jamming (and we don't |
|---|
| 1220 | | * want to build jamming into it because then it |
|---|
| 1221 | | * will run more slowly). |
|---|
| 1222 | | */ |
|---|
| 1223 | | |
|---|
| 1224 | | yy_next_state = yy_try_NUL_trans( yy_current_state ); |
|---|
| 1225 | | |
|---|
| 1226 | | yy_bp = (yytext_ptr) + YY_MORE_ADJ; |
|---|
| 1227 | | |
|---|
| 1228 | | if ( yy_next_state ) |
|---|
| 1229 | | { |
|---|
| 1230 | | /* Consume the NUL. */ |
|---|
| 1231 | | yy_cp = ++(yy_c_buf_p); |
|---|
| 1232 | | yy_current_state = yy_next_state; |
|---|
| 1233 | | goto yy_match; |
|---|
| 1234 | | } |
|---|
| 1235 | | |
|---|
| 1236 | | else |
|---|
| 1237 | | { |
|---|
| 1238 | | yy_cp = (yy_c_buf_p); |
|---|
| 1239 | | goto yy_find_action; |
|---|
| 1240 | | } |
|---|
| 1241 | | } |
|---|
| 1242 | | |
|---|
| 1243 | | else switch ( yy_get_next_buffer( ) ) |
|---|
| 1244 | | { |
|---|
| 1245 | | case EOB_ACT_END_OF_FILE: |
|---|
| 1246 | | { |
|---|
| 1247 | | (yy_did_buffer_switch_on_eof) = 0; |
|---|
| 1248 | | |
|---|
| 1249 | | if ( yywrap( ) ) |
|---|
| 1250 | | { |
|---|
| 1251 | | /* Note: because we've taken care in |
|---|
| 1252 | | * yy_get_next_buffer() to have set up |
|---|
| 1253 | | * yytext, we can now set up |
|---|
| 1254 | | * yy_c_buf_p so that if some total |
|---|
| 1255 | | * hoser (like flex itself) wants to |
|---|
| 1256 | | * call the scanner after we return the |
|---|
| 1257 | | * YY_NULL, it'll still work - another |
|---|
| 1258 | | * YY_NULL will get returned. |
|---|
| 1259 | | */ |
|---|
| 1260 | | (yy_c_buf_p) = (yytext_ptr) + YY_MORE_ADJ; |
|---|
| 1261 | | |
|---|
| 1262 | | yy_act = YY_STATE_EOF(YY_START); |
|---|
| 1263 | | goto do_action; |
|---|
| 1264 | | } |
|---|
| 1265 | | |
|---|
| 1266 | | else |
|---|
| 1267 | | { |
|---|
| 1268 | | if ( ! (yy_did_buffer_switch_on_eof) ) |
|---|
| 1269 | | YY_NEW_FILE; |
|---|
| 1270 | | } |
|---|
| 1271 | | break; |
|---|
| 1272 | | } |
|---|
| 1273 | | |
|---|
| 1274 | | case EOB_ACT_CONTINUE_SCAN: |
|---|
| 1275 | | (yy_c_buf_p) = |
|---|
| 1276 | | (yytext_ptr) + yy_amount_of_matched_text; |
|---|
| 1277 | | |
|---|
| 1278 | | yy_current_state = yy_get_previous_state( ); |
|---|
| 1279 | | |
|---|
| 1280 | | yy_cp = (yy_c_buf_p); |
|---|
| 1281 | | yy_bp = (yytext_ptr) + YY_MORE_ADJ; |
|---|
| 1282 | | goto yy_match; |
|---|
| 1283 | | |
|---|
| 1284 | | case EOB_ACT_LAST_MATCH: |
|---|
| 1285 | | (yy_c_buf_p) = |
|---|
| 1286 | | &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)]; |
|---|
| 1287 | | |
|---|
| 1288 | | yy_current_state = yy_get_previous_state( ); |
|---|
| 1289 | | |
|---|
| 1290 | | yy_cp = (yy_c_buf_p); |
|---|
| 1291 | | yy_bp = (yytext_ptr) + YY_MORE_ADJ; |
|---|
| 1292 | | goto yy_find_action; |
|---|
| 1293 | | } |
|---|
| 1294 | | break; |
|---|
| 1295 | | } |
|---|
| 1296 | | |
|---|
| 1297 | | default: |
|---|
| 1298 | | YY_FATAL_ERROR( |
|---|
| 1299 | | "fatal flex scanner internal error--no action found" ); |
|---|
| 1300 | | } /* end of action switch */ |
|---|
| 1301 | | } /* end of scanning one token */ |
|---|
| 1302 | | } /* end of yylex */ |
|---|
| 1303 | | |
|---|
| 1304 | | /* yy_get_next_buffer - try to read in a new buffer |
|---|
| 1305 | | * |
|---|
| 1306 | | * Returns a code representing an action: |
|---|
| 1307 | | * EOB_ACT_LAST_MATCH - |
|---|
| 1308 | | * EOB_ACT_CONTINUE_SCAN - continue scanning from current position |
|---|
| 1309 | | * EOB_ACT_END_OF_FILE - end of file |
|---|
| 1310 | | */ |
|---|
| 1311 | | static int yy_get_next_buffer (void) |
|---|
| 1312 | | { |
|---|
| 1313 | | register char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf; |
|---|
| 1314 | | register char *source = (yytext_ptr); |
|---|
| 1315 | | register int number_to_move, i; |
|---|
| 1316 | | int ret_val; |
|---|
| 1317 | | |
|---|
| 1318 | | if ( (yy_c_buf_p) > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] ) |
|---|
| 1319 | | YY_FATAL_ERROR( |
|---|
| 1320 | | "fatal flex scanner internal error--end of buffer missed" ); |
|---|
| 1321 | | |
|---|
| 1322 | | if ( YY_CURRENT_BUFFER_LVALUE->yy_fill_buffer == 0 ) |
|---|
| 1323 | | { /* Don't try to fill the buffer, so this is an EOF. */ |
|---|
| 1324 | | if ( (yy_c_buf_p) - (yytext_ptr) - YY_MORE_ADJ == 1 ) |
|---|
| 1325 | | { |
|---|
| 1326 | | /* We matched a single character, the EOB, so |
|---|
| 1327 | | * treat this as a final EOF. |
|---|
| 1328 | | */ |
|---|
| 1329 | | return EOB_ACT_END_OF_FILE; |
|---|
| 1330 | | } |
|---|
| 1331 | | |
|---|
| 1332 | | else |
|---|
| 1333 | | { |
|---|
| 1334 | | /* We matched some text prior to the EOB, first |
|---|
| 1335 | | * process it. |
|---|
| 1336 | | */ |
|---|
| 1337 | | return EOB_ACT_LAST_MATCH; |
|---|
| 1338 | | } |
|---|
| 1339 | | } |
|---|
| 1340 | | |
|---|
| 1341 | | /* Try to read more data. */ |
|---|
| 1342 | | |
|---|
| 1343 | | /* First move last chars to start of buffer. */ |
|---|
| 1344 | | number_to_move = (int) ((yy_c_buf_p) - (yytext_ptr)) - 1; |
|---|
| 1345 | | |
|---|
| 1346 | | for ( i = 0; i < number_to_move; ++i ) |
|---|
| 1347 | | *(dest++) = *(source++); |
|---|
| 1348 | | |
|---|
| 1349 | | if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_EOF_PENDING ) |
|---|
| 1350 | | /* don't do the read, it's not guaranteed to return an EOF, |
|---|
| 1351 | | * just force an EOF |
|---|
| 1352 | | */ |
|---|
| 1353 | | YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars) = 0; |
|---|
| 1354 | | |
|---|
| 1355 | | else |
|---|
| 1356 | | { |
|---|
| 1357 | | int num_to_read = |
|---|
| 1358 | | YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1; |
|---|
| 1359 | | |
|---|
| 1360 | | while ( num_to_read <= 0 ) |
|---|
| 1361 | | { /* Not enough room in the buffer - grow it. */ |
|---|
| 1362 | | |
|---|
| 1363 | | YY_FATAL_ERROR( |
|---|
| 1364 | | "input buffer overflow, can't enlarge buffer because scanner uses REJECT" ); |
|---|
| 1365 | | |
|---|
| 1366 | | } |
|---|
| 1367 | | |
|---|
| 1368 | | if ( num_to_read > YY_READ_BUF_SIZE ) |
|---|
| 1369 | | num_to_read = YY_READ_BUF_SIZE; |
|---|
| 1370 | | |
|---|
| 1371 | | /* Read in more data. */ |
|---|
| 1372 | | YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]), |
|---|
| 1373 | | (yy_n_chars), (size_t) num_to_read ); |
|---|
| 1374 | | |
|---|
| 1375 | | YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars); |
|---|
| 1376 | | } |
|---|
| 1377 | | |
|---|
| 1378 | | if ( (yy_n_chars) == 0 ) |
|---|
| 1379 | | { |
|---|
| 1380 | | if ( number_to_move == YY_MORE_ADJ ) |
|---|
| 1381 | | { |
|---|
| 1382 | | ret_val = EOB_ACT_END_OF_FILE; |
|---|
| 1383 | | yyrestart(yyin ); |
|---|
| 1384 | | } |
|---|
| 1385 | | |
|---|
| 1386 | | else |
|---|
| 1387 | | { |
|---|
| 1388 | | ret_val = EOB_ACT_LAST_MATCH; |
|---|
| 1389 | | YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = |
|---|
| 1390 | | YY_BUFFER_EOF_PENDING; |
|---|
| 1391 | | } |
|---|
| 1392 | | } |
|---|
| 1393 | | |
|---|
| 1394 | | else |
|---|
| 1395 | | ret_val = EOB_ACT_CONTINUE_SCAN; |
|---|
| 1396 | | |
|---|
| 1397 | | if ((yy_size_t) ((yy_n_chars) + number_to_move) > YY_CURRENT_BUFFER_LVALUE->yy_buf_size) { |
|---|
| 1398 | | /* Extend the array by 50%, plus the number we really need. */ |
|---|
| 1399 | | yy_size_t new_size = (yy_n_chars) + number_to_move + ((yy_n_chars) >> 1); |
|---|
| 1400 | | YY_CURRENT_BUFFER_LVALUE->yy_ch_buf = (char *) yyrealloc((void *) YY_CURRENT_BUFFER_LVALUE->yy_ch_buf,new_size ); |
|---|
| 1401 | | if ( ! YY_CURRENT_BUFFER_LVALUE->yy_ch_buf ) |
|---|
| 1402 | | YY_FATAL_ERROR( "out of dynamic memory in yy_get_next_buffer()" ); |
|---|
| 1403 | | } |
|---|
| 1404 | | |
|---|
| 1405 | | (yy_n_chars) += number_to_move; |
|---|
| 1406 | | YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] = YY_END_OF_BUFFER_CHAR; |
|---|
| 1407 | | YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] = YY_END_OF_BUFFER_CHAR; |
|---|
| 1408 | | |
|---|
| 1409 | | (yytext_ptr) = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[0]; |
|---|
| 1410 | | |
|---|
| 1411 | | return ret_val; |
|---|
| 1412 | | } |
|---|
| 1413 | | |
|---|
| 1414 | | /* yy_get_previous_state - get the state just before the EOB char was reached */ |
|---|
| 1415 | | |
|---|
| 1416 | | static yy_state_type yy_get_previous_state (void) |
|---|
| 1417 | | { |
|---|
| 1418 | | register yy_state_type yy_current_state; |
|---|
| 1419 | | register char *yy_cp; |
|---|
| 1420 | | |
|---|
| 1421 | | yy_current_state = (yy_start); |
|---|
| 1422 | | |
|---|
| 1423 | | (yy_state_ptr) = (yy_state_buf); |
|---|
| 1424 | | *(yy_state_ptr)++ = yy_current_state; |
|---|
| 1425 | | |
|---|
| 1426 | | for ( yy_cp = (yytext_ptr) + YY_MORE_ADJ; yy_cp < (yy_c_buf_p); ++yy_cp ) |
|---|
| 1427 | | { |
|---|
| 1428 | | register YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1); |
|---|
| 1429 | | while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) |
|---|
| 1430 | | { |
|---|
| 1431 | | yy_current_state = (int) yy_def[yy_current_state]; |
|---|
| 1432 | | if ( yy_current_state >= 13 ) |
|---|
| 1433 | | yy_c = yy_meta[(unsigned int) yy_c]; |
|---|
| 1434 | | } |
|---|
| 1435 | | yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; |
|---|
| 1436 | | *(yy_state_ptr)++ = yy_current_state; |
|---|
| 1437 | | } |
|---|
| 1438 | | |
|---|
| 1439 | | return yy_current_state; |
|---|
| 1440 | | } |
|---|
| 1441 | | |
|---|
| 1442 | | /* yy_try_NUL_trans - try to make a transition on the NUL character |
|---|
| 1443 | | * |
|---|
| 1444 | | * synopsis |
|---|
| 1445 | | * next_state = yy_try_NUL_trans( current_state ); |
|---|
| 1446 | | */ |
|---|
| 1447 | | static yy_state_type yy_try_NUL_trans (yy_state_type yy_current_state ) |
|---|
| 1448 | | { |
|---|
| 1449 | | register int yy_is_jam; |
|---|
| 1450 | | |
|---|
| 1451 | | register YY_CHAR yy_c = 1; |
|---|
| 1452 | | while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) |
|---|
| 1453 | | { |
|---|
| 1454 | | yy_current_state = (int) yy_def[yy_current_state]; |
|---|
| 1455 | | if ( yy_current_state >= 13 ) |
|---|
| 1456 | | yy_c = yy_meta[(unsigned int) yy_c]; |
|---|
| 1457 | | } |
|---|
| 1458 | | yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c]; |
|---|
| 1459 | | yy_is_jam = (yy_current_state == 12); |
|---|
| 1460 | | if ( ! yy_is_jam ) |
|---|
| 1461 | | *(yy_state_ptr)++ = yy_current_state; |
|---|
| 1462 | | |
|---|
| 1463 | | return yy_is_jam ? 0 : yy_current_state; |
|---|
| 1464 | | } |
|---|
| 1465 | | |
|---|
| 1466 | | static void yyunput (int c, register char * yy_bp ) |
|---|
| 1467 | | { |
|---|
| 1468 | | register char *yy_cp; |
|---|
| 1469 | | |
|---|
| 1470 | | yy_cp = (yy_c_buf_p); |
|---|
| 1471 | | |
|---|
| 1472 | | /* undo effects of setting up yytext */ |
|---|
| 1473 | | *yy_cp = (yy_hold_char); |
|---|
| 1474 | | |
|---|
| 1475 | | if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 ) |
|---|
| 1476 | | { /* need to shift things up to make room */ |
|---|
| 1477 | | /* +2 for EOB chars. */ |
|---|
| 1478 | | register int number_to_move = (yy_n_chars) + 2; |
|---|
| 1479 | | register char *dest = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[ |
|---|
| 1480 | | YY_CURRENT_BUFFER_LVALUE->yy_buf_size + 2]; |
|---|
| 1481 | | register char *source = |
|---|
| 1482 | | &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]; |
|---|
| 1483 | | |
|---|
| 1484 | | while ( source > YY_CURRENT_BUFFER_LVALUE->yy_ch_buf ) |
|---|
| 1485 | | *--dest = *--source; |
|---|
| 1486 | | |
|---|
| 1487 | | yy_cp += (int) (dest - source); |
|---|
| 1488 | | yy_bp += (int) (dest - source); |
|---|
| 1489 | | YY_CURRENT_BUFFER_LVALUE->yy_n_chars = |
|---|
| 1490 | | (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_buf_size; |
|---|
| 1491 | | |
|---|
| 1492 | | if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 ) |
|---|
| 1493 | | YY_FATAL_ERROR( "flex scanner push-back overflow" ); |
|---|
| 1494 | | } |
|---|
| 1495 | | |
|---|
| 1496 | | *--yy_cp = (char) c; |
|---|
| 1497 | | |
|---|
| 1498 | | (yytext_ptr) = yy_bp; |
|---|
| 1499 | | (yy_hold_char) = *yy_cp; |
|---|
| 1500 | | (yy_c_buf_p) = yy_cp; |
|---|
| 1501 | | } |
|---|
| 1502 | | |
|---|
| 1503 | | #ifndef YY_NO_INPUT |
|---|
| 1504 | | #ifdef __cplusplus |
|---|
| 1505 | | static int yyinput (void) |
|---|
| 1506 | | #else |
|---|
| 1507 | | static int input (void) |
|---|
| 1508 | | #endif |
|---|
| 1509 | | |
|---|
| 1510 | | { |
|---|
| 1511 | | int c; |
|---|
| 1512 | | |
|---|
| 1513 | | *(yy_c_buf_p) = (yy_hold_char); |
|---|
| 1514 | | |
|---|
| 1515 | | if ( *(yy_c_buf_p) == YY_END_OF_BUFFER_CHAR ) |
|---|
| 1516 | | { |
|---|
| 1517 | | /* yy_c_buf_p now points to the character we want to return. |
|---|
| 1518 | | * If this occurs *before* the EOB characters, then it's a |
|---|
| 1519 | | * valid NUL; if not, then we've hit the end of the buffer. |
|---|
| 1520 | | */ |
|---|
| 1521 | | if ( (yy_c_buf_p) < &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] ) |
|---|
| 1522 | | /* This was really a NUL. */ |
|---|
| 1523 | | *(yy_c_buf_p) = '\0'; |
|---|
| 1524 | | |
|---|
| 1525 | | else |
|---|
| 1526 | | { /* need more input */ |
|---|
| 1527 | | int offset = (yy_c_buf_p) - (yytext_ptr); |
|---|
| 1528 | | ++(yy_c_buf_p); |
|---|
| 1529 | | |
|---|
| 1530 | | switch ( yy_get_next_buffer( ) ) |
|---|
| 1531 | | { |
|---|
| 1532 | | case EOB_ACT_LAST_MATCH: |
|---|
| 1533 | | /* This happens because yy_g_n_b() |
|---|
| 1534 | | * sees that we've accumulated a |
|---|
| 1535 | | * token and flags that we need to |
|---|
| 1536 | | * try matching the token before |
|---|
| 1537 | | * proceeding. But for input(), |
|---|
| 1538 | | * there's no matching to consider. |
|---|
| 1539 | | * So convert the EOB_ACT_LAST_MATCH |
|---|
| 1540 | | * to EOB_ACT_END_OF_FILE. |
|---|
| 1541 | | */ |
|---|
| 1542 | | |
|---|
| 1543 | | /* Reset buffer status. */ |
|---|
| 1544 | | yyrestart(yyin ); |
|---|
| 1545 | | |
|---|
| 1546 | | /*FALLTHROUGH*/ |
|---|
| 1547 | | |
|---|
| 1548 | | case EOB_ACT_END_OF_FILE: |
|---|
| 1549 | | { |
|---|
| 1550 | | if ( yywrap( ) ) |
|---|
| 1551 | | return EOF; |
|---|
| 1552 | | |
|---|
| 1553 | | if ( ! (yy_did_buffer_switch_on_eof) ) |
|---|
| 1554 | | YY_NEW_FILE; |
|---|
| 1555 | | #ifdef __cplusplus |
|---|
| 1556 | | return yyinput(); |
|---|
| 1557 | | #else |
|---|
| 1558 | | return input(); |
|---|
| 1559 | | #endif |
|---|
| 1560 | | } |
|---|
| 1561 | | |
|---|
| 1562 | | case EOB_ACT_CONTINUE_SCAN: |
|---|
| 1563 | | (yy_c_buf_p) = (yytext_ptr) + offset; |
|---|
| 1564 | | break; |
|---|
| 1565 | | } |
|---|
| 1566 | | } |
|---|
| 1567 | | } |
|---|
| 1568 | | |
|---|
| 1569 | | c = *(unsigned char *) (yy_c_buf_p); /* cast for 8-bit char's */ |
|---|
| 1570 | | *(yy_c_buf_p) = '\0'; /* preserve yytext */ |
|---|
| 1571 | | (yy_hold_char) = *++(yy_c_buf_p); |
|---|
| 1572 | | |
|---|
| 1573 | | return c; |
|---|
| 1574 | | } |
|---|
| 1575 | | #endif /* ifndef YY_NO_INPUT */ |
|---|
| 1576 | | |
|---|
| 1577 | | /** Immediately switch to a different input stream. |
|---|
| 1578 | | * @param input_file A readable stream. |
|---|
| 1579 | | * |
|---|
| 1580 | | * @note This function does not reset the start condition to @c INITIAL . |
|---|
| 1581 | | */ |
|---|
| 1582 | | void yyrestart (FILE * input_file ) |
|---|
| 1583 | | { |
|---|
| 1584 | | |
|---|
| 1585 | | if ( ! YY_CURRENT_BUFFER ){ |
|---|
| 1586 | | yyensure_buffer_stack (); |
|---|
| 1587 | | YY_CURRENT_BUFFER_LVALUE = |
|---|
| 1588 | | yy_create_buffer(yyin,YY_BUF_SIZE ); |
|---|
| 1589 | | } |
|---|
| 1590 | | |
|---|
| 1591 | | yy_init_buffer(YY_CURRENT_BUFFER,input_file ); |
|---|
| 1592 | | yy_load_buffer_state( ); |
|---|
| 1593 | | } |
|---|
| 1594 | | |
|---|
| 1595 | | /** Switch to a different input buffer. |
|---|
| 1596 | | * @param new_buffer The new input buffer. |
|---|
| 1597 | | * |
|---|
| 1598 | | */ |
|---|
| 1599 | | void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer ) |
|---|
| 1600 | | { |
|---|
| 1601 | | |
|---|
| 1602 | | /* TODO. We should be able to replace this entire function body |
|---|
| 1603 | | * with |
|---|
| 1604 | | * yypop_buffer_state(); |
|---|
| 1605 | | * yypush_buffer_state(new_buffer); |
|---|
| 1606 | | */ |
|---|
| 1607 | | yyensure_buffer_stack (); |
|---|
| 1608 | | if ( YY_CURRENT_BUFFER == new_buffer ) |
|---|
| 1609 | | return; |
|---|
| 1610 | | |
|---|
| 1611 | | if ( YY_CURRENT_BUFFER ) |
|---|
| 1612 | | { |
|---|
| 1613 | | /* Flush out information for old buffer. */ |
|---|
| 1614 | | *(yy_c_buf_p) = (yy_hold_char); |
|---|
| 1615 | | YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p); |
|---|
| 1616 | | YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars); |
|---|
| 1617 | | } |
|---|
| 1618 | | |
|---|
| 1619 | | YY_CURRENT_BUFFER_LVALUE = new_buffer; |
|---|
| 1620 | | yy_load_buffer_state( ); |
|---|
| 1621 | | |
|---|
| 1622 | | /* We don't actually know whether we did this switch during |
|---|
| 1623 | | * EOF (yywrap()) processing, but the only time this flag |
|---|
| 1624 | | * is looked at is after yywrap() is called, so it's safe |
|---|
| 1625 | | * to go ahead and always set it. |
|---|
| 1626 | | */ |
|---|
| 1627 | | (yy_did_buffer_switch_on_eof) = 1; |
|---|
| 1628 | | } |
|---|
| 1629 | | |
|---|
| 1630 | | static void yy_load_buffer_state (void) |
|---|
| 1631 | | { |
|---|
| 1632 | | (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars; |
|---|
| 1633 | | (yytext_ptr) = (yy_c_buf_p) = YY_CURRENT_BUFFER_LVALUE->yy_buf_pos; |
|---|
| 1634 | | yyin = YY_CURRENT_BUFFER_LVALUE->yy_input_file; |
|---|
| 1635 | | (yy_hold_char) = *(yy_c_buf_p); |
|---|
| 1636 | | } |
|---|
| 1637 | | |
|---|
| 1638 | | /** Allocate and initialize an input buffer state. |
|---|
| 1639 | | * @param file A readable stream. |
|---|
| 1640 | | * @param size The character buffer size in bytes. When in doubt, use @c YY_BUF_SIZE. |
|---|
| 1641 | | * |
|---|
| 1642 | | * @return the allocated buffer state. |
|---|
| 1643 | | */ |
|---|
| 1644 | | YY_BUFFER_STATE yy_create_buffer (FILE * file, int size ) |
|---|
| 1645 | | { |
|---|
| 1646 | | YY_BUFFER_STATE b; |
|---|
| 1647 | | |
|---|
| 1648 | | b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state ) ); |
|---|
| 1649 | | if ( ! b ) |
|---|
| 1650 | | YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); |
|---|
| 1651 | | |
|---|
| 1652 | | b->yy_buf_size = size; |
|---|
| 1653 | | |
|---|
| 1654 | | /* yy_ch_buf has to be 2 characters longer than the size given because |
|---|
| 1655 | | * we need to put in 2 end-of-buffer characters. |
|---|
| 1656 | | */ |
|---|
| 1657 | | b->yy_ch_buf = (char *) yyalloc(b->yy_buf_size + 2 ); |
|---|
| 1658 | | if ( ! b->yy_ch_buf ) |
|---|
| 1659 | | YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); |
|---|
| 1660 | | |
|---|
| 1661 | | b->yy_is_our_buffer = 1; |
|---|
| 1662 | | |
|---|
| 1663 | | yy_init_buffer(b,file ); |
|---|
| 1664 | | |
|---|
| 1665 | | return b; |
|---|
| 1666 | | } |
|---|
| 1667 | | |
|---|
| 1668 | | /** Destroy the buffer. |
|---|
| 1669 | | * @param b a buffer created with yy_create_buffer() |
|---|
| 1670 | | * |
|---|
| 1671 | | */ |
|---|
| 1672 | | void yy_delete_buffer (YY_BUFFER_STATE b ) |
|---|
| 1673 | | { |
|---|
| 1674 | | |
|---|
| 1675 | | if ( ! b ) |
|---|
| 1676 | | return; |
|---|
| 1677 | | |
|---|
| 1678 | | if ( b == YY_CURRENT_BUFFER ) /* Not sure if we should pop here. */ |
|---|
| 1679 | | YY_CURRENT_BUFFER_LVALUE = (YY_BUFFER_STATE) 0; |
|---|
| 1680 | | |
|---|
| 1681 | | if ( b->yy_is_our_buffer ) |
|---|
| 1682 | | yyfree((void *) b->yy_ch_buf ); |
|---|
| 1683 | | |
|---|
| 1684 | | yyfree((void *) b ); |
|---|
| 1685 | | } |
|---|
| 1686 | | |
|---|
| 1687 | | #ifndef _UNISTD_H /* assume unistd.h has isatty() for us */ |
|---|
| 1688 | | #ifdef __cplusplus |
|---|
| 1689 | | extern "C" { |
|---|
| 1690 | | #endif |
|---|
| 1691 | | #ifdef __THROW /* this is a gnuism */ |
|---|
| 1692 | | extern int isatty (int ) __THROW; |
|---|
| 1693 | | #else |
|---|
| 1694 | | extern int isatty (int ); |
|---|
| 1695 | | #endif |
|---|
| 1696 | | #ifdef __cplusplus |
|---|
| 1697 | | } |
|---|
| 1698 | | #endif |
|---|
| 1699 | | #endif |
|---|
| 1700 | | |
|---|
| 1701 | | /* Initializes or reinitializes a buffer. |
|---|
| 1702 | | * This function is sometimes called more than once on the same buffer, |
|---|
| 1703 | | * such as during a yyrestart() or at EOF. |
|---|
| 1704 | | */ |
|---|
| 1705 | | static void yy_init_buffer (YY_BUFFER_STATE b, FILE * file ) |
|---|
| 1706 | | |
|---|
| 1707 | | { |
|---|
| 1708 | | int oerrno = errno; |
|---|
| 1709 | | |
|---|
| 1710 | | yy_flush_buffer(b ); |
|---|
| 1711 | | |
|---|
| 1712 | | b->yy_input_file = file; |
|---|
| 1713 | | b->yy_fill_buffer = 1; |
|---|
| 1714 | | |
|---|
| 1715 | | /* If b is the current buffer, then yy_init_buffer was _probably_ |
|---|
| 1716 | | * called from yyrestart() or through yy_get_next_buffer. |
|---|
| 1717 | | * In that case, we don't want to reset the lineno or column. |
|---|
| 1718 | | */ |
|---|
| 1719 | | if (b != YY_CURRENT_BUFFER){ |
|---|
| 1720 | | b->yy_bs_lineno = 1; |
|---|
| 1721 | | b->yy_bs_column = 0; |
|---|
| 1722 | | } |
|---|
| 1723 | | |
|---|
| 1724 | | b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0; |
|---|
| 1725 | | |
|---|
| 1726 | | errno = oerrno; |
|---|
| 1727 | | } |
|---|
| 1728 | | |
|---|
| 1729 | | /** Discard all buffered characters. On the next scan, YY_INPUT will be called. |
|---|
| 1730 | | * @param b the buffer state to be flushed, usually @c YY_CURRENT_BUFFER. |
|---|
| 1731 | | * |
|---|
| 1732 | | */ |
|---|
| 1733 | | void yy_flush_buffer (YY_BUFFER_STATE b ) |
|---|
| 1734 | | { |
|---|
| 1735 | | if ( ! b ) |
|---|
| 1736 | | return; |
|---|
| 1737 | | |
|---|
| 1738 | | b->yy_n_chars = 0; |
|---|
| 1739 | | |
|---|
| 1740 | | /* We always need two end-of-buffer characters. The first causes |
|---|
| 1741 | | * a transition to the end-of-buffer state. The second causes |
|---|
| 1742 | | * a jam in that state. |
|---|
| 1743 | | */ |
|---|
| 1744 | | b->yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR; |
|---|
| 1745 | | b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR; |
|---|
| 1746 | | |
|---|
| 1747 | | b->yy_buf_pos = &b->yy_ch_buf[0]; |
|---|
| 1748 | | |
|---|
| 1749 | | b->yy_at_bol = 1; |
|---|
| 1750 | | b->yy_buffer_status = YY_BUFFER_NEW; |
|---|
| 1751 | | |
|---|
| 1752 | | if ( b == YY_CURRENT_BUFFER ) |
|---|
| 1753 | | yy_load_buffer_state( ); |
|---|
| 1754 | | } |
|---|
| 1755 | | |
|---|
| 1756 | | /** Pushes the new state onto the stack. The new state becomes |
|---|
| 1757 | | * the current state. This function will allocate the stack |
|---|
| 1758 | | * if necessary. |
|---|
| 1759 | | * @param new_buffer The new state. |
|---|
| 1760 | | * |
|---|
| 1761 | | */ |
|---|
| 1762 | | void yypush_buffer_state (YY_BUFFER_STATE new_buffer ) |
|---|
| 1763 | | { |
|---|
| 1764 | | if (new_buffer == NULL) |
|---|
| 1765 | | return; |
|---|
| 1766 | | |
|---|
| 1767 | | yyensure_buffer_stack(); |
|---|
| 1768 | | |
|---|
| 1769 | | /* This block is copied from yy_switch_to_buffer. */ |
|---|
| 1770 | | if ( YY_CURRENT_BUFFER ) |
|---|
| 1771 | | { |
|---|
| 1772 | | /* Flush out information for old buffer. */ |
|---|
| 1773 | | *(yy_c_buf_p) = (yy_hold_char); |
|---|
| 1774 | | YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p); |
|---|
| 1775 | | YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars); |
|---|
| 1776 | | } |
|---|
| 1777 | | |
|---|
| 1778 | | /* Only push if top exists. Otherwise, replace top. */ |
|---|
| 1779 | | if (YY_CURRENT_BUFFER) |
|---|
| 1780 | | (yy_buffer_stack_top)++; |
|---|
| 1781 | | YY_CURRENT_BUFFER_LVALUE = new_buffer; |
|---|
| 1782 | | |
|---|
| 1783 | | /* copied from yy_switch_to_buffer. */ |
|---|
| 1784 | | yy_load_buffer_state( ); |
|---|
| 1785 | | (yy_did_buffer_switch_on_eof) = 1; |
|---|
| 1786 | | } |
|---|
| 1787 | | |
|---|
| 1788 | | /** Removes and deletes the top of the stack, if present. |
|---|
| 1789 | | * The next element becomes the new top. |
|---|
| 1790 | | * |
|---|
| 1791 | | */ |
|---|
| 1792 | | void yypop_buffer_state (void) |
|---|
| 1793 | | { |
|---|
| 1794 | | if (!YY_CURRENT_BUFFER) |
|---|
| 1795 | | return; |
|---|
| 1796 | | |
|---|
| 1797 | | yy_delete_buffer(YY_CURRENT_BUFFER ); |
|---|
| 1798 | | YY_CURRENT_BUFFER_LVALUE = NULL; |
|---|
| 1799 | | if ((yy_buffer_stack_top) > 0) |
|---|
| 1800 | | --(yy_buffer_stack_top); |
|---|
| 1801 | | |
|---|
| 1802 | | if (YY_CURRENT_BUFFER) { |
|---|
| 1803 | | yy_load_buffer_state( ); |
|---|
| 1804 | | (yy_did_buffer_switch_on_eof) = 1; |
|---|
| 1805 | | } |
|---|
| 1806 | | } |
|---|
| 1807 | | |
|---|
| 1808 | | /* Allocates the stack if it does not exist. |
|---|
| 1809 | | * Guarantees space for at least one push. |
|---|
| 1810 | | */ |
|---|
| 1811 | | static void yyensure_buffer_stack (void) |
|---|
| 1812 | | { |
|---|
| 1813 | | int num_to_alloc; |
|---|
| 1814 | | |
|---|
| 1815 | | if (!(yy_buffer_stack)) { |
|---|
| 1816 | | |
|---|
| 1817 | | /* First allocation is just for 2 elements, since we don't know if this |
|---|
| 1818 | | * scanner will even need a stack. We use 2 instead of 1 to avoid an |
|---|
| 1819 | | * immediate realloc on the next call. |
|---|
| 1820 | | */ |
|---|
| 1821 | | num_to_alloc = 1; |
|---|
| 1822 | | (yy_buffer_stack) = (struct yy_buffer_state**)yyalloc |
|---|
| 1823 | | (num_to_alloc * sizeof(struct yy_buffer_state*) |
|---|
| 1824 | | ); |
|---|
| 1825 | | if ( ! (yy_buffer_stack) ) |
|---|
| 1826 | | YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" ); |
|---|
| 1827 | | |
|---|
| 1828 | | memset((yy_buffer_stack), 0, num_to_alloc * sizeof(struct yy_buffer_state*)); |
|---|
| 1829 | | |
|---|
| 1830 | | (yy_buffer_stack_max) = num_to_alloc; |
|---|
| 1831 | | (yy_buffer_stack_top) = 0; |
|---|
| 1832 | | return; |
|---|
| 1833 | | } |
|---|
| 1834 | | |
|---|
| 1835 | | if ((yy_buffer_stack_top) >= ((yy_buffer_stack_max)) - 1){ |
|---|
| 1836 | | |
|---|
| 1837 | | /* Increase the buffer to prepare for a possible push. */ |
|---|
| 1838 | | int grow_size = 8 /* arbitrary grow size */; |
|---|
| 1839 | | |
|---|
| 1840 | | num_to_alloc = (yy_buffer_stack_max) + grow_size; |
|---|
| 1841 | | (yy_buffer_stack) = (struct yy_buffer_state**)yyrealloc |
|---|
| 1842 | | ((yy_buffer_stack), |
|---|
| 1843 | | num_to_alloc * sizeof(struct yy_buffer_state*) |
|---|
| 1844 | | ); |
|---|
| 1845 | | if ( ! (yy_buffer_stack) ) |
|---|
| 1846 | | YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" ); |
|---|
| 1847 | | |
|---|
| 1848 | | /* zero only the new slots.*/ |
|---|
| 1849 | | memset((yy_buffer_stack) + (yy_buffer_stack_max), 0, grow_size * sizeof(struct yy_buffer_state*)); |
|---|
| 1850 | | (yy_buffer_stack_max) = num_to_alloc; |
|---|
| 1851 | | } |
|---|
| 1852 | | } |
|---|
| 1853 | | |
|---|
| 1854 | | /** Setup the input buffer state to scan directly from a user-specified character buffer. |
|---|
| 1855 | | * @param base the character buffer |
|---|
| 1856 | | * @param size the size in bytes of the character buffer |
|---|
| 1857 | | * |
|---|
| 1858 | | * @return the newly allocated buffer state object. |
|---|
| 1859 | | */ |
|---|
| 1860 | | YY_BUFFER_STATE yy_scan_buffer (char * base, yy_size_t size ) |
|---|
| 1861 | | { |
|---|
| 1862 | | YY_BUFFER_STATE b; |
|---|
| 1863 | | |
|---|
| 1864 | | if ( size < 2 || |
|---|
| 1865 | | base[size-2] != YY_END_OF_BUFFER_CHAR || |
|---|
| 1866 | | base[size-1] != YY_END_OF_BUFFER_CHAR ) |
|---|
| 1867 | | /* They forgot to leave room for the EOB's. */ |
|---|
| 1868 | | return 0; |
|---|
| 1869 | | |
|---|
| 1870 | | b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state ) ); |
|---|
| 1871 | | if ( ! b ) |
|---|
| 1872 | | YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" ); |
|---|
| 1873 | | |
|---|
| 1874 | | b->yy_buf_size = size - 2; /* "- 2" to take care of EOB's */ |
|---|
| 1875 | | b->yy_buf_pos = b->yy_ch_buf = base; |
|---|
| 1876 | | b->yy_is_our_buffer = 0; |
|---|
| 1877 | | b->yy_input_file = 0; |
|---|
| 1878 | | b->yy_n_chars = b->yy_buf_size; |
|---|
| 1879 | | b->yy_is_interactive = 0; |
|---|
| 1880 | | b->yy_at_bol = 1; |
|---|
| 1881 | | b->yy_fill_buffer = 0; |
|---|
| 1882 | | b->yy_buffer_status = YY_BUFFER_NEW; |
|---|
| 1883 | | |
|---|
| 1884 | | yy_switch_to_buffer(b ); |
|---|
| 1885 | | |
|---|
| 1886 | | return b; |
|---|
| 1887 | | } |
|---|
| 1888 | | |
|---|
| 1889 | | /** Setup the input buffer state to scan a string. The next call to yylex() will |
|---|
| 1890 | | * scan from a @e copy of @a str. |
|---|
| 1891 | | * @param yystr a NUL-terminated string to scan |
|---|
| 1892 | | * |
|---|
| 1893 | | * @return the newly allocated buffer state object. |
|---|
| 1894 | | * @note If you want to scan bytes that may contain NUL values, then use |
|---|
| 1895 | | * yy_scan_bytes() instead. |
|---|
| 1896 | | */ |
|---|
| 1897 | | YY_BUFFER_STATE yy_scan_string (yyconst char * yystr ) |
|---|
| 1898 | | { |
|---|
| 1899 | | |
|---|
| 1900 | | return yy_scan_bytes(yystr,strlen(yystr) ); |
|---|
| 1901 | | } |
|---|
| 1902 | | |
|---|
| 1903 | | /** Setup the input buffer state to scan the given bytes. The next call to yylex() will |
|---|
| 1904 | | * scan from a @e copy of @a bytes. |
|---|
| 1905 | | * @param bytes the byte buffer to scan |
|---|
| 1906 | | * @param len the number of bytes in the buffer pointed to by @a bytes. |
|---|
| 1907 | | * |
|---|
| 1908 | | * @return the newly allocated buffer state object. |
|---|
| 1909 | | */ |
|---|
| 1910 | | YY_BUFFER_STATE yy_scan_bytes (yyconst char * yybytes, int _yybytes_len ) |
|---|
| 1911 | | { |
|---|
| 1912 | | YY_BUFFER_STATE b; |
|---|
| 1913 | | char *buf; |
|---|
| 1914 | | yy_size_t n; |
|---|
| 1915 | | int i; |
|---|
| 1916 | | |
|---|
| 1917 | | /* Get memory for full buffer, including space for trailing EOB's. */ |
|---|
| 1918 | | n = _yybytes_len + 2; |
|---|
| 1919 | | buf = (char *) yyalloc(n ); |
|---|
| 1920 | | if ( ! buf ) |
|---|
| 1921 | | YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" ); |
|---|
| 1922 | | |
|---|
| 1923 | | for ( i = 0; i < _yybytes_len; ++i ) |
|---|
| 1924 | | buf[i] = yybytes[i]; |
|---|
| 1925 | | |
|---|
| 1926 | | buf[_yybytes_len] = buf[_yybytes_len+1] = YY_END_OF_BUFFER_CHAR; |
|---|
| 1927 | | |
|---|
| 1928 | | b = yy_scan_buffer(buf,n ); |
|---|
| 1929 | | if ( ! b ) |
|---|
| 1930 | | YY_FATAL_ERROR( "bad buffer in yy_scan_bytes()" ); |
|---|
| 1931 | | |
|---|
| 1932 | | /* It's okay to grow etc. this buffer, and we should throw it |
|---|
| 1933 | | * away when we're done. |
|---|
| 1934 | | */ |
|---|
| 1935 | | b->yy_is_our_buffer = 1; |
|---|
| 1936 | | |
|---|
| 1937 | | return b; |
|---|
| 1938 | | } |
|---|
| 1939 | | |
|---|
| 1940 | | #ifndef YY_EXIT_FAILURE |
|---|
| 1941 | | #define YY_EXIT_FAILURE 2 |
|---|
| 1942 | | #endif |
|---|
| 1943 | | |
|---|
| 1944 | | static void yy_fatal_error (yyconst char* msg ) |
|---|
| 1945 | | { |
|---|
| 1946 | | (void) fprintf( stderr, "%s\n", msg ); |
|---|
| 1947 | | exit( YY_EXIT_FAILURE ); |
|---|
| 1948 | | } |
|---|
| 1949 | | |
|---|
| 1950 | | /* Redefine yyless() so it works in section 3 code. */ |
|---|
| 1951 | | |
|---|
| 1952 | | #undef yyless |
|---|
| 1953 | | #define yyless(n) \ |
|---|
| 1954 | | do \ |
|---|
| 1955 | | { \ |
|---|
| 1956 | | /* Undo effects of setting up yytext. */ \ |
|---|
| 1957 | | int yyless_macro_arg = (n); \ |
|---|
| 1958 | | YY_LESS_LINENO(yyless_macro_arg);\ |
|---|
| 1959 | | yytext[yyleng] = (yy_hold_char); \ |
|---|
| 1960 | | (yy_c_buf_p) = yytext + yyless_macro_arg; \ |
|---|
| 1961 | | (yy_hold_char) = *(yy_c_buf_p); \ |
|---|
| 1962 | | *(yy_c_buf_p) = '\0'; \ |
|---|
| 1963 | | yyleng = yyless_macro_arg; \ |
|---|
| 1964 | | } \ |
|---|
| 1965 | | while ( 0 ) |
|---|
| 1966 | | |
|---|
| 1967 | | /* Accessor methods (get/set functions) to struct members. */ |
|---|
| 1968 | | |
|---|
| 1969 | | /** Get the current line number. |
|---|
| 1970 | | * |
|---|
| 1971 | | */ |
|---|
| 1972 | | int yyget_lineno (void) |
|---|
| 1973 | | { |
|---|
| 1974 | | |
|---|
| 1975 | | return yylineno; |
|---|
| 1976 | | } |
|---|
| 1977 | | |
|---|
| 1978 | | /** Get the input stream. |
|---|
| 1979 | | * |
|---|
| 1980 | | */ |
|---|
| 1981 | | FILE *yyget_in (void) |
|---|
| 1982 | | { |
|---|
| 1983 | | return yyin; |
|---|
| 1984 | | } |
|---|
| 1985 | | |
|---|
| 1986 | | /** Get the output stream. |
|---|
| 1987 | | * |
|---|
| 1988 | | */ |
|---|
| 1989 | | FILE *yyget_out (void) |
|---|
| 1990 | | { |
|---|
| 1991 | | return yyout; |
|---|
| 1992 | | } |
|---|
| 1993 | | |
|---|
| 1994 | | /** Get the length of the current token. |
|---|
| 1995 | | * |
|---|
| 1996 | | */ |
|---|
| 1997 | | int yyget_leng (void) |
|---|
| 1998 | | { |
|---|
| 1999 | | return yyleng; |
|---|
| 2000 | | } |
|---|
| 2001 | | |
|---|
| 2002 | | /** Get the current token. |
|---|
| 2003 | | * |
|---|
| 2004 | | */ |
|---|
| 2005 | | |
|---|
| 2006 | | char *yyget_text (void) |
|---|
| 2007 | | { |
|---|
| 2008 | | return yytext; |
|---|
| 2009 | | } |
|---|
| 2010 | | |
|---|
| 2011 | | /** Set the current line number. |
|---|
| 2012 | | * @param line_number |
|---|
| 2013 | | * |
|---|
| 2014 | | */ |
|---|
| 2015 | | void yyset_lineno (int line_number ) |
|---|
| 2016 | | { |
|---|
| 2017 | | |
|---|
| 2018 | | yylineno = line_number; |
|---|
| 2019 | | } |
|---|
| 2020 | | |
|---|
| 2021 | | /** Set the input stream. This does not discard the current |
|---|
| 2022 | | * input buffer. |
|---|
| 2023 | | * @param in_str A readable stream. |
|---|
| 2024 | | * |
|---|
| 2025 | | * @see yy_switch_to_buffer |
|---|
| 2026 | | */ |
|---|
| 2027 | | void yyset_in (FILE * in_str ) |
|---|
| 2028 | | { |
|---|
| 2029 | | yyin = in_str ; |
|---|
| 2030 | | } |
|---|
| 2031 | | |
|---|
| 2032 | | void yyset_out (FILE * out_str ) |
|---|
| 2033 | | { |
|---|
| 2034 | | yyout = out_str ; |
|---|
| 2035 | | } |
|---|
| 2036 | | |
|---|
| 2037 | | int yyget_debug (void) |
|---|
| 2038 | | { |
|---|
| 2039 | | return yy_flex_debug; |
|---|
| 2040 | | } |
|---|
| 2041 | | |
|---|
| 2042 | | void yyset_debug (int bdebug ) |
|---|
| 2043 | | { |
|---|
| 2044 | | yy_flex_debug = bdebug ; |
|---|
| 2045 | | } |
|---|
| 2046 | | |
|---|
| 2047 | | static int yy_init_globals (void) |
|---|
| 2048 | | { |
|---|
| 2049 | | /* Initialization is the same as for the non-reentrant scanner. |
|---|
| 2050 | | * This function is called from yylex_destroy(), so don't allocate here. |
|---|
| 2051 | | */ |
|---|
| 2052 | | |
|---|
| 2053 | | (yy_buffer_stack) = 0; |
|---|
| 2054 | | (yy_buffer_stack_top) = 0; |
|---|
| 2055 | | (yy_buffer_stack_max) = 0; |
|---|
| 2056 | | (yy_c_buf_p) = (char *) 0; |
|---|
| 2057 | | (yy_init) = 0; |
|---|
| 2058 | | (yy_start) = 0; |
|---|
| 2059 | | |
|---|
| 2060 | | (yy_state_buf) = 0; |
|---|
| 2061 | | (yy_state_ptr) = 0; |
|---|
| 2062 | | (yy_full_match) = 0; |
|---|
| 2063 | | (yy_lp) = 0; |
|---|
| 2064 | | |
|---|
| 2065 | | /* Defined in main.c */ |
|---|
| 2066 | | #ifdef YY_STDINIT |
|---|
| 2067 | | yyin = stdin; |
|---|
| 2068 | | yyout = stdout; |
|---|
| 2069 | | #else |
|---|
| 2070 | | yyin = (FILE *) 0; |
|---|
| 2071 | | yyout = (FILE *) 0; |
|---|
| 2072 | | #endif |
|---|
| 2073 | | |
|---|
| 2074 | | /* For future reference: Set errno on error, since we are called by |
|---|
| 2075 | | * yylex_init() |
|---|
| 2076 | | */ |
|---|
| 2077 | | return 0; |
|---|
| 2078 | | } |
|---|
| 2079 | | |
|---|
| 2080 | | /* yylex_destroy is for both reentrant and non-reentrant scanners. */ |
|---|
| 2081 | | int yylex_destroy (void) |
|---|
| 2082 | | { |
|---|
| 2083 | | |
|---|
| 2084 | | /* Pop the buffer stack, destroying each element. */ |
|---|
| 2085 | | while(YY_CURRENT_BUFFER){ |
|---|
| 2086 | | yy_delete_buffer(YY_CURRENT_BUFFER ); |
|---|
| 2087 | | YY_CURRENT_BUFFER_LVALUE = NULL; |
|---|
| 2088 | | yypop_buffer_state(); |
|---|
| 2089 | | } |
|---|
| 2090 | | |
|---|
| 2091 | | /* Destroy the stack itself. */ |
|---|
| 2092 | | yyfree((yy_buffer_stack) ); |
|---|
| 2093 | | (yy_buffer_stack) = NULL; |
|---|
| 2094 | | |
|---|
| 2095 | | yyfree ( (yy_state_buf) ); |
|---|
| 2096 | | (yy_state_buf) = NULL; |
|---|
| 2097 | | |
|---|
| 2098 | | /* Reset the globals. This is important in a non-reentrant scanner so the next time |
|---|
| 2099 | | * yylex() is called, initialization will occur. */ |
|---|
| 2100 | | yy_init_globals( ); |
|---|
| 2101 | | |
|---|
| 2102 | | return 0; |
|---|
| 2103 | | } |
|---|
| 2104 | | |
|---|
| 2105 | | /* |
|---|
| 2106 | | * Internal utility routines. |
|---|
| 2107 | | */ |
|---|
| 2108 | | |
|---|
| 2109 | | #ifndef yytext_ptr |
|---|
| 2110 | | static void yy_flex_strncpy (char* s1, yyconst char * s2, int n ) |
|---|
| 2111 | | { |
|---|
| 2112 | | register int i; |
|---|
| 2113 | | for ( i = 0; i < n; ++i ) |
|---|
| 2114 | | s1[i] = s2[i]; |
|---|
| 2115 | | } |
|---|
| 2116 | | #endif |
|---|
| 2117 | | |
|---|
| 2118 | | #ifdef YY_NEED_STRLEN |
|---|
| 2119 | | static int yy_flex_strlen (yyconst char * s ) |
|---|
| 2120 | | { |
|---|
| 2121 | | register int n; |
|---|
| 2122 | | for ( n = 0; s[n]; ++n ) |
|---|
| 2123 | | ; |
|---|
| 2124 | | |
|---|
| 2125 | | return n; |
|---|
| 2126 | | } |
|---|
| 2127 | | #endif |
|---|
| 2128 | | |
|---|
| 2129 | | void *yyalloc (yy_size_t size ) |
|---|
| 2130 | | { |
|---|
| 2131 | | return (void *) malloc( size ); |
|---|
| 2132 | | } |
|---|
| 2133 | | |
|---|
| 2134 | | void *yyrealloc (void * ptr, yy_size_t size ) |
|---|
| 2135 | | { |
|---|
| 2136 | | /* The cast to (char *) in the following accommodates both |
|---|
| 2137 | | * implementations that use char* generic pointers, and those |
|---|
| 2138 | | * that use void* generic pointers. It works with the latter |
|---|
| 2139 | | * because both ANSI C and C++ allow castless assignment from |
|---|
| 2140 | | * any pointer type to void*, and deal with argument conversions |
|---|
| 2141 | | * as though doing an assignment. |
|---|
| 2142 | | */ |
|---|
| 2143 | | return (void *) realloc( (char *) ptr, size ); |
|---|
| 2144 | | } |
|---|
| 2145 | | |
|---|
| 2146 | | void yyfree (void * ptr ) |
|---|
| 2147 | | { |
|---|
| 2148 | | free( (char *) ptr ); /* see yyrealloc() for (char *) cast */ |
|---|
| 2149 | | } |
|---|
| 2150 | | |
|---|
| 2151 | | #define YYTABLES_NAME "yytables" |
|---|
| 2152 | | |
|---|
| 2153 | | #line 9 "conftest.l" |
|---|
| 2154 | | |
|---|
| 2155 | | |
|---|
| 2156 | | #ifdef YYTEXT_POINTER |
|---|
| 2157 | | extern char *yytext; |
|---|
| 2158 | | #endif |
|---|
| 2159 | | int |
|---|
| 2160 | | main (void) |
|---|
| 2161 | | { |
|---|
| 2162 | | return ! yylex () + ! yywrap (); |
|---|
| 2163 | | } |
|---|
| 2164 | configure:5816: armv4tl-softfloat-linux-gnueabi-gcc -o conftest -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -L/usr/armv4tl-softfloat-linux-gnueabi/usr/lib -L/usr/armv4tl-softfloat-linux-gnueabi/lib conftest.c -lfl >&5 |
|---|
| 2165 | configure:5823: $? = 0 |
|---|
| 2166 | configure:5847: result: -lfl |
|---|
| 2167 | configure:5853: checking whether yytext is a pointer |
|---|
| 2168 | configure:5874: armv4tl-softfloat-linux-gnueabi-gcc -o conftest -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -L/usr/armv4tl-softfloat-linux-gnueabi/usr/lib -L/usr/armv4tl-softfloat-linux-gnueabi/lib conftest.c -lfl >&5 |
|---|
| 2169 | configure:5881: $? = 0 |
|---|
| 2170 | configure:5903: result: yes |
|---|
| 2171 | configure:5932: checking for a BSD-compatible install |
|---|
| 2172 | configure:6000: result: /usr/bin/install -c |
|---|
| 2173 | configure:6011: checking whether ln -s works |
|---|
| 2174 | configure:6015: result: yes |
|---|
| 2175 | configure:6022: checking whether make sets $(MAKE) |
|---|
| 2176 | configure:6044: result: yes |
|---|
| 2177 | configure:6078: checking for a sed that does not truncate output |
|---|
| 2178 | configure:6144: result: /bin/sed |
|---|
| 2179 | configure:6162: checking for fgrep |
|---|
| 2180 | configure:6226: result: /bin/grep -F |
|---|
| 2181 | configure:6261: checking for ld used by armv4tl-softfloat-linux-gnueabi-gcc |
|---|
| 2182 | configure:6328: result: /usr/libexec/gcc/armv4tl-softfloat-linux-gnueabi/ld |
|---|
| 2183 | configure:6337: checking if the linker (/usr/libexec/gcc/armv4tl-softfloat-linux-gnueabi/ld) is GNU ld |
|---|
| 2184 | configure:6352: result: yes |
|---|
| 2185 | configure:6364: checking for BSD- or MS-compatible name lister (nm) |
|---|
| 2186 | configure:6413: result: /usr/bin/armv4tl-softfloat-linux-gnueabi-nm -B |
|---|
| 2187 | configure:6531: checking the name lister (/usr/bin/armv4tl-softfloat-linux-gnueabi-nm -B) interface |
|---|
| 2188 | configure:6538: armv4tl-softfloat-linux-gnueabi-gcc -c -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ conftest.c >&5 |
|---|
| 2189 | configure:6541: /usr/bin/armv4tl-softfloat-linux-gnueabi-nm -B "conftest.o" |
|---|
| 2190 | configure:6544: output |
|---|
| 2191 | 00000000 B some_variable |
|---|
| 2192 | configure:6551: result: BSD nm |
|---|
| 2193 | configure:6555: checking the maximum length of command line arguments |
|---|
| 2194 | configure:6675: result: 1572864 |
|---|
| 2195 | configure:6692: checking whether the shell understands some XSI constructs |
|---|
| 2196 | configure:6702: result: yes |
|---|
| 2197 | configure:6706: checking whether the shell understands "+=" |
|---|
| 2198 | configure:6712: result: yes |
|---|
| 2199 | configure:6747: checking for /usr/libexec/gcc/armv4tl-softfloat-linux-gnueabi/ld option to reload object files |
|---|
| 2200 | configure:6754: result: -r |
|---|
| 2201 | configure:6783: checking for armv4tl-softfloat-linux-gnueabi-objdump |
|---|
| 2202 | configure:6799: found /usr/bin/armv4tl-softfloat-linux-gnueabi-objdump |
|---|
| 2203 | configure:6810: result: armv4tl-softfloat-linux-gnueabi-objdump |
|---|
| 2204 | configure:6882: checking how to recognize dependent libraries |
|---|
| 2205 | configure:7078: result: pass_all |
|---|
| 2206 | configure:7098: checking for armv4tl-softfloat-linux-gnueabi-ar |
|---|
| 2207 | configure:7114: found /usr/bin/armv4tl-softfloat-linux-gnueabi-ar |
|---|
| 2208 | configure:7125: result: armv4tl-softfloat-linux-gnueabi-ar |
|---|
| 2209 | configure:7203: checking for armv4tl-softfloat-linux-gnueabi-strip |
|---|
| 2210 | configure:7230: result: armv4tl-softfloat-linux-gnueabi-strip |
|---|
| 2211 | configure:7302: checking for armv4tl-softfloat-linux-gnueabi-ranlib |
|---|
| 2212 | configure:7318: found /usr/bin/armv4tl-softfloat-linux-gnueabi-ranlib |
|---|
| 2213 | configure:7329: result: armv4tl-softfloat-linux-gnueabi-ranlib |
|---|
| 2214 | configure:7459: checking command to parse /usr/bin/armv4tl-softfloat-linux-gnueabi-nm -B output from armv4tl-softfloat-linux-gnueabi-gcc object |
|---|
| 2215 | configure:7577: armv4tl-softfloat-linux-gnueabi-gcc -c -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ conftest.c >&5 |
|---|
| 2216 | configure:7580: $? = 0 |
|---|
| 2217 | configure:7584: /usr/bin/armv4tl-softfloat-linux-gnueabi-nm -B conftest.o \| sed -n -e 's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' \> conftest.nm |
|---|
| 2218 | configure:7587: $? = 0 |
|---|
| 2219 | configure:7641: armv4tl-softfloat-linux-gnueabi-gcc -o conftest -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -L/usr/armv4tl-softfloat-linux-gnueabi/usr/lib -L/usr/armv4tl-softfloat-linux-gnueabi/lib conftest.c conftstm.o >&5 |
|---|
| 2220 | configure:7644: $? = 0 |
|---|
| 2221 | configure:7682: result: ok |
|---|
| 2222 | configure:8547: checking for dlfcn.h |
|---|
| 2223 | configure:8568: armv4tl-softfloat-linux-gnueabi-gcc -c -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ conftest.c >&5 |
|---|
| 2224 | configure:8575: $? = 0 |
|---|
| 2225 | configure:8592: result: yes |
|---|
| 2226 | configure:8718: checking for objdir |
|---|
| 2227 | configure:8733: result: .libs |
|---|
| 2228 | configure:9029: checking if armv4tl-softfloat-linux-gnueabi-gcc supports -fno-rtti -fno-exceptions |
|---|
| 2229 | configure:9047: armv4tl-softfloat-linux-gnueabi-gcc -c -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -fno-rtti -fno-exceptions conftest.c >&5 |
|---|
| 2230 | cc1: warning: command line option "-fno-rtti" is valid for C++/ObjC++ but not for C |
|---|
| 2231 | configure:9051: $? = 0 |
|---|
| 2232 | configure:9064: result: no |
|---|
| 2233 | configure:9084: checking for armv4tl-softfloat-linux-gnueabi-gcc option to produce PIC |
|---|
| 2234 | configure:9356: result: -fPIC -DPIC |
|---|
| 2235 | configure:9368: checking if armv4tl-softfloat-linux-gnueabi-gcc PIC flag -fPIC -DPIC works |
|---|
| 2236 | configure:9386: armv4tl-softfloat-linux-gnueabi-gcc -c -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -fPIC -DPIC -DPIC conftest.c >&5 |
|---|
| 2237 | configure:9390: $? = 0 |
|---|
| 2238 | configure:9403: result: yes |
|---|
| 2239 | configure:9427: checking if armv4tl-softfloat-linux-gnueabi-gcc static flag -static works |
|---|
| 2240 | configure:9455: result: yes |
|---|
| 2241 | configure:9470: checking if armv4tl-softfloat-linux-gnueabi-gcc supports -c -o file.o |
|---|
| 2242 | configure:9491: armv4tl-softfloat-linux-gnueabi-gcc -c -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -o out/conftest2.o conftest.c >&5 |
|---|
| 2243 | configure:9495: $? = 0 |
|---|
| 2244 | configure:9517: result: yes |
|---|
| 2245 | configure:9525: checking if armv4tl-softfloat-linux-gnueabi-gcc supports -c -o file.o |
|---|
| 2246 | configure:9572: result: yes |
|---|
| 2247 | configure:9605: checking whether the armv4tl-softfloat-linux-gnueabi-gcc linker (/usr/libexec/gcc/armv4tl-softfloat-linux-gnueabi/ld) supports shared libraries |
|---|
| 2248 | configure:10679: result: yes |
|---|
| 2249 | configure:10716: checking whether -lc should be explicitly linked in |
|---|
| 2250 | configure:10721: armv4tl-softfloat-linux-gnueabi-gcc -c -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ conftest.c >&5 |
|---|
| 2251 | configure:10724: $? = 0 |
|---|
| 2252 | configure:10739: armv4tl-softfloat-linux-gnueabi-gcc -shared conftest.o -v -Wl,-soname -Wl,conftest -o conftest 2\>\&1 \| /bin/grep -lc \>/dev/null 2\>\&1 |
|---|
| 2253 | configure:10742: $? = 0 |
|---|
| 2254 | configure:10754: result: no |
|---|
| 2255 | configure:10918: checking dynamic linker characteristics |
|---|
| 2256 | configure:11374: armv4tl-softfloat-linux-gnueabi-gcc -o conftest -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -L/usr/armv4tl-softfloat-linux-gnueabi/usr/lib -L/usr/armv4tl-softfloat-linux-gnueabi/lib -Wl,-rpath -Wl,/foo conftest.c >&5 |
|---|
| 2257 | configure:11381: $? = 0 |
|---|
| 2258 | configure:11614: result: GNU/Linux ld.so |
|---|
| 2259 | configure:11716: checking how to hardcode library paths into programs |
|---|
| 2260 | configure:11741: result: immediate |
|---|
| 2261 | configure:12574: checking whether stripping libraries is possible |
|---|
| 2262 | configure:12579: result: yes |
|---|
| 2263 | configure:12614: checking if libtool supports shared libraries |
|---|
| 2264 | configure:12616: result: yes |
|---|
| 2265 | configure:12619: checking whether to build shared libraries |
|---|
| 2266 | configure:12640: result: yes |
|---|
| 2267 | configure:12643: checking whether to build static libraries |
|---|
| 2268 | configure:12647: result: no |
|---|
| 2269 | configure:12683: checking whether armv4tl-softfloat-linux-gnueabi-gcc and cc understand -c and -o together |
|---|
| 2270 | configure:12718: armv4tl-softfloat-linux-gnueabi-gcc -c conftest.c -o conftest2.o >&5 |
|---|
| 2271 | configure:12722: $? = 0 |
|---|
| 2272 | configure:12728: armv4tl-softfloat-linux-gnueabi-gcc -c conftest.c -o conftest2.o >&5 |
|---|
| 2273 | configure:12732: $? = 0 |
|---|
| 2274 | configure:12743: cc -c conftest.c >&5 |
|---|
| 2275 | configure:12747: $? = 0 |
|---|
| 2276 | configure:12755: cc -c conftest.c -o conftest2.o >&5 |
|---|
| 2277 | configure:12759: $? = 0 |
|---|
| 2278 | configure:12765: cc -c conftest.c -o conftest2.o >&5 |
|---|
| 2279 | configure:12769: $? = 0 |
|---|
| 2280 | configure:12787: result: yes |
|---|
| 2281 | configure:12815: checking whether ld supports --as-needed |
|---|
| 2282 | configure:12826: armv4tl-softfloat-linux-gnueabi-gcc -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -L/usr/armv4tl-softfloat-linux-gnueabi/usr/lib -L/usr/armv4tl-softfloat-linux-gnueabi/lib |
|---|
| 2283 | -o conftest.o conftest.c |
|---|
| 2284 | -Wl,--as-needed 1>&5 |
|---|
| 2285 | configure:12829: $? = 0 |
|---|
| 2286 | configure:12839: result: yes |
|---|
| 2287 | configure:12845: checking whether ld supports -O1 |
|---|
| 2288 | configure:12856: armv4tl-softfloat-linux-gnueabi-gcc -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -L/usr/armv4tl-softfloat-linux-gnueabi/usr/lib -L/usr/armv4tl-softfloat-linux-gnueabi/lib -Wl,--as-needed |
|---|
| 2289 | -o conftest.o conftest.c |
|---|
| 2290 | -Wl,-O1 1>&5 |
|---|
| 2291 | configure:12859: $? = 0 |
|---|
| 2292 | configure:12869: result: yes |
|---|
| 2293 | configure:12882: checking for special C compiler options needed for large files |
|---|
| 2294 | configure:12977: result: no |
|---|
| 2295 | configure:12983: checking for _FILE_OFFSET_BITS value needed for large files |
|---|
| 2296 | configure:13018: armv4tl-softfloat-linux-gnueabi-gcc -c -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ conftest.c >&5 |
|---|
| 2297 | conftest.c:34: warning: left shift count >= width of type |
|---|
| 2298 | conftest.c:34: warning: left shift count >= width of type |
|---|
| 2299 | conftest.c:36: error: size of array 'off_t_is_large' is negative |
|---|
| 2300 | configure:13025: $? = 1 |
|---|
| 2301 | configure: failed program was: |
|---|
| 2302 | | /* confdefs.h. */ |
|---|
| 2303 | | #define PACKAGE_NAME "" |
|---|
| 2304 | | #define PACKAGE_TARNAME "" |
|---|
| 2305 | | #define PACKAGE_VERSION "" |
|---|
| 2306 | | #define PACKAGE_STRING "" |
|---|
| 2307 | | #define PACKAGE_BUGREPORT "" |
|---|
| 2308 | | #define PACKAGE "Linux-PAM" |
|---|
| 2309 | | #define VERSION "1.1.0" |
|---|
| 2310 | | #define STDC_HEADERS 1 |
|---|
| 2311 | | #define HAVE_SYS_TYPES_H 1 |
|---|
| 2312 | | #define HAVE_SYS_STAT_H 1 |
|---|
| 2313 | | #define HAVE_STDLIB_H 1 |
|---|
| 2314 | | #define HAVE_STRING_H 1 |
|---|
| 2315 | | #define HAVE_MEMORY_H 1 |
|---|
| 2316 | | #define HAVE_STRINGS_H 1 |
|---|
| 2317 | | #define HAVE_INTTYPES_H 1 |
|---|
| 2318 | | #define HAVE_STDINT_H 1 |
|---|
| 2319 | | #define HAVE_UNISTD_H 1 |
|---|
| 2320 | | #define __EXTENSIONS__ 1 |
|---|
| 2321 | | #define _ALL_SOURCE 1 |
|---|
| 2322 | | #define _GNU_SOURCE 1 |
|---|
| 2323 | | #define _POSIX_PTHREAD_SEMANTICS 1 |
|---|
| 2324 | | #define _TANDEM_SOURCE 1 |
|---|
| 2325 | | #define YYTEXT_POINTER 1 |
|---|
| 2326 | | #define HAVE_DLFCN_H 1 |
|---|
| 2327 | | #define LT_OBJDIR ".libs/" |
|---|
| 2328 | | /* end confdefs.h. */ |
|---|
| 2329 | | #include <sys/types.h> |
|---|
| 2330 | | /* Check that off_t can represent 2**63 - 1 correctly. |
|---|
| 2331 | | We can't simply define LARGE_OFF_T to be 9223372036854775807, |
|---|
| 2332 | | since some C++ compilers masquerading as C compilers |
|---|
| 2333 | | incorrectly reject 9223372036854775807. */ |
|---|
| 2334 | | #define LARGE_OFF_T (((off_t) 1 << 62) - 1 + ((off_t) 1 << 62)) |
|---|
| 2335 | | int off_t_is_large[(LARGE_OFF_T % 2147483629 == 721 |
|---|
| 2336 | | && LARGE_OFF_T % 2147483647 == 1) |
|---|
| 2337 | | ? 1 : -1]; |
|---|
| 2338 | | int |
|---|
| 2339 | | main () |
|---|
| 2340 | | { |
|---|
| 2341 | | |
|---|
| 2342 | | ; |
|---|
| 2343 | | return 0; |
|---|
| 2344 | | } |
|---|
| 2345 | configure:13069: armv4tl-softfloat-linux-gnueabi-gcc -c -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ conftest.c >&5 |
|---|
| 2346 | configure:13076: $? = 0 |
|---|
| 2347 | configure:13094: result: 64 |
|---|
| 2348 | configure:13286: checking for __attribute__ |
|---|
| 2349 | configure:13324: armv4tl-softfloat-linux-gnueabi-gcc -c -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow conftest.c >&5 |
|---|
| 2350 | conftest.c:41: warning: function declaration isn't a prototype |
|---|
| 2351 | configure:13331: $? = 0 |
|---|
| 2352 | configure:13359: result: yes |
|---|
| 2353 | configure:13363: checking for .symver assembler directive |
|---|
| 2354 | configure:13380: result: yes |
|---|
| 2355 | configure:13382: checking for ld --version-script |
|---|
| 2356 | configure:13409: armv4tl-softfloat-linux-gnueabi-gcc -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow -L/usr/armv4tl-softfloat-linux-gnueabi/usr/lib -L/usr/armv4tl-softfloat-linux-gnueabi/lib -Wl,--as-needed -Wl,-O1 -shared |
|---|
| 2357 | -o conftest.so conftest.o |
|---|
| 2358 | -nostartfiles -nostdlib |
|---|
| 2359 | -Wl,--version-script,conftest.map |
|---|
| 2360 | 1>&5 |
|---|
| 2361 | configure:13412: $? = 0 |
|---|
| 2362 | configure:13427: result: yes |
|---|
| 2363 | configure:13446: checking for -fpie |
|---|
| 2364 | configure:13458: armv4tl-softfloat-linux-gnueabi-gcc -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow -L/usr/armv4tl-softfloat-linux-gnueabi/usr/lib -L/usr/armv4tl-softfloat-linux-gnueabi/lib -Wl,--as-needed -Wl,-O1 -pie -fpie |
|---|
| 2365 | -o conftest conftest.c 1>&5 |
|---|
| 2366 | conftest.c:2: warning: return type defaults to 'int' |
|---|
| 2367 | conftest.c:2: warning: function declaration isn't a prototype |
|---|
| 2368 | configure:13461: $? = 0 |
|---|
| 2369 | configure:13474: result: yes |
|---|
| 2370 | configure:13822: result: Defining $ISA to "/lib/security" |
|---|
| 2371 | configure:13893: checking paths.h usability |
|---|
| 2372 | configure:13910: armv4tl-softfloat-linux-gnueabi-gcc -c -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow conftest.c >&5 |
|---|
| 2373 | configure:13917: $? = 0 |
|---|
| 2374 | configure:13931: result: yes |
|---|
| 2375 | configure:13935: checking paths.h presence |
|---|
| 2376 | configure:13950: armv4tl-softfloat-linux-gnueabi-gcc -E conftest.c |
|---|
| 2377 | configure:13957: $? = 0 |
|---|
| 2378 | configure:13971: result: yes |
|---|
| 2379 | configure:13999: checking for paths.h |
|---|
| 2380 | configure:14008: result: yes |
|---|
| 2381 | configure:14103: checking for xauth |
|---|
| 2382 | configure:14121: found /usr/bin/xauth |
|---|
| 2383 | configure:14133: result: /usr/bin/xauth |
|---|
| 2384 | configure:14154: checking for dlopen in -ldl |
|---|
| 2385 | configure:14189: armv4tl-softfloat-linux-gnueabi-gcc -o conftest -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow -L/usr/armv4tl-softfloat-linux-gnueabi/usr/lib -L/usr/armv4tl-softfloat-linux-gnueabi/lib -Wl,--as-needed -Wl,-O1 conftest.c -ldl >&5 |
|---|
| 2386 | conftest.c:42: warning: function declaration isn't a prototype |
|---|
| 2387 | conftest.c:45: warning: function declaration isn't a prototype |
|---|
| 2388 | configure:14196: $? = 0 |
|---|
| 2389 | configure:14217: result: yes |
|---|
| 2390 | configure:14252: checking crack.h usability |
|---|
| 2391 | configure:14269: armv4tl-softfloat-linux-gnueabi-gcc -c -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow conftest.c >&5 |
|---|
| 2392 | configure:14276: $? = 0 |
|---|
| 2393 | configure:14290: result: yes |
|---|
| 2394 | configure:14294: checking crack.h presence |
|---|
| 2395 | configure:14309: armv4tl-softfloat-linux-gnueabi-gcc -E conftest.c |
|---|
| 2396 | configure:14316: $? = 0 |
|---|
| 2397 | configure:14330: result: yes |
|---|
| 2398 | configure:14358: checking for crack.h |
|---|
| 2399 | configure:14367: result: yes |
|---|
| 2400 | configure:14377: checking for FascistCheck in -lcrack |
|---|
| 2401 | configure:14412: armv4tl-softfloat-linux-gnueabi-gcc -o conftest -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow -L/usr/armv4tl-softfloat-linux-gnueabi/usr/lib -L/usr/armv4tl-softfloat-linux-gnueabi/lib -Wl,--as-needed -Wl,-O1 conftest.c -lcrack >&5 |
|---|
| 2402 | conftest.c:43: warning: function declaration isn't a prototype |
|---|
| 2403 | conftest.c:46: warning: function declaration isn't a prototype |
|---|
| 2404 | configure:14419: $? = 0 |
|---|
| 2405 | configure:14440: result: yes |
|---|
| 2406 | configure:14822: checking xcrypt.h usability |
|---|
| 2407 | configure:14839: armv4tl-softfloat-linux-gnueabi-gcc -c -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow conftest.c >&5 |
|---|
| 2408 | conftest.c:69:20: error: xcrypt.h: No such file or directory |
|---|
| 2409 | configure:14846: $? = 1 |
|---|
| 2410 | configure: failed program was: |
|---|
| 2411 | | /* confdefs.h. */ |
|---|
| 2412 | | #define PACKAGE_NAME "" |
|---|
| 2413 | | #define PACKAGE_TARNAME "" |
|---|
| 2414 | | #define PACKAGE_VERSION "" |
|---|
| 2415 | | #define PACKAGE_STRING "" |
|---|
| 2416 | | #define PACKAGE_BUGREPORT "" |
|---|
| 2417 | | #define PACKAGE "Linux-PAM" |
|---|
| 2418 | | #define VERSION "1.1.0" |
|---|
| 2419 | | #define STDC_HEADERS 1 |
|---|
| 2420 | | #define HAVE_SYS_TYPES_H 1 |
|---|
| 2421 | | #define HAVE_SYS_STAT_H 1 |
|---|
| 2422 | | #define HAVE_STDLIB_H 1 |
|---|
| 2423 | | #define HAVE_STRING_H 1 |
|---|
| 2424 | | #define HAVE_MEMORY_H 1 |
|---|
| 2425 | | #define HAVE_STRINGS_H 1 |
|---|
| 2426 | | #define HAVE_INTTYPES_H 1 |
|---|
| 2427 | | #define HAVE_STDINT_H 1 |
|---|
| 2428 | | #define HAVE_UNISTD_H 1 |
|---|
| 2429 | | #define __EXTENSIONS__ 1 |
|---|
| 2430 | | #define _ALL_SOURCE 1 |
|---|
| 2431 | | #define _GNU_SOURCE 1 |
|---|
| 2432 | | #define _POSIX_PTHREAD_SEMANTICS 1 |
|---|
| 2433 | | #define _TANDEM_SOURCE 1 |
|---|
| 2434 | | #define YYTEXT_POINTER 1 |
|---|
| 2435 | | #define HAVE_DLFCN_H 1 |
|---|
| 2436 | | #define LT_OBJDIR ".libs/" |
|---|
| 2437 | | #define _FILE_OFFSET_BITS 64 |
|---|
| 2438 | | #define UNUSED __attribute__ ((unused)) |
|---|
| 2439 | | #define _PAM_ISA "/lib/security" |
|---|
| 2440 | | #define USE_LCKPWDF 1 |
|---|
| 2441 | | #define HAVE_PATHS_H 1 |
|---|
| 2442 | | #define PAM_PATH_MAILDIR "/var/spool/mail" |
|---|
| 2443 | | #define PAM_PATH_XAUTH "/usr/bin/xauth" |
|---|
| 2444 | | #define HAVE_CRACK_H 1 |
|---|
| 2445 | | /* end confdefs.h. */ |
|---|
| 2446 | | #include <stdio.h> |
|---|
| 2447 | | #ifdef HAVE_SYS_TYPES_H |
|---|
| 2448 | | # include <sys/types.h> |
|---|
| 2449 | | #endif |
|---|
| 2450 | | #ifdef HAVE_SYS_STAT_H |
|---|
| 2451 | | # include <sys/stat.h> |
|---|
| 2452 | | #endif |
|---|
| 2453 | | #ifdef STDC_HEADERS |
|---|
| 2454 | | # include <stdlib.h> |
|---|
| 2455 | | # include <stddef.h> |
|---|
| 2456 | | #else |
|---|
| 2457 | | # ifdef HAVE_STDLIB_H |
|---|
| 2458 | | # include <stdlib.h> |
|---|
| 2459 | | # endif |
|---|
| 2460 | | #endif |
|---|
| 2461 | | #ifdef HAVE_STRING_H |
|---|
| 2462 | | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H |
|---|
| 2463 | | # include <memory.h> |
|---|
| 2464 | | # endif |
|---|
| 2465 | | # include <string.h> |
|---|
| 2466 | | #endif |
|---|
| 2467 | | #ifdef HAVE_STRINGS_H |
|---|
| 2468 | | # include <strings.h> |
|---|
| 2469 | | #endif |
|---|
| 2470 | | #ifdef HAVE_INTTYPES_H |
|---|
| 2471 | | # include <inttypes.h> |
|---|
| 2472 | | #endif |
|---|
| 2473 | | #ifdef HAVE_STDINT_H |
|---|
| 2474 | | # include <stdint.h> |
|---|
| 2475 | | #endif |
|---|
| 2476 | | #ifdef HAVE_UNISTD_H |
|---|
| 2477 | | # include <unistd.h> |
|---|
| 2478 | | #endif |
|---|
| 2479 | | #include <xcrypt.h> |
|---|
| 2480 | configure:14860: result: no |
|---|
| 2481 | configure:14864: checking xcrypt.h presence |
|---|
| 2482 | configure:14879: armv4tl-softfloat-linux-gnueabi-gcc -E conftest.c |
|---|
| 2483 | conftest.c:36:20: error: xcrypt.h: No such file or directory |
|---|
| 2484 | configure:14886: $? = 1 |
|---|
| 2485 | configure: failed program was: |
|---|
| 2486 | | /* confdefs.h. */ |
|---|
| 2487 | | #define PACKAGE_NAME "" |
|---|
| 2488 | | #define PACKAGE_TARNAME "" |
|---|
| 2489 | | #define PACKAGE_VERSION "" |
|---|
| 2490 | | #define PACKAGE_STRING "" |
|---|
| 2491 | | #define PACKAGE_BUGREPORT "" |
|---|
| 2492 | | #define PACKAGE "Linux-PAM" |
|---|
| 2493 | | #define VERSION "1.1.0" |
|---|
| 2494 | | #define STDC_HEADERS 1 |
|---|
| 2495 | | #define HAVE_SYS_TYPES_H 1 |
|---|
| 2496 | | #define HAVE_SYS_STAT_H 1 |
|---|
| 2497 | | #define HAVE_STDLIB_H 1 |
|---|
| 2498 | | #define HAVE_STRING_H 1 |
|---|
| 2499 | | #define HAVE_MEMORY_H 1 |
|---|
| 2500 | | #define HAVE_STRINGS_H 1 |
|---|
| 2501 | | #define HAVE_INTTYPES_H 1 |
|---|
| 2502 | | #define HAVE_STDINT_H 1 |
|---|
| 2503 | | #define HAVE_UNISTD_H 1 |
|---|
| 2504 | | #define __EXTENSIONS__ 1 |
|---|
| 2505 | | #define _ALL_SOURCE 1 |
|---|
| 2506 | | #define _GNU_SOURCE 1 |
|---|
| 2507 | | #define _POSIX_PTHREAD_SEMANTICS 1 |
|---|
| 2508 | | #define _TANDEM_SOURCE 1 |
|---|
| 2509 | | #define YYTEXT_POINTER 1 |
|---|
| 2510 | | #define HAVE_DLFCN_H 1 |
|---|
| 2511 | | #define LT_OBJDIR ".libs/" |
|---|
| 2512 | | #define _FILE_OFFSET_BITS 64 |
|---|
| 2513 | | #define UNUSED __attribute__ ((unused)) |
|---|
| 2514 | | #define _PAM_ISA "/lib/security" |
|---|
| 2515 | | #define USE_LCKPWDF 1 |
|---|
| 2516 | | #define HAVE_PATHS_H 1 |
|---|
| 2517 | | #define PAM_PATH_MAILDIR "/var/spool/mail" |
|---|
| 2518 | | #define PAM_PATH_XAUTH "/usr/bin/xauth" |
|---|
| 2519 | | #define HAVE_CRACK_H 1 |
|---|
| 2520 | | /* end confdefs.h. */ |
|---|
| 2521 | | #include <xcrypt.h> |
|---|
| 2522 | configure:14900: result: no |
|---|
| 2523 | configure:14928: checking for xcrypt.h |
|---|
| 2524 | configure:14937: result: no |
|---|
| 2525 | configure:14822: checking crypt.h usability |
|---|
| 2526 | configure:14839: armv4tl-softfloat-linux-gnueabi-gcc -c -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow conftest.c >&5 |
|---|
| 2527 | configure:14846: $? = 0 |
|---|
| 2528 | configure:14860: result: yes |
|---|
| 2529 | configure:14864: checking crypt.h presence |
|---|
| 2530 | configure:14879: armv4tl-softfloat-linux-gnueabi-gcc -E conftest.c |
|---|
| 2531 | configure:14886: $? = 0 |
|---|
| 2532 | configure:14900: result: yes |
|---|
| 2533 | configure:14928: checking for crypt.h |
|---|
| 2534 | configure:14937: result: yes |
|---|
| 2535 | configure:14953: checking for library containing crypt |
|---|
| 2536 | configure:14994: armv4tl-softfloat-linux-gnueabi-gcc -o conftest -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow -L/usr/armv4tl-softfloat-linux-gnueabi/usr/lib -L/usr/armv4tl-softfloat-linux-gnueabi/lib -Wl,--as-needed -Wl,-O1 conftest.c >&5 |
|---|
| 2537 | conftest.c:44: warning: function declaration isn't a prototype |
|---|
| 2538 | conftest.c:47: warning: function declaration isn't a prototype |
|---|
| 2539 | /usr/armv4tl-softfloat-linux-gnueabi/tmp/portage/sys-libs/pam-1.1.0/temp/ccV6CSse.o: In function `main': |
|---|
| 2540 | conftest.c:(.text+0x8): undefined reference to `crypt' |
|---|
| 2541 | collect2: ld returned 1 exit status |
|---|
| 2542 | configure:15001: $? = 1 |
|---|
| 2543 | configure: failed program was: |
|---|
| 2544 | | /* confdefs.h. */ |
|---|
| 2545 | | #define PACKAGE_NAME "" |
|---|
| 2546 | | #define PACKAGE_TARNAME "" |
|---|
| 2547 | | #define PACKAGE_VERSION "" |
|---|
| 2548 | | #define PACKAGE_STRING "" |
|---|
| 2549 | | #define PACKAGE_BUGREPORT "" |
|---|
| 2550 | | #define PACKAGE "Linux-PAM" |
|---|
| 2551 | | #define VERSION "1.1.0" |
|---|
| 2552 | | #define STDC_HEADERS 1 |
|---|
| 2553 | | #define HAVE_SYS_TYPES_H 1 |
|---|
| 2554 | | #define HAVE_SYS_STAT_H 1 |
|---|
| 2555 | | #define HAVE_STDLIB_H 1 |
|---|
| 2556 | | #define HAVE_STRING_H 1 |
|---|
| 2557 | | #define HAVE_MEMORY_H 1 |
|---|
| 2558 | | #define HAVE_STRINGS_H 1 |
|---|
| 2559 | | #define HAVE_INTTYPES_H 1 |
|---|
| 2560 | | #define HAVE_STDINT_H 1 |
|---|
| 2561 | | #define HAVE_UNISTD_H 1 |
|---|
| 2562 | | #define __EXTENSIONS__ 1 |
|---|
| 2563 | | #define _ALL_SOURCE 1 |
|---|
| 2564 | | #define _GNU_SOURCE 1 |
|---|
| 2565 | | #define _POSIX_PTHREAD_SEMANTICS 1 |
|---|
| 2566 | | #define _TANDEM_SOURCE 1 |
|---|
| 2567 | | #define YYTEXT_POINTER 1 |
|---|
| 2568 | | #define HAVE_DLFCN_H 1 |
|---|
| 2569 | | #define LT_OBJDIR ".libs/" |
|---|
| 2570 | | #define _FILE_OFFSET_BITS 64 |
|---|
| 2571 | | #define UNUSED __attribute__ ((unused)) |
|---|
| 2572 | | #define _PAM_ISA "/lib/security" |
|---|
| 2573 | | #define USE_LCKPWDF 1 |
|---|
| 2574 | | #define HAVE_PATHS_H 1 |
|---|
| 2575 | | #define PAM_PATH_MAILDIR "/var/spool/mail" |
|---|
| 2576 | | #define PAM_PATH_XAUTH "/usr/bin/xauth" |
|---|
| 2577 | | #define HAVE_CRACK_H 1 |
|---|
| 2578 | | #define HAVE_CRYPT_H 1 |
|---|
| 2579 | | /* end confdefs.h. */ |
|---|
| 2580 | | |
|---|
| 2581 | | /* Override any GCC internal prototype to avoid an error. |
|---|
| 2582 | | Use char because int might match the return type of a GCC |
|---|
| 2583 | | builtin and then its argument prototype would still apply. */ |
|---|
| 2584 | | #ifdef __cplusplus |
|---|
| 2585 | | extern "C" |
|---|
| 2586 | | #endif |
|---|
| 2587 | | char crypt (); |
|---|
| 2588 | | int |
|---|
| 2589 | | main () |
|---|
| 2590 | | { |
|---|
| 2591 | | return crypt (); |
|---|
| 2592 | | ; |
|---|
| 2593 | | return 0; |
|---|
| 2594 | | } |
|---|
| 2595 | configure:14994: armv4tl-softfloat-linux-gnueabi-gcc -o conftest -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow -L/usr/armv4tl-softfloat-linux-gnueabi/usr/lib -L/usr/armv4tl-softfloat-linux-gnueabi/lib -Wl,--as-needed -Wl,-O1 conftest.c -lxcrypt >&5 |
|---|
| 2596 | conftest.c:44: warning: function declaration isn't a prototype |
|---|
| 2597 | conftest.c:47: warning: function declaration isn't a prototype |
|---|
| 2598 | /usr/libexec/gcc/armv4tl-softfloat-linux-gnueabi/ld: cannot find -lxcrypt |
|---|
| 2599 | collect2: ld returned 1 exit status |
|---|
| 2600 | configure:15001: $? = 1 |
|---|
| 2601 | configure: failed program was: |
|---|
| 2602 | | /* confdefs.h. */ |
|---|
| 2603 | | #define PACKAGE_NAME "" |
|---|
| 2604 | | #define PACKAGE_TARNAME "" |
|---|
| 2605 | | #define PACKAGE_VERSION "" |
|---|
| 2606 | | #define PACKAGE_STRING "" |
|---|
| 2607 | | #define PACKAGE_BUGREPORT "" |
|---|
| 2608 | | #define PACKAGE "Linux-PAM" |
|---|
| 2609 | | #define VERSION "1.1.0" |
|---|
| 2610 | | #define STDC_HEADERS 1 |
|---|
| 2611 | | #define HAVE_SYS_TYPES_H 1 |
|---|
| 2612 | | #define HAVE_SYS_STAT_H 1 |
|---|
| 2613 | | #define HAVE_STDLIB_H 1 |
|---|
| 2614 | | #define HAVE_STRING_H 1 |
|---|
| 2615 | | #define HAVE_MEMORY_H 1 |
|---|
| 2616 | | #define HAVE_STRINGS_H 1 |
|---|
| 2617 | | #define HAVE_INTTYPES_H 1 |
|---|
| 2618 | | #define HAVE_STDINT_H 1 |
|---|
| 2619 | | #define HAVE_UNISTD_H 1 |
|---|
| 2620 | | #define __EXTENSIONS__ 1 |
|---|
| 2621 | | #define _ALL_SOURCE 1 |
|---|
| 2622 | | #define _GNU_SOURCE 1 |
|---|
| 2623 | | #define _POSIX_PTHREAD_SEMANTICS 1 |
|---|
| 2624 | | #define _TANDEM_SOURCE 1 |
|---|
| 2625 | | #define YYTEXT_POINTER 1 |
|---|
| 2626 | | #define HAVE_DLFCN_H 1 |
|---|
| 2627 | | #define LT_OBJDIR ".libs/" |
|---|
| 2628 | | #define _FILE_OFFSET_BITS 64 |
|---|
| 2629 | | #define UNUSED __attribute__ ((unused)) |
|---|
| 2630 | | #define _PAM_ISA "/lib/security" |
|---|
| 2631 | | #define USE_LCKPWDF 1 |
|---|
| 2632 | | #define HAVE_PATHS_H 1 |
|---|
| 2633 | | #define PAM_PATH_MAILDIR "/var/spool/mail" |
|---|
| 2634 | | #define PAM_PATH_XAUTH "/usr/bin/xauth" |
|---|
| 2635 | | #define HAVE_CRACK_H 1 |
|---|
| 2636 | | #define HAVE_CRYPT_H 1 |
|---|
| 2637 | | /* end confdefs.h. */ |
|---|
| 2638 | | |
|---|
| 2639 | | /* Override any GCC internal prototype to avoid an error. |
|---|
| 2640 | | Use char because int might match the return type of a GCC |
|---|
| 2641 | | builtin and then its argument prototype would still apply. */ |
|---|
| 2642 | | #ifdef __cplusplus |
|---|
| 2643 | | extern "C" |
|---|
| 2644 | | #endif |
|---|
| 2645 | | char crypt (); |
|---|
| 2646 | | int |
|---|
| 2647 | | main () |
|---|
| 2648 | | { |
|---|
| 2649 | | return crypt (); |
|---|
| 2650 | | ; |
|---|
| 2651 | | return 0; |
|---|
| 2652 | | } |
|---|
| 2653 | configure:14994: armv4tl-softfloat-linux-gnueabi-gcc -o conftest -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow -L/usr/armv4tl-softfloat-linux-gnueabi/usr/lib -L/usr/armv4tl-softfloat-linux-gnueabi/lib -Wl,--as-needed -Wl,-O1 conftest.c -lcrypt >&5 |
|---|
| 2654 | conftest.c:44: warning: function declaration isn't a prototype |
|---|
| 2655 | conftest.c:47: warning: function declaration isn't a prototype |
|---|
| 2656 | configure:15001: $? = 0 |
|---|
| 2657 | configure:15032: result: -lcrypt |
|---|
| 2658 | configure:15047: checking for crypt_r |
|---|
| 2659 | configure:15103: armv4tl-softfloat-linux-gnueabi-gcc -o conftest -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow -L/usr/armv4tl-softfloat-linux-gnueabi/usr/lib -L/usr/armv4tl-softfloat-linux-gnueabi/lib -Wl,--as-needed -Wl,-O1 conftest.c -lcrypt >&5 |
|---|
| 2660 | conftest.c:60: warning: function declaration isn't a prototype |
|---|
| 2661 | conftest.c:70: warning: function declaration isn't a prototype |
|---|
| 2662 | configure:15110: $? = 0 |
|---|
| 2663 | configure:15132: result: yes |
|---|
| 2664 | configure:15047: checking for crypt_gensalt_rn |
|---|
| 2665 | configure:15103: armv4tl-softfloat-linux-gnueabi-gcc -o conftest -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow -L/usr/armv4tl-softfloat-linux-gnueabi/usr/lib -L/usr/armv4tl-softfloat-linux-gnueabi/lib -Wl,--as-needed -Wl,-O1 conftest.c -lcrypt >&5 |
|---|
| 2666 | conftest.c:61: warning: function declaration isn't a prototype |
|---|
| 2667 | conftest.c:71: warning: function declaration isn't a prototype |
|---|
| 2668 | /usr/armv4tl-softfloat-linux-gnueabi/tmp/portage/sys-libs/pam-1.1.0/temp/ccyAezFH.o: In function `main': |
|---|
| 2669 | conftest.c:(.text+0x8): undefined reference to `crypt_gensalt_rn' |
|---|
| 2670 | collect2: ld returned 1 exit status |
|---|
| 2671 | configure:15110: $? = 1 |
|---|
| 2672 | configure: failed program was: |
|---|
| 2673 | | /* confdefs.h. */ |
|---|
| 2674 | | #define PACKAGE_NAME "" |
|---|
| 2675 | | #define PACKAGE_TARNAME "" |
|---|
| 2676 | | #define PACKAGE_VERSION "" |
|---|
| 2677 | | #define PACKAGE_STRING "" |
|---|
| 2678 | | #define PACKAGE_BUGREPORT "" |
|---|
| 2679 | | #define PACKAGE "Linux-PAM" |
|---|
| 2680 | | #define VERSION "1.1.0" |
|---|
| 2681 | | #define STDC_HEADERS 1 |
|---|
| 2682 | | #define HAVE_SYS_TYPES_H 1 |
|---|
| 2683 | | #define HAVE_SYS_STAT_H 1 |
|---|
| 2684 | | #define HAVE_STDLIB_H 1 |
|---|
| 2685 | | #define HAVE_STRING_H 1 |
|---|
| 2686 | | #define HAVE_MEMORY_H 1 |
|---|
| 2687 | | #define HAVE_STRINGS_H 1 |
|---|
| 2688 | | #define HAVE_INTTYPES_H 1 |
|---|
| 2689 | | #define HAVE_STDINT_H 1 |
|---|
| 2690 | | #define HAVE_UNISTD_H 1 |
|---|
| 2691 | | #define __EXTENSIONS__ 1 |
|---|
| 2692 | | #define _ALL_SOURCE 1 |
|---|
| 2693 | | #define _GNU_SOURCE 1 |
|---|
| 2694 | | #define _POSIX_PTHREAD_SEMANTICS 1 |
|---|
| 2695 | | #define _TANDEM_SOURCE 1 |
|---|
| 2696 | | #define YYTEXT_POINTER 1 |
|---|
| 2697 | | #define HAVE_DLFCN_H 1 |
|---|
| 2698 | | #define LT_OBJDIR ".libs/" |
|---|
| 2699 | | #define _FILE_OFFSET_BITS 64 |
|---|
| 2700 | | #define UNUSED __attribute__ ((unused)) |
|---|
| 2701 | | #define _PAM_ISA "/lib/security" |
|---|
| 2702 | | #define USE_LCKPWDF 1 |
|---|
| 2703 | | #define HAVE_PATHS_H 1 |
|---|
| 2704 | | #define PAM_PATH_MAILDIR "/var/spool/mail" |
|---|
| 2705 | | #define PAM_PATH_XAUTH "/usr/bin/xauth" |
|---|
| 2706 | | #define HAVE_CRACK_H 1 |
|---|
| 2707 | | #define HAVE_CRYPT_H 1 |
|---|
| 2708 | | #define HAVE_CRYPT_R 1 |
|---|
| 2709 | | /* end confdefs.h. */ |
|---|
| 2710 | | /* Define crypt_gensalt_rn to an innocuous variant, in case <limits.h> declares crypt_gensalt_rn. |
|---|
| 2711 | | For example, HP-UX 11i <limits.h> declares gettimeofday. */ |
|---|
| 2712 | | #define crypt_gensalt_rn innocuous_crypt_gensalt_rn |
|---|
| 2713 | | |
|---|
| 2714 | | /* System header to define __stub macros and hopefully few prototypes, |
|---|
| 2715 | | which can conflict with char crypt_gensalt_rn (); below. |
|---|
| 2716 | | Prefer <limits.h> to <assert.h> if __STDC__ is defined, since |
|---|
| 2717 | | <limits.h> exists even on freestanding compilers. */ |
|---|
| 2718 | | |
|---|
| 2719 | | #ifdef __STDC__ |
|---|
| 2720 | | # include <limits.h> |
|---|
| 2721 | | #else |
|---|
| 2722 | | # include <assert.h> |
|---|
| 2723 | | #endif |
|---|
| 2724 | | |
|---|
| 2725 | | #undef crypt_gensalt_rn |
|---|
| 2726 | | |
|---|
| 2727 | | /* Override any GCC internal prototype to avoid an error. |
|---|
| 2728 | | Use char because int might match the return type of a GCC |
|---|
| 2729 | | builtin and then its argument prototype would still apply. */ |
|---|
| 2730 | | #ifdef __cplusplus |
|---|
| 2731 | | extern "C" |
|---|
| 2732 | | #endif |
|---|
| 2733 | | char crypt_gensalt_rn (); |
|---|
| 2734 | | /* The GNU C library defines this for functions which it implements |
|---|
| 2735 | | to always fail with ENOSYS. Some functions are actually named |
|---|
| 2736 | | something starting with __ and the normal name is an alias. */ |
|---|
| 2737 | | #if defined __stub_crypt_gensalt_rn || defined __stub___crypt_gensalt_rn |
|---|
| 2738 | | choke me |
|---|
| 2739 | | #endif |
|---|
| 2740 | | |
|---|
| 2741 | | int |
|---|
| 2742 | | main () |
|---|
| 2743 | | { |
|---|
| 2744 | | return crypt_gensalt_rn (); |
|---|
| 2745 | | ; |
|---|
| 2746 | | return 0; |
|---|
| 2747 | | } |
|---|
| 2748 | configure:15132: result: no |
|---|
| 2749 | configure:15743: checking rpcsvc/ypclnt.h usability |
|---|
| 2750 | configure:15760: armv4tl-softfloat-linux-gnueabi-gcc -c -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow conftest.c >&5 |
|---|
| 2751 | configure:15767: $? = 0 |
|---|
| 2752 | configure:15781: result: yes |
|---|
| 2753 | configure:15785: checking rpcsvc/ypclnt.h presence |
|---|
| 2754 | configure:15800: armv4tl-softfloat-linux-gnueabi-gcc -E conftest.c |
|---|
| 2755 | configure:15807: $? = 0 |
|---|
| 2756 | configure:15821: result: yes |
|---|
| 2757 | configure:15849: checking for rpcsvc/ypclnt.h |
|---|
| 2758 | configure:15858: result: yes |
|---|
| 2759 | configure:15743: checking rpcsvc/yp_prot.h usability |
|---|
| 2760 | configure:15760: armv4tl-softfloat-linux-gnueabi-gcc -c -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow conftest.c >&5 |
|---|
| 2761 | configure:15767: $? = 0 |
|---|
| 2762 | configure:15781: result: yes |
|---|
| 2763 | configure:15785: checking rpcsvc/yp_prot.h presence |
|---|
| 2764 | configure:15800: armv4tl-softfloat-linux-gnueabi-gcc -E conftest.c |
|---|
| 2765 | configure:15807: $? = 0 |
|---|
| 2766 | configure:15821: result: yes |
|---|
| 2767 | configure:15849: checking for rpcsvc/yp_prot.h |
|---|
| 2768 | configure:15858: result: yes |
|---|
| 2769 | configure:15743: checking netdb.h usability |
|---|
| 2770 | configure:15760: armv4tl-softfloat-linux-gnueabi-gcc -c -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow conftest.c >&5 |
|---|
| 2771 | configure:15767: $? = 0 |
|---|
| 2772 | configure:15781: result: yes |
|---|
| 2773 | configure:15785: checking netdb.h presence |
|---|
| 2774 | configure:15800: armv4tl-softfloat-linux-gnueabi-gcc -E conftest.c |
|---|
| 2775 | configure:15807: $? = 0 |
|---|
| 2776 | configure:15821: result: yes |
|---|
| 2777 | configure:15849: checking for netdb.h |
|---|
| 2778 | configure:15858: result: yes |
|---|
| 2779 | configure:15882: checking for yp_get_default_domain |
|---|
| 2780 | configure:15938: armv4tl-softfloat-linux-gnueabi-gcc -o conftest -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow -L/usr/armv4tl-softfloat-linux-gnueabi/usr/lib -L/usr/armv4tl-softfloat-linux-gnueabi/lib -Wl,--as-needed -Wl,-O1 conftest.c >&5 |
|---|
| 2781 | conftest.c:65: warning: function declaration isn't a prototype |
|---|
| 2782 | conftest.c:75: warning: function declaration isn't a prototype |
|---|
| 2783 | /usr/armv4tl-softfloat-linux-gnueabi/tmp/portage/sys-libs/pam-1.1.0/temp/ccx5SKxz.o: In function `main': |
|---|
| 2784 | conftest.c:(.text+0x8): undefined reference to `yp_get_default_domain' |
|---|
| 2785 | collect2: ld returned 1 exit status |
|---|
| 2786 | configure:15945: $? = 1 |
|---|
| 2787 | configure: failed program was: |
|---|
| 2788 | | /* confdefs.h. */ |
|---|
| 2789 | | #define PACKAGE_NAME "" |
|---|
| 2790 | | #define PACKAGE_TARNAME "" |
|---|
| 2791 | | #define PACKAGE_VERSION "" |
|---|
| 2792 | | #define PACKAGE_STRING "" |
|---|
| 2793 | | #define PACKAGE_BUGREPORT "" |
|---|
| 2794 | | #define PACKAGE "Linux-PAM" |
|---|
| 2795 | | #define VERSION "1.1.0" |
|---|
| 2796 | | #define STDC_HEADERS 1 |
|---|
| 2797 | | #define HAVE_SYS_TYPES_H 1 |
|---|
| 2798 | | #define HAVE_SYS_STAT_H 1 |
|---|
| 2799 | | #define HAVE_STDLIB_H 1 |
|---|
| 2800 | | #define HAVE_STRING_H 1 |
|---|
| 2801 | | #define HAVE_MEMORY_H 1 |
|---|
| 2802 | | #define HAVE_STRINGS_H 1 |
|---|
| 2803 | | #define HAVE_INTTYPES_H 1 |
|---|
| 2804 | | #define HAVE_STDINT_H 1 |
|---|
| 2805 | | #define HAVE_UNISTD_H 1 |
|---|
| 2806 | | #define __EXTENSIONS__ 1 |
|---|
| 2807 | | #define _ALL_SOURCE 1 |
|---|
| 2808 | | #define _GNU_SOURCE 1 |
|---|
| 2809 | | #define _POSIX_PTHREAD_SEMANTICS 1 |
|---|
| 2810 | | #define _TANDEM_SOURCE 1 |
|---|
| 2811 | | #define YYTEXT_POINTER 1 |
|---|
| 2812 | | #define HAVE_DLFCN_H 1 |
|---|
| 2813 | | #define LT_OBJDIR ".libs/" |
|---|
| 2814 | | #define _FILE_OFFSET_BITS 64 |
|---|
| 2815 | | #define UNUSED __attribute__ ((unused)) |
|---|
| 2816 | | #define _PAM_ISA "/lib/security" |
|---|
| 2817 | | #define USE_LCKPWDF 1 |
|---|
| 2818 | | #define HAVE_PATHS_H 1 |
|---|
| 2819 | | #define PAM_PATH_MAILDIR "/var/spool/mail" |
|---|
| 2820 | | #define PAM_PATH_XAUTH "/usr/bin/xauth" |
|---|
| 2821 | | #define HAVE_CRACK_H 1 |
|---|
| 2822 | | #define HAVE_CRYPT_H 1 |
|---|
| 2823 | | #define HAVE_CRYPT_R 1 |
|---|
| 2824 | | #define PAM_PATH_RANDOMDEV "/dev/urandom" |
|---|
| 2825 | | #define HAVE_RPCSVC_YPCLNT_H 1 |
|---|
| 2826 | | #define HAVE_RPCSVC_YP_PROT_H 1 |
|---|
| 2827 | | #define HAVE_NETDB_H 1 |
|---|
| 2828 | | /* end confdefs.h. */ |
|---|
| 2829 | | /* Define yp_get_default_domain to an innocuous variant, in case <limits.h> declares yp_get_default_domain. |
|---|
| 2830 | | For example, HP-UX 11i <limits.h> declares gettimeofday. */ |
|---|
| 2831 | | #define yp_get_default_domain innocuous_yp_get_default_domain |
|---|
| 2832 | | |
|---|
| 2833 | | /* System header to define __stub macros and hopefully few prototypes, |
|---|
| 2834 | | which can conflict with char yp_get_default_domain (); below. |
|---|
| 2835 | | Prefer <limits.h> to <assert.h> if __STDC__ is defined, since |
|---|
| 2836 | | <limits.h> exists even on freestanding compilers. */ |
|---|
| 2837 | | |
|---|
| 2838 | | #ifdef __STDC__ |
|---|
| 2839 | | # include <limits.h> |
|---|
| 2840 | | #else |
|---|
| 2841 | | # include <assert.h> |
|---|
| 2842 | | #endif |
|---|
| 2843 | | |
|---|
| 2844 | | #undef yp_get_default_domain |
|---|
| 2845 | | |
|---|
| 2846 | | /* Override any GCC internal prototype to avoid an error. |
|---|
| 2847 | | Use char because int might match the return type of a GCC |
|---|
| 2848 | | builtin and then its argument prototype would still apply. */ |
|---|
| 2849 | | #ifdef __cplusplus |
|---|
| 2850 | | extern "C" |
|---|
| 2851 | | #endif |
|---|
| 2852 | | char yp_get_default_domain (); |
|---|
| 2853 | | /* The GNU C library defines this for functions which it implements |
|---|
| 2854 | | to always fail with ENOSYS. Some functions are actually named |
|---|
| 2855 | | something starting with __ and the normal name is an alias. */ |
|---|
| 2856 | | #if defined __stub_yp_get_default_domain || defined __stub___yp_get_default_domain |
|---|
| 2857 | | choke me |
|---|
| 2858 | | #endif |
|---|
| 2859 | | |
|---|
| 2860 | | int |
|---|
| 2861 | | main () |
|---|
| 2862 | | { |
|---|
| 2863 | | return yp_get_default_domain (); |
|---|
| 2864 | | ; |
|---|
| 2865 | | return 0; |
|---|
| 2866 | | } |
|---|
| 2867 | configure:15967: result: no |
|---|
| 2868 | configure:15977: checking for yp_get_default_domain in -lnsl |
|---|
| 2869 | configure:16012: armv4tl-softfloat-linux-gnueabi-gcc -o conftest -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow -L/usr/armv4tl-softfloat-linux-gnueabi/usr/lib -L/usr/armv4tl-softfloat-linux-gnueabi/lib -Wl,--as-needed -Wl,-O1 conftest.c -lnsl >&5 |
|---|
| 2870 | conftest.c:49: warning: function declaration isn't a prototype |
|---|
| 2871 | conftest.c:52: warning: function declaration isn't a prototype |
|---|
| 2872 | configure:16019: $? = 0 |
|---|
| 2873 | configure:16040: result: yes |
|---|
| 2874 | configure:16061: checking for innetgr |
|---|
| 2875 | configure:16117: armv4tl-softfloat-linux-gnueabi-gcc -o conftest -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow -L/usr/armv4tl-softfloat-linux-gnueabi/usr/lib -L/usr/armv4tl-softfloat-linux-gnueabi/lib -Wl,--as-needed -Wl,-O1 conftest.c >&5 |
|---|
| 2876 | conftest.c:65: warning: function declaration isn't a prototype |
|---|
| 2877 | conftest.c:75: warning: function declaration isn't a prototype |
|---|
| 2878 | configure:16124: $? = 0 |
|---|
| 2879 | configure:16146: result: yes |
|---|
| 2880 | configure:16496: checking for dirent.h that defines DIR |
|---|
| 2881 | configure:16525: armv4tl-softfloat-linux-gnueabi-gcc -c -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow conftest.c >&5 |
|---|
| 2882 | conftest.c:49: warning: function declaration isn't a prototype |
|---|
| 2883 | configure:16532: $? = 0 |
|---|
| 2884 | configure:16549: result: yes |
|---|
| 2885 | configure:16564: checking for library containing opendir |
|---|
| 2886 | configure:16605: armv4tl-softfloat-linux-gnueabi-gcc -o conftest -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow -L/usr/armv4tl-softfloat-linux-gnueabi/usr/lib -L/usr/armv4tl-softfloat-linux-gnueabi/lib -Wl,--as-needed -Wl,-O1 conftest.c >&5 |
|---|
| 2887 | conftest.c:52: warning: function declaration isn't a prototype |
|---|
| 2888 | conftest.c:55: warning: function declaration isn't a prototype |
|---|
| 2889 | configure:16612: $? = 0 |
|---|
| 2890 | configure:16643: result: none required |
|---|
| 2891 | configure:16741: checking for ANSI C header files |
|---|
| 2892 | configure:16909: result: yes |
|---|
| 2893 | configure:16919: checking for sys/wait.h that is POSIX.1 compatible |
|---|
| 2894 | configure:16955: armv4tl-softfloat-linux-gnueabi-gcc -c -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow conftest.c >&5 |
|---|
| 2895 | conftest.c:57: warning: function declaration isn't a prototype |
|---|
| 2896 | configure:16962: $? = 0 |
|---|
| 2897 | configure:16977: result: yes |
|---|
| 2898 | configure:17014: checking fcntl.h usability |
|---|
| 2899 | configure:17031: armv4tl-softfloat-linux-gnueabi-gcc -c -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow conftest.c >&5 |
|---|
| 2900 | configure:17038: $? = 0 |
|---|
| 2901 | configure:17052: result: yes |
|---|
| 2902 | configure:17056: checking fcntl.h presence |
|---|
| 2903 | configure:17071: armv4tl-softfloat-linux-gnueabi-gcc -E conftest.c |
|---|
| 2904 | configure:17078: $? = 0 |
|---|
| 2905 | configure:17092: result: yes |
|---|
| 2906 | configure:17120: checking for fcntl.h |
|---|
| 2907 | configure:17129: result: yes |
|---|
| 2908 | configure:17014: checking limits.h usability |
|---|
| 2909 | configure:17031: armv4tl-softfloat-linux-gnueabi-gcc -c -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow conftest.c >&5 |
|---|
| 2910 | configure:17038: $? = 0 |
|---|
| 2911 | configure:17052: result: yes |
|---|
| 2912 | configure:17056: checking limits.h presence |
|---|
| 2913 | configure:17071: armv4tl-softfloat-linux-gnueabi-gcc -E conftest.c |
|---|
| 2914 | configure:17078: $? = 0 |
|---|
| 2915 | configure:17092: result: yes |
|---|
| 2916 | configure:17120: checking for limits.h |
|---|
| 2917 | configure:17129: result: yes |
|---|
| 2918 | configure:17014: checking malloc.h usability |
|---|
| 2919 | configure:17031: armv4tl-softfloat-linux-gnueabi-gcc -c -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow conftest.c >&5 |
|---|
| 2920 | configure:17038: $? = 0 |
|---|
| 2921 | configure:17052: result: yes |
|---|
| 2922 | configure:17056: checking malloc.h presence |
|---|
| 2923 | configure:17071: armv4tl-softfloat-linux-gnueabi-gcc -E conftest.c |
|---|
| 2924 | configure:17078: $? = 0 |
|---|
| 2925 | configure:17092: result: yes |
|---|
| 2926 | configure:17120: checking for malloc.h |
|---|
| 2927 | configure:17129: result: yes |
|---|
| 2928 | configure:17014: checking sys/file.h usability |
|---|
| 2929 | configure:17031: armv4tl-softfloat-linux-gnueabi-gcc -c -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow conftest.c >&5 |
|---|
| 2930 | configure:17038: $? = 0 |
|---|
| 2931 | configure:17052: result: yes |
|---|
| 2932 | configure:17056: checking sys/file.h presence |
|---|
| 2933 | configure:17071: armv4tl-softfloat-linux-gnueabi-gcc -E conftest.c |
|---|
| 2934 | configure:17078: $? = 0 |
|---|
| 2935 | configure:17092: result: yes |
|---|
| 2936 | configure:17120: checking for sys/file.h |
|---|
| 2937 | configure:17129: result: yes |
|---|
| 2938 | configure:17014: checking sys/ioctl.h usability |
|---|
| 2939 | configure:17031: armv4tl-softfloat-linux-gnueabi-gcc -c -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow conftest.c >&5 |
|---|
| 2940 | configure:17038: $? = 0 |
|---|
| 2941 | configure:17052: result: yes |
|---|
| 2942 | configure:17056: checking sys/ioctl.h presence |
|---|
| 2943 | configure:17071: armv4tl-softfloat-linux-gnueabi-gcc -E conftest.c |
|---|
| 2944 | configure:17078: $? = 0 |
|---|
| 2945 | configure:17092: result: yes |
|---|
| 2946 | configure:17120: checking for sys/ioctl.h |
|---|
| 2947 | configure:17129: result: yes |
|---|
| 2948 | configure:17014: checking sys/time.h usability |
|---|
| 2949 | configure:17031: armv4tl-softfloat-linux-gnueabi-gcc -c -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow conftest.c >&5 |
|---|
| 2950 | configure:17038: $? = 0 |
|---|
| 2951 | configure:17052: result: yes |
|---|
| 2952 | configure:17056: checking sys/time.h presence |
|---|
| 2953 | configure:17071: armv4tl-softfloat-linux-gnueabi-gcc -E conftest.c |
|---|
| 2954 | configure:17078: $? = 0 |
|---|
| 2955 | configure:17092: result: yes |
|---|
| 2956 | configure:17120: checking for sys/time.h |
|---|
| 2957 | configure:17129: result: yes |
|---|
| 2958 | configure:17014: checking syslog.h usability |
|---|
| 2959 | configure:17031: armv4tl-softfloat-linux-gnueabi-gcc -c -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow conftest.c >&5 |
|---|
| 2960 | configure:17038: $? = 0 |
|---|
| 2961 | configure:17052: result: yes |
|---|
| 2962 | configure:17056: checking syslog.h presence |
|---|
| 2963 | configure:17071: armv4tl-softfloat-linux-gnueabi-gcc -E conftest.c |
|---|
| 2964 | configure:17078: $? = 0 |
|---|
| 2965 | configure:17092: result: yes |
|---|
| 2966 | configure:17120: checking for syslog.h |
|---|
| 2967 | configure:17129: result: yes |
|---|
| 2968 | configure:17014: checking net/if.h usability |
|---|
| 2969 | configure:17031: armv4tl-softfloat-linux-gnueabi-gcc -c -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow conftest.c >&5 |
|---|
| 2970 | configure:17038: $? = 0 |
|---|
| 2971 | configure:17052: result: yes |
|---|
| 2972 | configure:17056: checking net/if.h presence |
|---|
| 2973 | configure:17071: armv4tl-softfloat-linux-gnueabi-gcc -E conftest.c |
|---|
| 2974 | configure:17078: $? = 0 |
|---|
| 2975 | configure:17092: result: yes |
|---|
| 2976 | configure:17120: checking for net/if.h |
|---|
| 2977 | configure:17129: result: yes |
|---|
| 2978 | configure:17014: checking termio.h usability |
|---|
| 2979 | configure:17031: armv4tl-softfloat-linux-gnueabi-gcc -c -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow conftest.c >&5 |
|---|
| 2980 | configure:17038: $? = 0 |
|---|
| 2981 | configure:17052: result: yes |
|---|
| 2982 | configure:17056: checking termio.h presence |
|---|
| 2983 | configure:17071: armv4tl-softfloat-linux-gnueabi-gcc -E conftest.c |
|---|
| 2984 | configure:17078: $? = 0 |
|---|
| 2985 | configure:17092: result: yes |
|---|
| 2986 | configure:17120: checking for termio.h |
|---|
| 2987 | configure:17129: result: yes |
|---|
| 2988 | configure:17003: checking for unistd.h |
|---|
| 2989 | configure:17010: result: yes |
|---|
| 2990 | configure:17014: checking sys/fsuid.h usability |
|---|
| 2991 | configure:17031: armv4tl-softfloat-linux-gnueabi-gcc -c -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow conftest.c >&5 |
|---|
| 2992 | configure:17038: $? = 0 |
|---|
| 2993 | configure:17052: result: yes |
|---|
| 2994 | configure:17056: checking sys/fsuid.h presence |
|---|
| 2995 | configure:17071: armv4tl-softfloat-linux-gnueabi-gcc -E conftest.c |
|---|
| 2996 | configure:17078: $? = 0 |
|---|
| 2997 | configure:17092: result: yes |
|---|
| 2998 | configure:17120: checking for sys/fsuid.h |
|---|
| 2999 | configure:17129: result: yes |
|---|
| 3000 | configure:17014: checking inittypes.h usability |
|---|
| 3001 | configure:17031: armv4tl-softfloat-linux-gnueabi-gcc -c -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow conftest.c >&5 |
|---|
| 3002 | conftest.c:91:23: error: inittypes.h: No such file or directory |
|---|
| 3003 | configure:17038: $? = 1 |
|---|
| 3004 | configure: failed program was: |
|---|
| 3005 | | /* confdefs.h. */ |
|---|
| 3006 | | #define PACKAGE_NAME "" |
|---|
| 3007 | | #define PACKAGE_TARNAME "" |
|---|
| 3008 | | #define PACKAGE_VERSION "" |
|---|
| 3009 | | #define PACKAGE_STRING "" |
|---|
| 3010 | | #define PACKAGE_BUGREPORT "" |
|---|
| 3011 | | #define PACKAGE "Linux-PAM" |
|---|
| 3012 | | #define VERSION "1.1.0" |
|---|
| 3013 | | #define STDC_HEADERS 1 |
|---|
| 3014 | | #define HAVE_SYS_TYPES_H 1 |
|---|
| 3015 | | #define HAVE_SYS_STAT_H 1 |
|---|
| 3016 | | #define HAVE_STDLIB_H 1 |
|---|
| 3017 | | #define HAVE_STRING_H 1 |
|---|
| 3018 | | #define HAVE_MEMORY_H 1 |
|---|
| 3019 | | #define HAVE_STRINGS_H 1 |
|---|
| 3020 | | #define HAVE_INTTYPES_H 1 |
|---|
| 3021 | | #define HAVE_STDINT_H 1 |
|---|
| 3022 | | #define HAVE_UNISTD_H 1 |
|---|
| 3023 | | #define __EXTENSIONS__ 1 |
|---|
| 3024 | | #define _ALL_SOURCE 1 |
|---|
| 3025 | | #define _GNU_SOURCE 1 |
|---|
| 3026 | | #define _POSIX_PTHREAD_SEMANTICS 1 |
|---|
| 3027 | | #define _TANDEM_SOURCE 1 |
|---|
| 3028 | | #define YYTEXT_POINTER 1 |
|---|
| 3029 | | #define HAVE_DLFCN_H 1 |
|---|
| 3030 | | #define LT_OBJDIR ".libs/" |
|---|
| 3031 | | #define _FILE_OFFSET_BITS 64 |
|---|
| 3032 | | #define UNUSED __attribute__ ((unused)) |
|---|
| 3033 | | #define _PAM_ISA "/lib/security" |
|---|
| 3034 | | #define USE_LCKPWDF 1 |
|---|
| 3035 | | #define HAVE_PATHS_H 1 |
|---|
| 3036 | | #define PAM_PATH_MAILDIR "/var/spool/mail" |
|---|
| 3037 | | #define PAM_PATH_XAUTH "/usr/bin/xauth" |
|---|
| 3038 | | #define HAVE_CRACK_H 1 |
|---|
| 3039 | | #define HAVE_CRYPT_H 1 |
|---|
| 3040 | | #define HAVE_CRYPT_R 1 |
|---|
| 3041 | | #define PAM_PATH_RANDOMDEV "/dev/urandom" |
|---|
| 3042 | | #define HAVE_RPCSVC_YPCLNT_H 1 |
|---|
| 3043 | | #define HAVE_RPCSVC_YP_PROT_H 1 |
|---|
| 3044 | | #define HAVE_NETDB_H 1 |
|---|
| 3045 | | #define HAVE_INNETGR 1 |
|---|
| 3046 | | #define HAVE_NIS 1 |
|---|
| 3047 | | #define HAVE_DIRENT_H 1 |
|---|
| 3048 | | #define STDC_HEADERS 1 |
|---|
| 3049 | | #define HAVE_SYS_WAIT_H 1 |
|---|
| 3050 | | #define HAVE_FCNTL_H 1 |
|---|
| 3051 | | #define HAVE_LIMITS_H 1 |
|---|
| 3052 | | #define HAVE_MALLOC_H 1 |
|---|
| 3053 | | #define HAVE_SYS_FILE_H 1 |
|---|
| 3054 | | #define HAVE_SYS_IOCTL_H 1 |
|---|
| 3055 | | #define HAVE_SYS_TIME_H 1 |
|---|
| 3056 | | #define HAVE_SYSLOG_H 1 |
|---|
| 3057 | | #define HAVE_NET_IF_H 1 |
|---|
| 3058 | | #define HAVE_TERMIO_H 1 |
|---|
| 3059 | | #define HAVE_UNISTD_H 1 |
|---|
| 3060 | | #define HAVE_SYS_FSUID_H 1 |
|---|
| 3061 | | /* end confdefs.h. */ |
|---|
| 3062 | | #include <stdio.h> |
|---|
| 3063 | | #ifdef HAVE_SYS_TYPES_H |
|---|
| 3064 | | # include <sys/types.h> |
|---|
| 3065 | | #endif |
|---|
| 3066 | | #ifdef HAVE_SYS_STAT_H |
|---|
| 3067 | | # include <sys/stat.h> |
|---|
| 3068 | | #endif |
|---|
| 3069 | | #ifdef STDC_HEADERS |
|---|
| 3070 | | # include <stdlib.h> |
|---|
| 3071 | | # include <stddef.h> |
|---|
| 3072 | | #else |
|---|
| 3073 | | # ifdef HAVE_STDLIB_H |
|---|
| 3074 | | # include <stdlib.h> |
|---|
| 3075 | | # endif |
|---|
| 3076 | | #endif |
|---|
| 3077 | | #ifdef HAVE_STRING_H |
|---|
| 3078 | | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H |
|---|
| 3079 | | # include <memory.h> |
|---|
| 3080 | | # endif |
|---|
| 3081 | | # include <string.h> |
|---|
| 3082 | | #endif |
|---|
| 3083 | | #ifdef HAVE_STRINGS_H |
|---|
| 3084 | | # include <strings.h> |
|---|
| 3085 | | #endif |
|---|
| 3086 | | #ifdef HAVE_INTTYPES_H |
|---|
| 3087 | | # include <inttypes.h> |
|---|
| 3088 | | #endif |
|---|
| 3089 | | #ifdef HAVE_STDINT_H |
|---|
| 3090 | | # include <stdint.h> |
|---|
| 3091 | | #endif |
|---|
| 3092 | | #ifdef HAVE_UNISTD_H |
|---|
| 3093 | | # include <unistd.h> |
|---|
| 3094 | | #endif |
|---|
| 3095 | | #include <inittypes.h> |
|---|
| 3096 | configure:17052: result: no |
|---|
| 3097 | configure:17056: checking inittypes.h presence |
|---|
| 3098 | configure:17071: armv4tl-softfloat-linux-gnueabi-gcc -E conftest.c |
|---|
| 3099 | conftest.c:58:23: error: inittypes.h: No such file or directory |
|---|
| 3100 | configure:17078: $? = 1 |
|---|
| 3101 | configure: failed program was: |
|---|
| 3102 | | /* confdefs.h. */ |
|---|
| 3103 | | #define PACKAGE_NAME "" |
|---|
| 3104 | | #define PACKAGE_TARNAME "" |
|---|
| 3105 | | #define PACKAGE_VERSION "" |
|---|
| 3106 | | #define PACKAGE_STRING "" |
|---|
| 3107 | | #define PACKAGE_BUGREPORT "" |
|---|
| 3108 | | #define PACKAGE "Linux-PAM" |
|---|
| 3109 | | #define VERSION "1.1.0" |
|---|
| 3110 | | #define STDC_HEADERS 1 |
|---|
| 3111 | | #define HAVE_SYS_TYPES_H 1 |
|---|
| 3112 | | #define HAVE_SYS_STAT_H 1 |
|---|
| 3113 | | #define HAVE_STDLIB_H 1 |
|---|
| 3114 | | #define HAVE_STRING_H 1 |
|---|
| 3115 | | #define HAVE_MEMORY_H 1 |
|---|
| 3116 | | #define HAVE_STRINGS_H 1 |
|---|
| 3117 | | #define HAVE_INTTYPES_H 1 |
|---|
| 3118 | | #define HAVE_STDINT_H 1 |
|---|
| 3119 | | #define HAVE_UNISTD_H 1 |
|---|
| 3120 | | #define __EXTENSIONS__ 1 |
|---|
| 3121 | | #define _ALL_SOURCE 1 |
|---|
| 3122 | | #define _GNU_SOURCE 1 |
|---|
| 3123 | | #define _POSIX_PTHREAD_SEMANTICS 1 |
|---|
| 3124 | | #define _TANDEM_SOURCE 1 |
|---|
| 3125 | | #define YYTEXT_POINTER 1 |
|---|
| 3126 | | #define HAVE_DLFCN_H 1 |
|---|
| 3127 | | #define LT_OBJDIR ".libs/" |
|---|
| 3128 | | #define _FILE_OFFSET_BITS 64 |
|---|
| 3129 | | #define UNUSED __attribute__ ((unused)) |
|---|
| 3130 | | #define _PAM_ISA "/lib/security" |
|---|
| 3131 | | #define USE_LCKPWDF 1 |
|---|
| 3132 | | #define HAVE_PATHS_H 1 |
|---|
| 3133 | | #define PAM_PATH_MAILDIR "/var/spool/mail" |
|---|
| 3134 | | #define PAM_PATH_XAUTH "/usr/bin/xauth" |
|---|
| 3135 | | #define HAVE_CRACK_H 1 |
|---|
| 3136 | | #define HAVE_CRYPT_H 1 |
|---|
| 3137 | | #define HAVE_CRYPT_R 1 |
|---|
| 3138 | | #define PAM_PATH_RANDOMDEV "/dev/urandom" |
|---|
| 3139 | | #define HAVE_RPCSVC_YPCLNT_H 1 |
|---|
| 3140 | | #define HAVE_RPCSVC_YP_PROT_H 1 |
|---|
| 3141 | | #define HAVE_NETDB_H 1 |
|---|
| 3142 | | #define HAVE_INNETGR 1 |
|---|
| 3143 | | #define HAVE_NIS 1 |
|---|
| 3144 | | #define HAVE_DIRENT_H 1 |
|---|
| 3145 | | #define STDC_HEADERS 1 |
|---|
| 3146 | | #define HAVE_SYS_WAIT_H 1 |
|---|
| 3147 | | #define HAVE_FCNTL_H 1 |
|---|
| 3148 | | #define HAVE_LIMITS_H 1 |
|---|
| 3149 | | #define HAVE_MALLOC_H 1 |
|---|
| 3150 | | #define HAVE_SYS_FILE_H 1 |
|---|
| 3151 | | #define HAVE_SYS_IOCTL_H 1 |
|---|
| 3152 | | #define HAVE_SYS_TIME_H 1 |
|---|
| 3153 | | #define HAVE_SYSLOG_H 1 |
|---|
| 3154 | | #define HAVE_NET_IF_H 1 |
|---|
| 3155 | | #define HAVE_TERMIO_H 1 |
|---|
| 3156 | | #define HAVE_UNISTD_H 1 |
|---|
| 3157 | | #define HAVE_SYS_FSUID_H 1 |
|---|
| 3158 | | /* end confdefs.h. */ |
|---|
| 3159 | | #include <inittypes.h> |
|---|
| 3160 | configure:17092: result: no |
|---|
| 3161 | configure:17120: checking for inittypes.h |
|---|
| 3162 | configure:17129: result: no |
|---|
| 3163 | configure:17163: checking lastlog.h usability |
|---|
| 3164 | configure:17180: armv4tl-softfloat-linux-gnueabi-gcc -c -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow conftest.c >&5 |
|---|
| 3165 | configure:17187: $? = 0 |
|---|
| 3166 | configure:17201: result: yes |
|---|
| 3167 | configure:17205: checking lastlog.h presence |
|---|
| 3168 | configure:17220: armv4tl-softfloat-linux-gnueabi-gcc -E conftest.c |
|---|
| 3169 | configure:17227: $? = 0 |
|---|
| 3170 | configure:17241: result: yes |
|---|
| 3171 | configure:17269: checking for lastlog.h |
|---|
| 3172 | configure:17278: result: yes |
|---|
| 3173 | configure:17163: checking utmp.h usability |
|---|
| 3174 | configure:17180: armv4tl-softfloat-linux-gnueabi-gcc -c -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow conftest.c >&5 |
|---|
| 3175 | configure:17187: $? = 0 |
|---|
| 3176 | configure:17201: result: yes |
|---|
| 3177 | configure:17205: checking utmp.h presence |
|---|
| 3178 | configure:17220: armv4tl-softfloat-linux-gnueabi-gcc -E conftest.c |
|---|
| 3179 | configure:17227: $? = 0 |
|---|
| 3180 | configure:17241: result: yes |
|---|
| 3181 | configure:17269: checking for utmp.h |
|---|
| 3182 | configure:17278: result: yes |
|---|
| 3183 | configure:17163: checking utmpx.h usability |
|---|
| 3184 | configure:17180: armv4tl-softfloat-linux-gnueabi-gcc -c -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow conftest.c >&5 |
|---|
| 3185 | configure:17187: $? = 0 |
|---|
| 3186 | configure:17201: result: yes |
|---|
| 3187 | configure:17205: checking utmpx.h presence |
|---|
| 3188 | configure:17220: armv4tl-softfloat-linux-gnueabi-gcc -E conftest.c |
|---|
| 3189 | configure:17227: $? = 0 |
|---|
| 3190 | configure:17241: result: yes |
|---|
| 3191 | configure:17269: checking for utmpx.h |
|---|
| 3192 | configure:17278: result: yes |
|---|
| 3193 | configure:17295: checking whether byte ordering is bigendian |
|---|
| 3194 | configure:17675: result: no |
|---|
| 3195 | configure:17700: checking for an ANSI C-conforming const |
|---|
| 3196 | configure:17775: armv4tl-softfloat-linux-gnueabi-gcc -c -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow conftest.c >&5 |
|---|
| 3197 | conftest.c:64: warning: function declaration isn't a prototype |
|---|
| 3198 | conftest.c: In function 'main': |
|---|
| 3199 | conftest.c:84: warning: cast discards qualifiers from pointer target type |
|---|
| 3200 | conftest.c:90: warning: 't' is used uninitialized in this function |
|---|
| 3201 | conftest.c:106: warning: 'b' may be used uninitialized in this function |
|---|
| 3202 | conftest.c:112: warning: 'cs[0]' is used uninitialized in this function |
|---|
| 3203 | configure:17782: $? = 0 |
|---|
| 3204 | configure:17797: result: yes |
|---|
| 3205 | configure:17807: checking for uid_t in sys/types.h |
|---|
| 3206 | configure:17830: result: yes |
|---|
| 3207 | configure:17845: checking for off_t |
|---|
| 3208 | configure:17873: armv4tl-softfloat-linux-gnueabi-gcc -c -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow conftest.c >&5 |
|---|
| 3209 | conftest.c:96: warning: function declaration isn't a prototype |
|---|
| 3210 | configure:17880: $? = 0 |
|---|
| 3211 | configure:17907: armv4tl-softfloat-linux-gnueabi-gcc -c -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow conftest.c >&5 |
|---|
| 3212 | conftest.c:96: warning: function declaration isn't a prototype |
|---|
| 3213 | conftest.c: In function 'main': |
|---|
| 3214 | conftest.c:97: error: expected expression before ')' token |
|---|
| 3215 | configure:17914: $? = 1 |
|---|
| 3216 | configure: failed program was: |
|---|
| 3217 | | /* confdefs.h. */ |
|---|
| 3218 | | #define PACKAGE_NAME "" |
|---|
| 3219 | | #define PACKAGE_TARNAME "" |
|---|
| 3220 | | #define PACKAGE_VERSION "" |
|---|
| 3221 | | #define PACKAGE_STRING "" |
|---|
| 3222 | | #define PACKAGE_BUGREPORT "" |
|---|
| 3223 | | #define PACKAGE "Linux-PAM" |
|---|
| 3224 | | #define VERSION "1.1.0" |
|---|
| 3225 | | #define STDC_HEADERS 1 |
|---|
| 3226 | | #define HAVE_SYS_TYPES_H 1 |
|---|
| 3227 | | #define HAVE_SYS_STAT_H 1 |
|---|
| 3228 | | #define HAVE_STDLIB_H 1 |
|---|
| 3229 | | #define HAVE_STRING_H 1 |
|---|
| 3230 | | #define HAVE_MEMORY_H 1 |
|---|
| 3231 | | #define HAVE_STRINGS_H 1 |
|---|
| 3232 | | #define HAVE_INTTYPES_H 1 |
|---|
| 3233 | | #define HAVE_STDINT_H 1 |
|---|
| 3234 | | #define HAVE_UNISTD_H 1 |
|---|
| 3235 | | #define __EXTENSIONS__ 1 |
|---|
| 3236 | | #define _ALL_SOURCE 1 |
|---|
| 3237 | | #define _GNU_SOURCE 1 |
|---|
| 3238 | | #define _POSIX_PTHREAD_SEMANTICS 1 |
|---|
| 3239 | | #define _TANDEM_SOURCE 1 |
|---|
| 3240 | | #define YYTEXT_POINTER 1 |
|---|
| 3241 | | #define HAVE_DLFCN_H 1 |
|---|
| 3242 | | #define LT_OBJDIR ".libs/" |
|---|
| 3243 | | #define _FILE_OFFSET_BITS 64 |
|---|
| 3244 | | #define UNUSED __attribute__ ((unused)) |
|---|
| 3245 | | #define _PAM_ISA "/lib/security" |
|---|
| 3246 | | #define USE_LCKPWDF 1 |
|---|
| 3247 | | #define HAVE_PATHS_H 1 |
|---|
| 3248 | | #define PAM_PATH_MAILDIR "/var/spool/mail" |
|---|
| 3249 | | #define PAM_PATH_XAUTH "/usr/bin/xauth" |
|---|
| 3250 | | #define HAVE_CRACK_H 1 |
|---|
| 3251 | | #define HAVE_CRYPT_H 1 |
|---|
| 3252 | | #define HAVE_CRYPT_R 1 |
|---|
| 3253 | | #define PAM_PATH_RANDOMDEV "/dev/urandom" |
|---|
| 3254 | | #define HAVE_RPCSVC_YPCLNT_H 1 |
|---|
| 3255 | | #define HAVE_RPCSVC_YP_PROT_H 1 |
|---|
| 3256 | | #define HAVE_NETDB_H 1 |
|---|
| 3257 | | #define HAVE_INNETGR 1 |
|---|
| 3258 | | #define HAVE_NIS 1 |
|---|
| 3259 | | #define HAVE_DIRENT_H 1 |
|---|
| 3260 | | #define STDC_HEADERS 1 |
|---|
| 3261 | | #define HAVE_SYS_WAIT_H 1 |
|---|
| 3262 | | #define HAVE_FCNTL_H 1 |
|---|
| 3263 | | #define HAVE_LIMITS_H 1 |
|---|
| 3264 | | #define HAVE_MALLOC_H 1 |
|---|
| 3265 | | #define HAVE_SYS_FILE_H 1 |
|---|
| 3266 | | #define HAVE_SYS_IOCTL_H 1 |
|---|
| 3267 | | #define HAVE_SYS_TIME_H 1 |
|---|
| 3268 | | #define HAVE_SYSLOG_H 1 |
|---|
| 3269 | | #define HAVE_NET_IF_H 1 |
|---|
| 3270 | | #define HAVE_TERMIO_H 1 |
|---|
| 3271 | | #define HAVE_UNISTD_H 1 |
|---|
| 3272 | | #define HAVE_SYS_FSUID_H 1 |
|---|
| 3273 | | #define HAVE_LASTLOG_H 1 |
|---|
| 3274 | | #define HAVE_UTMP_H 1 |
|---|
| 3275 | | #define HAVE_UTMPX_H 1 |
|---|
| 3276 | | /* end confdefs.h. */ |
|---|
| 3277 | | #include <stdio.h> |
|---|
| 3278 | | #ifdef HAVE_SYS_TYPES_H |
|---|
| 3279 | | # include <sys/types.h> |
|---|
| 3280 | | #endif |
|---|
| 3281 | | #ifdef HAVE_SYS_STAT_H |
|---|
| 3282 | | # include <sys/stat.h> |
|---|
| 3283 | | #endif |
|---|
| 3284 | | #ifdef STDC_HEADERS |
|---|
| 3285 | | # include <stdlib.h> |
|---|
| 3286 | | # include <stddef.h> |
|---|
| 3287 | | #else |
|---|
| 3288 | | # ifdef HAVE_STDLIB_H |
|---|
| 3289 | | # include <stdlib.h> |
|---|
| 3290 | | # endif |
|---|
| 3291 | | #endif |
|---|
| 3292 | | #ifdef HAVE_STRING_H |
|---|
| 3293 | | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H |
|---|
| 3294 | | # include <memory.h> |
|---|
| 3295 | | # endif |
|---|
| 3296 | | # include <string.h> |
|---|
| 3297 | | #endif |
|---|
| 3298 | | #ifdef HAVE_STRINGS_H |
|---|
| 3299 | | # include <strings.h> |
|---|
| 3300 | | #endif |
|---|
| 3301 | | #ifdef HAVE_INTTYPES_H |
|---|
| 3302 | | # include <inttypes.h> |
|---|
| 3303 | | #endif |
|---|
| 3304 | | #ifdef HAVE_STDINT_H |
|---|
| 3305 | | # include <stdint.h> |
|---|
| 3306 | | #endif |
|---|
| 3307 | | #ifdef HAVE_UNISTD_H |
|---|
| 3308 | | # include <unistd.h> |
|---|
| 3309 | | #endif |
|---|
| 3310 | | int |
|---|
| 3311 | | main () |
|---|
| 3312 | | { |
|---|
| 3313 | | if (sizeof ((off_t))) |
|---|
| 3314 | | return 0; |
|---|
| 3315 | | ; |
|---|
| 3316 | | return 0; |
|---|
| 3317 | | } |
|---|
| 3318 | configure:17937: result: yes |
|---|
| 3319 | configure:17949: checking for pid_t |
|---|
| 3320 | configure:17977: armv4tl-softfloat-linux-gnueabi-gcc -c -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow conftest.c >&5 |
|---|
| 3321 | conftest.c:96: warning: function declaration isn't a prototype |
|---|
| 3322 | configure:17984: $? = 0 |
|---|
| 3323 | configure:18011: armv4tl-softfloat-linux-gnueabi-gcc -c -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow conftest.c >&5 |
|---|
| 3324 | conftest.c:96: warning: function declaration isn't a prototype |
|---|
| 3325 | conftest.c: In function 'main': |
|---|
| 3326 | conftest.c:97: error: expected expression before ')' token |
|---|
| 3327 | configure:18018: $? = 1 |
|---|
| 3328 | configure: failed program was: |
|---|
| 3329 | | /* confdefs.h. */ |
|---|
| 3330 | | #define PACKAGE_NAME "" |
|---|
| 3331 | | #define PACKAGE_TARNAME "" |
|---|
| 3332 | | #define PACKAGE_VERSION "" |
|---|
| 3333 | | #define PACKAGE_STRING "" |
|---|
| 3334 | | #define PACKAGE_BUGREPORT "" |
|---|
| 3335 | | #define PACKAGE "Linux-PAM" |
|---|
| 3336 | | #define VERSION "1.1.0" |
|---|
| 3337 | | #define STDC_HEADERS 1 |
|---|
| 3338 | | #define HAVE_SYS_TYPES_H 1 |
|---|
| 3339 | | #define HAVE_SYS_STAT_H 1 |
|---|
| 3340 | | #define HAVE_STDLIB_H 1 |
|---|
| 3341 | | #define HAVE_STRING_H 1 |
|---|
| 3342 | | #define HAVE_MEMORY_H 1 |
|---|
| 3343 | | #define HAVE_STRINGS_H 1 |
|---|
| 3344 | | #define HAVE_INTTYPES_H 1 |
|---|
| 3345 | | #define HAVE_STDINT_H 1 |
|---|
| 3346 | | #define HAVE_UNISTD_H 1 |
|---|
| 3347 | | #define __EXTENSIONS__ 1 |
|---|
| 3348 | | #define _ALL_SOURCE 1 |
|---|
| 3349 | | #define _GNU_SOURCE 1 |
|---|
| 3350 | | #define _POSIX_PTHREAD_SEMANTICS 1 |
|---|
| 3351 | | #define _TANDEM_SOURCE 1 |
|---|
| 3352 | | #define YYTEXT_POINTER 1 |
|---|
| 3353 | | #define HAVE_DLFCN_H 1 |
|---|
| 3354 | | #define LT_OBJDIR ".libs/" |
|---|
| 3355 | | #define _FILE_OFFSET_BITS 64 |
|---|
| 3356 | | #define UNUSED __attribute__ ((unused)) |
|---|
| 3357 | | #define _PAM_ISA "/lib/security" |
|---|
| 3358 | | #define USE_LCKPWDF 1 |
|---|
| 3359 | | #define HAVE_PATHS_H 1 |
|---|
| 3360 | | #define PAM_PATH_MAILDIR "/var/spool/mail" |
|---|
| 3361 | | #define PAM_PATH_XAUTH "/usr/bin/xauth" |
|---|
| 3362 | | #define HAVE_CRACK_H 1 |
|---|
| 3363 | | #define HAVE_CRYPT_H 1 |
|---|
| 3364 | | #define HAVE_CRYPT_R 1 |
|---|
| 3365 | | #define PAM_PATH_RANDOMDEV "/dev/urandom" |
|---|
| 3366 | | #define HAVE_RPCSVC_YPCLNT_H 1 |
|---|
| 3367 | | #define HAVE_RPCSVC_YP_PROT_H 1 |
|---|
| 3368 | | #define HAVE_NETDB_H 1 |
|---|
| 3369 | | #define HAVE_INNETGR 1 |
|---|
| 3370 | | #define HAVE_NIS 1 |
|---|
| 3371 | | #define HAVE_DIRENT_H 1 |
|---|
| 3372 | | #define STDC_HEADERS 1 |
|---|
| 3373 | | #define HAVE_SYS_WAIT_H 1 |
|---|
| 3374 | | #define HAVE_FCNTL_H 1 |
|---|
| 3375 | | #define HAVE_LIMITS_H 1 |
|---|
| 3376 | | #define HAVE_MALLOC_H 1 |
|---|
| 3377 | | #define HAVE_SYS_FILE_H 1 |
|---|
| 3378 | | #define HAVE_SYS_IOCTL_H 1 |
|---|
| 3379 | | #define HAVE_SYS_TIME_H 1 |
|---|
| 3380 | | #define HAVE_SYSLOG_H 1 |
|---|
| 3381 | | #define HAVE_NET_IF_H 1 |
|---|
| 3382 | | #define HAVE_TERMIO_H 1 |
|---|
| 3383 | | #define HAVE_UNISTD_H 1 |
|---|
| 3384 | | #define HAVE_SYS_FSUID_H 1 |
|---|
| 3385 | | #define HAVE_LASTLOG_H 1 |
|---|
| 3386 | | #define HAVE_UTMP_H 1 |
|---|
| 3387 | | #define HAVE_UTMPX_H 1 |
|---|
| 3388 | | /* end confdefs.h. */ |
|---|
| 3389 | | #include <stdio.h> |
|---|
| 3390 | | #ifdef HAVE_SYS_TYPES_H |
|---|
| 3391 | | # include <sys/types.h> |
|---|
| 3392 | | #endif |
|---|
| 3393 | | #ifdef HAVE_SYS_STAT_H |
|---|
| 3394 | | # include <sys/stat.h> |
|---|
| 3395 | | #endif |
|---|
| 3396 | | #ifdef STDC_HEADERS |
|---|
| 3397 | | # include <stdlib.h> |
|---|
| 3398 | | # include <stddef.h> |
|---|
| 3399 | | #else |
|---|
| 3400 | | # ifdef HAVE_STDLIB_H |
|---|
| 3401 | | # include <stdlib.h> |
|---|
| 3402 | | # endif |
|---|
| 3403 | | #endif |
|---|
| 3404 | | #ifdef HAVE_STRING_H |
|---|
| 3405 | | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H |
|---|
| 3406 | | # include <memory.h> |
|---|
| 3407 | | # endif |
|---|
| 3408 | | # include <string.h> |
|---|
| 3409 | | #endif |
|---|
| 3410 | | #ifdef HAVE_STRINGS_H |
|---|
| 3411 | | # include <strings.h> |
|---|
| 3412 | | #endif |
|---|
| 3413 | | #ifdef HAVE_INTTYPES_H |
|---|
| 3414 | | # include <inttypes.h> |
|---|
| 3415 | | #endif |
|---|
| 3416 | | #ifdef HAVE_STDINT_H |
|---|
| 3417 | | # include <stdint.h> |
|---|
| 3418 | | #endif |
|---|
| 3419 | | #ifdef HAVE_UNISTD_H |
|---|
| 3420 | | # include <unistd.h> |
|---|
| 3421 | | #endif |
|---|
| 3422 | | int |
|---|
| 3423 | | main () |
|---|
| 3424 | | { |
|---|
| 3425 | | if (sizeof ((pid_t))) |
|---|
| 3426 | | return 0; |
|---|
| 3427 | | ; |
|---|
| 3428 | | return 0; |
|---|
| 3429 | | } |
|---|
| 3430 | configure:18041: result: yes |
|---|
| 3431 | configure:18053: checking for size_t |
|---|
| 3432 | configure:18081: armv4tl-softfloat-linux-gnueabi-gcc -c -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow conftest.c >&5 |
|---|
| 3433 | conftest.c:96: warning: function declaration isn't a prototype |
|---|
| 3434 | configure:18088: $? = 0 |
|---|
| 3435 | configure:18115: armv4tl-softfloat-linux-gnueabi-gcc -c -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow conftest.c >&5 |
|---|
| 3436 | conftest.c:96: warning: function declaration isn't a prototype |
|---|
| 3437 | conftest.c: In function 'main': |
|---|
| 3438 | conftest.c:97: error: expected expression before ')' token |
|---|
| 3439 | configure:18122: $? = 1 |
|---|
| 3440 | configure: failed program was: |
|---|
| 3441 | | /* confdefs.h. */ |
|---|
| 3442 | | #define PACKAGE_NAME "" |
|---|
| 3443 | | #define PACKAGE_TARNAME "" |
|---|
| 3444 | | #define PACKAGE_VERSION "" |
|---|
| 3445 | | #define PACKAGE_STRING "" |
|---|
| 3446 | | #define PACKAGE_BUGREPORT "" |
|---|
| 3447 | | #define PACKAGE "Linux-PAM" |
|---|
| 3448 | | #define VERSION "1.1.0" |
|---|
| 3449 | | #define STDC_HEADERS 1 |
|---|
| 3450 | | #define HAVE_SYS_TYPES_H 1 |
|---|
| 3451 | | #define HAVE_SYS_STAT_H 1 |
|---|
| 3452 | | #define HAVE_STDLIB_H 1 |
|---|
| 3453 | | #define HAVE_STRING_H 1 |
|---|
| 3454 | | #define HAVE_MEMORY_H 1 |
|---|
| 3455 | | #define HAVE_STRINGS_H 1 |
|---|
| 3456 | | #define HAVE_INTTYPES_H 1 |
|---|
| 3457 | | #define HAVE_STDINT_H 1 |
|---|
| 3458 | | #define HAVE_UNISTD_H 1 |
|---|
| 3459 | | #define __EXTENSIONS__ 1 |
|---|
| 3460 | | #define _ALL_SOURCE 1 |
|---|
| 3461 | | #define _GNU_SOURCE 1 |
|---|
| 3462 | | #define _POSIX_PTHREAD_SEMANTICS 1 |
|---|
| 3463 | | #define _TANDEM_SOURCE 1 |
|---|
| 3464 | | #define YYTEXT_POINTER 1 |
|---|
| 3465 | | #define HAVE_DLFCN_H 1 |
|---|
| 3466 | | #define LT_OBJDIR ".libs/" |
|---|
| 3467 | | #define _FILE_OFFSET_BITS 64 |
|---|
| 3468 | | #define UNUSED __attribute__ ((unused)) |
|---|
| 3469 | | #define _PAM_ISA "/lib/security" |
|---|
| 3470 | | #define USE_LCKPWDF 1 |
|---|
| 3471 | | #define HAVE_PATHS_H 1 |
|---|
| 3472 | | #define PAM_PATH_MAILDIR "/var/spool/mail" |
|---|
| 3473 | | #define PAM_PATH_XAUTH "/usr/bin/xauth" |
|---|
| 3474 | | #define HAVE_CRACK_H 1 |
|---|
| 3475 | | #define HAVE_CRYPT_H 1 |
|---|
| 3476 | | #define HAVE_CRYPT_R 1 |
|---|
| 3477 | | #define PAM_PATH_RANDOMDEV "/dev/urandom" |
|---|
| 3478 | | #define HAVE_RPCSVC_YPCLNT_H 1 |
|---|
| 3479 | | #define HAVE_RPCSVC_YP_PROT_H 1 |
|---|
| 3480 | | #define HAVE_NETDB_H 1 |
|---|
| 3481 | | #define HAVE_INNETGR 1 |
|---|
| 3482 | | #define HAVE_NIS 1 |
|---|
| 3483 | | #define HAVE_DIRENT_H 1 |
|---|
| 3484 | | #define STDC_HEADERS 1 |
|---|
| 3485 | | #define HAVE_SYS_WAIT_H 1 |
|---|
| 3486 | | #define HAVE_FCNTL_H 1 |
|---|
| 3487 | | #define HAVE_LIMITS_H 1 |
|---|
| 3488 | | #define HAVE_MALLOC_H 1 |
|---|
| 3489 | | #define HAVE_SYS_FILE_H 1 |
|---|
| 3490 | | #define HAVE_SYS_IOCTL_H 1 |
|---|
| 3491 | | #define HAVE_SYS_TIME_H 1 |
|---|
| 3492 | | #define HAVE_SYSLOG_H 1 |
|---|
| 3493 | | #define HAVE_NET_IF_H 1 |
|---|
| 3494 | | #define HAVE_TERMIO_H 1 |
|---|
| 3495 | | #define HAVE_UNISTD_H 1 |
|---|
| 3496 | | #define HAVE_SYS_FSUID_H 1 |
|---|
| 3497 | | #define HAVE_LASTLOG_H 1 |
|---|
| 3498 | | #define HAVE_UTMP_H 1 |
|---|
| 3499 | | #define HAVE_UTMPX_H 1 |
|---|
| 3500 | | /* end confdefs.h. */ |
|---|
| 3501 | | #include <stdio.h> |
|---|
| 3502 | | #ifdef HAVE_SYS_TYPES_H |
|---|
| 3503 | | # include <sys/types.h> |
|---|
| 3504 | | #endif |
|---|
| 3505 | | #ifdef HAVE_SYS_STAT_H |
|---|
| 3506 | | # include <sys/stat.h> |
|---|
| 3507 | | #endif |
|---|
| 3508 | | #ifdef STDC_HEADERS |
|---|
| 3509 | | # include <stdlib.h> |
|---|
| 3510 | | # include <stddef.h> |
|---|
| 3511 | | #else |
|---|
| 3512 | | # ifdef HAVE_STDLIB_H |
|---|
| 3513 | | # include <stdlib.h> |
|---|
| 3514 | | # endif |
|---|
| 3515 | | #endif |
|---|
| 3516 | | #ifdef HAVE_STRING_H |
|---|
| 3517 | | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H |
|---|
| 3518 | | # include <memory.h> |
|---|
| 3519 | | # endif |
|---|
| 3520 | | # include <string.h> |
|---|
| 3521 | | #endif |
|---|
| 3522 | | #ifdef HAVE_STRINGS_H |
|---|
| 3523 | | # include <strings.h> |
|---|
| 3524 | | #endif |
|---|
| 3525 | | #ifdef HAVE_INTTYPES_H |
|---|
| 3526 | | # include <inttypes.h> |
|---|
| 3527 | | #endif |
|---|
| 3528 | | #ifdef HAVE_STDINT_H |
|---|
| 3529 | | # include <stdint.h> |
|---|
| 3530 | | #endif |
|---|
| 3531 | | #ifdef HAVE_UNISTD_H |
|---|
| 3532 | | # include <unistd.h> |
|---|
| 3533 | | #endif |
|---|
| 3534 | | int |
|---|
| 3535 | | main () |
|---|
| 3536 | | { |
|---|
| 3537 | | if (sizeof ((size_t))) |
|---|
| 3538 | | return 0; |
|---|
| 3539 | | ; |
|---|
| 3540 | | return 0; |
|---|
| 3541 | | } |
|---|
| 3542 | configure:18145: result: yes |
|---|
| 3543 | configure:18157: checking whether time.h and sys/time.h may both be included |
|---|
| 3544 | configure:18187: armv4tl-softfloat-linux-gnueabi-gcc -c -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow conftest.c >&5 |
|---|
| 3545 | conftest.c:67: warning: function declaration isn't a prototype |
|---|
| 3546 | configure:18194: $? = 0 |
|---|
| 3547 | configure:18209: result: yes |
|---|
| 3548 | configure:18219: checking whether struct tm is in sys/time.h or time.h |
|---|
| 3549 | configure:18249: armv4tl-softfloat-linux-gnueabi-gcc -c -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow conftest.c >&5 |
|---|
| 3550 | conftest.c:67: warning: function declaration isn't a prototype |
|---|
| 3551 | configure:18256: $? = 0 |
|---|
| 3552 | configure:18271: result: time.h |
|---|
| 3553 | configure:18282: checking type of array argument to getgroups |
|---|
| 3554 | configure:18376: result: gid_t |
|---|
| 3555 | configure:18385: checking whether armv4tl-softfloat-linux-gnueabi-gcc needs -traditional |
|---|
| 3556 | configure:18427: result: no |
|---|
| 3557 | configure:18434: checking for working memcmp |
|---|
| 3558 | configure:18518: result: yes |
|---|
| 3559 | configure:18531: checking for vprintf |
|---|
| 3560 | configure:18587: armv4tl-softfloat-linux-gnueabi-gcc -o conftest -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow -L/usr/armv4tl-softfloat-linux-gnueabi/usr/lib -L/usr/armv4tl-softfloat-linux-gnueabi/lib -Wl,--as-needed -Wl,-O1 conftest.c >&5 |
|---|
| 3561 | conftest.c:86: warning: function declaration isn't a prototype |
|---|
| 3562 | conftest.c:86: warning: conflicting types for built-in function 'vprintf' |
|---|
| 3563 | conftest.c:96: warning: function declaration isn't a prototype |
|---|
| 3564 | configure:18594: $? = 0 |
|---|
| 3565 | configure:18616: result: yes |
|---|
| 3566 | configure:18625: checking for _doprnt |
|---|
| 3567 | configure:18681: armv4tl-softfloat-linux-gnueabi-gcc -o conftest -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow -L/usr/armv4tl-softfloat-linux-gnueabi/usr/lib -L/usr/armv4tl-softfloat-linux-gnueabi/lib -Wl,--as-needed -Wl,-O1 conftest.c >&5 |
|---|
| 3568 | conftest.c:87: warning: function declaration isn't a prototype |
|---|
| 3569 | conftest.c:97: warning: function declaration isn't a prototype |
|---|
| 3570 | /usr/armv4tl-softfloat-linux-gnueabi/tmp/portage/sys-libs/pam-1.1.0/temp/ccCKpWxa.o: In function `main': |
|---|
| 3571 | conftest.c:(.text+0x8): undefined reference to `_doprnt' |
|---|
| 3572 | collect2: ld returned 1 exit status |
|---|
| 3573 | configure:18688: $? = 1 |
|---|
| 3574 | configure: failed program was: |
|---|
| 3575 | | /* confdefs.h. */ |
|---|
| 3576 | | #define PACKAGE_NAME "" |
|---|
| 3577 | | #define PACKAGE_TARNAME "" |
|---|
| 3578 | | #define PACKAGE_VERSION "" |
|---|
| 3579 | | #define PACKAGE_STRING "" |
|---|
| 3580 | | #define PACKAGE_BUGREPORT "" |
|---|
| 3581 | | #define PACKAGE "Linux-PAM" |
|---|
| 3582 | | #define VERSION "1.1.0" |
|---|
| 3583 | | #define STDC_HEADERS 1 |
|---|
| 3584 | | #define HAVE_SYS_TYPES_H 1 |
|---|
| 3585 | | #define HAVE_SYS_STAT_H 1 |
|---|
| 3586 | | #define HAVE_STDLIB_H 1 |
|---|
| 3587 | | #define HAVE_STRING_H 1 |
|---|
| 3588 | | #define HAVE_MEMORY_H 1 |
|---|
| 3589 | | #define HAVE_STRINGS_H 1 |
|---|
| 3590 | | #define HAVE_INTTYPES_H 1 |
|---|
| 3591 | | #define HAVE_STDINT_H 1 |
|---|
| 3592 | | #define HAVE_UNISTD_H 1 |
|---|
| 3593 | | #define __EXTENSIONS__ 1 |
|---|
| 3594 | | #define _ALL_SOURCE 1 |
|---|
| 3595 | | #define _GNU_SOURCE 1 |
|---|
| 3596 | | #define _POSIX_PTHREAD_SEMANTICS 1 |
|---|
| 3597 | | #define _TANDEM_SOURCE 1 |
|---|
| 3598 | | #define YYTEXT_POINTER 1 |
|---|
| 3599 | | #define HAVE_DLFCN_H 1 |
|---|
| 3600 | | #define LT_OBJDIR ".libs/" |
|---|
| 3601 | | #define _FILE_OFFSET_BITS 64 |
|---|
| 3602 | | #define UNUSED __attribute__ ((unused)) |
|---|
| 3603 | | #define _PAM_ISA "/lib/security" |
|---|
| 3604 | | #define USE_LCKPWDF 1 |
|---|
| 3605 | | #define HAVE_PATHS_H 1 |
|---|
| 3606 | | #define PAM_PATH_MAILDIR "/var/spool/mail" |
|---|
| 3607 | | #define PAM_PATH_XAUTH "/usr/bin/xauth" |
|---|
| 3608 | | #define HAVE_CRACK_H 1 |
|---|
| 3609 | | #define HAVE_CRYPT_H 1 |
|---|
| 3610 | | #define HAVE_CRYPT_R 1 |
|---|
| 3611 | | #define PAM_PATH_RANDOMDEV "/dev/urandom" |
|---|
| 3612 | | #define HAVE_RPCSVC_YPCLNT_H 1 |
|---|
| 3613 | | #define HAVE_RPCSVC_YP_PROT_H 1 |
|---|
| 3614 | | #define HAVE_NETDB_H 1 |
|---|
| 3615 | | #define HAVE_INNETGR 1 |
|---|
| 3616 | | #define HAVE_NIS 1 |
|---|
| 3617 | | #define HAVE_DIRENT_H 1 |
|---|
| 3618 | | #define STDC_HEADERS 1 |
|---|
| 3619 | | #define HAVE_SYS_WAIT_H 1 |
|---|
| 3620 | | #define HAVE_FCNTL_H 1 |
|---|
| 3621 | | #define HAVE_LIMITS_H 1 |
|---|
| 3622 | | #define HAVE_MALLOC_H 1 |
|---|
| 3623 | | #define HAVE_SYS_FILE_H 1 |
|---|
| 3624 | | #define HAVE_SYS_IOCTL_H 1 |
|---|
| 3625 | | #define HAVE_SYS_TIME_H 1 |
|---|
| 3626 | | #define HAVE_SYSLOG_H 1 |
|---|
| 3627 | | #define HAVE_NET_IF_H 1 |
|---|
| 3628 | | #define HAVE_TERMIO_H 1 |
|---|
| 3629 | | #define HAVE_UNISTD_H 1 |
|---|
| 3630 | | #define HAVE_SYS_FSUID_H 1 |
|---|
| 3631 | | #define HAVE_LASTLOG_H 1 |
|---|
| 3632 | | #define HAVE_UTMP_H 1 |
|---|
| 3633 | | #define HAVE_UTMPX_H 1 |
|---|
| 3634 | | #define TIME_WITH_SYS_TIME 1 |
|---|
| 3635 | | #define GETGROUPS_T gid_t |
|---|
| 3636 | | #define HAVE_VPRINTF 1 |
|---|
| 3637 | | /* end confdefs.h. */ |
|---|
| 3638 | | /* Define _doprnt to an innocuous variant, in case <limits.h> declares _doprnt. |
|---|
| 3639 | | For example, HP-UX 11i <limits.h> declares gettimeofday. */ |
|---|
| 3640 | | #define _doprnt innocuous__doprnt |
|---|
| 3641 | | |
|---|
| 3642 | | /* System header to define __stub macros and hopefully few prototypes, |
|---|
| 3643 | | which can conflict with char _doprnt (); below. |
|---|
| 3644 | | Prefer <limits.h> to <assert.h> if __STDC__ is defined, since |
|---|
| 3645 | | <limits.h> exists even on freestanding compilers. */ |
|---|
| 3646 | | |
|---|
| 3647 | | #ifdef __STDC__ |
|---|
| 3648 | | # include <limits.h> |
|---|
| 3649 | | #else |
|---|
| 3650 | | # include <assert.h> |
|---|
| 3651 | | #endif |
|---|
| 3652 | | |
|---|
| 3653 | | #undef _doprnt |
|---|
| 3654 | | |
|---|
| 3655 | | /* Override any GCC internal prototype to avoid an error. |
|---|
| 3656 | | Use char because int might match the return type of a GCC |
|---|
| 3657 | | builtin and then its argument prototype would still apply. */ |
|---|
| 3658 | | #ifdef __cplusplus |
|---|
| 3659 | | extern "C" |
|---|
| 3660 | | #endif |
|---|
| 3661 | | char _doprnt (); |
|---|
| 3662 | | /* The GNU C library defines this for functions which it implements |
|---|
| 3663 | | to always fail with ENOSYS. Some functions are actually named |
|---|
| 3664 | | something starting with __ and the normal name is an alias. */ |
|---|
| 3665 | | #if defined __stub__doprnt || defined __stub____doprnt |
|---|
| 3666 | | choke me |
|---|
| 3667 | | #endif |
|---|
| 3668 | | |
|---|
| 3669 | | int |
|---|
| 3670 | | main () |
|---|
| 3671 | | { |
|---|
| 3672 | | return _doprnt (); |
|---|
| 3673 | | ; |
|---|
| 3674 | | return 0; |
|---|
| 3675 | | } |
|---|
| 3676 | configure:18708: result: no |
|---|
| 3677 | configure:18731: checking for fseeko |
|---|
| 3678 | configure:18787: armv4tl-softfloat-linux-gnueabi-gcc -o conftest -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow -L/usr/armv4tl-softfloat-linux-gnueabi/usr/lib -L/usr/armv4tl-softfloat-linux-gnueabi/lib -Wl,--as-needed -Wl,-O1 conftest.c >&5 |
|---|
| 3679 | conftest.c:87: warning: function declaration isn't a prototype |
|---|
| 3680 | conftest.c:97: warning: function declaration isn't a prototype |
|---|
| 3681 | configure:18794: $? = 0 |
|---|
| 3682 | configure:18816: result: yes |
|---|
| 3683 | configure:18731: checking for gethostname |
|---|
| 3684 | configure:18787: armv4tl-softfloat-linux-gnueabi-gcc -o conftest -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow -L/usr/armv4tl-softfloat-linux-gnueabi/usr/lib -L/usr/armv4tl-softfloat-linux-gnueabi/lib -Wl,--as-needed -Wl,-O1 conftest.c >&5 |
|---|
| 3685 | conftest.c:88: warning: function declaration isn't a prototype |
|---|
| 3686 | conftest.c:98: warning: function declaration isn't a prototype |
|---|
| 3687 | configure:18794: $? = 0 |
|---|
| 3688 | configure:18816: result: yes |
|---|
| 3689 | configure:18731: checking for gettimeofday |
|---|
| 3690 | configure:18787: armv4tl-softfloat-linux-gnueabi-gcc -o conftest -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow -L/usr/armv4tl-softfloat-linux-gnueabi/usr/lib -L/usr/armv4tl-softfloat-linux-gnueabi/lib -Wl,--as-needed -Wl,-O1 conftest.c >&5 |
|---|
| 3691 | conftest.c:89: warning: function declaration isn't a prototype |
|---|
| 3692 | conftest.c:99: warning: function declaration isn't a prototype |
|---|
| 3693 | configure:18794: $? = 0 |
|---|
| 3694 | configure:18816: result: yes |
|---|
| 3695 | configure:18731: checking for lckpwdf |
|---|
| 3696 | configure:18787: armv4tl-softfloat-linux-gnueabi-gcc -o conftest -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow -L/usr/armv4tl-softfloat-linux-gnueabi/usr/lib -L/usr/armv4tl-softfloat-linux-gnueabi/lib -Wl,--as-needed -Wl,-O1 conftest.c >&5 |
|---|
| 3697 | conftest.c:90: warning: function declaration isn't a prototype |
|---|
| 3698 | conftest.c:100: warning: function declaration isn't a prototype |
|---|
| 3699 | configure:18794: $? = 0 |
|---|
| 3700 | configure:18816: result: yes |
|---|
| 3701 | configure:18731: checking for mkdir |
|---|
| 3702 | configure:18787: armv4tl-softfloat-linux-gnueabi-gcc -o conftest -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow -L/usr/armv4tl-softfloat-linux-gnueabi/usr/lib -L/usr/armv4tl-softfloat-linux-gnueabi/lib -Wl,--as-needed -Wl,-O1 conftest.c >&5 |
|---|
| 3703 | conftest.c:91: warning: function declaration isn't a prototype |
|---|
| 3704 | conftest.c:101: warning: function declaration isn't a prototype |
|---|
| 3705 | configure:18794: $? = 0 |
|---|
| 3706 | configure:18816: result: yes |
|---|
| 3707 | configure:18731: checking for select |
|---|
| 3708 | configure:18787: armv4tl-softfloat-linux-gnueabi-gcc -o conftest -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow -L/usr/armv4tl-softfloat-linux-gnueabi/usr/lib -L/usr/armv4tl-softfloat-linux-gnueabi/lib -Wl,--as-needed -Wl,-O1 conftest.c >&5 |
|---|
| 3709 | conftest.c:92: warning: function declaration isn't a prototype |
|---|
| 3710 | conftest.c:102: warning: function declaration isn't a prototype |
|---|
| 3711 | configure:18794: $? = 0 |
|---|
| 3712 | configure:18816: result: yes |
|---|
| 3713 | configure:18837: checking for strcspn |
|---|
| 3714 | configure:18893: armv4tl-softfloat-linux-gnueabi-gcc -o conftest -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow -L/usr/armv4tl-softfloat-linux-gnueabi/usr/lib -L/usr/armv4tl-softfloat-linux-gnueabi/lib -Wl,--as-needed -Wl,-O1 conftest.c >&5 |
|---|
| 3715 | conftest.c:93: warning: function declaration isn't a prototype |
|---|
| 3716 | conftest.c:93: warning: conflicting types for built-in function 'strcspn' |
|---|
| 3717 | conftest.c:103: warning: function declaration isn't a prototype |
|---|
| 3718 | configure:18900: $? = 0 |
|---|
| 3719 | configure:18922: result: yes |
|---|
| 3720 | configure:18837: checking for strdup |
|---|
| 3721 | configure:18893: armv4tl-softfloat-linux-gnueabi-gcc -o conftest -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow -L/usr/armv4tl-softfloat-linux-gnueabi/usr/lib -L/usr/armv4tl-softfloat-linux-gnueabi/lib -Wl,--as-needed -Wl,-O1 conftest.c >&5 |
|---|
| 3722 | conftest.c:94: warning: function declaration isn't a prototype |
|---|
| 3723 | conftest.c:94: warning: conflicting types for built-in function 'strdup' |
|---|
| 3724 | conftest.c:104: warning: function declaration isn't a prototype |
|---|
| 3725 | configure:18900: $? = 0 |
|---|
| 3726 | configure:18922: result: yes |
|---|
| 3727 | configure:18837: checking for strspn |
|---|
| 3728 | configure:18893: armv4tl-softfloat-linux-gnueabi-gcc -o conftest -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow -L/usr/armv4tl-softfloat-linux-gnueabi/usr/lib -L/usr/armv4tl-softfloat-linux-gnueabi/lib -Wl,--as-needed -Wl,-O1 conftest.c >&5 |
|---|
| 3729 | conftest.c:95: warning: function declaration isn't a prototype |
|---|
| 3730 | conftest.c:95: warning: conflicting types for built-in function 'strspn' |
|---|
| 3731 | conftest.c:105: warning: function declaration isn't a prototype |
|---|
| 3732 | configure:18900: $? = 0 |
|---|
| 3733 | configure:18922: result: yes |
|---|
| 3734 | configure:18837: checking for strstr |
|---|
| 3735 | configure:18893: armv4tl-softfloat-linux-gnueabi-gcc -o conftest -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow -L/usr/armv4tl-softfloat-linux-gnueabi/usr/lib -L/usr/armv4tl-softfloat-linux-gnueabi/lib -Wl,--as-needed -Wl,-O1 conftest.c >&5 |
|---|
| 3736 | conftest.c:96: warning: function declaration isn't a prototype |
|---|
| 3737 | conftest.c:96: warning: conflicting types for built-in function 'strstr' |
|---|
| 3738 | conftest.c:106: warning: function declaration isn't a prototype |
|---|
| 3739 | configure:18900: $? = 0 |
|---|
| 3740 | configure:18922: result: yes |
|---|
| 3741 | configure:18837: checking for strtol |
|---|
| 3742 | configure:18893: armv4tl-softfloat-linux-gnueabi-gcc -o conftest -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow -L/usr/armv4tl-softfloat-linux-gnueabi/usr/lib -L/usr/armv4tl-softfloat-linux-gnueabi/lib -Wl,--as-needed -Wl,-O1 conftest.c >&5 |
|---|
| 3743 | conftest.c:97: warning: function declaration isn't a prototype |
|---|
| 3744 | conftest.c:107: warning: function declaration isn't a prototype |
|---|
| 3745 | configure:18900: $? = 0 |
|---|
| 3746 | configure:18922: result: yes |
|---|
| 3747 | configure:18837: checking for uname |
|---|
| 3748 | configure:18893: armv4tl-softfloat-linux-gnueabi-gcc -o conftest -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow -L/usr/armv4tl-softfloat-linux-gnueabi/usr/lib -L/usr/armv4tl-softfloat-linux-gnueabi/lib -Wl,--as-needed -Wl,-O1 conftest.c >&5 |
|---|
| 3749 | conftest.c:98: warning: function declaration isn't a prototype |
|---|
| 3750 | conftest.c:108: warning: function declaration isn't a prototype |
|---|
| 3751 | configure:18900: $? = 0 |
|---|
| 3752 | configure:18922: result: yes |
|---|
| 3753 | configure:18942: checking for getpwnam_r |
|---|
| 3754 | configure:18998: armv4tl-softfloat-linux-gnueabi-gcc -o conftest -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow -L/usr/armv4tl-softfloat-linux-gnueabi/usr/lib -L/usr/armv4tl-softfloat-linux-gnueabi/lib -Wl,--as-needed -Wl,-O1 conftest.c >&5 |
|---|
| 3755 | conftest.c:99: warning: function declaration isn't a prototype |
|---|
| 3756 | conftest.c:109: warning: function declaration isn't a prototype |
|---|
| 3757 | configure:19005: $? = 0 |
|---|
| 3758 | configure:19027: result: yes |
|---|
| 3759 | configure:18942: checking for getpwuid_r |
|---|
| 3760 | configure:19027: result: yes |
|---|
| 3761 | configure:18942: checking for getgrnam_r |
|---|
| 3762 | configure:18998: armv4tl-softfloat-linux-gnueabi-gcc -o conftest -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow -L/usr/armv4tl-softfloat-linux-gnueabi/usr/lib -L/usr/armv4tl-softfloat-linux-gnueabi/lib -Wl,--as-needed -Wl,-O1 conftest.c >&5 |
|---|
| 3763 | conftest.c:101: warning: function declaration isn't a prototype |
|---|
| 3764 | conftest.c:111: warning: function declaration isn't a prototype |
|---|
| 3765 | configure:19005: $? = 0 |
|---|
| 3766 | configure:19027: result: yes |
|---|
| 3767 | configure:18942: checking for getgrgid_r |
|---|
| 3768 | configure:19027: result: yes |
|---|
| 3769 | configure:18942: checking for getspnam_r |
|---|
| 3770 | configure:18998: armv4tl-softfloat-linux-gnueabi-gcc -o conftest -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow -L/usr/armv4tl-softfloat-linux-gnueabi/usr/lib -L/usr/armv4tl-softfloat-linux-gnueabi/lib -Wl,--as-needed -Wl,-O1 conftest.c >&5 |
|---|
| 3771 | conftest.c:103: warning: function declaration isn't a prototype |
|---|
| 3772 | conftest.c:113: warning: function declaration isn't a prototype |
|---|
| 3773 | configure:19005: $? = 0 |
|---|
| 3774 | configure:19027: result: yes |
|---|
| 3775 | configure:19045: checking for getgrouplist |
|---|
| 3776 | configure:19101: armv4tl-softfloat-linux-gnueabi-gcc -o conftest -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow -L/usr/armv4tl-softfloat-linux-gnueabi/usr/lib -L/usr/armv4tl-softfloat-linux-gnueabi/lib -Wl,--as-needed -Wl,-O1 conftest.c >&5 |
|---|
| 3777 | conftest.c:104: warning: function declaration isn't a prototype |
|---|
| 3778 | conftest.c:114: warning: function declaration isn't a prototype |
|---|
| 3779 | configure:19108: $? = 0 |
|---|
| 3780 | configure:19130: result: yes |
|---|
| 3781 | configure:19045: checking for getline |
|---|
| 3782 | configure:19101: armv4tl-softfloat-linux-gnueabi-gcc -o conftest -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow -L/usr/armv4tl-softfloat-linux-gnueabi/usr/lib -L/usr/armv4tl-softfloat-linux-gnueabi/lib -Wl,--as-needed -Wl,-O1 conftest.c >&5 |
|---|
| 3783 | conftest.c:105: warning: function declaration isn't a prototype |
|---|
| 3784 | conftest.c:115: warning: function declaration isn't a prototype |
|---|
| 3785 | configure:19108: $? = 0 |
|---|
| 3786 | configure:19130: result: yes |
|---|
| 3787 | configure:19045: checking for getdelim |
|---|
| 3788 | configure:19101: armv4tl-softfloat-linux-gnueabi-gcc -o conftest -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow -L/usr/armv4tl-softfloat-linux-gnueabi/usr/lib -L/usr/armv4tl-softfloat-linux-gnueabi/lib -Wl,--as-needed -Wl,-O1 conftest.c >&5 |
|---|
| 3789 | conftest.c:106: warning: function declaration isn't a prototype |
|---|
| 3790 | conftest.c:116: warning: function declaration isn't a prototype |
|---|
| 3791 | configure:19108: $? = 0 |
|---|
| 3792 | configure:19130: result: yes |
|---|
| 3793 | configure:19148: checking for inet_ntop |
|---|
| 3794 | configure:19204: armv4tl-softfloat-linux-gnueabi-gcc -o conftest -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow -L/usr/armv4tl-softfloat-linux-gnueabi/usr/lib -L/usr/armv4tl-softfloat-linux-gnueabi/lib -Wl,--as-needed -Wl,-O1 conftest.c >&5 |
|---|
| 3795 | conftest.c:107: warning: function declaration isn't a prototype |
|---|
| 3796 | conftest.c:117: warning: function declaration isn't a prototype |
|---|
| 3797 | configure:19211: $? = 0 |
|---|
| 3798 | configure:19233: result: yes |
|---|
| 3799 | configure:19148: checking for inet_pton |
|---|
| 3800 | configure:19204: armv4tl-softfloat-linux-gnueabi-gcc -o conftest -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow -L/usr/armv4tl-softfloat-linux-gnueabi/usr/lib -L/usr/armv4tl-softfloat-linux-gnueabi/lib -Wl,--as-needed -Wl,-O1 conftest.c >&5 |
|---|
| 3801 | conftest.c:108: warning: function declaration isn't a prototype |
|---|
| 3802 | conftest.c:118: warning: function declaration isn't a prototype |
|---|
| 3803 | configure:19211: $? = 0 |
|---|
| 3804 | configure:19233: result: yes |
|---|
| 3805 | configure:19148: checking for ruserok_af |
|---|
| 3806 | configure:19204: armv4tl-softfloat-linux-gnueabi-gcc -o conftest -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow -L/usr/armv4tl-softfloat-linux-gnueabi/usr/lib -L/usr/armv4tl-softfloat-linux-gnueabi/lib -Wl,--as-needed -Wl,-O1 conftest.c >&5 |
|---|
| 3807 | conftest.c:109: warning: function declaration isn't a prototype |
|---|
| 3808 | conftest.c:119: warning: function declaration isn't a prototype |
|---|
| 3809 | configure:19211: $? = 0 |
|---|
| 3810 | configure:19233: result: yes |
|---|
| 3811 | configure:19250: checking for unshare |
|---|
| 3812 | configure:19306: armv4tl-softfloat-linux-gnueabi-gcc -o conftest -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow -L/usr/armv4tl-softfloat-linux-gnueabi/usr/lib -L/usr/armv4tl-softfloat-linux-gnueabi/lib -Wl,--as-needed -Wl,-O1 conftest.c >&5 |
|---|
| 3813 | conftest.c:110: warning: function declaration isn't a prototype |
|---|
| 3814 | conftest.c:120: warning: function declaration isn't a prototype |
|---|
| 3815 | configure:19313: $? = 0 |
|---|
| 3816 | configure:19335: result: yes |
|---|
| 3817 | configure:19361: checking for xsltproc |
|---|
| 3818 | configure:19379: found /usr/bin/xsltproc |
|---|
| 3819 | configure:19391: result: /usr/bin/xsltproc |
|---|
| 3820 | configure:19404: checking for xmllint |
|---|
| 3821 | configure:19422: found /usr/bin/xmllint |
|---|
| 3822 | configure:19435: result: /usr/bin/xmllint |
|---|
| 3823 | configure:19456: checking for XML catalog (/etc/xml/catalog) |
|---|
| 3824 | configure:19459: result: found |
|---|
| 3825 | configure:19470: checking for xmlcatalog |
|---|
| 3826 | configure:19488: found /usr/bin/xmlcatalog |
|---|
| 3827 | configure:19501: result: /usr/bin/xmlcatalog |
|---|
| 3828 | configure:19520: checking for DocBook XML DTD V4.4 in XML catalog |
|---|
| 3829 | configure:19523: $XMLCATALOG --noout "$XML_CATALOG_FILE" "-//OASIS//DTD DocBook XML V4.4//EN" >&2 |
|---|
| 3830 | file:///usr/share/sgml/docbook/xml-dtd-4.4/docbookx.dtd |
|---|
| 3831 | configure:19526: $? = 0 |
|---|
| 3832 | configure:19528: result: found |
|---|
| 3833 | configure:19537: checking for DocBook XSL Stylesheets in XML catalog |
|---|
| 3834 | configure:19540: $XMLCATALOG --noout "$XML_CATALOG_FILE" "http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl" >&2 |
|---|
| 3835 | file:///usr/share/sgml/docbook/xsl-stylesheets/manpages/docbook.xsl |
|---|
| 3836 | configure:19543: $? = 0 |
|---|
| 3837 | configure:19545: result: found |
|---|
| 3838 | configure:19556: checking for w3m |
|---|
| 3839 | configure:19574: found /usr/bin/w3m |
|---|
| 3840 | configure:19586: result: /usr/bin/w3m |
|---|
| 3841 | configure:19602: checking for fop |
|---|
| 3842 | configure:19635: result: no |
|---|
| 3843 | configure:19661: checking whether NLS is requested |
|---|
| 3844 | configure:19670: result: yes |
|---|
| 3845 | configure:19711: checking for msgfmt |
|---|
| 3846 | configure: trying /usr/bin/msgfmt... |
|---|
| 3847 | 0 translated messages. |
|---|
| 3848 | configure:19743: result: /usr/bin/msgfmt |
|---|
| 3849 | configure:19752: checking for gmsgfmt |
|---|
| 3850 | configure:19770: found /usr/bin/gmsgfmt |
|---|
| 3851 | configure:19783: result: /usr/bin/gmsgfmt |
|---|
| 3852 | configure:19834: checking for xgettext |
|---|
| 3853 | configure: trying /usr/bin/xgettext... |
|---|
| 3854 | /usr/bin/xgettext: warning: file `/dev/null' extension `' is unknown; will try C |
|---|
| 3855 | configure:19866: result: /usr/bin/xgettext |
|---|
| 3856 | configure:19912: checking for msgmerge |
|---|
| 3857 | configure: trying /usr/bin/msgmerge... |
|---|
| 3858 | configure:19943: result: /usr/bin/msgmerge |
|---|
| 3859 | configure:20000: checking for ld used by GCC |
|---|
| 3860 | configure:20064: result: /usr/libexec/gcc/armv4tl-softfloat-linux-gnueabi/ld |
|---|
| 3861 | configure:20073: checking if the linker (/usr/libexec/gcc/armv4tl-softfloat-linux-gnueabi/ld) is GNU ld |
|---|
| 3862 | configure:20086: result: yes |
|---|
| 3863 | configure:20093: checking for shared library run path origin |
|---|
| 3864 | configure:20106: result: done |
|---|
| 3865 | configure:20607: checking for CFPreferencesCopyAppValue |
|---|
| 3866 | configure:20635: armv4tl-softfloat-linux-gnueabi-gcc -o conftest -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow -L/usr/armv4tl-softfloat-linux-gnueabi/usr/lib -L/usr/armv4tl-softfloat-linux-gnueabi/lib -Wl,--as-needed -Wl,-O1 conftest.c -Wl,-framework -Wl,CoreFoundation >&5 |
|---|
| 3867 | conftest.c:88:42: error: CoreFoundation/CFPreferences.h: No such file or directory |
|---|
| 3868 | conftest.c:91: warning: function declaration isn't a prototype |
|---|
| 3869 | conftest.c: In function 'main': |
|---|
| 3870 | conftest.c:92: warning: implicit declaration of function 'CFPreferencesCopyAppValue' |
|---|
| 3871 | conftest.c:92: error: 'NULL' undeclared (first use in this function) |
|---|
| 3872 | conftest.c:92: error: (Each undeclared identifier is reported only once |
|---|
| 3873 | conftest.c:92: error: for each function it appears in.) |
|---|
| 3874 | configure:20642: $? = 1 |
|---|
| 3875 | configure: failed program was: |
|---|
| 3876 | | /* confdefs.h. */ |
|---|
| 3877 | | #define PACKAGE_NAME "" |
|---|
| 3878 | | #define PACKAGE_TARNAME "" |
|---|
| 3879 | | #define PACKAGE_VERSION "" |
|---|
| 3880 | | #define PACKAGE_STRING "" |
|---|
| 3881 | | #define PACKAGE_BUGREPORT "" |
|---|
| 3882 | | #define PACKAGE "Linux-PAM" |
|---|
| 3883 | | #define VERSION "1.1.0" |
|---|
| 3884 | | #define STDC_HEADERS 1 |
|---|
| 3885 | | #define HAVE_SYS_TYPES_H 1 |
|---|
| 3886 | | #define HAVE_SYS_STAT_H 1 |
|---|
| 3887 | | #define HAVE_STDLIB_H 1 |
|---|
| 3888 | | #define HAVE_STRING_H 1 |
|---|
| 3889 | | #define HAVE_MEMORY_H 1 |
|---|
| 3890 | | #define HAVE_STRINGS_H 1 |
|---|
| 3891 | | #define HAVE_INTTYPES_H 1 |
|---|
| 3892 | | #define HAVE_STDINT_H 1 |
|---|
| 3893 | | #define HAVE_UNISTD_H 1 |
|---|
| 3894 | | #define __EXTENSIONS__ 1 |
|---|
| 3895 | | #define _ALL_SOURCE 1 |
|---|
| 3896 | | #define _GNU_SOURCE 1 |
|---|
| 3897 | | #define _POSIX_PTHREAD_SEMANTICS 1 |
|---|
| 3898 | | #define _TANDEM_SOURCE 1 |
|---|
| 3899 | | #define YYTEXT_POINTER 1 |
|---|
| 3900 | | #define HAVE_DLFCN_H 1 |
|---|
| 3901 | | #define LT_OBJDIR ".libs/" |
|---|
| 3902 | | #define _FILE_OFFSET_BITS 64 |
|---|
| 3903 | | #define UNUSED __attribute__ ((unused)) |
|---|
| 3904 | | #define _PAM_ISA "/lib/security" |
|---|
| 3905 | | #define USE_LCKPWDF 1 |
|---|
| 3906 | | #define HAVE_PATHS_H 1 |
|---|
| 3907 | | #define PAM_PATH_MAILDIR "/var/spool/mail" |
|---|
| 3908 | | #define PAM_PATH_XAUTH "/usr/bin/xauth" |
|---|
| 3909 | | #define HAVE_CRACK_H 1 |
|---|
| 3910 | | #define HAVE_CRYPT_H 1 |
|---|
| 3911 | | #define HAVE_CRYPT_R 1 |
|---|
| 3912 | | #define PAM_PATH_RANDOMDEV "/dev/urandom" |
|---|
| 3913 | | #define HAVE_RPCSVC_YPCLNT_H 1 |
|---|
| 3914 | | #define HAVE_RPCSVC_YP_PROT_H 1 |
|---|
| 3915 | | #define HAVE_NETDB_H 1 |
|---|
| 3916 | | #define HAVE_INNETGR 1 |
|---|
| 3917 | | #define HAVE_NIS 1 |
|---|
| 3918 | | #define HAVE_DIRENT_H 1 |
|---|
| 3919 | | #define STDC_HEADERS 1 |
|---|
| 3920 | | #define HAVE_SYS_WAIT_H 1 |
|---|
| 3921 | | #define HAVE_FCNTL_H 1 |
|---|
| 3922 | | #define HAVE_LIMITS_H 1 |
|---|
| 3923 | | #define HAVE_MALLOC_H 1 |
|---|
| 3924 | | #define HAVE_SYS_FILE_H 1 |
|---|
| 3925 | | #define HAVE_SYS_IOCTL_H 1 |
|---|
| 3926 | | #define HAVE_SYS_TIME_H 1 |
|---|
| 3927 | | #define HAVE_SYSLOG_H 1 |
|---|
| 3928 | | #define HAVE_NET_IF_H 1 |
|---|
| 3929 | | #define HAVE_TERMIO_H 1 |
|---|
| 3930 | | #define HAVE_UNISTD_H 1 |
|---|
| 3931 | | #define HAVE_SYS_FSUID_H 1 |
|---|
| 3932 | | #define HAVE_LASTLOG_H 1 |
|---|
| 3933 | | #define HAVE_UTMP_H 1 |
|---|
| 3934 | | #define HAVE_UTMPX_H 1 |
|---|
| 3935 | | #define TIME_WITH_SYS_TIME 1 |
|---|
| 3936 | | #define GETGROUPS_T gid_t |
|---|
| 3937 | | #define HAVE_VPRINTF 1 |
|---|
| 3938 | | #define HAVE_FSEEKO 1 |
|---|
| 3939 | | #define HAVE_GETHOSTNAME 1 |
|---|
| 3940 | | #define HAVE_GETTIMEOFDAY 1 |
|---|
| 3941 | | #define HAVE_LCKPWDF 1 |
|---|
| 3942 | | #define HAVE_MKDIR 1 |
|---|
| 3943 | | #define HAVE_SELECT 1 |
|---|
| 3944 | | #define HAVE_STRCSPN 1 |
|---|
| 3945 | | #define HAVE_STRDUP 1 |
|---|
| 3946 | | #define HAVE_STRSPN 1 |
|---|
| 3947 | | #define HAVE_STRSTR 1 |
|---|
| 3948 | | #define HAVE_STRTOL 1 |
|---|
| 3949 | | #define HAVE_UNAME 1 |
|---|
| 3950 | | #define HAVE_GETPWNAM_R 1 |
|---|
| 3951 | | #define HAVE_GETPWUID_R 1 |
|---|
| 3952 | | #define HAVE_GETGRNAM_R 1 |
|---|
| 3953 | | #define HAVE_GETGRGID_R 1 |
|---|
| 3954 | | #define HAVE_GETSPNAM_R 1 |
|---|
| 3955 | | #define HAVE_GETGROUPLIST 1 |
|---|
| 3956 | | #define HAVE_GETLINE 1 |
|---|
| 3957 | | #define HAVE_GETDELIM 1 |
|---|
| 3958 | | #define HAVE_INET_NTOP 1 |
|---|
| 3959 | | #define HAVE_INET_PTON 1 |
|---|
| 3960 | | #define HAVE_RUSEROK_AF 1 |
|---|
| 3961 | | #define HAVE_UNSHARE 1 |
|---|
| 3962 | | /* end confdefs.h. */ |
|---|
| 3963 | | #include <CoreFoundation/CFPreferences.h> |
|---|
| 3964 | | int |
|---|
| 3965 | | main () |
|---|
| 3966 | | { |
|---|
| 3967 | | CFPreferencesCopyAppValue(NULL, NULL) |
|---|
| 3968 | | ; |
|---|
| 3969 | | return 0; |
|---|
| 3970 | | } |
|---|
| 3971 | configure:20663: result: no |
|---|
| 3972 | configure:20672: checking for CFLocaleCopyCurrent |
|---|
| 3973 | configure:20700: armv4tl-softfloat-linux-gnueabi-gcc -o conftest -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow -L/usr/armv4tl-softfloat-linux-gnueabi/usr/lib -L/usr/armv4tl-softfloat-linux-gnueabi/lib -Wl,--as-needed -Wl,-O1 conftest.c -Wl,-framework -Wl,CoreFoundation >&5 |
|---|
| 3974 | conftest.c:88:37: error: CoreFoundation/CFLocale.h: No such file or directory |
|---|
| 3975 | conftest.c:91: warning: function declaration isn't a prototype |
|---|
| 3976 | conftest.c: In function 'main': |
|---|
| 3977 | conftest.c:92: warning: implicit declaration of function 'CFLocaleCopyCurrent' |
|---|
| 3978 | configure:20707: $? = 1 |
|---|
| 3979 | configure: failed program was: |
|---|
| 3980 | | /* confdefs.h. */ |
|---|
| 3981 | | #define PACKAGE_NAME "" |
|---|
| 3982 | | #define PACKAGE_TARNAME "" |
|---|
| 3983 | | #define PACKAGE_VERSION "" |
|---|
| 3984 | | #define PACKAGE_STRING "" |
|---|
| 3985 | | #define PACKAGE_BUGREPORT "" |
|---|
| 3986 | | #define PACKAGE "Linux-PAM" |
|---|
| 3987 | | #define VERSION "1.1.0" |
|---|
| 3988 | | #define STDC_HEADERS 1 |
|---|
| 3989 | | #define HAVE_SYS_TYPES_H 1 |
|---|
| 3990 | | #define HAVE_SYS_STAT_H 1 |
|---|
| 3991 | | #define HAVE_STDLIB_H 1 |
|---|
| 3992 | | #define HAVE_STRING_H 1 |
|---|
| 3993 | | #define HAVE_MEMORY_H 1 |
|---|
| 3994 | | #define HAVE_STRINGS_H 1 |
|---|
| 3995 | | #define HAVE_INTTYPES_H 1 |
|---|
| 3996 | | #define HAVE_STDINT_H 1 |
|---|
| 3997 | | #define HAVE_UNISTD_H 1 |
|---|
| 3998 | | #define __EXTENSIONS__ 1 |
|---|
| 3999 | | #define _ALL_SOURCE 1 |
|---|
| 4000 | | #define _GNU_SOURCE 1 |
|---|
| 4001 | | #define _POSIX_PTHREAD_SEMANTICS 1 |
|---|
| 4002 | | #define _TANDEM_SOURCE 1 |
|---|
| 4003 | | #define YYTEXT_POINTER 1 |
|---|
| 4004 | | #define HAVE_DLFCN_H 1 |
|---|
| 4005 | | #define LT_OBJDIR ".libs/" |
|---|
| 4006 | | #define _FILE_OFFSET_BITS 64 |
|---|
| 4007 | | #define UNUSED __attribute__ ((unused)) |
|---|
| 4008 | | #define _PAM_ISA "/lib/security" |
|---|
| 4009 | | #define USE_LCKPWDF 1 |
|---|
| 4010 | | #define HAVE_PATHS_H 1 |
|---|
| 4011 | | #define PAM_PATH_MAILDIR "/var/spool/mail" |
|---|
| 4012 | | #define PAM_PATH_XAUTH "/usr/bin/xauth" |
|---|
| 4013 | | #define HAVE_CRACK_H 1 |
|---|
| 4014 | | #define HAVE_CRYPT_H 1 |
|---|
| 4015 | | #define HAVE_CRYPT_R 1 |
|---|
| 4016 | | #define PAM_PATH_RANDOMDEV "/dev/urandom" |
|---|
| 4017 | | #define HAVE_RPCSVC_YPCLNT_H 1 |
|---|
| 4018 | | #define HAVE_RPCSVC_YP_PROT_H 1 |
|---|
| 4019 | | #define HAVE_NETDB_H 1 |
|---|
| 4020 | | #define HAVE_INNETGR 1 |
|---|
| 4021 | | #define HAVE_NIS 1 |
|---|
| 4022 | | #define HAVE_DIRENT_H 1 |
|---|
| 4023 | | #define STDC_HEADERS 1 |
|---|
| 4024 | | #define HAVE_SYS_WAIT_H 1 |
|---|
| 4025 | | #define HAVE_FCNTL_H 1 |
|---|
| 4026 | | #define HAVE_LIMITS_H 1 |
|---|
| 4027 | | #define HAVE_MALLOC_H 1 |
|---|
| 4028 | | #define HAVE_SYS_FILE_H 1 |
|---|
| 4029 | | #define HAVE_SYS_IOCTL_H 1 |
|---|
| 4030 | | #define HAVE_SYS_TIME_H 1 |
|---|
| 4031 | | #define HAVE_SYSLOG_H 1 |
|---|
| 4032 | | #define HAVE_NET_IF_H 1 |
|---|
| 4033 | | #define HAVE_TERMIO_H 1 |
|---|
| 4034 | | #define HAVE_UNISTD_H 1 |
|---|
| 4035 | | #define HAVE_SYS_FSUID_H 1 |
|---|
| 4036 | | #define HAVE_LASTLOG_H 1 |
|---|
| 4037 | | #define HAVE_UTMP_H 1 |
|---|
| 4038 | | #define HAVE_UTMPX_H 1 |
|---|
| 4039 | | #define TIME_WITH_SYS_TIME 1 |
|---|
| 4040 | | #define GETGROUPS_T gid_t |
|---|
| 4041 | | #define HAVE_VPRINTF 1 |
|---|
| 4042 | | #define HAVE_FSEEKO 1 |
|---|
| 4043 | | #define HAVE_GETHOSTNAME 1 |
|---|
| 4044 | | #define HAVE_GETTIMEOFDAY 1 |
|---|
| 4045 | | #define HAVE_LCKPWDF 1 |
|---|
| 4046 | | #define HAVE_MKDIR 1 |
|---|
| 4047 | | #define HAVE_SELECT 1 |
|---|
| 4048 | | #define HAVE_STRCSPN 1 |
|---|
| 4049 | | #define HAVE_STRDUP 1 |
|---|
| 4050 | | #define HAVE_STRSPN 1 |
|---|
| 4051 | | #define HAVE_STRSTR 1 |
|---|
| 4052 | | #define HAVE_STRTOL 1 |
|---|
| 4053 | | #define HAVE_UNAME 1 |
|---|
| 4054 | | #define HAVE_GETPWNAM_R 1 |
|---|
| 4055 | | #define HAVE_GETPWUID_R 1 |
|---|
| 4056 | | #define HAVE_GETGRNAM_R 1 |
|---|
| 4057 | | #define HAVE_GETGRGID_R 1 |
|---|
| 4058 | | #define HAVE_GETSPNAM_R 1 |
|---|
| 4059 | | #define HAVE_GETGROUPLIST 1 |
|---|
| 4060 | | #define HAVE_GETLINE 1 |
|---|
| 4061 | | #define HAVE_GETDELIM 1 |
|---|
| 4062 | | #define HAVE_INET_NTOP 1 |
|---|
| 4063 | | #define HAVE_INET_PTON 1 |
|---|
| 4064 | | #define HAVE_RUSEROK_AF 1 |
|---|
| 4065 | | #define HAVE_UNSHARE 1 |
|---|
| 4066 | | /* end confdefs.h. */ |
|---|
| 4067 | | #include <CoreFoundation/CFLocale.h> |
|---|
| 4068 | | int |
|---|
| 4069 | | main () |
|---|
| 4070 | | { |
|---|
| 4071 | | CFLocaleCopyCurrent(); |
|---|
| 4072 | | ; |
|---|
| 4073 | | return 0; |
|---|
| 4074 | | } |
|---|
| 4075 | configure:20728: result: no |
|---|
| 4076 | configure:20779: checking for GNU gettext in libc |
|---|
| 4077 | configure:20809: armv4tl-softfloat-linux-gnueabi-gcc -o conftest -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow -L/usr/armv4tl-softfloat-linux-gnueabi/usr/lib -L/usr/armv4tl-softfloat-linux-gnueabi/lib -Wl,--as-needed -Wl,-O1 conftest.c >&5 |
|---|
| 4078 | conftest.c:94: warning: function declaration isn't a prototype |
|---|
| 4079 | configure:20816: $? = 0 |
|---|
| 4080 | configure:20838: result: yes |
|---|
| 4081 | configure:21742: checking whether to use NLS |
|---|
| 4082 | configure:21744: result: yes |
|---|
| 4083 | configure:21747: checking where the gettext function comes from |
|---|
| 4084 | configure:21758: result: libc |
|---|
| 4085 | configure:21823: checking for dngettext |
|---|
| 4086 | configure:21879: armv4tl-softfloat-linux-gnueabi-gcc -o conftest -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow -L/usr/armv4tl-softfloat-linux-gnueabi/usr/lib -L/usr/armv4tl-softfloat-linux-gnueabi/lib -Wl,--as-needed -Wl,-O1 conftest.c >&5 |
|---|
| 4087 | conftest.c:114: warning: function declaration isn't a prototype |
|---|
| 4088 | conftest.c:124: warning: function declaration isn't a prototype |
|---|
| 4089 | configure:21886: $? = 0 |
|---|
| 4090 | configure:21908: result: yes |
|---|
| 4091 | configure:21924: checking whether __NR_keyctl is declared |
|---|
| 4092 | configure:21954: armv4tl-softfloat-linux-gnueabi-gcc -c -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow conftest.c >&5 |
|---|
| 4093 | conftest.c:96: warning: function declaration isn't a prototype |
|---|
| 4094 | configure:21961: $? = 0 |
|---|
| 4095 | configure:21976: result: yes |
|---|
| 4096 | configure:21984: checking whether ENOKEY is declared |
|---|
| 4097 | configure:22014: armv4tl-softfloat-linux-gnueabi-gcc -c -Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow conftest.c >&5 |
|---|
| 4098 | conftest.c:96: warning: function declaration isn't a prototype |
|---|
| 4099 | configure:22021: $? = 0 |
|---|
| 4100 | configure:22036: result: yes |
|---|
| 4101 | configure:22273: creating ./config.status |
|---|
| 4102 | |
|---|
| 4103 | ## ---------------------- ## |
|---|
| 4104 | ## Running config.status. ## |
|---|
| 4105 | ## ---------------------- ## |
|---|
| 4106 | |
|---|
| 4107 | This file was extended by config.status, which was |
|---|
| 4108 | generated by GNU Autoconf 2.63. Invocation command line was |
|---|
| 4109 | |
|---|
| 4110 | CONFIG_FILES = |
|---|
| 4111 | CONFIG_HEADERS = |
|---|
| 4112 | CONFIG_LINKS = |
|---|
| 4113 | CONFIG_COMMANDS = |
|---|
| 4114 | $ ./config.status |
|---|
| 4115 | |
|---|
| 4116 | on brlx0004 |
|---|
| 4117 | |
|---|
| 4118 | config.status:1196: creating Makefile |
|---|
| 4119 | config.status:1196: creating libpam/Makefile |
|---|
| 4120 | config.status:1196: creating libpamc/Makefile |
|---|
| 4121 | config.status:1196: creating libpamc/test/Makefile |
|---|
| 4122 | config.status:1196: creating libpam_misc/Makefile |
|---|
| 4123 | config.status:1196: creating conf/Makefile |
|---|
| 4124 | config.status:1196: creating conf/pam_conv1/Makefile |
|---|
| 4125 | config.status:1196: creating po/Makefile.in |
|---|
| 4126 | config.status:1196: creating modules/Makefile |
|---|
| 4127 | config.status:1196: creating modules/pam_access/Makefile |
|---|
| 4128 | config.status:1196: creating modules/pam_cracklib/Makefile |
|---|
| 4129 | config.status:1196: creating modules/pam_debug/Makefile |
|---|
| 4130 | config.status:1196: creating modules/pam_deny/Makefile |
|---|
| 4131 | config.status:1196: creating modules/pam_echo/Makefile |
|---|
| 4132 | config.status:1196: creating modules/pam_env/Makefile |
|---|
| 4133 | config.status:1196: creating modules/pam_faildelay/Makefile |
|---|
| 4134 | config.status:1196: creating modules/pam_filter/Makefile |
|---|
| 4135 | config.status:1196: creating modules/pam_filter/upperLOWER/Makefile |
|---|
| 4136 | config.status:1196: creating modules/pam_ftp/Makefile |
|---|
| 4137 | config.status:1196: creating modules/pam_group/Makefile |
|---|
| 4138 | config.status:1196: creating modules/pam_issue/Makefile |
|---|
| 4139 | config.status:1196: creating modules/pam_keyinit/Makefile |
|---|
| 4140 | config.status:1196: creating modules/pam_lastlog/Makefile |
|---|
| 4141 | config.status:1196: creating modules/pam_limits/Makefile |
|---|
| 4142 | config.status:1196: creating modules/pam_listfile/Makefile |
|---|
| 4143 | config.status:1196: creating modules/pam_localuser/Makefile |
|---|
| 4144 | config.status:1196: creating modules/pam_loginuid/Makefile |
|---|
| 4145 | config.status:1196: creating modules/pam_mail/Makefile |
|---|
| 4146 | config.status:1196: creating modules/pam_mkhomedir/Makefile |
|---|
| 4147 | config.status:1196: creating modules/pam_motd/Makefile |
|---|
| 4148 | config.status:1196: creating modules/pam_namespace/Makefile |
|---|
| 4149 | config.status:1196: creating modules/pam_nologin/Makefile |
|---|
| 4150 | config.status:1196: creating modules/pam_permit/Makefile |
|---|
| 4151 | config.status:1196: creating modules/pam_pwhistory/Makefile |
|---|
| 4152 | config.status:1196: creating modules/pam_rhosts/Makefile |
|---|
| 4153 | config.status:1196: creating modules/pam_rootok/Makefile |
|---|
| 4154 | config.status:1196: creating modules/pam_exec/Makefile |
|---|
| 4155 | config.status:1196: creating modules/pam_securetty/Makefile |
|---|
| 4156 | config.status:1196: creating modules/pam_selinux/Makefile |
|---|
| 4157 | config.status:1196: creating modules/pam_sepermit/Makefile |
|---|
| 4158 | config.status:1196: creating modules/pam_shells/Makefile |
|---|
| 4159 | config.status:1196: creating modules/pam_stress/Makefile |
|---|
| 4160 | config.status:1196: creating modules/pam_succeed_if/Makefile |
|---|
| 4161 | config.status:1196: creating modules/pam_tally/Makefile |
|---|
| 4162 | config.status:1196: creating modules/pam_tally2/Makefile |
|---|
| 4163 | config.status:1196: creating modules/pam_time/Makefile |
|---|
| 4164 | config.status:1196: creating modules/pam_timestamp/Makefile |
|---|
| 4165 | config.status:1196: creating modules/pam_tty_audit/Makefile |
|---|
| 4166 | config.status:1196: creating modules/pam_umask/Makefile |
|---|
| 4167 | config.status:1196: creating modules/pam_unix/Makefile |
|---|
| 4168 | config.status:1196: creating modules/pam_userdb/Makefile |
|---|
| 4169 | config.status:1196: creating modules/pam_warn/Makefile |
|---|
| 4170 | config.status:1196: creating modules/pam_wheel/Makefile |
|---|
| 4171 | config.status:1196: creating modules/pam_xauth/Makefile |
|---|
| 4172 | config.status:1196: creating doc/Makefile |
|---|
| 4173 | config.status:1196: creating doc/specs/Makefile |
|---|
| 4174 | config.status:1196: creating doc/man/Makefile |
|---|
| 4175 | config.status:1196: creating doc/sag/Makefile |
|---|
| 4176 | config.status:1196: creating doc/adg/Makefile |
|---|
| 4177 | config.status:1196: creating doc/mwg/Makefile |
|---|
| 4178 | config.status:1196: creating examples/Makefile |
|---|
| 4179 | config.status:1196: creating tests/Makefile |
|---|
| 4180 | config.status:1196: creating xtests/Makefile |
|---|
| 4181 | config.status:1196: creating config.h |
|---|
| 4182 | config.status:1470: executing depfiles commands |
|---|
| 4183 | config.status:1470: executing libtool commands |
|---|
| 4184 | config.status:1470: executing po-directories commands |
|---|
| 4185 | |
|---|
| 4186 | ## ---------------- ## |
|---|
| 4187 | ## Cache variables. ## |
|---|
| 4188 | ## ---------------- ## |
|---|
| 4189 | |
|---|
| 4190 | ac_cv___attribute__=yes |
|---|
| 4191 | ac_cv___va_copy=yes |
|---|
| 4192 | ac_cv_alignof_CORBA_boolean=1 |
|---|
| 4193 | ac_cv_alignof_CORBA_char=1 |
|---|
| 4194 | ac_cv_alignof_CORBA_double=8 |
|---|
| 4195 | ac_cv_alignof_CORBA_float=4 |
|---|
| 4196 | ac_cv_alignof_CORBA_long=4 |
|---|
| 4197 | ac_cv_alignof_CORBA_long_double=8 |
|---|
| 4198 | ac_cv_alignof_CORBA_long_long=8 |
|---|
| 4199 | ac_cv_alignof_CORBA_octet=1 |
|---|
| 4200 | ac_cv_alignof_CORBA_pointer=4 |
|---|
| 4201 | ac_cv_alignof_CORBA_short=2 |
|---|
| 4202 | ac_cv_alignof_CORBA_struct=1 |
|---|
| 4203 | ac_cv_alignof_CORBA_wchar=2 |
|---|
| 4204 | ac_cv_build=x86_64-pc-linux-gnu |
|---|
| 4205 | ac_cv_c_bigendian=no |
|---|
| 4206 | ac_cv_c_compiler_gnu=yes |
|---|
| 4207 | ac_cv_c_const=yes |
|---|
| 4208 | ac_cv_c_littleendian=yes |
|---|
| 4209 | ac_cv_c_long_double=yes |
|---|
| 4210 | ac_cv_conv_longlong_to_float=yes |
|---|
| 4211 | ac_cv_dirent_have_space_d_name=yes |
|---|
| 4212 | ac_cv_env_CC_set= |
|---|
| 4213 | ac_cv_env_CC_value= |
|---|
| 4214 | ac_cv_env_CFLAGS_set=set |
|---|
| 4215 | ac_cv_env_CFLAGS_value='-Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/' |
|---|
| 4216 | ac_cv_env_CPPFLAGS_set= |
|---|
| 4217 | ac_cv_env_CPPFLAGS_value= |
|---|
| 4218 | ac_cv_env_CPP_set= |
|---|
| 4219 | ac_cv_env_CPP_value= |
|---|
| 4220 | ac_cv_env_LDFLAGS_set=set |
|---|
| 4221 | ac_cv_env_LDFLAGS_value='-L/usr/armv4tl-softfloat-linux-gnueabi/usr/lib -L/usr/armv4tl-softfloat-linux-gnueabi/lib' |
|---|
| 4222 | ac_cv_env_LIBS_set= |
|---|
| 4223 | ac_cv_env_LIBS_value= |
|---|
| 4224 | ac_cv_env_YACC_set= |
|---|
| 4225 | ac_cv_env_YACC_value= |
|---|
| 4226 | ac_cv_env_YFLAGS_set= |
|---|
| 4227 | ac_cv_env_YFLAGS_value= |
|---|
| 4228 | ac_cv_env_build_alias_set=set |
|---|
| 4229 | ac_cv_env_build_alias_value=x86_64-pc-linux-gnu |
|---|
| 4230 | ac_cv_env_host_alias_set=set |
|---|
| 4231 | ac_cv_env_host_alias_value=armv4tl-softfloat-linux-gnueabi |
|---|
| 4232 | ac_cv_env_target_alias_set= |
|---|
| 4233 | ac_cv_env_target_alias_value= |
|---|
| 4234 | ac_cv_file___dev_urandom_=yes |
|---|
| 4235 | ac_cv_file__bin_bash=yes |
|---|
| 4236 | ac_cv_file__dev_arandom=no |
|---|
| 4237 | ac_cv_file__dev_random=yes |
|---|
| 4238 | ac_cv_file__dev_srandom=yes |
|---|
| 4239 | ac_cv_file__dev_urandom=yes |
|---|
| 4240 | ac_cv_file__dev_zero=yes |
|---|
| 4241 | ac_cv_file__usr_share_sgml_X11_defs_ent=1 |
|---|
| 4242 | ac_cv_func__doprnt=no |
|---|
| 4243 | ac_cv_func_calloc_0_nonnull=yes |
|---|
| 4244 | ac_cv_func_crypt_gensalt_rn=no |
|---|
| 4245 | ac_cv_func_crypt_r=yes |
|---|
| 4246 | ac_cv_func_dngettext=yes |
|---|
| 4247 | ac_cv_func_fnmatch_works=yes |
|---|
| 4248 | ac_cv_func_fseeko=yes |
|---|
| 4249 | ac_cv_func_getaddrinfo=yes |
|---|
| 4250 | ac_cv_func_getdelim=yes |
|---|
| 4251 | ac_cv_func_getgrgid_r=yes |
|---|
| 4252 | ac_cv_func_getgrnam_r=yes |
|---|
| 4253 | ac_cv_func_getgrouplist=yes |
|---|
| 4254 | ac_cv_func_gethostname=yes |
|---|
| 4255 | ac_cv_func_getline=yes |
|---|
| 4256 | ac_cv_func_getpwnam_r=yes |
|---|
| 4257 | ac_cv_func_getpwuid_r=yes |
|---|
| 4258 | ac_cv_func_getspnam_r=yes |
|---|
| 4259 | ac_cv_func_gettimeofday=yes |
|---|
| 4260 | ac_cv_func_inet_ntop=yes |
|---|
| 4261 | ac_cv_func_inet_pton=yes |
|---|
| 4262 | ac_cv_func_innetgr=yes |
|---|
| 4263 | ac_cv_func_lckpwdf=yes |
|---|
| 4264 | ac_cv_func_lstat_dereferences_slashed_symlink=yes |
|---|
| 4265 | ac_cv_func_lstat_empty_string_bug=no |
|---|
| 4266 | ac_cv_func_malloc_0_nonnull=yes |
|---|
| 4267 | ac_cv_func_malloc_works=yes |
|---|
| 4268 | ac_cv_func_memcmp_working=yes |
|---|
| 4269 | ac_cv_func_mkdir=yes |
|---|
| 4270 | ac_cv_func_posix_getgrgid_r=yes |
|---|
| 4271 | ac_cv_func_posix_getpwnam_r=yes |
|---|
| 4272 | ac_cv_func_posix_getpwuid_r=yes |
|---|
| 4273 | ac_cv_func_pthread_key_delete=yes |
|---|
| 4274 | ac_cv_func_realloc_0_nonnull=yes |
|---|
| 4275 | ac_cv_func_realloc_works=yes |
|---|
| 4276 | ac_cv_func_ruserok_af=yes |
|---|
| 4277 | ac_cv_func_select=yes |
|---|
| 4278 | ac_cv_func_setgrent_void=yes |
|---|
| 4279 | ac_cv_func_setpgrp_void=yes |
|---|
| 4280 | ac_cv_func_stat_empty_string_bug=no |
|---|
| 4281 | ac_cv_func_stat_ignores_trailing_slash=no |
|---|
| 4282 | ac_cv_func_strcspn=yes |
|---|
| 4283 | ac_cv_func_strdup=yes |
|---|
| 4284 | ac_cv_func_strnlen_working=yes |
|---|
| 4285 | ac_cv_func_strspn=yes |
|---|
| 4286 | ac_cv_func_strstr=yes |
|---|
| 4287 | ac_cv_func_strtol=yes |
|---|
| 4288 | ac_cv_func_uname=yes |
|---|
| 4289 | ac_cv_func_unshare=yes |
|---|
| 4290 | ac_cv_func_vprintf=yes |
|---|
| 4291 | ac_cv_func_yp_get_default_domain=no |
|---|
| 4292 | ac_cv_have_abstract_sockets=no |
|---|
| 4293 | ac_cv_have_accrights_in_msghdr=no |
|---|
| 4294 | ac_cv_have_broken_snprintf=no |
|---|
| 4295 | ac_cv_have_control_in_msghdr=yes |
|---|
| 4296 | ac_cv_have_decl_ENOKEY=yes |
|---|
| 4297 | ac_cv_have_decl___NR_keyctl=yes |
|---|
| 4298 | ac_cv_have_openpty_ctty_bug=yes |
|---|
| 4299 | ac_cv_have_space_d_name_in_struct_dirent=yes |
|---|
| 4300 | ac_cv_header_crack_h=yes |
|---|
| 4301 | ac_cv_header_crypt_h=yes |
|---|
| 4302 | ac_cv_header_dirent_dirent_h=yes |
|---|
| 4303 | ac_cv_header_dlfcn_h=yes |
|---|
| 4304 | ac_cv_header_fcntl_h=yes |
|---|
| 4305 | ac_cv_header_inittypes_h=no |
|---|
| 4306 | ac_cv_header_inttypes_h=yes |
|---|
| 4307 | ac_cv_header_lastlog_h=yes |
|---|
| 4308 | ac_cv_header_limits_h=yes |
|---|
| 4309 | ac_cv_header_malloc_h=yes |
|---|
| 4310 | ac_cv_header_memory_h=yes |
|---|
| 4311 | ac_cv_header_minix_config_h=no |
|---|
| 4312 | ac_cv_header_net_if_h=yes |
|---|
| 4313 | ac_cv_header_netdb_h=yes |
|---|
| 4314 | ac_cv_header_netinet_sctp_h=no |
|---|
| 4315 | ac_cv_header_netinet_sctp_uio_h=no |
|---|
| 4316 | ac_cv_header_paths_h=yes |
|---|
| 4317 | ac_cv_header_pwd_h=yes |
|---|
| 4318 | ac_cv_header_rpcsvc_yp_prot_h=yes |
|---|
| 4319 | ac_cv_header_rpcsvc_ypclnt_h=yes |
|---|
| 4320 | ac_cv_header_stdc=yes |
|---|
| 4321 | ac_cv_header_stdint_h=yes |
|---|
| 4322 | ac_cv_header_stdlib_h=yes |
|---|
| 4323 | ac_cv_header_string_h=yes |
|---|
| 4324 | ac_cv_header_strings_h=yes |
|---|
| 4325 | ac_cv_header_sys_file_h=yes |
|---|
| 4326 | ac_cv_header_sys_fsuid_h=yes |
|---|
| 4327 | ac_cv_header_sys_ioctl_h=yes |
|---|
| 4328 | ac_cv_header_sys_stat_h=yes |
|---|
| 4329 | ac_cv_header_sys_time_h=yes |
|---|
| 4330 | ac_cv_header_sys_types_h=yes |
|---|
| 4331 | ac_cv_header_sys_wait_h=yes |
|---|
| 4332 | ac_cv_header_syslog_h=yes |
|---|
| 4333 | ac_cv_header_termio_h=yes |
|---|
| 4334 | ac_cv_header_time=yes |
|---|
| 4335 | ac_cv_header_unistd_h=yes |
|---|
| 4336 | ac_cv_header_utmp_h=yes |
|---|
| 4337 | ac_cv_header_utmpx_h=yes |
|---|
| 4338 | ac_cv_header_xcrypt_h=no |
|---|
| 4339 | ac_cv_host=armv4tl-softfloat-linux-gnueabi |
|---|
| 4340 | ac_cv_ispeed_offset=13 |
|---|
| 4341 | ac_cv_lib_crack_FascistCheck=yes |
|---|
| 4342 | ac_cv_lib_dl_dlopen=yes |
|---|
| 4343 | ac_cv_lib_lex=-lfl |
|---|
| 4344 | ac_cv_lib_nsl_yp_get_default_domain=yes |
|---|
| 4345 | ac_cv_lib_png_png_create_info_struct=yes |
|---|
| 4346 | ac_cv_libiconv_utf8=yes |
|---|
| 4347 | ac_cv_linux_vers=2 |
|---|
| 4348 | ac_cv_need_trio=no |
|---|
| 4349 | ac_cv_objext=o |
|---|
| 4350 | ac_cv_path_BROWSER=/usr/bin/w3m |
|---|
| 4351 | ac_cv_path_EGREP='/bin/grep -E' |
|---|
| 4352 | ac_cv_path_FGREP='/bin/grep -F' |
|---|
| 4353 | ac_cv_path_GMSGFMT=/usr/bin/gmsgfmt |
|---|
| 4354 | ac_cv_path_GREP=/bin/grep |
|---|
| 4355 | ac_cv_path_MSGFMT=/usr/bin/msgfmt |
|---|
| 4356 | ac_cv_path_MSGMERGE=/usr/bin/msgmerge |
|---|
| 4357 | ac_cv_path_SED=/bin/sed |
|---|
| 4358 | ac_cv_path_XGETTEXT=/usr/bin/xgettext |
|---|
| 4359 | ac_cv_path_XMLCATALOG=/usr/bin/xmlcatalog |
|---|
| 4360 | ac_cv_path_XMLLINT=/usr/bin/xmllint |
|---|
| 4361 | ac_cv_path_XSLTPROC=/usr/bin/xsltproc |
|---|
| 4362 | ac_cv_path_install='/usr/bin/install -c' |
|---|
| 4363 | ac_cv_path_mkdir=/bin/mkdir |
|---|
| 4364 | ac_cv_path_pam_xauth_path=/usr/bin/xauth |
|---|
| 4365 | ac_cv_pread=no |
|---|
| 4366 | ac_cv_printf_zd_format=yes |
|---|
| 4367 | ac_cv_prog_AR=armv4tl-softfloat-linux-gnueabi-ar |
|---|
| 4368 | ac_cv_prog_AWK=gawk |
|---|
| 4369 | ac_cv_prog_CC=armv4tl-softfloat-linux-gnueabi-gcc |
|---|
| 4370 | ac_cv_prog_CPP='armv4tl-softfloat-linux-gnueabi-gcc -E' |
|---|
| 4371 | ac_cv_prog_LEX=flex |
|---|
| 4372 | ac_cv_prog_OBJDUMP=armv4tl-softfloat-linux-gnueabi-objdump |
|---|
| 4373 | ac_cv_prog_RANLIB=armv4tl-softfloat-linux-gnueabi-ranlib |
|---|
| 4374 | ac_cv_prog_STRIP=armv4tl-softfloat-linux-gnueabi-strip |
|---|
| 4375 | ac_cv_prog_YACC='bison -y' |
|---|
| 4376 | ac_cv_prog_cc_armv4tl_softfloat_linux_gnueabi_gcc_c_o=yes |
|---|
| 4377 | ac_cv_prog_cc_c89= |
|---|
| 4378 | ac_cv_prog_cc_g=yes |
|---|
| 4379 | ac_cv_prog_gcc_traditional=no |
|---|
| 4380 | ac_cv_prog_lex_root=lex.yy |
|---|
| 4381 | ac_cv_prog_lex_yytext_pointer=yes |
|---|
| 4382 | ac_cv_prog_make_make_set=yes |
|---|
| 4383 | ac_cv_pwrite=no |
|---|
| 4384 | ac_cv_regexec_segfault_emptystr=no |
|---|
| 4385 | ac_cv_safe_to_define___extensions__=yes |
|---|
| 4386 | ac_cv_sctp=no |
|---|
| 4387 | ac_cv_search_crypt=-lcrypt |
|---|
| 4388 | ac_cv_search_opendir='none required' |
|---|
| 4389 | ac_cv_sizeof___int64=0 |
|---|
| 4390 | ac_cv_sizeof_char=1 |
|---|
| 4391 | ac_cv_sizeof_int16_t=2 |
|---|
| 4392 | ac_cv_sizeof_int32_t=4 |
|---|
| 4393 | ac_cv_sizeof_int64_t=8 |
|---|
| 4394 | ac_cv_sizeof_int=4 |
|---|
| 4395 | ac_cv_sizeof_long=4 |
|---|
| 4396 | ac_cv_sizeof_long_int=4 |
|---|
| 4397 | ac_cv_sizeof_long_long=8 |
|---|
| 4398 | ac_cv_sizeof_off_t=4 |
|---|
| 4399 | ac_cv_sizeof_short=2 |
|---|
| 4400 | ac_cv_sizeof_short_int=2 |
|---|
| 4401 | ac_cv_sizeof_size_t=4 |
|---|
| 4402 | ac_cv_sizeof_ssize_t=4 |
|---|
| 4403 | ac_cv_sizeof_u_int16_t=2 |
|---|
| 4404 | ac_cv_sizeof_u_int32_t=4 |
|---|
| 4405 | ac_cv_sizeof_u_int64_t=8 |
|---|
| 4406 | ac_cv_sizeof_uint16_t=2 |
|---|
| 4407 | ac_cv_sizeof_uint32_t=4 |
|---|
| 4408 | ac_cv_sizeof_uint64_t=8 |
|---|
| 4409 | ac_cv_sizeof_unsigned_int=4 |
|---|
| 4410 | ac_cv_sizeof_unsigned_long=4 |
|---|
| 4411 | ac_cv_sizeof_unsigned_short=2 |
|---|
| 4412 | ac_cv_sizeof_void_p=4 |
|---|
| 4413 | ac_cv_sizeof_wchar_t=4 |
|---|
| 4414 | ac_cv_strerror_r_SUSv3=no |
|---|
| 4415 | ac_cv_struct_tm=time.h |
|---|
| 4416 | ac_cv_sys_file_offset_bits=64 |
|---|
| 4417 | ac_cv_sys_largefile_CC=no |
|---|
| 4418 | ac_cv_sys_restartable_syscalls=yes |
|---|
| 4419 | ac_cv_time_r_type=POSIX |
|---|
| 4420 | ac_cv_type_getgroups=gid_t |
|---|
| 4421 | ac_cv_type_off_t=yes |
|---|
| 4422 | ac_cv_type_pid_t=yes |
|---|
| 4423 | ac_cv_type_size_t=yes |
|---|
| 4424 | ac_cv_type_uid_t=yes |
|---|
| 4425 | ac_cv_uchar=no |
|---|
| 4426 | ac_cv_uint=yes |
|---|
| 4427 | ac_cv_ulong=yes |
|---|
| 4428 | ac_cv_ushort=yes |
|---|
| 4429 | ac_cv_va_copy=yes |
|---|
| 4430 | ac_cv_va_val_copy=yes |
|---|
| 4431 | acl_cv_hardcode_direct=no |
|---|
| 4432 | acl_cv_hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' |
|---|
| 4433 | acl_cv_hardcode_libdir_separator= |
|---|
| 4434 | acl_cv_hardcode_minus_L=no |
|---|
| 4435 | acl_cv_libext=a |
|---|
| 4436 | acl_cv_path_LD=/usr/libexec/gcc/armv4tl-softfloat-linux-gnueabi/ld |
|---|
| 4437 | acl_cv_prog_gnu_ld=yes |
|---|
| 4438 | acl_cv_rpath=done |
|---|
| 4439 | acl_cv_shlibext=so |
|---|
| 4440 | acl_cv_wl=-Wl, |
|---|
| 4441 | am_cv_CC_dependencies_compiler_type=none |
|---|
| 4442 | am_cv_func_working_getline=yes |
|---|
| 4443 | apr_cv_process_shared_works=no |
|---|
| 4444 | apr_cv_tcp_nodelay_with_cork=yes |
|---|
| 4445 | as_cv_unaligned_access=no |
|---|
| 4446 | bash_cv_dup2_broken=no |
|---|
| 4447 | bash_cv_func_sigsetjmp=missing |
|---|
| 4448 | bash_cv_func_strcoll_broken=no |
|---|
| 4449 | bash_cv_getcwd_calls_popen=no |
|---|
| 4450 | bash_cv_getenv_redef=yes |
|---|
| 4451 | bash_cv_have_mbstate_t=yes |
|---|
| 4452 | bash_cv_job_control_missing=present |
|---|
| 4453 | bash_cv_must_reinstall_sighandlers=no |
|---|
| 4454 | bash_cv_opendir_not_robust=no |
|---|
| 4455 | bash_cv_pgrp_pipe=no |
|---|
| 4456 | bash_cv_printf_a_format=yes |
|---|
| 4457 | bash_cv_sys_named_pipes=present |
|---|
| 4458 | bash_cv_type_rlimit=rlim_t |
|---|
| 4459 | bash_cv_ulimit_maxfds=yes |
|---|
| 4460 | bash_cv_unusable_rtsigs=no |
|---|
| 4461 | compat_cv_func_basename_works=no |
|---|
| 4462 | compat_cv_func_dirname_works=no |
|---|
| 4463 | compat_cv_func_snprintf_works=yes |
|---|
| 4464 | cvs_cv_func_printf_ptr=yes |
|---|
| 4465 | db_cv_align_t='unsigned long long' |
|---|
| 4466 | db_cv_alignp_t='unsigned long' |
|---|
| 4467 | db_cv_fcntl_f_setfd=yes |
|---|
| 4468 | db_cv_mutex=no |
|---|
| 4469 | db_cv_path_ar=/usr/bin/ar |
|---|
| 4470 | db_cv_path_chmod=/bin/chmod |
|---|
| 4471 | db_cv_path_cp=/bin/cp |
|---|
| 4472 | db_cv_path_ln=/bin/ln |
|---|
| 4473 | db_cv_path_mkdir=/bin/mkdir |
|---|
| 4474 | db_cv_path_ranlib=/usr/bin/ranlib |
|---|
| 4475 | db_cv_path_rm=/bin/rm |
|---|
| 4476 | db_cv_path_sh=/bin/sh |
|---|
| 4477 | db_cv_path_strip=/usr/bin/strip |
|---|
| 4478 | db_cv_posixmutexes=no |
|---|
| 4479 | db_cv_spinlocks=no |
|---|
| 4480 | db_cv_sprintf_count=yes |
|---|
| 4481 | db_cv_uimutexes=no |
|---|
| 4482 | dpkg_cv___va_copy=yes |
|---|
| 4483 | dpkg_cv_va_copy=yes |
|---|
| 4484 | ettercap_cv_type_socklen_t=yes |
|---|
| 4485 | fu_cv_sys_stat_statvfs=yes |
|---|
| 4486 | gl_cv_func_malloc_0_nonnull=yes |
|---|
| 4487 | gl_cv_func_re_compile_pattern_working=yes |
|---|
| 4488 | gl_cv_func_rename_trailing_dest_slash_bug=no |
|---|
| 4489 | gl_cv_func_rename_trailing_slash_bug=no |
|---|
| 4490 | gl_cv_func_wcwidth_works=yes |
|---|
| 4491 | glib_cv___va_copy=yes |
|---|
| 4492 | glib_cv_has__inline=yes |
|---|
| 4493 | glib_cv_has__inline__=yes |
|---|
| 4494 | glib_cv_hasinline=yes |
|---|
| 4495 | glib_cv_long_long_format=ll |
|---|
| 4496 | glib_cv_rtldglobal_broken=no |
|---|
| 4497 | glib_cv_sane_realloc=yes |
|---|
| 4498 | glib_cv_sizeof_gmutex=40 |
|---|
| 4499 | glib_cv_sizeof_intmax_t=8 |
|---|
| 4500 | glib_cv_sizeof_ptrdiff_t=4 |
|---|
| 4501 | glib_cv_sizeof_size_t=4 |
|---|
| 4502 | glib_cv_sizeof_system_thread=4 |
|---|
| 4503 | glib_cv_stack_grows=no |
|---|
| 4504 | glib_cv_sys_pthread_cond_timedwait_posix=yes |
|---|
| 4505 | glib_cv_sys_pthread_getspecific_posix=yes |
|---|
| 4506 | glib_cv_sys_pthread_mutex_trylock_posix=yes |
|---|
| 4507 | glib_cv_sys_use_pid_niceness_surrogate=yes |
|---|
| 4508 | glib_cv_uscore=no |
|---|
| 4509 | glib_cv_use_pid_surrogate=yes |
|---|
| 4510 | glib_cv_va_copy=yes |
|---|
| 4511 | glib_cv_va_val_copy=no |
|---|
| 4512 | gt_cv_func_CFLocaleCopyCurrent=no |
|---|
| 4513 | gt_cv_func_CFPreferencesCopyAppValue=no |
|---|
| 4514 | gt_cv_func_gnugettext1_libc=yes |
|---|
| 4515 | jm_cv_func_working_readdir=yes |
|---|
| 4516 | lf_cv_sane_realloc=yes |
|---|
| 4517 | lftp_cv___va_copy=yes |
|---|
| 4518 | lftp_cv_va_copy=yes |
|---|
| 4519 | lftp_cv_va_val_copy=yes |
|---|
| 4520 | libIDL_cv_long_long_format=ll |
|---|
| 4521 | libc_cv_asm_symver_directive=yes |
|---|
| 4522 | libc_cv_fpie=yes |
|---|
| 4523 | libc_cv_ld_version_script_option=yes |
|---|
| 4524 | lt_cv_deplibs_check_method=pass_all |
|---|
| 4525 | lt_cv_file_magic_cmd='$MAGIC_CMD' |
|---|
| 4526 | lt_cv_file_magic_test_file= |
|---|
| 4527 | lt_cv_ld_reload_flag=-r |
|---|
| 4528 | lt_cv_nm_interface='BSD nm' |
|---|
| 4529 | lt_cv_objdir=.libs |
|---|
| 4530 | lt_cv_path_LD=/usr/libexec/gcc/armv4tl-softfloat-linux-gnueabi/ld |
|---|
| 4531 | lt_cv_path_NM='/usr/bin/armv4tl-softfloat-linux-gnueabi-nm -B' |
|---|
| 4532 | lt_cv_prog_compiler_c_o=yes |
|---|
| 4533 | lt_cv_prog_compiler_pic_works=yes |
|---|
| 4534 | lt_cv_prog_compiler_rtti_exceptions=no |
|---|
| 4535 | lt_cv_prog_compiler_static_works=yes |
|---|
| 4536 | lt_cv_prog_gnu_ld=yes |
|---|
| 4537 | lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\''' |
|---|
| 4538 | lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \([^ ]*\) $/ {\"\1\", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \([^ ]*\)$/ {"\2", (void *) \&\2},/p'\''' |
|---|
| 4539 | lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='sed -n -e '\''s/^: \([^ ]*\) $/ {\"\1\", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \(lib[^ ]*\)$/ {"\2", (void *) \&\2},/p'\'' -e '\''s/^[ABCDGIRSTW]* \([^ ]*\) \([^ ]*\)$/ {"lib\2", (void *) \&\2},/p'\''' |
|---|
| 4540 | lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^T .* \(.*\)$/extern int \1();/p'\'' -e '\''s/^[ABCDGIRSTW]* .* \(.*\)$/extern char \1;/p'\''' |
|---|
| 4541 | lt_cv_sys_max_cmd_len=1572864 |
|---|
| 4542 | mr_cv_target_elf=yes |
|---|
| 4543 | mysql_cv_func_atomic_add=no |
|---|
| 4544 | mysql_cv_func_atomic_sub=no |
|---|
| 4545 | nano_cv_func_regexec_segv_emptystr=no |
|---|
| 4546 | pam_cv_ld_O1=yes |
|---|
| 4547 | pam_cv_ld_as_needed=yes |
|---|
| 4548 | php_cv_lib_cookie_io_functions_use_off64_t=yes |
|---|
| 4549 | racoon_cv_bug_getaddrinfo=no |
|---|
| 4550 | rsync_cv_HAVE_BROKEN_LARGEFILE=no |
|---|
| 4551 | rsync_cv_HAVE_BROKEN_READDIR=no |
|---|
| 4552 | rsync_cv_HAVE_C99_VSNPRINTF=yes |
|---|
| 4553 | rsync_cv_HAVE_GETTIMEOFDAY_TZ=yes |
|---|
| 4554 | rsync_cv_HAVE_LONGLONG=yes |
|---|
| 4555 | rsync_cv_HAVE_OFF64_T=no |
|---|
| 4556 | rsync_cv_HAVE_SECURE_MKSTEMP=yes |
|---|
| 4557 | rsync_cv_HAVE_SHORT_INO_T=no |
|---|
| 4558 | rsync_cv_HAVE_SOCKETPAIR=yes |
|---|
| 4559 | rsync_cv_HAVE_UNSIGNED_CHAR=no |
|---|
| 4560 | rsync_cv_REPLACE_INET_ATON=no |
|---|
| 4561 | rsync_cv_REPLACE_INET_NTOA=no |
|---|
| 4562 | sc_cv_termios_ispeed=yes |
|---|
| 4563 | screen_cv_sys_bcopy_overlap=no |
|---|
| 4564 | screen_cv_sys_fifo_broken_impl=yes |
|---|
| 4565 | screen_cv_sys_fifo_usable=yes |
|---|
| 4566 | screen_cv_sys_memcpy_overlap=no |
|---|
| 4567 | screen_cv_sys_memmove_overlap=no |
|---|
| 4568 | screen_cv_sys_select_broken_retval=no |
|---|
| 4569 | screen_cv_sys_sockets_nofs=no |
|---|
| 4570 | screen_cv_sys_sockets_usable=yes |
|---|
| 4571 | screen_cv_sys_terminfo_used=yes |
|---|
| 4572 | slrn_cv___va_copy=yes |
|---|
| 4573 | slrn_cv_va_copy=yes |
|---|
| 4574 | slrn_cv_va_val_copy=yes |
|---|
| 4575 | sudo_cv_uid_t_len=10 |
|---|
| 4576 | utils_cv_sys_open_max=1019 |
|---|
| 4577 | vim_cv_getcwd_broken=no |
|---|
| 4578 | vim_cv_memmove_handles_overlap=yes |
|---|
| 4579 | vim_cv_stat_ignores_slash=yes |
|---|
| 4580 | vim_cv_terminfo=yes |
|---|
| 4581 | vim_cv_toupper_broken=no |
|---|
| 4582 | vim_cv_tty_group=world |
|---|
| 4583 | yeti_cv_func_scanf_modif_size_t=z |
|---|
| 4584 | |
|---|
| 4585 | ## ----------------- ## |
|---|
| 4586 | ## Output variables. ## |
|---|
| 4587 | ## ----------------- ## |
|---|
| 4588 | |
|---|
| 4589 | ACLOCAL='${SHELL} /usr/armv4tl-softfloat-linux-gnueabi/tmp/portage/sys-libs/pam-1.1.0/work/Linux-PAM-1.1.0/missing --run aclocal-1.10' |
|---|
| 4590 | AMDEPBACKSLASH='' |
|---|
| 4591 | AMDEP_FALSE='' |
|---|
| 4592 | AMDEP_TRUE='#' |
|---|
| 4593 | AMTAR='${SHELL} /usr/armv4tl-softfloat-linux-gnueabi/tmp/portage/sys-libs/pam-1.1.0/work/Linux-PAM-1.1.0/missing --run tar' |
|---|
| 4594 | AR='armv4tl-softfloat-linux-gnueabi-ar' |
|---|
| 4595 | AUTOCONF='${SHELL} /usr/armv4tl-softfloat-linux-gnueabi/tmp/portage/sys-libs/pam-1.1.0/work/Linux-PAM-1.1.0/missing --run autoconf' |
|---|
| 4596 | AUTOHEADER='${SHELL} /usr/armv4tl-softfloat-linux-gnueabi/tmp/portage/sys-libs/pam-1.1.0/work/Linux-PAM-1.1.0/missing --run autoheader' |
|---|
| 4597 | AUTOMAKE='${SHELL} /usr/armv4tl-softfloat-linux-gnueabi/tmp/portage/sys-libs/pam-1.1.0/work/Linux-PAM-1.1.0/missing --run automake-1.10' |
|---|
| 4598 | AWK='gawk' |
|---|
| 4599 | BROWSER='/usr/bin/w3m -T text/html -dump' |
|---|
| 4600 | CC='armv4tl-softfloat-linux-gnueabi-gcc' |
|---|
| 4601 | CCDEPMODE='depmode=none' |
|---|
| 4602 | CFLAGS='-Os -pipe -march=armv4t -mtune=arm920t -fomit-frame-pointer -I/usr/armv4tl-softfloat-linux-gnueabi/usr/include/ -I/usr/armv4tl-softfloat-linux-gnueabi/sys-include/ -W -Wall -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wstrict-prototypes -Wwrite-strings -Winline -Wshadow' |
|---|
| 4603 | CPP='armv4tl-softfloat-linux-gnueabi-gcc -E' |
|---|
| 4604 | CPPFLAGS='' |
|---|
| 4605 | CYGPATH_W='echo' |
|---|
| 4606 | DEFS='-DHAVE_CONFIG_H' |
|---|
| 4607 | DEPDIR='.deps' |
|---|
| 4608 | DSYMUTIL='' |
|---|
| 4609 | DUMPBIN='' |
|---|
| 4610 | ECHO_C='' |
|---|
| 4611 | ECHO_N='-n' |
|---|
| 4612 | ECHO_T='' |
|---|
| 4613 | EGREP='/bin/grep -E' |
|---|
| 4614 | ENABLE_GENERATE_PDF_FALSE='' |
|---|
| 4615 | ENABLE_GENERATE_PDF_TRUE='#' |
|---|
| 4616 | ENABLE_REGENERATE_MAN_FALSE='#' |
|---|
| 4617 | ENABLE_REGENERATE_MAN_TRUE='' |
|---|
| 4618 | EXEEXT='' |
|---|
| 4619 | FGREP='/bin/grep -F' |
|---|
| 4620 | FO2PDF='' |
|---|
| 4621 | GETTEXT_MACRO_VERSION='0.17' |
|---|
| 4622 | GMSGFMT='/usr/bin/gmsgfmt' |
|---|
| 4623 | GMSGFMT_015='/usr/bin/gmsgfmt' |
|---|
| 4624 | GREP='/bin/grep' |
|---|
| 4625 | HAVE_AUDIT_TTY_STATUS_FALSE='' |
|---|
| 4626 | HAVE_AUDIT_TTY_STATUS_TRUE='#' |
|---|
| 4627 | HAVE_KEY_MANAGEMENT='1' |
|---|
| 4628 | HAVE_KEY_MANAGEMENT_FALSE='#' |
|---|
| 4629 | HAVE_KEY_MANAGEMENT_TRUE='' |
|---|
| 4630 | HAVE_LIBCRACK_FALSE='#' |
|---|
| 4631 | HAVE_LIBCRACK_TRUE='' |
|---|
| 4632 | HAVE_LIBDB_FALSE='' |
|---|
| 4633 | HAVE_LIBDB_TRUE='#' |
|---|
| 4634 | HAVE_LIBSELINUX_FALSE='' |
|---|
| 4635 | HAVE_LIBSELINUX_TRUE='#' |
|---|
| 4636 | HAVE_NIS_FALSE='#' |
|---|
| 4637 | HAVE_NIS_TRUE='' |
|---|
| 4638 | HAVE_UNSHARE_FALSE='#' |
|---|
| 4639 | HAVE_UNSHARE_TRUE='' |
|---|
| 4640 | HAVE_VERSIONING_FALSE='#' |
|---|
| 4641 | HAVE_VERSIONING_TRUE='' |
|---|
| 4642 | INSTALL_DATA='${INSTALL} -m 644' |
|---|
| 4643 | INSTALL_PROGRAM='${INSTALL}' |
|---|
| 4644 | INSTALL_SCRIPT='${INSTALL}' |
|---|
| 4645 | INSTALL_STRIP_PROGRAM='$(install_sh) -c -s' |
|---|
| 4646 | INTLLIBS='' |
|---|
| 4647 | INTL_MACOSX_LIBS='' |
|---|
| 4648 | LD='/usr/libexec/gcc/armv4tl-softfloat-linux-gnueabi/ld' |
|---|
| 4649 | LDFLAGS='-L/usr/armv4tl-softfloat-linux-gnueabi/usr/lib -L/usr/armv4tl-softfloat-linux-gnueabi/lib -Wl,--as-needed -Wl,-O1' |
|---|
| 4650 | LEX='flex' |
|---|
| 4651 | LEXLIB='-lfl' |
|---|
| 4652 | LEX_OUTPUT_ROOT='lex.yy' |
|---|
| 4653 | LIBAUDIT='' |
|---|
| 4654 | LIBCRACK='-lcrack' |
|---|
| 4655 | LIBCRYPT='-lcrypt' |
|---|
| 4656 | LIBDB='' |
|---|
| 4657 | LIBDL='-ldl' |
|---|
| 4658 | LIBICONV='-liconv' |
|---|
| 4659 | LIBINTL='' |
|---|
| 4660 | LIBNSL='-lnsl' |
|---|
| 4661 | LIBOBJS='' |
|---|
| 4662 | LIBPRELUDE_CFLAGS='' |
|---|
| 4663 | LIBPRELUDE_CONFIG='' |
|---|
| 4664 | LIBPRELUDE_CONFIG_PREFIX='' |
|---|
| 4665 | LIBPRELUDE_LDFLAGS='' |
|---|
| 4666 | LIBPRELUDE_LIBS='' |
|---|
| 4667 | LIBPRELUDE_PREFIX='' |
|---|
| 4668 | LIBPRELUDE_PTHREAD_CFLAGS='' |
|---|
| 4669 | LIBS='' |
|---|
| 4670 | LIBSELINUX='' |
|---|
| 4671 | LIBTOOL='$(SHELL) $(top_builddir)/libtool' |
|---|
| 4672 | LIPO='' |
|---|
| 4673 | LN_S='ln -s' |
|---|
| 4674 | LTLIBICONV='-liconv' |
|---|
| 4675 | LTLIBINTL='' |
|---|
| 4676 | LTLIBOBJS='' |
|---|
| 4677 | MAKEINFO='${SHELL} /usr/armv4tl-softfloat-linux-gnueabi/tmp/portage/sys-libs/pam-1.1.0/work/Linux-PAM-1.1.0/missing --run makeinfo' |
|---|
| 4678 | MKDIR_P='/bin/mkdir -p' |
|---|
| 4679 | MSGFMT='/usr/bin/msgfmt' |
|---|
| 4680 | MSGFMT_015='/usr/bin/msgfmt' |
|---|
| 4681 | MSGMERGE='/usr/bin/msgmerge' |
|---|
| 4682 | NM='/usr/bin/armv4tl-softfloat-linux-gnueabi-nm -B' |
|---|
| 4683 | NMEDIT='' |
|---|
| 4684 | OBJDUMP='armv4tl-softfloat-linux-gnueabi-objdump' |
|---|
| 4685 | OBJEXT='o' |
|---|
| 4686 | OTOOL64='' |
|---|
| 4687 | OTOOL='' |
|---|
| 4688 | PACKAGE='Linux-PAM' |
|---|
| 4689 | PACKAGE_BUGREPORT='' |
|---|
| 4690 | PACKAGE_NAME='' |
|---|
| 4691 | PACKAGE_STRING='' |
|---|
| 4692 | PACKAGE_TARNAME='' |
|---|
| 4693 | PACKAGE_VERSION='' |
|---|
| 4694 | PATH_SEPARATOR=':' |
|---|
| 4695 | PIE_CFLAGS='-fpie' |
|---|
| 4696 | PIE_LDFLAGS='-pie' |
|---|
| 4697 | POSUB='po' |
|---|
| 4698 | RANLIB='armv4tl-softfloat-linux-gnueabi-ranlib' |
|---|
| 4699 | SCONFIGDIR='/etc/security' |
|---|
| 4700 | SECUREDIR='/lib/security' |
|---|
| 4701 | SED='/bin/sed' |
|---|
| 4702 | SET_MAKE='' |
|---|
| 4703 | SHELL='/bin/sh' |
|---|
| 4704 | STATIC_MODULES_FALSE='' |
|---|
| 4705 | STATIC_MODULES_TRUE='#' |
|---|
| 4706 | STRIP='armv4tl-softfloat-linux-gnueabi-strip' |
|---|
| 4707 | USE_NLS='yes' |
|---|
| 4708 | VERSION='1.1.0' |
|---|
| 4709 | XGETTEXT='/usr/bin/xgettext' |
|---|
| 4710 | XGETTEXT_015='/usr/bin/xgettext' |
|---|
| 4711 | XGETTEXT_EXTRA_OPTIONS='' |
|---|
| 4712 | XMLCATALOG='/usr/bin/xmlcatalog' |
|---|
| 4713 | XMLLINT='/usr/bin/xmllint' |
|---|
| 4714 | XML_CATALOG_FILE='/etc/xml/catalog' |
|---|
| 4715 | XSLTPROC='/usr/bin/xsltproc' |
|---|
| 4716 | YACC='bison -y' |
|---|
| 4717 | YFLAGS='' |
|---|
| 4718 | ac_ct_CC='' |
|---|
| 4719 | ac_ct_DUMPBIN='' |
|---|
| 4720 | am__fastdepCC_FALSE='' |
|---|
| 4721 | am__fastdepCC_TRUE='#' |
|---|
| 4722 | am__include='include' |
|---|
| 4723 | am__isrc='' |
|---|
| 4724 | am__leading_dot='.' |
|---|
| 4725 | am__quote='' |
|---|
| 4726 | am__tar='${AMTAR} chof - "$$tardir"' |
|---|
| 4727 | am__untar='${AMTAR} xf -' |
|---|
| 4728 | bindir='${exec_prefix}/bin' |
|---|
| 4729 | build='x86_64-pc-linux-gnu' |
|---|
| 4730 | build_alias='x86_64-pc-linux-gnu' |
|---|
| 4731 | build_cpu='x86_64' |
|---|
| 4732 | build_os='linux-gnu' |
|---|
| 4733 | build_vendor='pc' |
|---|
| 4734 | datadir='/usr/share' |
|---|
| 4735 | datarootdir='${prefix}/share' |
|---|
| 4736 | docdir='/usr/share/doc/pam-1.1.0' |
|---|
| 4737 | dvidir='${docdir}' |
|---|
| 4738 | exec_prefix='${prefix}' |
|---|
| 4739 | host='armv4tl-softfloat-linux-gnueabi' |
|---|
| 4740 | host_alias='armv4tl-softfloat-linux-gnueabi' |
|---|
| 4741 | host_cpu='armv4tl' |
|---|
| 4742 | host_os='linux-gnueabi' |
|---|
| 4743 | host_vendor='softfloat' |
|---|
| 4744 | htmldir='/usr/share/doc/pam-1.1.0/html' |
|---|
| 4745 | includedir='/usr/include/security' |
|---|
| 4746 | infodir='/usr/share/info' |
|---|
| 4747 | install_sh='$(SHELL) /usr/armv4tl-softfloat-linux-gnueabi/tmp/portage/sys-libs/pam-1.1.0/work/Linux-PAM-1.1.0/install-sh' |
|---|
| 4748 | libc_cv_fpie='yes' |
|---|
| 4749 | libdir='/usr/lib' |
|---|
| 4750 | libexecdir='${exec_prefix}/libexec' |
|---|
| 4751 | localedir='${datarootdir}/locale' |
|---|
| 4752 | localstatedir='/var/lib' |
|---|
| 4753 | lt_ECHO='echo' |
|---|
| 4754 | mandir='/usr/share/man' |
|---|
| 4755 | mkdir_p='/bin/mkdir -p' |
|---|
| 4756 | oldincludedir='/usr/include' |
|---|
| 4757 | pam_cv_ld_as_needed='yes' |
|---|
| 4758 | pam_xauth_path='/usr/bin/xauth' |
|---|
| 4759 | pdfdir='${docdir}' |
|---|
| 4760 | prefix='/usr' |
|---|
| 4761 | program_transform_name='s,x,x,' |
|---|
| 4762 | psdir='${docdir}' |
|---|
| 4763 | sbindir='/sbin' |
|---|
| 4764 | sharedstatedir='${prefix}/com' |
|---|
| 4765 | sysconfdir='/etc' |
|---|
| 4766 | target_alias='' |
|---|
| 4767 | |
|---|
| 4768 | ## ----------- ## |
|---|
| 4769 | ## confdefs.h. ## |
|---|
| 4770 | ## ----------- ## |
|---|
| 4771 | |
|---|
| 4772 | #define PACKAGE_NAME "" |
|---|
| 4773 | #define PACKAGE_TARNAME "" |
|---|
| 4774 | #define PACKAGE_VERSION "" |
|---|
| 4775 | #define PACKAGE_STRING "" |
|---|
| 4776 | #define PACKAGE_BUGREPORT "" |
|---|
| 4777 | #define PACKAGE "Linux-PAM" |
|---|
| 4778 | #define VERSION "1.1.0" |
|---|
| 4779 | #define STDC_HEADERS 1 |
|---|
| 4780 | #define HAVE_SYS_TYPES_H 1 |
|---|
| 4781 | #define HAVE_SYS_STAT_H 1 |
|---|
| 4782 | #define HAVE_STDLIB_H 1 |
|---|
| 4783 | #define HAVE_STRING_H 1 |
|---|
| 4784 | #define HAVE_MEMORY_H 1 |
|---|
| 4785 | #define HAVE_STRINGS_H 1 |
|---|
| 4786 | #define HAVE_INTTYPES_H 1 |
|---|
| 4787 | #define HAVE_STDINT_H 1 |
|---|
| 4788 | #define HAVE_UNISTD_H 1 |
|---|
| 4789 | #define __EXTENSIONS__ 1 |
|---|
| 4790 | #define _ALL_SOURCE 1 |
|---|
| 4791 | #define _GNU_SOURCE 1 |
|---|
| 4792 | #define _POSIX_PTHREAD_SEMANTICS 1 |
|---|
| 4793 | #define _TANDEM_SOURCE 1 |
|---|
| 4794 | #define YYTEXT_POINTER 1 |
|---|
| 4795 | #define HAVE_DLFCN_H 1 |
|---|
| 4796 | #define LT_OBJDIR ".libs/" |
|---|
| 4797 | #define _FILE_OFFSET_BITS 64 |
|---|
| 4798 | #define UNUSED __attribute__ ((unused)) |
|---|
| 4799 | #define _PAM_ISA "/lib/security" |
|---|
| 4800 | #define USE_LCKPWDF 1 |
|---|
| 4801 | #define HAVE_PATHS_H 1 |
|---|
| 4802 | #define PAM_PATH_MAILDIR "/var/spool/mail" |
|---|
| 4803 | #define PAM_PATH_XAUTH "/usr/bin/xauth" |
|---|
| 4804 | #define HAVE_CRACK_H 1 |
|---|
| 4805 | #define HAVE_CRYPT_H 1 |
|---|
| 4806 | #define HAVE_CRYPT_R 1 |
|---|
| 4807 | #define PAM_PATH_RANDOMDEV "/dev/urandom" |
|---|
| 4808 | #define HAVE_RPCSVC_YPCLNT_H 1 |
|---|
| 4809 | #define HAVE_RPCSVC_YP_PROT_H 1 |
|---|
| 4810 | #define HAVE_NETDB_H 1 |
|---|
| 4811 | #define HAVE_INNETGR 1 |
|---|
| 4812 | #define HAVE_NIS 1 |
|---|
| 4813 | #define HAVE_DIRENT_H 1 |
|---|
| 4814 | #define STDC_HEADERS 1 |
|---|
| 4815 | #define HAVE_SYS_WAIT_H 1 |
|---|
| 4816 | #define HAVE_FCNTL_H 1 |
|---|
| 4817 | #define HAVE_LIMITS_H 1 |
|---|
| 4818 | #define HAVE_MALLOC_H 1 |
|---|
| 4819 | #define HAVE_SYS_FILE_H 1 |
|---|
| 4820 | #define HAVE_SYS_IOCTL_H 1 |
|---|
| 4821 | #define HAVE_SYS_TIME_H 1 |
|---|
| 4822 | #define HAVE_SYSLOG_H 1 |
|---|
| 4823 | #define HAVE_NET_IF_H 1 |
|---|
| 4824 | #define HAVE_TERMIO_H 1 |
|---|
| 4825 | #define HAVE_UNISTD_H 1 |
|---|
| 4826 | #define HAVE_SYS_FSUID_H 1 |
|---|
| 4827 | #define HAVE_LASTLOG_H 1 |
|---|
| 4828 | #define HAVE_UTMP_H 1 |
|---|
| 4829 | #define HAVE_UTMPX_H 1 |
|---|
| 4830 | #define TIME_WITH_SYS_TIME 1 |
|---|
| 4831 | #define GETGROUPS_T gid_t |
|---|
| 4832 | #define HAVE_VPRINTF 1 |
|---|
| 4833 | #define HAVE_FSEEKO 1 |
|---|
| 4834 | #define HAVE_GETHOSTNAME 1 |
|---|
| 4835 | #define HAVE_GETTIMEOFDAY 1 |
|---|
| 4836 | #define HAVE_LCKPWDF 1 |
|---|
| 4837 | #define HAVE_MKDIR 1 |
|---|
| 4838 | #define HAVE_SELECT 1 |
|---|
| 4839 | #define HAVE_STRCSPN 1 |
|---|
| 4840 | #define HAVE_STRDUP 1 |
|---|
| 4841 | #define HAVE_STRSPN 1 |
|---|
| 4842 | #define HAVE_STRSTR 1 |
|---|
| 4843 | #define HAVE_STRTOL 1 |
|---|
| 4844 | #define HAVE_UNAME 1 |
|---|
| 4845 | #define HAVE_GETPWNAM_R 1 |
|---|
| 4846 | #define HAVE_GETPWUID_R 1 |
|---|
| 4847 | #define HAVE_GETGRNAM_R 1 |
|---|
| 4848 | #define HAVE_GETGRGID_R 1 |
|---|
| 4849 | #define HAVE_GETSPNAM_R 1 |
|---|
| 4850 | #define HAVE_GETGROUPLIST 1 |
|---|
| 4851 | #define HAVE_GETLINE 1 |
|---|
| 4852 | #define HAVE_GETDELIM 1 |
|---|
| 4853 | #define HAVE_INET_NTOP 1 |
|---|
| 4854 | #define HAVE_INET_PTON 1 |
|---|
| 4855 | #define HAVE_RUSEROK_AF 1 |
|---|
| 4856 | #define HAVE_UNSHARE 1 |
|---|
| 4857 | #define ENABLE_NLS 1 |
|---|
| 4858 | #define HAVE_GETTEXT 1 |
|---|
| 4859 | #define HAVE_DCGETTEXT 1 |
|---|
| 4860 | #define HAVE_DNGETTEXT 1 |
|---|
| 4861 | #define HAVE_KEY_MANAGEMENT 1 |
|---|
| 4862 | |
|---|
| 4863 | configure: exit 0 |
|---|