## -------------------------- ## ## GNU Radius 1.5 test suite. ## ## -------------------------- ## testsuite: command line was: $ ./testsuite ## ----------- ## ## ChangeLogs. ## ## ----------- ## testsuite: ../doc/texinfo/ChangeLog: | 2005-03-09 Sergey Poznyakoff | | * attributes.texi (Scheme-Procedure,Exec-Program-Wait): Updated | definitions | | 2005-01-28 Sergey Poznyakoff | | * radtest.texi: Fixed minor bug | | 2005-01-17 Sergey Poznyakoff testsuite: ../po/ChangeLog: | 2007-06-19 Sergey Poznyakoff | | Remove .po from the CVS. We will get them right from the TP site. | | * po/.cvsignore, po/POTFILES.in: Update | * po/LINGUAS,po/Makevars: Remove | * ca.po, es.po, fr.po, pl.po, ru.po, uk.po: Remove | | 2006-11-09 Sergey Poznyakoff | testsuite: ../ChangeLog: | 2007-06-27 Sergey Poznyakoff | | Relicense under GPLv3 (snmplib under LGPLv3) | | 2007-06-23 Sergey Poznyakoff | | * configure.ac: Display configuration summary | * tests/atlocal.in: Bug fixes | * tests/testsuite.at (AT_SKIP_TEST): New macro | (AT_CHECK): Skip test if the necessary prerequisites are not met. ## --------- ## ## Platform. ## ## --------- ## hostname = rabbit uname -m = i686 uname -r = 2.6.32-28-generic uname -s = Linux uname -v = #55-Ubuntu SMP Mon Jan 10 21:21:01 UTC 2011 /usr/bin/uname -p = unknown /bin/uname -X = unknown /bin/arch = unknown /usr/bin/arch -k = unknown /usr/convex/getsysinfo = unknown /usr/bin/hostinfo = unknown /bin/machine = unknown /usr/bin/oslevel = unknown /bin/universe = unknown PATH: /tmp/buildd/radius-1.5/tests PATH: /tmp/buildd/radius-1.5/radiusd PATH: /tmp/buildd/radius-1.5/radtest PATH: /tmp/buildd/radius-1.5 PATH: /usr/sbin PATH: /usr/bin PATH: /sbin PATH: /bin testsuite: atconfig: | # Configurable variable values for building test suites. | # Generated by ./config.status. | # Copyright (C) 2000, 2001, 2003, 2004 Free Software Foundation, Inc. | | # The test suite will define top_srcdir=/../.. etc. | at_testdir='tests' | abs_builddir='/tmp/buildd/radius-1.5/tests' | at_srcdir='.' | abs_srcdir='/tmp/buildd/radius-1.5/tests' | at_top_srcdir='..' | abs_top_srcdir='/tmp/buildd/radius-1.5' | at_top_build_prefix='../' | abs_top_builddir='/tmp/buildd/radius-1.5' | | # Backward compatibility with Autotest <= 2.59b: | at_top_builddir=$at_top_build_prefix | | AUTOTEST_PATH='tests' | | SHELL=${CONFIG_SHELL-'/bin/bash'} testsuite: atlocal: | # tests/atlocal. Generated from atlocal.in by configure. -*- shell-script -*- | # Configurable variable values for tar test suite. | # Copyright (C) 2004, 2007 Free Software Foundation, Inc | | SOURCEDIR=$abs_srcdir | BUILDDIR=$abs_builddir | PATH=/tmp/buildd/radius-1.5/tests:/tmp/buildd/radius-1.5/radiusd:/tmp/buildd/radius-1.5/radtest:$top_srcdir:$srcdir:$PATH | GUILE_LOAD_PATH=$abs_top_builddir/radscm | export GUILE_LOAD_PATH | | ZERO_LOGS=1 | | make_raddb() { | NAME=$1 | ABS_NAME=$builddir/$1 | shift | | if test ! -f $ABS_NAME/config.in ; then | cp -r $SOURCEDIR/$NAME $builddir | chmod -R u+w $ABS_NAME | fi | | EXPR=`/tmp/buildd/radius-1.5/tests/findport -c5 -s1644 "address@hidden@^%d^;\ | address@hidden@^%d^;\ | address@hidden@^%d^;\ | address@hidden@^%d^;\ | address@hidden@^%d^;\ | address@hidden@^%u^;\ | address@hidden@^$BUILDDIR^;\ | address@hidden@^$SOURCEDIR^;\ | address@hidden@^$GUILE_CONFIG^;\ | address@hidden@^$SNMP_CONFIG^;"` | | for file in $* | do | sed $EXPR $ABS_NAME/${file}.in > $ABS_NAME/$file | case $file in | *.bin) chmod +x $ABS_NAME/$file | esac | done | [ -d $ABS_NAME/log ] || mkdir $ABS_NAME/log | [ -d $ABS_NAME/acct ] || mkdir $ABS_NAME/acct | if [ x"$ZERO_LOGS" != x ]; then | for file in radwtmp radutmp radius.log radius.info radius.debug radius.stderr | do | cat /dev/null > $ABS_NAME/log/$file | done | fi | } | | start_server() { | /tmp/buildd/radius-1.5/radiusd/radiusd -d $1 \ | -l $1/log \ | -a $1/acct \ | -P $1 | N=1 | while [ ! -r $1/radiusd.pid ] | do | sleep 1 | N=`expr $N + 1` | if [ $N -gt 5 ]; then | exit 1 | fi | done | } | | stop_server() { | for dir in $* | do | if test -r $dir/radiusd.pid; then | kill -TERM `cat $dir/radiusd.pid` | sleep 2 | if test -r $dir/radiusd.pid ; then | kill -KILL `cat $dir/radiusd.pid` | fi | fi | done | } | | LOCAL_CONF=$BUILDDIR/raddb | PROXY_CONF=$BUILDDIR/proxy | | rm -f $LOCAL_CONF/radiusd.pid $PROXY_CONF/radiusd.pid | | begin_server() { | case $1 in | proxy) RADIUSD_CONFDIR=$PROXY_CONF;; | *) RADIUSD_CONFDIR=$LOCAL_CONF;; | esac | if [ -r $RADIUSD_CONFDIR/radiusd.pid ]; then | : | else | make_raddb raddb dictionary config client.conf hints users acct.bin acct.scm realms | make_raddb proxy dictionary client.conf config realms | start_server $LOCAL_CONF | test "$1" = "proxy" && start_server $PROXY_CONF | trap "stop_server $LOCAL_CONF $PROXY_CONF" 1 3 15 | fi | echo $RADIUSD_CONFDIR > $BUILDDIR/confdir | } | | end_server() { | stop_server $LOCAL_CONF $PROXY_CONF | } | | catlog() { | dir=$1 | shift | for file in $* | do | if test -r $dir/$file; then | echo "$dir/$file reports:" | cat $dir/$file | else | echo "$dir/$file not available" | fi | done | } | ## ---------------- ## ## Tested programs. ## ## ---------------- ## ./testsuite.at:24: /tmp/buildd/radius-1.5/radiusd/radiusd --version lt-radiusd: GNU Radius version 1.5 (i486-pc-linux-gnu) Compilation platform: linux Debugging flags: Compilation flags: PWD_SHADOW=SHADOW Compilation defaults: Ports in use: AUTH: 1812 ACCT: 1813 Paths: configuration directory: /etc/raddb logging directory: /var/log accounting directory: /var/log/radacct pidfile directory: /var/run Report bugs to ./testsuite.at:24: /tmp/buildd/radius-1.5/radtest/radtest --version radtest (radius) 1.5 ## ------------------ ## ## Running the tests. ## ## ------------------ ## testsuite: starting at: Mon Feb 14 14:11:53 UTC 2011 2. Status-Server (status-server.at:21): skipped (status-server.at:24) 3. Basic Authentication Types (basic-auth.at:21): skipped (basic-auth.at:24) 4. Reply attributes (reply.at:21): skipped (reply.at:24) 5. BEGIN Keyword (begin-kw.at:21): skipped (begin-kw.at:24) 6. DEFAULT Keyword (default-kw.at:21): skipped (default-kw.at:24) 7. Match-Profile (match-profile.at:21): skipped (match-profile.at:24) 8. hints (hints.at:21): skipped (hints.at:24) 9. huntgroups (huntgroups.at:21): skipped (huntgroups.at:24) 10. Scheme authentication (scheme-auth.at:21): skipped (scheme-auth.at:24) 11. Access control lists (acl.at:21): skipped (acl.at:24) 12. Expiration attribute (expiration.at:21): skipped (expiration.at:24) 13. menus (menu.at:21): skipped (menu.at:24) 14. accounting and simultaneous use control (acct.at:21): skipped (acct.at:24) 15. External accounting (ext-acct.at:21): skipped (ext-acct.at:24) 16. rewrite rules (rewrite.at:21): skipped (rewrite.at:24) 17. external procedures (execwait.at:21): skipped (execwait.at:24) 18. filters (filter.at:21): skipped (filter.at:24) 19. Scheme accounting (scheme-acct.at:21): skipped (scheme-acct.at:24) 20. tunnel attributes (tunnel.at:21): skipped (tunnel.at:24) 21. Log-Mode-Mask attribute (log-mode.at:21): skipped (log-mode.at:24) 22. Shutting down radius server (end.at:21): ok (0m0.004s 0m0.044s) 24. Basic Authentication Types (proxy) (proxy-basic-auth.at:21): skipped (proxy-basic-auth.at:24) 25. Case-insensitive realms (proxy-ignorecase.at:21): skipped (proxy-ignorecase.at:24) 26. VSA propagation (proxy-vsa.at:21): skipped (proxy-vsa.at:24) 27. menus (proxy) (proxy-menu.at:21): skipped (proxy-menu.at:24) 28. nested realms (proxy-nested.at:21): skipped (proxy-nested.at:24) 29. proxy accounting (proxy-acct.at:21): skipped (proxy-acct.at:24) 30. tunnel attributes (proxy) (proxy-tunnel.at:21): skipped (proxy-tunnel.at:24) 31. Shutting down radius server (end-proxy.at:21): ok (0m0.000s 0m0.024s) testsuite: ending at: Mon Feb 14 14:12:29 UTC 2011 testsuite: test suite duration: 0h 0m 36s ## ------------- ## ## Test results. ## ## ------------- ## ERROR: 4 tests were run, 2 failed unexpectedly. 27 tests were skipped. ## ------------------------ ## ## Summary of the failures. ## ## ------------------------ ## Failed tests: GNU Radius 1.5 test suite test groups: NUM: FILE-NAME:LINE TEST-GROUP-NAME KEYWORDS 1: begin.at:21 Starting radius server begin status-server basic-auth reply begin-kw default-kw match-profile hints huntgroups scheme-auth acl expiration menu acct ext-acct rewrite execwait filter scheme-acct tunnel log-mode 23: begin-proxy.at:21 Starting radius server begin-proxy proxy-basic-auth proxy-ignorecase proxy-vsa proxy-menu proxy-nested proxy-acct proxy-tunnel Skipped tests: GNU Radius 1.5 test suite test groups: NUM: FILE-NAME:LINE TEST-GROUP-NAME KEYWORDS 2: status-server.at:21 Status-Server status-server 3: basic-auth.at:21 Basic Authentication Types basic-auth 4: reply.at:21 Reply attributes reply 5: begin-kw.at:21 BEGIN Keyword begin-kw 6: default-kw.at:21 DEFAULT Keyword default-kw 7: match-profile.at:21 Match-Profile match-profile 8: hints.at:21 hints hints 9: huntgroups.at:21 huntgroups huntgroups 10: scheme-auth.at:21 Scheme authentication scheme-auth 11: acl.at:21 Access control lists acl 12: expiration.at:21 Expiration attribute expiration 13: menu.at:21 menus menu 14: acct.at:21 accounting and simultaneous use control acct-start 15: ext-acct.at:21 External accounting ext-acct 16: rewrite.at:21 rewrite rules rewrite 17: execwait.at:21 external procedures execwait 18: filter.at:21 filters filter 19: scheme-acct.at:21 Scheme accounting scheme-acct 20: tunnel.at:21 tunnel attributes tunnel 21: log-mode.at:21 Log-Mode-Mask attribute log-mode 24: proxy-basic-auth.at:21 Basic Authentication Types (proxy) proxy-basic-auth 25: proxy-ignorecase.at:21 Case-insensitive realms proxy-ignorecase 26: proxy-vsa.at:21 VSA propagation proxy-vsa 27: proxy-menu.at:21 menus (proxy) proxy-menu 28: proxy-nested.at:21 nested realms proxy-nested 29: proxy-acct.at:21 proxy accounting proxy-acct 30: proxy-tunnel.at:21 tunnel attributes (proxy) proxy-tunnel ## ---------------------- ## ## Detailed failed tests. ## ## ---------------------- ## # -*- compilation -*- 1. begin.at:21: testing ... ./begin.at:24: begin_server ./begin.at:24: exit code was 1, expected 0 1. begin.at:21: 1. Starting radius server (begin.at:21): FAILED (begin.at:24) # -*- compilation -*- 23. begin-proxy.at:21: testing ... ./begin-proxy.at:24: begin_server proxy ./begin-proxy.at:24: exit code was 1, expected 0 23. begin-proxy.at:21: 23. Starting radius server (begin-proxy.at:21): FAILED (begin-proxy.at:24) ## ------------- ## ## ../config.log ## ## ------------- ## | This file contains any messages produced by compilers while | running configure, to aid debugging if configure makes a mistake. | | It was created by GNU Radius configure 1.5, which was | generated by GNU Autoconf 2.60. Invocation command line was | | $ ./configure --build=i486-linux-gnu --prefix=/usr --includedir=${prefix}/include --mandir=${prefix}/share/man --infodir=${prefix}/share/info --sysconfdir=/etc --localstatedir=/var --libexecdir=${prefix}/lib/radius --disable-maintainer-mode --disable-dependency-tracking | | ## --------- ## | ## Platform. ## | ## --------- ## | | hostname = rabbit | uname -m = i686 | uname -r = 2.6.32-28-generic | uname -s = Linux | uname -v = #55-Ubuntu SMP Mon Jan 10 21:21:01 UTC 2011 | | /usr/bin/uname -p = unknown | /bin/uname -X = unknown | | /bin/arch = unknown | /usr/bin/arch -k = unknown | /usr/convex/getsysinfo = unknown | /usr/bin/hostinfo = unknown | /bin/machine = unknown | /usr/bin/oslevel = unknown | /bin/universe = unknown | | PATH: /usr/sbin | PATH: /usr/bin | PATH: /sbin | PATH: /bin | PATH: /usr/X11R6/bin | | | ## ----------- ## | ## Core tests. ## | ## ----------- ## | | configure:2293: checking build system type | configure:2311: result: i486-pc-linux-gnu | configure:2333: checking host system type | configure:2348: result: i486-pc-linux-gnu | configure:2370: checking target system type | configure:2385: result: i486-pc-linux-gnu | configure:2427: checking for a BSD-compatible install | configure:2483: result: /usr/bin/install -c | configure:2494: checking whether build environment is sane | configure:2537: result: yes | configure:2602: checking for gawk | configure:2632: result: no | configure:2602: checking for mawk | configure:2618: found /usr/bin/mawk | configure:2629: result: mawk | configure:2640: checking whether make sets $(MAKE) | configure:2661: result: yes | configure:2911: checking for gcc | configure:2927: found /usr/bin/gcc | configure:2938: result: gcc | configure:3176: checking for C compiler version | configure:3183: gcc --version >&5 | gcc (Ubuntu 4.4.3-4ubuntu5) 4.4.3 | Copyright (C) 2009 Free Software Foundation, Inc. | This is free software; see the source for copying conditions. There is NO | warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | | configure:3186: $? = 0 | configure:3193: gcc -v >&5 | Using built-in specs. | Target: i486-linux-gnu | Configured with: ../src/configure -v --with-pkgversion='Ubuntu 4.4.3-4ubuntu5' --with-bugurl=file:///usr/share/doc/gcc-4.4/README.Bugs --enable-languages=c,c++,fortran,objc,obj-c++ --prefix=/usr --enable-shared --enable-multiarch --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.4 --program-suffix=-4.4 --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-plugin --enable-objc-gc --enable-targets=all --disable-werror --with-arch-32=i486 --with-tune=generic --enable-checking=release --build=i486-linux-gnu --host=i486-linux-gnu --target=i486-linux-gnu | Thread model: posix | gcc version 4.4.3 (Ubuntu 4.4.3-4ubuntu5) | configure:3196: $? = 0 | configure:3203: gcc -V >&5 | gcc: '-V' option must have argument | configure:3206: $? = 1 | configure:3229: checking for C compiler default output file name | configure:3256: gcc -g -O2 -Wl,-Bsymbolic-functions conftest.c >&5 | configure:3259: $? = 0 | configure:3305: result: a.out | configure:3310: checking whether the C compiler works | configure:3320: ./a.out | configure:3323: $? = 0 | configure:3340: result: yes | configure:3347: checking whether we are cross compiling | configure:3349: result: no | configure:3352: checking for suffix of executables | configure:3359: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c >&5 | configure:3362: $? = 0 | configure:3386: result: | configure:3392: checking for suffix of object files | configure:3418: gcc -c -g -O2 conftest.c >&5 | configure:3421: $? = 0 | configure:3444: result: o | configure:3448: checking whether we are using the GNU C compiler | configure:3477: gcc -c -g -O2 conftest.c >&5 | configure:3483: $? = 0 | configure:3490: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:3493: $? = 0 | configure:3500: test -s conftest.o | configure:3503: $? = 0 | configure:3517: result: yes | configure:3522: checking whether gcc accepts -g | configure:3552: gcc -c -g conftest.c >&5 | configure:3558: $? = 0 | configure:3565: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:3568: $? = 0 | configure:3575: test -s conftest.o | configure:3578: $? = 0 | configure:3708: result: yes | configure:3725: checking for gcc option to accept ISO C89 | configure:3799: gcc -c -g -O2 conftest.c >&5 | configure:3805: $? = 0 | configure:3812: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:3815: $? = 0 | configure:3822: test -s conftest.o | configure:3825: $? = 0 | configure:3845: result: none needed | configure:3874: checking for style of include used by make | configure:3902: result: GNU | configure:3930: checking dependency style of gcc | configure:4020: result: none | configure:4080: checking for ranlib | configure:4096: found /usr/bin/ranlib | configure:4107: result: ranlib | configure:4145: checking how to run the C preprocessor | configure:4185: gcc -E conftest.c | configure:4191: $? = 0 | configure:4229: gcc -E conftest.c | conftest.c:11:28: error: ac_nonexistent.h: No such file or directory | configure:4235: $? = 1 | configure: failed program was: | | /* confdefs.h. */ | | #define PACKAGE_NAME "GNU Radius" | | #define PACKAGE_TARNAME "radius" | | #define PACKAGE_VERSION "1.5" | | #define PACKAGE_STRING "GNU Radius 1.5" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE "radius" | | #define VERSION "1.5" | | #define _GNU_SOURCE 1 | | /* end confdefs.h. */ | | #include | configure:4275: result: gcc -E | configure:4304: gcc -E conftest.c | configure:4310: $? = 0 | configure:4348: gcc -E conftest.c | conftest.c:11:28: error: ac_nonexistent.h: No such file or directory | configure:4354: $? = 1 | configure: failed program was: | | /* confdefs.h. */ | | #define PACKAGE_NAME "GNU Radius" | | #define PACKAGE_TARNAME "radius" | | #define PACKAGE_VERSION "1.5" | | #define PACKAGE_STRING "GNU Radius 1.5" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE "radius" | | #define VERSION "1.5" | | #define _GNU_SOURCE 1 | | /* end confdefs.h. */ | | #include | configure:4399: checking for grep that handles long lines and -e | configure:4473: result: /bin/grep | configure:4478: checking for egrep | configure:4556: result: /bin/grep -E | configure:4562: checking for AIX | configure:4584: result: no | configure:4590: checking for ANSI C header files | configure:4620: gcc -c -g -O2 conftest.c >&5 | configure:4626: $? = 0 | configure:4633: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:4636: $? = 0 | configure:4643: test -s conftest.o | configure:4646: $? = 0 | configure:4742: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c >&5 | configure:4745: $? = 0 | configure:4751: ./conftest | configure:4754: $? = 0 | configure:4771: result: yes | configure:4795: checking for sys/types.h | configure:4816: gcc -c -g -O2 conftest.c >&5 | configure:4822: $? = 0 | configure:4829: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:4832: $? = 0 | configure:4839: test -s conftest.o | configure:4842: $? = 0 | configure:4855: result: yes | configure:4795: checking for sys/stat.h | configure:4816: gcc -c -g -O2 conftest.c >&5 | configure:4822: $? = 0 | configure:4829: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:4832: $? = 0 | configure:4839: test -s conftest.o | configure:4842: $? = 0 | configure:4855: result: yes | configure:4795: checking for stdlib.h | configure:4816: gcc -c -g -O2 conftest.c >&5 | configure:4822: $? = 0 | configure:4829: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:4832: $? = 0 | configure:4839: test -s conftest.o | configure:4842: $? = 0 | configure:4855: result: yes | configure:4795: checking for string.h | configure:4816: gcc -c -g -O2 conftest.c >&5 | configure:4822: $? = 0 | configure:4829: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:4832: $? = 0 | configure:4839: test -s conftest.o | configure:4842: $? = 0 | configure:4855: result: yes | configure:4795: checking for memory.h | configure:4816: gcc -c -g -O2 conftest.c >&5 | configure:4822: $? = 0 | configure:4829: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:4832: $? = 0 | configure:4839: test -s conftest.o | configure:4842: $? = 0 | configure:4855: result: yes | configure:4795: checking for strings.h | configure:4816: gcc -c -g -O2 conftest.c >&5 | configure:4822: $? = 0 | configure:4829: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:4832: $? = 0 | configure:4839: test -s conftest.o | configure:4842: $? = 0 | configure:4855: result: yes | configure:4795: checking for inttypes.h | configure:4816: gcc -c -g -O2 conftest.c >&5 | configure:4822: $? = 0 | configure:4829: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:4832: $? = 0 | configure:4839: test -s conftest.o | configure:4842: $? = 0 | configure:4855: result: yes | configure:4795: checking for stdint.h | configure:4816: gcc -c -g -O2 conftest.c >&5 | configure:4822: $? = 0 | configure:4829: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:4832: $? = 0 | configure:4839: test -s conftest.o | configure:4842: $? = 0 | configure:4855: result: yes | configure:4795: checking for unistd.h | configure:4816: gcc -c -g -O2 conftest.c >&5 | configure:4822: $? = 0 | configure:4829: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:4832: $? = 0 | configure:4839: test -s conftest.o | configure:4842: $? = 0 | configure:4855: result: yes | configure:4877: checking minix/config.h usability | configure:4894: gcc -c -g -O2 conftest.c >&5 | conftest.c:54:26: error: minix/config.h: No such file or directory | configure:4900: $? = 1 | configure: failed program was: | | /* confdefs.h. */ | | #define PACKAGE_NAME "GNU Radius" | | #define PACKAGE_TARNAME "radius" | | #define PACKAGE_VERSION "1.5" | | #define PACKAGE_STRING "GNU Radius 1.5" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE "radius" | | #define VERSION "1.5" | | #define _GNU_SOURCE 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | /* end confdefs.h. */ | | #include | | #if HAVE_SYS_TYPES_H | | # include | | #endif | | #if HAVE_SYS_STAT_H | | # include | | #endif | | #if STDC_HEADERS | | # include | | # include | | #else | | # if HAVE_STDLIB_H | | # include | | # endif | | #endif | | #if HAVE_STRING_H | | # if !STDC_HEADERS && HAVE_MEMORY_H | | # include | | # endif | | # include | | #endif | | #if HAVE_STRINGS_H | | # include | | #endif | | #if HAVE_INTTYPES_H | | # include | | #endif | | #if HAVE_STDINT_H | | # include | | #endif | | #if HAVE_UNISTD_H | | # include | | #endif | | #include | configure:4931: result: no | configure:4935: checking minix/config.h presence | configure:4950: gcc -E conftest.c | conftest.c:21:26: error: minix/config.h: No such file or directory | configure:4956: $? = 1 | configure: failed program was: | | /* confdefs.h. */ | | #define PACKAGE_NAME "GNU Radius" | | #define PACKAGE_TARNAME "radius" | | #define PACKAGE_VERSION "1.5" | | #define PACKAGE_STRING "GNU Radius 1.5" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE "radius" | | #define VERSION "1.5" | | #define _GNU_SOURCE 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | /* end confdefs.h. */ | | #include | configure:4977: result: no | configure:5010: checking for minix/config.h | configure:5017: result: no | configure:5056: checking whether it is safe to define __EXTENSIONS__ | configure:5084: gcc -c -g -O2 conftest.c >&5 | configure:5090: $? = 0 | configure:5097: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:5100: $? = 0 | configure:5107: test -s conftest.o | configure:5110: $? = 0 | configure:5122: result: yes | configure:5192: checking for gcc | configure:5219: result: gcc | configure:5457: checking for C compiler version | configure:5464: gcc --version >&5 | gcc (Ubuntu 4.4.3-4ubuntu5) 4.4.3 | Copyright (C) 2009 Free Software Foundation, Inc. | This is free software; see the source for copying conditions. There is NO | warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | | configure:5467: $? = 0 | configure:5474: gcc -v >&5 | Using built-in specs. | Target: i486-linux-gnu | Configured with: ../src/configure -v --with-pkgversion='Ubuntu 4.4.3-4ubuntu5' --with-bugurl=file:///usr/share/doc/gcc-4.4/README.Bugs --enable-languages=c,c++,fortran,objc,obj-c++ --prefix=/usr --enable-shared --enable-multiarch --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.4 --program-suffix=-4.4 --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-plugin --enable-objc-gc --enable-targets=all --disable-werror --with-arch-32=i486 --with-tune=generic --enable-checking=release --build=i486-linux-gnu --host=i486-linux-gnu --target=i486-linux-gnu | Thread model: posix | gcc version 4.4.3 (Ubuntu 4.4.3-4ubuntu5) | configure:5477: $? = 0 | configure:5484: gcc -V >&5 | gcc: '-V' option must have argument | configure:5487: $? = 1 | configure:5490: checking whether we are using the GNU C compiler | configure:5559: result: yes | configure:5564: checking whether gcc accepts -g | configure:5750: result: yes | configure:5767: checking for gcc option to accept ISO C89 | configure:5887: result: none needed | configure:5907: checking dependency style of gcc | configure:5997: result: none | configure:6021: checking for bison | configure:6051: result: no | configure:6021: checking for byacc | configure:6051: result: no | configure:6064: checking for flex | configure:6094: result: no | configure:6064: checking for lex | configure:6094: result: no | configure:6105: checking for yywrap in -lfl | configure:6140: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lfl >&5 | /usr/bin/ld: cannot find -lfl | collect2: ld returned 1 exit status | configure:6146: $? = 1 | configure: failed program was: | | /* confdefs.h. */ | | #define PACKAGE_NAME "GNU Radius" | | #define PACKAGE_TARNAME "radius" | | #define PACKAGE_VERSION "1.5" | | #define PACKAGE_STRING "GNU Radius 1.5" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE "radius" | | #define VERSION "1.5" | | #define _GNU_SOURCE 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | /* end confdefs.h. */ | | | | /* Override any GCC internal prototype to avoid an error. | | Use char because int might match the return type of a GCC | | builtin and then its argument prototype would still apply. */ | | #ifdef __cplusplus | | extern "C" | | #endif | | char yywrap (); | | int | | main () | | { | | return yywrap (); | | ; | | return 0; | | } | configure:6180: result: no | configure:6185: checking for yywrap in -ll | configure:6220: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -ll >&5 | /usr/bin/ld: cannot find -ll | collect2: ld returned 1 exit status | configure:6226: $? = 1 | configure: failed program was: | | /* confdefs.h. */ | | #define PACKAGE_NAME "GNU Radius" | | #define PACKAGE_TARNAME "radius" | | #define PACKAGE_VERSION "1.5" | | #define PACKAGE_STRING "GNU Radius 1.5" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE "radius" | | #define VERSION "1.5" | | #define _GNU_SOURCE 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | /* end confdefs.h. */ | | | | /* Override any GCC internal prototype to avoid an error. | | Use char because int might match the return type of a GCC | | builtin and then its argument prototype would still apply. */ | | #ifdef __cplusplus | | extern "C" | | #endif | | char yywrap (); | | int | | main () | | { | | return yywrap (); | | ; | | return 0; | | } | configure:6260: result: no | configure:6388: checking for gawk | configure:6415: result: mawk | configure:6429: checking for ps | configure:6448: found /bin/ps | configure:6461: result: /bin/ps | configure:6471: checking whether ln -s works | configure:6475: result: yes | configure:6554: checking for a sed that does not truncate output | configure:6608: result: /bin/sed | configure:6622: checking for ld used by gcc | configure:6689: result: /usr/bin/ld | configure:6698: checking if the linker (/usr/bin/ld) is GNU ld | configure:6713: result: yes | configure:6718: checking for /usr/bin/ld option to reload object files | configure:6725: result: -r | configure:6743: checking for BSD-compatible nm | configure:6785: result: /usr/bin/nm -B | configure:6789: checking how to recognise dependent libraries | configure:6961: result: pass_all | configure:7197: checking dlfcn.h usability | configure:7214: gcc -c -g -O2 conftest.c >&5 | configure:7220: $? = 0 | configure:7227: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:7230: $? = 0 | configure:7237: test -s conftest.o | configure:7240: $? = 0 | configure:7251: result: yes | configure:7255: checking dlfcn.h presence | configure:7270: gcc -E conftest.c | configure:7276: $? = 0 | configure:7297: result: yes | configure:7330: checking for dlfcn.h | configure:7338: result: yes | configure:7409: checking for g++ | configure:7425: found /usr/bin/g++ | configure:7436: result: g++ | configure:7467: checking for C++ compiler version | configure:7474: g++ --version >&5 | g++ (Ubuntu 4.4.3-4ubuntu5) 4.4.3 | Copyright (C) 2009 Free Software Foundation, Inc. | This is free software; see the source for copying conditions. There is NO | warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | | configure:7477: $? = 0 | configure:7484: g++ -v >&5 | Using built-in specs. | Target: i486-linux-gnu | Configured with: ../src/configure -v --with-pkgversion='Ubuntu 4.4.3-4ubuntu5' --with-bugurl=file:///usr/share/doc/gcc-4.4/README.Bugs --enable-languages=c,c++,fortran,objc,obj-c++ --prefix=/usr --enable-shared --enable-multiarch --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.4 --program-suffix=-4.4 --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug --enable-plugin --enable-objc-gc --enable-targets=all --disable-werror --with-arch-32=i486 --with-tune=generic --enable-checking=release --build=i486-linux-gnu --host=i486-linux-gnu --target=i486-linux-gnu | Thread model: posix | gcc version 4.4.3 (Ubuntu 4.4.3-4ubuntu5) | configure:7487: $? = 0 | configure:7494: g++ -V >&5 | g++: '-V' option must have argument | configure:7497: $? = 1 | configure:7500: checking whether we are using the GNU C++ compiler | configure:7529: g++ -c -g -O2 conftest.cpp >&5 | configure:7535: $? = 0 | configure:7542: test -z "$ac_cxx_werror_flag" || test ! -s conftest.err | configure:7545: $? = 0 | configure:7552: test -s conftest.o | configure:7555: $? = 0 | configure:7569: result: yes | configure:7574: checking whether g++ accepts -g | configure:7604: g++ -c -g conftest.cpp >&5 | configure:7610: $? = 0 | configure:7617: test -z "$ac_cxx_werror_flag" || test ! -s conftest.err | configure:7620: $? = 0 | configure:7627: test -s conftest.o | configure:7630: $? = 0 | configure:7760: result: yes | configure:7785: checking dependency style of g++ | configure:7875: result: none | configure:7902: checking how to run the C++ preprocessor | configure:7938: g++ -E conftest.cpp | configure:7944: $? = 0 | configure:7982: g++ -E conftest.cpp | conftest.cpp:25:28: error: ac_nonexistent.h: No such file or directory | configure:7988: $? = 1 | configure: failed program was: | | /* confdefs.h. */ | | #define PACKAGE_NAME "GNU Radius" | | #define PACKAGE_TARNAME "radius" | | #define PACKAGE_VERSION "1.5" | | #define PACKAGE_STRING "GNU Radius 1.5" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE "radius" | | #define VERSION "1.5" | | #define _GNU_SOURCE 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | /* end confdefs.h. */ | | #include | configure:8028: result: g++ -E | configure:8057: g++ -E conftest.cpp | configure:8063: $? = 0 | configure:8101: g++ -E conftest.cpp | conftest.cpp:25:28: error: ac_nonexistent.h: No such file or directory | configure:8107: $? = 1 | configure: failed program was: | | /* confdefs.h. */ | | #define PACKAGE_NAME "GNU Radius" | | #define PACKAGE_TARNAME "radius" | | #define PACKAGE_VERSION "1.5" | | #define PACKAGE_STRING "GNU Radius 1.5" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE "radius" | | #define VERSION "1.5" | | #define _GNU_SOURCE 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | /* end confdefs.h. */ | | #include | configure:8207: checking for g77 | configure:8237: result: no | configure:8207: checking for f77 | configure:8237: result: no | configure:8207: checking for xlf | configure:8237: result: no | configure:8207: checking for frt | configure:8237: result: no | configure:8207: checking for pgf77 | configure:8237: result: no | configure:8207: checking for cf77 | configure:8237: result: no | configure:8207: checking for fort77 | configure:8237: result: no | configure:8207: checking for fl32 | configure:8237: result: no | configure:8207: checking for af77 | configure:8237: result: no | configure:8207: checking for f90 | configure:8237: result: no | configure:8207: checking for xlf90 | configure:8237: result: no | configure:8207: checking for pgf90 | configure:8237: result: no | configure:8207: checking for pghpf | configure:8237: result: no | configure:8207: checking for epcf90 | configure:8237: result: no | configure:8207: checking for gfortran | configure:8237: result: no | configure:8207: checking for g95 | configure:8237: result: no | configure:8207: checking for f95 | configure:8237: result: no | configure:8207: checking for fort | configure:8237: result: no | configure:8207: checking for xlf95 | configure:8237: result: no | configure:8207: checking for ifort | configure:8237: result: no | configure:8207: checking for ifc | configure:8237: result: no | configure:8207: checking for efc | configure:8237: result: no | configure:8207: checking for pgf95 | configure:8237: result: no | configure:8207: checking for lf95 | configure:8237: result: no | configure:8207: checking for ftn | configure:8237: result: no | configure:8264: checking for Fortran 77 compiler version | configure:8271: --version >&5 | ./configure: line 8272: --version: command not found | configure:8274: $? = 127 | configure:8281: -v >&5 | ./configure: line 8282: -v: command not found | configure:8284: $? = 127 | configure:8291: -V >&5 | ./configure: line 8292: -V: command not found | configure:8294: $? = 127 | configure:8302: checking whether we are using the GNU Fortran 77 compiler | configure:8321: -c -g -O2 conftest.F >&5 | ./configure: line 8322: -c: command not found | configure:8327: $? = 127 | configure: failed program was: | | program main | | #ifndef __GNUC__ | | choke me | | #endif | | | | end | configure:8361: result: no | configure:8367: checking whether accepts -g | configure:8384: -c -g conftest.f >&5 | ./configure: line 8385: -c: command not found | configure:8390: $? = 127 | configure: failed program was: | | program main | | | | end | configure:8423: result: no | configure:8453: checking the maximum length of command line arguments | configure:8545: result: 32768 | configure:8556: checking command to parse /usr/bin/nm -B output from gcc object | configure:8652: gcc -c -g -O2 conftest.c >&5 | configure:8655: $? = 0 | configure:8659: /usr/bin/nm -B conftest.o \| sed -n -e 's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' \> conftest.nm | configure:8662: $? = 0 | configure:8714: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c conftstm.o >&5 | configure:8717: $? = 0 | configure:8755: result: ok | configure:8759: checking for objdir | configure:8774: result: .libs | configure:8866: checking for ar | configure:8882: found /usr/bin/ar | configure:8893: result: ar | configure:8962: checking for ranlib | configure:8989: result: ranlib | configure:9058: checking for strip | configure:9074: found /usr/bin/strip | configure:9085: result: strip | configure:9386: checking if gcc static flag works | configure:9414: result: yes | configure:9432: checking if gcc supports -fno-rtti -fno-exceptions | configure:9450: gcc -c -g -O2 -fno-rtti -fno-exceptions conftest.c >&5 | cc1: warning: command line option "-fno-rtti" is valid for C++/ObjC++ but not for C | configure:9454: $? = 0 | configure:9467: result: no | configure:9482: checking for gcc option to produce PIC | configure:9686: result: -fPIC | configure:9694: checking if gcc PIC flag -fPIC works | configure:9712: gcc -c -g -O2 -fPIC -DPIC conftest.c >&5 | configure:9716: $? = 0 | configure:9729: result: yes | configure:9753: checking if gcc supports -c -o file.o | configure:9774: gcc -c -g -O2 -o out/conftest2.o conftest.c >&5 | configure:9778: $? = 0 | configure:9800: result: yes | configure:9826: checking whether the gcc linker (/usr/bin/ld) supports shared libraries | configure:10750: result: yes | configure:10776: checking whether -lc should be explicitly linked in | configure:10781: gcc -c -g -O2 conftest.c >&5 | configure:10784: $? = 0 | configure:10798: gcc -shared conftest.o -v -Wl,-soname -Wl,conftest -o conftest 2\>\&1 \| grep -lc \>/dev/null 2\>\&1 | configure:10801: $? = 0 | configure:10813: result: no | configure:10821: checking dynamic linker characteristics | configure:11375: result: GNU/Linux ld.so | configure:11379: checking how to hardcode library paths into programs | configure:11404: result: immediate | configure:11418: checking whether stripping libraries is possible | configure:11423: result: yes | configure:12332: checking if libtool supports shared libraries | configure:12334: result: yes | configure:12337: checking whether to build shared libraries | configure:12358: result: yes | configure:12361: checking whether to build static libraries | configure:12365: result: yes | configure:12457: creating libtool | configure:13035: checking for ld used by g++ | configure:13102: result: /usr/bin/ld | configure:13111: checking if the linker (/usr/bin/ld) is GNU ld | configure:13126: result: yes | configure:13177: checking whether the g++ linker (/usr/bin/ld) supports shared libraries | configure:14085: result: yes | configure:14103: g++ -c -g -O2 conftest.cpp >&5 | configure:14106: $? = 0 | configure:14216: checking for g++ option to produce PIC | configure:14484: result: -fPIC | configure:14492: checking if g++ PIC flag -fPIC works | configure:14510: g++ -c -g -O2 -fPIC -DPIC conftest.cpp >&5 | configure:14514: $? = 0 | configure:14527: result: yes | configure:14551: checking if g++ supports -c -o file.o | configure:14572: g++ -c -g -O2 -o out/conftest2.o conftest.cpp >&5 | configure:14576: $? = 0 | configure:14598: result: yes | configure:14624: checking whether the g++ linker (/usr/bin/ld) supports shared libraries | configure:14649: result: yes | configure:14720: checking dynamic linker characteristics | configure:15274: result: GNU/Linux ld.so | configure:15278: checking how to hardcode library paths into programs | configure:15303: result: immediate | configure:15317: checking whether stripping libraries is possible | configure:15322: result: yes | configure:23059: checking whether to enable maintainer-specific portions of Makefiles | configure:23068: result: no | configure:23157: checking for ld --version-script | configure:23183: gcc -g -O2 -Wl,-Bsymbolic-functions -shared | -o conftest.so conftest.c | -nostartfiles -nostdlib | -Wl,--version-script,conftest.map | configure:23186: $? = 0 | configure:23195: result: yes | configure:23229: checking for guile-config | configure:23260: result: no | configure:23369: checking whether to build guile support | configure:23390: result: no | configure:23624: checking for emacs | configure:23654: result: no | configure:23624: checking for xemacs | configure:23654: result: no | configure:23675: checking where .elc files should go | configure:23704: result: ${datadir}/emacs/site-lisp | configure:23714: checking whether compiler defines __FUNCTION__ | configure:23734: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c >&5 | configure:23737: $? = 0 | configure:23743: ./conftest | configure:23746: $? = 0 | configure:23748: result: yes | configure:23772: checking for additional includes | configure:23783: result: | configure:23786: checking for additional libraries | configure:23797: result: | configure:23802: checking for socket in -lsocket | configure:23837: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lsocket >&5 | /usr/bin/ld: cannot find -lsocket | collect2: ld returned 1 exit status | configure:23843: $? = 1 | configure: failed program was: | | /* confdefs.h. */ | | #define PACKAGE_NAME "GNU Radius" | | #define PACKAGE_TARNAME "radius" | | #define PACKAGE_VERSION "1.5" | | #define PACKAGE_STRING "GNU Radius 1.5" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE "radius" | | #define VERSION "1.5" | | #define _GNU_SOURCE 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | /* end confdefs.h. */ | | | | /* Override any GCC internal prototype to avoid an error. | | Use char because int might match the return type of a GCC | | builtin and then its argument prototype would still apply. */ | | #ifdef __cplusplus | | extern "C" | | #endif | | char socket (); | | int | | main () | | { | | return socket (); | | ; | | return 0; | | } | configure:23877: result: no | configure:23889: checking for gethostbyaddr in -lnsl | configure:23924: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lnsl >&5 | configure:23930: $? = 0 | configure:23937: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:23940: $? = 0 | configure:23947: test -s conftest | configure:23950: $? = 0 | configure:23964: result: yes | configure:23976: checking for crypt in -lcrypt | configure:24011: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lcrypt -lnsl >&5 | configure:24017: $? = 0 | configure:24024: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:24027: $? = 0 | configure:24034: test -s conftest | configure:24037: $? = 0 | configure:24051: result: yes | configure:24065: checking for lt_dlinit in -lltdl | configure:24100: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lltdl -lcrypt -lnsl >&5 | /usr/bin/ld: cannot find -lltdl | collect2: ld returned 1 exit status | configure:24106: $? = 1 | configure: failed program was: | | /* confdefs.h. */ | | #define PACKAGE_NAME "GNU Radius" | | #define PACKAGE_TARNAME "radius" | | #define PACKAGE_VERSION "1.5" | | #define PACKAGE_STRING "GNU Radius 1.5" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE "radius" | | #define VERSION "1.5" | | #define _GNU_SOURCE 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_LIBNSL 1 | | #define HAVE_LIBCRYPT 1 | | /* end confdefs.h. */ | | | | /* Override any GCC internal prototype to avoid an error. | | Use char because int might match the return type of a GCC | | builtin and then its argument prototype would still apply. */ | | #ifdef __cplusplus | | extern "C" | | #endif | | char lt_dlinit (); | | int | | main () | | { | | return lt_dlinit (); | | ; | | return 0; | | } | configure:24140: result: no | configure:24168: checking for ANSI C header files | configure:24349: result: yes | configure:24359: checking for sys/wait.h that is POSIX.1 compatible | configure:24395: gcc -c -g -O2 conftest.c >&5 | configure:24401: $? = 0 | configure:24408: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:24411: $? = 0 | configure:24418: test -s conftest.o | configure:24421: $? = 0 | configure:24433: result: yes | configure:24485: checking fcntl.h usability | configure:24502: gcc -c -g -O2 conftest.c >&5 | configure:24508: $? = 0 | configure:24515: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:24518: $? = 0 | configure:24525: test -s conftest.o | configure:24528: $? = 0 | configure:24539: result: yes | configure:24543: checking fcntl.h presence | configure:24558: gcc -E conftest.c | configure:24564: $? = 0 | configure:24585: result: yes | configure:24618: checking for fcntl.h | configure:24626: result: yes | configure:24485: checking malloc.h usability | configure:24502: gcc -c -g -O2 conftest.c >&5 | configure:24508: $? = 0 | configure:24515: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:24518: $? = 0 | configure:24525: test -s conftest.o | configure:24528: $? = 0 | configure:24539: result: yes | configure:24543: checking malloc.h presence | configure:24558: gcc -E conftest.c | configure:24564: $? = 0 | configure:24585: result: yes | configure:24618: checking for malloc.h | configure:24626: result: yes | configure:24475: checking for strings.h | configure:24481: result: yes | configure:24485: checking sys/file.h usability | configure:24502: gcc -c -g -O2 conftest.c >&5 | configure:24508: $? = 0 | configure:24515: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:24518: $? = 0 | configure:24525: test -s conftest.o | configure:24528: $? = 0 | configure:24539: result: yes | configure:24543: checking sys/file.h presence | configure:24558: gcc -E conftest.c | configure:24564: $? = 0 | configure:24585: result: yes | configure:24618: checking for sys/file.h | configure:24626: result: yes | configure:24485: checking sys/time.h usability | configure:24502: gcc -c -g -O2 conftest.c >&5 | configure:24508: $? = 0 | configure:24515: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:24518: $? = 0 | configure:24525: test -s conftest.o | configure:24528: $? = 0 | configure:24539: result: yes | configure:24543: checking sys/time.h presence | configure:24558: gcc -E conftest.c | configure:24564: $? = 0 | configure:24585: result: yes | configure:24618: checking for sys/time.h | configure:24626: result: yes | configure:24475: checking for sys/types.h | configure:24481: result: yes | configure:24475: checking for unistd.h | configure:24481: result: yes | configure:24485: checking ctype.h usability | configure:24502: gcc -c -g -O2 conftest.c >&5 | configure:24508: $? = 0 | configure:24515: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:24518: $? = 0 | configure:24525: test -s conftest.o | configure:24528: $? = 0 | configure:24539: result: yes | configure:24543: checking ctype.h presence | configure:24558: gcc -E conftest.c | configure:24564: $? = 0 | configure:24585: result: yes | configure:24618: checking for ctype.h | configure:24626: result: yes | configure:24485: checking sys/socket.h usability | configure:24502: gcc -c -g -O2 conftest.c >&5 | configure:24508: $? = 0 | configure:24515: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:24518: $? = 0 | configure:24525: test -s conftest.o | configure:24528: $? = 0 | configure:24539: result: yes | configure:24543: checking sys/socket.h presence | configure:24558: gcc -E conftest.c | configure:24564: $? = 0 | configure:24585: result: yes | configure:24618: checking for sys/socket.h | configure:24626: result: yes | configure:24485: checking socket.h usability | configure:24502: gcc -c -g -O2 conftest.c >&5 | conftest.c:71:20: error: socket.h: No such file or directory | configure:24508: $? = 1 | configure: failed program was: | | /* confdefs.h. */ | | #define PACKAGE_NAME "GNU Radius" | | #define PACKAGE_TARNAME "radius" | | #define PACKAGE_VERSION "1.5" | | #define PACKAGE_STRING "GNU Radius 1.5" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE "radius" | | #define VERSION "1.5" | | #define _GNU_SOURCE 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_LIBNSL 1 | | #define HAVE_LIBCRYPT 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_MALLOC_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_FILE_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_CTYPE_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | /* end confdefs.h. */ | | #include | | #if HAVE_SYS_TYPES_H | | # include | | #endif | | #if HAVE_SYS_STAT_H | | # include | | #endif | | #if STDC_HEADERS | | # include | | # include | | #else | | # if HAVE_STDLIB_H | | # include | | # endif | | #endif | | #if HAVE_STRING_H | | # if !STDC_HEADERS && HAVE_MEMORY_H | | # include | | # endif | | # include | | #endif | | #if HAVE_STRINGS_H | | # include | | #endif | | #if HAVE_INTTYPES_H | | # include | | #endif | | #if HAVE_STDINT_H | | # include | | #endif | | #if HAVE_UNISTD_H | | # include | | #endif | | #include | configure:24539: result: no | configure:24543: checking socket.h presence | configure:24558: gcc -E conftest.c | conftest.c:38:20: error: socket.h: No such file or directory | configure:24564: $? = 1 | configure: failed program was: | | /* confdefs.h. */ | | #define PACKAGE_NAME "GNU Radius" | | #define PACKAGE_TARNAME "radius" | | #define PACKAGE_VERSION "1.5" | | #define PACKAGE_STRING "GNU Radius 1.5" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE "radius" | | #define VERSION "1.5" | | #define _GNU_SOURCE 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_LIBNSL 1 | | #define HAVE_LIBCRYPT 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_MALLOC_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_FILE_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_CTYPE_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | /* end confdefs.h. */ | | #include | configure:24585: result: no | configure:24618: checking for socket.h | configure:24626: result: no | configure:24485: checking netinet/in.h usability | configure:24502: gcc -c -g -O2 conftest.c >&5 | configure:24508: $? = 0 | configure:24515: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:24518: $? = 0 | configure:24525: test -s conftest.o | configure:24528: $? = 0 | configure:24539: result: yes | configure:24543: checking netinet/in.h presence | configure:24558: gcc -E conftest.c | configure:24564: $? = 0 | configure:24585: result: yes | configure:24618: checking for netinet/in.h | configure:24626: result: yes | configure:24485: checking arpa/inet.h usability | configure:24502: gcc -c -g -O2 conftest.c >&5 | configure:24508: $? = 0 | configure:24515: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:24518: $? = 0 | configure:24525: test -s conftest.o | configure:24528: $? = 0 | configure:24539: result: yes | configure:24543: checking arpa/inet.h presence | configure:24558: gcc -E conftest.c | configure:24564: $? = 0 | configure:24585: result: yes | configure:24618: checking for arpa/inet.h | configure:24626: result: yes | configure:24485: checking netdb.h usability | configure:24502: gcc -c -g -O2 conftest.c >&5 | configure:24508: $? = 0 | configure:24515: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:24518: $? = 0 | configure:24525: test -s conftest.o | configure:24528: $? = 0 | configure:24539: result: yes | configure:24543: checking netdb.h presence | configure:24558: gcc -E conftest.c | configure:24564: $? = 0 | configure:24585: result: yes | configure:24618: checking for netdb.h | configure:24626: result: yes | configure:24485: checking stdarg.h usability | configure:24502: gcc -c -g -O2 conftest.c >&5 | configure:24508: $? = 0 | configure:24515: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:24518: $? = 0 | configure:24525: test -s conftest.o | configure:24528: $? = 0 | configure:24539: result: yes | configure:24543: checking stdarg.h presence | configure:24558: gcc -E conftest.c | configure:24564: $? = 0 | configure:24585: result: yes | configure:24618: checking for stdarg.h | configure:24626: result: yes | configure:24485: checking varargs.h usability | configure:24502: gcc -c -g -O2 conftest.c >&5 | In file included from conftest.c:75: | /usr/lib/gcc/i486-linux-gnu/4.4.3/include/varargs.h:4:2: error: #error "GCC no longer implements ." | /usr/lib/gcc/i486-linux-gnu/4.4.3/include/varargs.h:5:2: error: #error "Revise your code to use ." | configure:24508: $? = 1 | configure: failed program was: | | /* confdefs.h. */ | | #define PACKAGE_NAME "GNU Radius" | | #define PACKAGE_TARNAME "radius" | | #define PACKAGE_VERSION "1.5" | | #define PACKAGE_STRING "GNU Radius 1.5" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE "radius" | | #define VERSION "1.5" | | #define _GNU_SOURCE 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_LIBNSL 1 | | #define HAVE_LIBCRYPT 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_MALLOC_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_FILE_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_CTYPE_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_NETINET_IN_H 1 | | #define HAVE_ARPA_INET_H 1 | | #define HAVE_NETDB_H 1 | | #define HAVE_STDARG_H 1 | | /* end confdefs.h. */ | | #include | | #if HAVE_SYS_TYPES_H | | # include | | #endif | | #if HAVE_SYS_STAT_H | | # include | | #endif | | #if STDC_HEADERS | | # include | | # include | | #else | | # if HAVE_STDLIB_H | | # include | | # endif | | #endif | | #if HAVE_STRING_H | | # if !STDC_HEADERS && HAVE_MEMORY_H | | # include | | # endif | | # include | | #endif | | #if HAVE_STRINGS_H | | # include | | #endif | | #if HAVE_INTTYPES_H | | # include | | #endif | | #if HAVE_STDINT_H | | # include | | #endif | | #if HAVE_UNISTD_H | | # include | | #endif | | #include | configure:24539: result: no | configure:24543: checking varargs.h presence | configure:24558: gcc -E conftest.c | In file included from conftest.c:42: | /usr/lib/gcc/i486-linux-gnu/4.4.3/include/varargs.h:4:2: error: #error "GCC no longer implements ." | /usr/lib/gcc/i486-linux-gnu/4.4.3/include/varargs.h:5:2: error: #error "Revise your code to use ." | configure:24564: $? = 1 | configure: failed program was: | | /* confdefs.h. */ | | #define PACKAGE_NAME "GNU Radius" | | #define PACKAGE_TARNAME "radius" | | #define PACKAGE_VERSION "1.5" | | #define PACKAGE_STRING "GNU Radius 1.5" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE "radius" | | #define VERSION "1.5" | | #define _GNU_SOURCE 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_LIBNSL 1 | | #define HAVE_LIBCRYPT 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_MALLOC_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_FILE_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_CTYPE_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_NETINET_IN_H 1 | | #define HAVE_ARPA_INET_H 1 | | #define HAVE_NETDB_H 1 | | #define HAVE_STDARG_H 1 | | /* end confdefs.h. */ | | #include | configure:24585: result: no | configure:24618: checking for varargs.h | configure:24626: result: no | configure:24485: checking termcap.h usability | configure:24502: gcc -c -g -O2 conftest.c >&5 | conftest.c:75:21: error: termcap.h: No such file or directory | configure:24508: $? = 1 | configure: failed program was: | | /* confdefs.h. */ | | #define PACKAGE_NAME "GNU Radius" | | #define PACKAGE_TARNAME "radius" | | #define PACKAGE_VERSION "1.5" | | #define PACKAGE_STRING "GNU Radius 1.5" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE "radius" | | #define VERSION "1.5" | | #define _GNU_SOURCE 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_LIBNSL 1 | | #define HAVE_LIBCRYPT 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_MALLOC_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_FILE_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_CTYPE_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_NETINET_IN_H 1 | | #define HAVE_ARPA_INET_H 1 | | #define HAVE_NETDB_H 1 | | #define HAVE_STDARG_H 1 | | /* end confdefs.h. */ | | #include | | #if HAVE_SYS_TYPES_H | | # include | | #endif | | #if HAVE_SYS_STAT_H | | # include | | #endif | | #if STDC_HEADERS | | # include | | # include | | #else | | # if HAVE_STDLIB_H | | # include | | # endif | | #endif | | #if HAVE_STRING_H | | # if !STDC_HEADERS && HAVE_MEMORY_H | | # include | | # endif | | # include | | #endif | | #if HAVE_STRINGS_H | | # include | | #endif | | #if HAVE_INTTYPES_H | | # include | | #endif | | #if HAVE_STDINT_H | | # include | | #endif | | #if HAVE_UNISTD_H | | # include | | #endif | | #include | configure:24539: result: no | configure:24543: checking termcap.h presence | configure:24558: gcc -E conftest.c | conftest.c:42:21: error: termcap.h: No such file or directory | configure:24564: $? = 1 | configure: failed program was: | | /* confdefs.h. */ | | #define PACKAGE_NAME "GNU Radius" | | #define PACKAGE_TARNAME "radius" | | #define PACKAGE_VERSION "1.5" | | #define PACKAGE_STRING "GNU Radius 1.5" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE "radius" | | #define VERSION "1.5" | | #define _GNU_SOURCE 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_LIBNSL 1 | | #define HAVE_LIBCRYPT 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_MALLOC_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_FILE_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_CTYPE_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_NETINET_IN_H 1 | | #define HAVE_ARPA_INET_H 1 | | #define HAVE_NETDB_H 1 | | #define HAVE_STDARG_H 1 | | /* end confdefs.h. */ | | #include | configure:24585: result: no | configure:24618: checking for termcap.h | configure:24626: result: no | configure:24485: checking termios.h usability | configure:24502: gcc -c -g -O2 conftest.c >&5 | configure:24508: $? = 0 | configure:24515: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:24518: $? = 0 | configure:24525: test -s conftest.o | configure:24528: $? = 0 | configure:24539: result: yes | configure:24543: checking termios.h presence | configure:24558: gcc -E conftest.c | configure:24564: $? = 0 | configure:24585: result: yes | configure:24618: checking for termios.h | configure:24626: result: yes | configure:24485: checking termio.h usability | configure:24502: gcc -c -g -O2 conftest.c >&5 | configure:24508: $? = 0 | configure:24515: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:24518: $? = 0 | configure:24525: test -s conftest.o | configure:24528: $? = 0 | configure:24539: result: yes | configure:24543: checking termio.h presence | configure:24558: gcc -E conftest.c | configure:24564: $? = 0 | configure:24585: result: yes | configure:24618: checking for termio.h | configure:24626: result: yes | configure:24485: checking sgtty.h usability | configure:24502: gcc -c -g -O2 conftest.c >&5 | configure:24508: $? = 0 | configure:24515: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:24518: $? = 0 | configure:24525: test -s conftest.o | configure:24528: $? = 0 | configure:24539: result: yes | configure:24543: checking sgtty.h presence | configure:24558: gcc -E conftest.c | configure:24564: $? = 0 | configure:24585: result: yes | configure:24618: checking for sgtty.h | configure:24626: result: yes | configure:24485: checking crypt.h usability | configure:24502: gcc -c -g -O2 conftest.c >&5 | configure:24508: $? = 0 | configure:24515: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:24518: $? = 0 | configure:24525: test -s conftest.o | configure:24528: $? = 0 | configure:24539: result: yes | configure:24543: checking crypt.h presence | configure:24558: gcc -E conftest.c | configure:24564: $? = 0 | configure:24585: result: yes | configure:24618: checking for crypt.h | configure:24626: result: yes | configure:24485: checking sys/uio.h usability | configure:24502: gcc -c -g -O2 conftest.c >&5 | configure:24508: $? = 0 | configure:24515: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:24518: $? = 0 | configure:24525: test -s conftest.o | configure:24528: $? = 0 | configure:24539: result: yes | configure:24543: checking sys/uio.h presence | configure:24558: gcc -E conftest.c | configure:24564: $? = 0 | configure:24585: result: yes | configure:24618: checking for sys/uio.h | configure:24626: result: yes | configure:24485: checking sys/select.h usability | configure:24502: gcc -c -g -O2 conftest.c >&5 | configure:24508: $? = 0 | configure:24515: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:24518: $? = 0 | configure:24525: test -s conftest.o | configure:24528: $? = 0 | configure:24539: result: yes | configure:24543: checking sys/select.h presence | configure:24558: gcc -E conftest.c | configure:24564: $? = 0 | configure:24585: result: yes | configure:24618: checking for sys/select.h | configure:24626: result: yes | configure:24485: checking sys/resources.h usability | configure:24502: gcc -c -g -O2 conftest.c >&5 | conftest.c:81:27: error: sys/resources.h: No such file or directory | configure:24508: $? = 1 | configure: failed program was: | | /* confdefs.h. */ | | #define PACKAGE_NAME "GNU Radius" | | #define PACKAGE_TARNAME "radius" | | #define PACKAGE_VERSION "1.5" | | #define PACKAGE_STRING "GNU Radius 1.5" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE "radius" | | #define VERSION "1.5" | | #define _GNU_SOURCE 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_LIBNSL 1 | | #define HAVE_LIBCRYPT 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_MALLOC_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_FILE_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_CTYPE_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_NETINET_IN_H 1 | | #define HAVE_ARPA_INET_H 1 | | #define HAVE_NETDB_H 1 | | #define HAVE_STDARG_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_TERMIO_H 1 | | #define HAVE_SGTTY_H 1 | | #define HAVE_CRYPT_H 1 | | #define HAVE_SYS_UIO_H 1 | | #define HAVE_SYS_SELECT_H 1 | | /* end confdefs.h. */ | | #include | | #if HAVE_SYS_TYPES_H | | # include | | #endif | | #if HAVE_SYS_STAT_H | | # include | | #endif | | #if STDC_HEADERS | | # include | | # include | | #else | | # if HAVE_STDLIB_H | | # include | | # endif | | #endif | | #if HAVE_STRING_H | | # if !STDC_HEADERS && HAVE_MEMORY_H | | # include | | # endif | | # include | | #endif | | #if HAVE_STRINGS_H | | # include | | #endif | | #if HAVE_INTTYPES_H | | # include | | #endif | | #if HAVE_STDINT_H | | # include | | #endif | | #if HAVE_UNISTD_H | | # include | | #endif | | #include | configure:24539: result: no | configure:24543: checking sys/resources.h presence | configure:24558: gcc -E conftest.c | conftest.c:48:27: error: sys/resources.h: No such file or directory | configure:24564: $? = 1 | configure: failed program was: | | /* confdefs.h. */ | | #define PACKAGE_NAME "GNU Radius" | | #define PACKAGE_TARNAME "radius" | | #define PACKAGE_VERSION "1.5" | | #define PACKAGE_STRING "GNU Radius 1.5" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE "radius" | | #define VERSION "1.5" | | #define _GNU_SOURCE 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_LIBNSL 1 | | #define HAVE_LIBCRYPT 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_MALLOC_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_FILE_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_CTYPE_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_NETINET_IN_H 1 | | #define HAVE_ARPA_INET_H 1 | | #define HAVE_NETDB_H 1 | | #define HAVE_STDARG_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_TERMIO_H 1 | | #define HAVE_SGTTY_H 1 | | #define HAVE_CRYPT_H 1 | | #define HAVE_SYS_UIO_H 1 | | #define HAVE_SYS_SELECT_H 1 | | /* end confdefs.h. */ | | #include | configure:24585: result: no | configure:24618: checking for sys/resources.h | configure:24626: result: no | configure:24485: checking libintl.h usability | configure:24502: gcc -c -g -O2 conftest.c >&5 | configure:24508: $? = 0 | configure:24515: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:24518: $? = 0 | configure:24525: test -s conftest.o | configure:24528: $? = 0 | configure:24539: result: yes | configure:24543: checking libintl.h presence | configure:24558: gcc -E conftest.c | configure:24564: $? = 0 | configure:24585: result: yes | configure:24618: checking for libintl.h | configure:24626: result: yes | configure:24640: checking for pid_t | configure:24670: gcc -c -g -O2 conftest.c >&5 | configure:24676: $? = 0 | configure:24683: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:24686: $? = 0 | configure:24693: test -s conftest.o | configure:24696: $? = 0 | configure:24708: result: yes | configure:24720: checking for size_t | configure:24750: gcc -c -g -O2 conftest.c >&5 | configure:24756: $? = 0 | configure:24763: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:24766: $? = 0 | configure:24773: test -s conftest.o | configure:24776: $? = 0 | configure:24788: result: yes | configure:24800: checking for off_t | configure:24830: gcc -c -g -O2 conftest.c >&5 | configure:24836: $? = 0 | configure:24843: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:24846: $? = 0 | configure:24853: test -s conftest.o | configure:24856: $? = 0 | configure:24868: result: yes | configure:24880: checking return type of signal handlers | configure:24908: gcc -c -g -O2 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:55: error: void value not ignored as it ought to be | configure:24914: $? = 1 | configure: failed program was: | | /* confdefs.h. */ | | #define PACKAGE_NAME "GNU Radius" | | #define PACKAGE_TARNAME "radius" | | #define PACKAGE_VERSION "1.5" | | #define PACKAGE_STRING "GNU Radius 1.5" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE "radius" | | #define VERSION "1.5" | | #define _GNU_SOURCE 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_LIBNSL 1 | | #define HAVE_LIBCRYPT 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_MALLOC_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_FILE_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_CTYPE_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_NETINET_IN_H 1 | | #define HAVE_ARPA_INET_H 1 | | #define HAVE_NETDB_H 1 | | #define HAVE_STDARG_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_TERMIO_H 1 | | #define HAVE_SGTTY_H 1 | | #define HAVE_CRYPT_H 1 | | #define HAVE_SYS_UIO_H 1 | | #define HAVE_SYS_SELECT_H 1 | | #define HAVE_LIBINTL_H 1 | | /* end confdefs.h. */ | | #include | | #include | | | | int | | main () | | { | | return *(signal (0, 0)) (0) == 1; | | ; | | return 0; | | } | configure:24946: result: void | configure:24954: checking for uint32_t | configure:24984: gcc -c -g -O2 conftest.c >&5 | configure:24990: $? = 0 | configure:24997: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:25000: $? = 0 | configure:25007: test -s conftest.o | configure:25010: $? = 0 | configure:25022: result: yes | configure:25025: checking size of uint32_t | configure:25413: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lcrypt -lnsl >&5 | configure:25416: $? = 0 | configure:25422: ./conftest | configure:25425: $? = 0 | configure:25447: result: 4 | configure:25454: checking for unsigned long | configure:25484: gcc -c -g -O2 conftest.c >&5 | configure:25490: $? = 0 | configure:25497: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:25500: $? = 0 | configure:25507: test -s conftest.o | configure:25510: $? = 0 | configure:25522: result: yes | configure:25525: checking size of unsigned long | configure:25913: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lcrypt -lnsl >&5 | configure:25916: $? = 0 | configure:25922: ./conftest | configure:25925: $? = 0 | configure:25947: result: 4 | configure:25954: checking for unsigned int | configure:25984: gcc -c -g -O2 conftest.c >&5 | configure:25990: $? = 0 | configure:25997: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:26000: $? = 0 | configure:26007: test -s conftest.o | configure:26010: $? = 0 | configure:26022: result: yes | configure:26025: checking size of unsigned int | configure:26413: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lcrypt -lnsl >&5 | configure:26416: $? = 0 | configure:26422: ./conftest | configure:26425: $? = 0 | configure:26447: result: 4 | configure:26455: checking for socklen_t | configure:26496: gcc -c -g -O2 conftest.c >&5 | configure:26502: $? = 0 | configure:26509: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:26512: $? = 0 | configure:26519: test -s conftest.o | configure:26522: $? = 0 | configure:26534: result: yes | configure:26547: checking for struct passwd.pw_expire | configure:26576: gcc -c -g -O2 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:59: error: 'struct passwd' has no member named 'pw_expire' | configure:26582: $? = 1 | configure: failed program was: | | /* confdefs.h. */ | | #define PACKAGE_NAME "GNU Radius" | | #define PACKAGE_TARNAME "radius" | | #define PACKAGE_VERSION "1.5" | | #define PACKAGE_STRING "GNU Radius 1.5" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE "radius" | | #define VERSION "1.5" | | #define _GNU_SOURCE 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_LIBNSL 1 | | #define HAVE_LIBCRYPT 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_MALLOC_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_FILE_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_CTYPE_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_NETINET_IN_H 1 | | #define HAVE_ARPA_INET_H 1 | | #define HAVE_NETDB_H 1 | | #define HAVE_STDARG_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_TERMIO_H 1 | | #define HAVE_SGTTY_H 1 | | #define HAVE_CRYPT_H 1 | | #define HAVE_SYS_UIO_H 1 | | #define HAVE_SYS_SELECT_H 1 | | #define HAVE_LIBINTL_H 1 | | #define RETSIGTYPE void | | #define SIZEOF_UINT32_T 4 | | #define SIZEOF_UNSIGNED_LONG 4 | | #define SIZEOF_UNSIGNED_INT 4 | | /* end confdefs.h. */ | | #include | | | | int | | main () | | { | | static struct passwd ac_aggr; | | if (ac_aggr.pw_expire) | | return 0; | | ; | | return 0; | | } | configure:26633: gcc -c -g -O2 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:59: error: 'struct passwd' has no member named 'pw_expire' | configure:26639: $? = 1 | configure: failed program was: | | /* confdefs.h. */ | | #define PACKAGE_NAME "GNU Radius" | | #define PACKAGE_TARNAME "radius" | | #define PACKAGE_VERSION "1.5" | | #define PACKAGE_STRING "GNU Radius 1.5" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE "radius" | | #define VERSION "1.5" | | #define _GNU_SOURCE 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_LIBNSL 1 | | #define HAVE_LIBCRYPT 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_MALLOC_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_FILE_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_CTYPE_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_NETINET_IN_H 1 | | #define HAVE_ARPA_INET_H 1 | | #define HAVE_NETDB_H 1 | | #define HAVE_STDARG_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_TERMIO_H 1 | | #define HAVE_SGTTY_H 1 | | #define HAVE_CRYPT_H 1 | | #define HAVE_SYS_UIO_H 1 | | #define HAVE_SYS_SELECT_H 1 | | #define HAVE_LIBINTL_H 1 | | #define RETSIGTYPE void | | #define SIZEOF_UINT32_T 4 | | #define SIZEOF_UNSIGNED_LONG 4 | | #define SIZEOF_UNSIGNED_INT 4 | | /* end confdefs.h. */ | | #include | | | | int | | main () | | { | | static struct passwd ac_aggr; | | if (sizeof ac_aggr.pw_expire) | | return 0; | | ; | | return 0; | | } | configure:26674: result: no | configure:26684: checking for struct passwd.pw_change | configure:26713: gcc -c -g -O2 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:59: error: 'struct passwd' has no member named 'pw_change' | configure:26719: $? = 1 | configure: failed program was: | | /* confdefs.h. */ | | #define PACKAGE_NAME "GNU Radius" | | #define PACKAGE_TARNAME "radius" | | #define PACKAGE_VERSION "1.5" | | #define PACKAGE_STRING "GNU Radius 1.5" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE "radius" | | #define VERSION "1.5" | | #define _GNU_SOURCE 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_LIBNSL 1 | | #define HAVE_LIBCRYPT 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_MALLOC_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_FILE_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_CTYPE_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_NETINET_IN_H 1 | | #define HAVE_ARPA_INET_H 1 | | #define HAVE_NETDB_H 1 | | #define HAVE_STDARG_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_TERMIO_H 1 | | #define HAVE_SGTTY_H 1 | | #define HAVE_CRYPT_H 1 | | #define HAVE_SYS_UIO_H 1 | | #define HAVE_SYS_SELECT_H 1 | | #define HAVE_LIBINTL_H 1 | | #define RETSIGTYPE void | | #define SIZEOF_UINT32_T 4 | | #define SIZEOF_UNSIGNED_LONG 4 | | #define SIZEOF_UNSIGNED_INT 4 | | /* end confdefs.h. */ | | #include | | | | int | | main () | | { | | static struct passwd ac_aggr; | | if (ac_aggr.pw_change) | | return 0; | | ; | | return 0; | | } | configure:26770: gcc -c -g -O2 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:59: error: 'struct passwd' has no member named 'pw_change' | configure:26776: $? = 1 | configure: failed program was: | | /* confdefs.h. */ | | #define PACKAGE_NAME "GNU Radius" | | #define PACKAGE_TARNAME "radius" | | #define PACKAGE_VERSION "1.5" | | #define PACKAGE_STRING "GNU Radius 1.5" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE "radius" | | #define VERSION "1.5" | | #define _GNU_SOURCE 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_LIBNSL 1 | | #define HAVE_LIBCRYPT 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_MALLOC_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_FILE_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_CTYPE_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_NETINET_IN_H 1 | | #define HAVE_ARPA_INET_H 1 | | #define HAVE_NETDB_H 1 | | #define HAVE_STDARG_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_TERMIO_H 1 | | #define HAVE_SGTTY_H 1 | | #define HAVE_CRYPT_H 1 | | #define HAVE_SYS_UIO_H 1 | | #define HAVE_SYS_SELECT_H 1 | | #define HAVE_LIBINTL_H 1 | | #define RETSIGTYPE void | | #define SIZEOF_UINT32_T 4 | | #define SIZEOF_UNSIGNED_LONG 4 | | #define SIZEOF_UNSIGNED_INT 4 | | /* end confdefs.h. */ | | #include | | | | int | | main () | | { | | static struct passwd ac_aggr; | | if (sizeof ac_aggr.pw_change) | | return 0; | | ; | | return 0; | | } | configure:26811: result: no | configure:26834: checking shadow.h usability | configure:26851: gcc -c -g -O2 conftest.c >&5 | configure:26857: $? = 0 | configure:26864: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:26867: $? = 0 | configure:26874: test -s conftest.o | configure:26877: $? = 0 | configure:26888: result: yes | configure:26892: checking shadow.h presence | configure:26907: gcc -E conftest.c | configure:26913: $? = 0 | configure:26934: result: yes | configure:26967: checking for shadow.h | configure:26974: result: yes | configure:26983: checking for getspnam | configure:27039: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lcrypt -lnsl >&5 | configure:27045: $? = 0 | configure:27052: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:27055: $? = 0 | configure:27062: test -s conftest | configure:27065: $? = 0 | configure:27079: result: yes | configure:27089: checking for struct spwd | configure:27120: gcc -c -g -O2 conftest.c >&5 | configure:27126: $? = 0 | configure:27133: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:27136: $? = 0 | configure:27143: test -s conftest.o | configure:27146: $? = 0 | configure:27158: result: yes | configure:27169: checking for struct spwd.sp_expire | configure:27198: gcc -c -g -O2 conftest.c >&5 | configure:27204: $? = 0 | configure:27211: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:27214: $? = 0 | configure:27221: test -s conftest.o | configure:27224: $? = 0 | configure:27296: result: yes | configure:27986: checking for an ANSI C-conforming const | configure:28061: gcc -c -g -O2 conftest.c >&5 | configure:28067: $? = 0 | configure:28074: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:28077: $? = 0 | configure:28084: test -s conftest.o | configure:28087: $? = 0 | configure:28099: result: yes | configure:28109: checking for uid_t in sys/types.h | configure:28132: result: yes | configure:28147: checking for off_t | configure:28215: result: yes | configure:28227: checking for pid_t | configure:28295: result: yes | configure:28307: checking for size_t | configure:28375: result: yes | configure:28387: checking return type of signal handlers | configure:28453: result: void | configure:28461: checking for u_char | configure:28491: gcc -c -g -O2 conftest.c >&5 | configure:28497: $? = 0 | configure:28504: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:28507: $? = 0 | configure:28514: test -s conftest.o | configure:28517: $? = 0 | configure:28529: result: yes | configure:28541: checking for u_int | configure:28571: gcc -c -g -O2 conftest.c >&5 | configure:28577: $? = 0 | configure:28584: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:28587: $? = 0 | configure:28594: test -s conftest.o | configure:28597: $? = 0 | configure:28609: result: yes | configure:28621: checking for u_long | configure:28651: gcc -c -g -O2 conftest.c >&5 | configure:28657: $? = 0 | configure:28664: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:28667: $? = 0 | configure:28674: test -s conftest.o | configure:28677: $? = 0 | configure:28689: result: yes | configure:28701: checking whether time.h and sys/time.h may both be included | configure:28731: gcc -c -g -O2 conftest.c >&5 | configure:28737: $? = 0 | configure:28744: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:28747: $? = 0 | configure:28754: test -s conftest.o | configure:28757: $? = 0 | configure:28769: result: yes | configure:28779: checking whether struct tm is in sys/time.h or time.h | configure:28807: gcc -c -g -O2 conftest.c >&5 | configure:28813: $? = 0 | configure:28820: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:28823: $? = 0 | configure:28830: test -s conftest.o | configure:28833: $? = 0 | configure:28845: result: time.h | configure:28855: checking for struct sockaddr_in.sin_len | configure:28885: gcc -c -g -O2 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:65: error: 'struct sockaddr_in' has no member named 'sin_len' | configure:28891: $? = 1 | configure: failed program was: | | /* confdefs.h. */ | | #define PACKAGE_NAME "GNU Radius" | | #define PACKAGE_TARNAME "radius" | | #define PACKAGE_VERSION "1.5" | | #define PACKAGE_STRING "GNU Radius 1.5" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE "radius" | | #define VERSION "1.5" | | #define _GNU_SOURCE 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_LIBNSL 1 | | #define HAVE_LIBCRYPT 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_MALLOC_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_FILE_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_CTYPE_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_NETINET_IN_H 1 | | #define HAVE_ARPA_INET_H 1 | | #define HAVE_NETDB_H 1 | | #define HAVE_STDARG_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_TERMIO_H 1 | | #define HAVE_SGTTY_H 1 | | #define HAVE_CRYPT_H 1 | | #define HAVE_SYS_UIO_H 1 | | #define HAVE_SYS_SELECT_H 1 | | #define HAVE_LIBINTL_H 1 | | #define RETSIGTYPE void | | #define SIZEOF_UINT32_T 4 | | #define SIZEOF_UNSIGNED_LONG 4 | | #define SIZEOF_UNSIGNED_INT 4 | | #define HAVE_GETSPNAM 1 | | #define HAVE_STRUCT_SPWD 1 | | #define HAVE_STRUCT_SPWD_SP_EXPIRE 1 | | #define RETSIGTYPE void | | #define TIME_WITH_SYS_TIME 1 | | /* end confdefs.h. */ | | #include | | #include | | | | int | | main () | | { | | static struct sockaddr_in ac_aggr; | | if (ac_aggr.sin_len) | | return 0; | | ; | | return 0; | | } | configure:28943: gcc -c -g -O2 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:65: error: 'struct sockaddr_in' has no member named 'sin_len' | configure:28949: $? = 1 | configure: failed program was: | | /* confdefs.h. */ | | #define PACKAGE_NAME "GNU Radius" | | #define PACKAGE_TARNAME "radius" | | #define PACKAGE_VERSION "1.5" | | #define PACKAGE_STRING "GNU Radius 1.5" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE "radius" | | #define VERSION "1.5" | | #define _GNU_SOURCE 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_LIBNSL 1 | | #define HAVE_LIBCRYPT 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_MALLOC_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_FILE_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_CTYPE_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_NETINET_IN_H 1 | | #define HAVE_ARPA_INET_H 1 | | #define HAVE_NETDB_H 1 | | #define HAVE_STDARG_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_TERMIO_H 1 | | #define HAVE_SGTTY_H 1 | | #define HAVE_CRYPT_H 1 | | #define HAVE_SYS_UIO_H 1 | | #define HAVE_SYS_SELECT_H 1 | | #define HAVE_LIBINTL_H 1 | | #define RETSIGTYPE void | | #define SIZEOF_UINT32_T 4 | | #define SIZEOF_UNSIGNED_LONG 4 | | #define SIZEOF_UNSIGNED_INT 4 | | #define HAVE_GETSPNAM 1 | | #define HAVE_STRUCT_SPWD 1 | | #define HAVE_STRUCT_SPWD_SP_EXPIRE 1 | | #define RETSIGTYPE void | | #define TIME_WITH_SYS_TIME 1 | | /* end confdefs.h. */ | | #include | | #include | | | | int | | main () | | { | | static struct sockaddr_in ac_aggr; | | if (sizeof ac_aggr.sin_len) | | return 0; | | ; | | return 0; | | } | configure:28984: result: no | configure:28996: checking for INADDR_LOOPBACK | configure:29030: gcc -c -g -O2 conftest.c >&5 | configure:29036: $? = 0 | configure:29043: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:29046: $? = 0 | configure:29053: test -s conftest.o | configure:29056: $? = 0 | configure:29070: result: found | configure:29088: checking for strftime | configure:29144: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lcrypt -lnsl >&5 | conftest.c:81: warning: conflicting types for built-in function 'strftime' | configure:29150: $? = 0 | configure:29157: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:29160: $? = 0 | configure:29167: test -s conftest | configure:29170: $? = 0 | configure:29184: result: yes | configure:29285: checking for vprintf | configure:29341: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lcrypt -lnsl >&5 | conftest.c:82: warning: conflicting types for built-in function 'vprintf' | configure:29347: $? = 0 | configure:29354: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:29357: $? = 0 | configure:29364: test -s conftest | configure:29367: $? = 0 | configure:29381: result: yes | configure:29388: checking for _doprnt | configure:29444: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lcrypt -lnsl >&5 | /tmp/ccT3bqzC.o: In function `main': | /tmp/buildd/radius-1.5/conftest.c:94: undefined reference to `_doprnt' | collect2: ld returned 1 exit status | configure:29450: $? = 1 | configure: failed program was: | | /* confdefs.h. */ | | #define PACKAGE_NAME "GNU Radius" | | #define PACKAGE_TARNAME "radius" | | #define PACKAGE_VERSION "1.5" | | #define PACKAGE_STRING "GNU Radius 1.5" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE "radius" | | #define VERSION "1.5" | | #define _GNU_SOURCE 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_LIBNSL 1 | | #define HAVE_LIBCRYPT 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_MALLOC_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_FILE_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_CTYPE_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_NETINET_IN_H 1 | | #define HAVE_ARPA_INET_H 1 | | #define HAVE_NETDB_H 1 | | #define HAVE_STDARG_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_TERMIO_H 1 | | #define HAVE_SGTTY_H 1 | | #define HAVE_CRYPT_H 1 | | #define HAVE_SYS_UIO_H 1 | | #define HAVE_SYS_SELECT_H 1 | | #define HAVE_LIBINTL_H 1 | | #define RETSIGTYPE void | | #define SIZEOF_UINT32_T 4 | | #define SIZEOF_UNSIGNED_LONG 4 | | #define SIZEOF_UNSIGNED_INT 4 | | #define HAVE_GETSPNAM 1 | | #define HAVE_STRUCT_SPWD 1 | | #define HAVE_STRUCT_SPWD_SP_EXPIRE 1 | | #define RETSIGTYPE void | | #define TIME_WITH_SYS_TIME 1 | | #define HAVE_STRFTIME 1 | | #define HAVE_VPRINTF 1 | | /* end confdefs.h. */ | | /* Define _doprnt to an innocuous variant, in case declares _doprnt. | | For example, HP-UX 11i declares gettimeofday. */ | | #define _doprnt innocuous__doprnt | | | | /* System header to define __stub macros and hopefully few prototypes, | | which can conflict with char _doprnt (); below. | | Prefer to if __STDC__ is defined, since | | exists even on freestanding compilers. */ | | | | #ifdef __STDC__ | | # include | | #else | | # include | | #endif | | | | #undef _doprnt | | | | /* Override any GCC internal prototype to avoid an error. | | Use char because int might match the return type of a GCC | | builtin and then its argument prototype would still apply. */ | | #ifdef __cplusplus | | extern "C" | | #endif | | char _doprnt (); | | /* The GNU C library defines this for functions which it implements | | to always fail with ENOSYS. Some functions are actually named | | something starting with __ and the normal name is an alias. */ | | #if defined __stub__doprnt || defined __stub____doprnt | | choke me | | #endif | | | | int | | main () | | { | | return _doprnt (); | | ; | | return 0; | | } | configure:29483: result: no | configure:29503: checking for stdlib.h | configure:29509: result: yes | configure:29503: checking for unistd.h | configure:29509: result: yes | configure:29671: checking for getpagesize | configure:29727: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lcrypt -lnsl >&5 | configure:29733: $? = 0 | configure:29740: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:29743: $? = 0 | configure:29750: test -s conftest | configure:29753: $? = 0 | configure:29767: result: yes | configure:29777: checking for working mmap | configure:29924: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lcrypt -lnsl >&5 | configure:29927: $? = 0 | configure:29933: ./conftest | configure:29936: $? = 0 | configure:29952: result: yes | configure:29966: checking for working alloca.h | configure:29993: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lcrypt -lnsl >&5 | configure:29999: $? = 0 | configure:30006: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:30009: $? = 0 | configure:30016: test -s conftest | configure:30019: $? = 0 | configure:30032: result: yes | configure:30042: checking for alloca | configure:30089: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lcrypt -lnsl >&5 | configure:30095: $? = 0 | configure:30102: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:30105: $? = 0 | configure:30112: test -s conftest | configure:30115: $? = 0 | configure:30128: result: yes | configure:30371: checking for inline | configure:30397: gcc -c -g -O2 conftest.c >&5 | configure:30403: $? = 0 | configure:30410: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:30413: $? = 0 | configure:30420: test -s conftest.o | configure:30423: $? = 0 | configure:30438: result: inline | configure:30457: checking for C/C++ restrict keyword | configure:30493: gcc -c -g -O2 conftest.c >&5 | conftest.c:67: error: expected ';', ',' or ')' before 'ip' | conftest.c: In function 'main': | conftest.c:74: error: expected '=', ',', ';', 'asm' or '__attribute__' before 't' | conftest.c:74: error: 't' undeclared (first use in this function) | conftest.c:74: error: (Each undeclared identifier is reported only once | conftest.c:74: error: for each function it appears in.) | configure:30499: $? = 1 | configure: failed program was: | | /* confdefs.h. */ | | #define PACKAGE_NAME "GNU Radius" | | #define PACKAGE_TARNAME "radius" | | #define PACKAGE_VERSION "1.5" | | #define PACKAGE_STRING "GNU Radius 1.5" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE "radius" | | #define VERSION "1.5" | | #define _GNU_SOURCE 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_LIBNSL 1 | | #define HAVE_LIBCRYPT 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_MALLOC_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_FILE_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_CTYPE_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_NETINET_IN_H 1 | | #define HAVE_ARPA_INET_H 1 | | #define HAVE_NETDB_H 1 | | #define HAVE_STDARG_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_TERMIO_H 1 | | #define HAVE_SGTTY_H 1 | | #define HAVE_CRYPT_H 1 | | #define HAVE_SYS_UIO_H 1 | | #define HAVE_SYS_SELECT_H 1 | | #define HAVE_LIBINTL_H 1 | | #define RETSIGTYPE void | | #define SIZEOF_UINT32_T 4 | | #define SIZEOF_UNSIGNED_LONG 4 | | #define SIZEOF_UNSIGNED_INT 4 | | #define HAVE_GETSPNAM 1 | | #define HAVE_STRUCT_SPWD 1 | | #define HAVE_STRUCT_SPWD_SP_EXPIRE 1 | | #define RETSIGTYPE void | | #define TIME_WITH_SYS_TIME 1 | | #define HAVE_STRFTIME 1 | | #define HAVE_VPRINTF 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_GETPAGESIZE 1 | | #define HAVE_MMAP 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | /* end confdefs.h. */ | | typedef int * int_ptr; | | int foo (int_ptr restrict ip) { | | return ip[0]; | | } | | int | | main () | | { | | int s[1]; | | int * restrict t = s; | | t[0] = 0; | | return foo(t) | | ; | | return 0; | | } | configure:30493: gcc -c -g -O2 conftest.c >&5 | configure:30499: $? = 0 | configure:30506: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:30509: $? = 0 | configure:30516: test -s conftest.o | configure:30519: $? = 0 | configure:30534: result: __restrict | configure:30550: checking whether getenv is declared | configure:30580: gcc -c -g -O2 conftest.c >&5 | configure:30586: $? = 0 | configure:30593: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:30596: $? = 0 | configure:30603: test -s conftest.o | configure:30606: $? = 0 | configure:30618: result: yes | configure:30638: checking whether clearerr_unlocked is declared | configure:30668: gcc -c -g -O2 conftest.c >&5 | configure:30674: $? = 0 | configure:30681: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:30684: $? = 0 | configure:30691: test -s conftest.o | configure:30694: $? = 0 | configure:30706: result: yes | configure:30726: checking whether feof_unlocked is declared | configure:30756: gcc -c -g -O2 conftest.c >&5 | configure:30762: $? = 0 | configure:30769: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:30772: $? = 0 | configure:30779: test -s conftest.o | configure:30782: $? = 0 | configure:30794: result: yes | configure:30814: checking whether ferror_unlocked is declared | configure:30844: gcc -c -g -O2 conftest.c >&5 | configure:30850: $? = 0 | configure:30857: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:30860: $? = 0 | configure:30867: test -s conftest.o | configure:30870: $? = 0 | configure:30882: result: yes | configure:30902: checking whether fflush_unlocked is declared | configure:30932: gcc -c -g -O2 conftest.c >&5 | configure:30938: $? = 0 | configure:30945: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:30948: $? = 0 | configure:30955: test -s conftest.o | configure:30958: $? = 0 | configure:30970: result: yes | configure:30990: checking whether fgets_unlocked is declared | configure:31020: gcc -c -g -O2 conftest.c >&5 | configure:31026: $? = 0 | configure:31033: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:31036: $? = 0 | configure:31043: test -s conftest.o | configure:31046: $? = 0 | configure:31058: result: yes | configure:31078: checking whether fputc_unlocked is declared | configure:31108: gcc -c -g -O2 conftest.c >&5 | configure:31114: $? = 0 | configure:31121: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:31124: $? = 0 | configure:31131: test -s conftest.o | configure:31134: $? = 0 | configure:31146: result: yes | configure:31166: checking whether fputs_unlocked is declared | configure:31196: gcc -c -g -O2 conftest.c >&5 | configure:31202: $? = 0 | configure:31209: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:31212: $? = 0 | configure:31219: test -s conftest.o | configure:31222: $? = 0 | configure:31234: result: yes | configure:31254: checking whether fread_unlocked is declared | configure:31284: gcc -c -g -O2 conftest.c >&5 | configure:31290: $? = 0 | configure:31297: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:31300: $? = 0 | configure:31307: test -s conftest.o | configure:31310: $? = 0 | configure:31322: result: yes | configure:31342: checking whether fwrite_unlocked is declared | configure:31372: gcc -c -g -O2 conftest.c >&5 | configure:31378: $? = 0 | configure:31385: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:31388: $? = 0 | configure:31395: test -s conftest.o | configure:31398: $? = 0 | configure:31410: result: yes | configure:31430: checking whether getc_unlocked is declared | configure:31460: gcc -c -g -O2 conftest.c >&5 | configure:31466: $? = 0 | configure:31473: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:31476: $? = 0 | configure:31483: test -s conftest.o | configure:31486: $? = 0 | configure:31498: result: yes | configure:31518: checking whether getchar_unlocked is declared | configure:31548: gcc -c -g -O2 conftest.c >&5 | configure:31554: $? = 0 | configure:31561: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:31564: $? = 0 | configure:31571: test -s conftest.o | configure:31574: $? = 0 | configure:31586: result: yes | configure:31606: checking whether putc_unlocked is declared | configure:31636: gcc -c -g -O2 conftest.c >&5 | configure:31642: $? = 0 | configure:31649: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:31652: $? = 0 | configure:31659: test -s conftest.o | configure:31662: $? = 0 | configure:31674: result: yes | configure:31694: checking whether putchar_unlocked is declared | configure:31724: gcc -c -g -O2 conftest.c >&5 | configure:31730: $? = 0 | configure:31737: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:31740: $? = 0 | configure:31747: test -s conftest.o | configure:31750: $? = 0 | configure:31762: result: yes | configure:31789: checking for flockfile | configure:31845: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lcrypt -lnsl >&5 | configure:31851: $? = 0 | configure:31858: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:31861: $? = 0 | configure:31868: test -s conftest | configure:31871: $? = 0 | configure:31885: result: yes | configure:31789: checking for funlockfile | configure:31845: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lcrypt -lnsl >&5 | configure:31851: $? = 0 | configure:31858: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:31861: $? = 0 | configure:31868: test -s conftest | configure:31871: $? = 0 | configure:31885: result: yes | configure:31789: checking for isblank | configure:31845: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lcrypt -lnsl >&5 | conftest.c:106: warning: conflicting types for built-in function 'isblank' | configure:31851: $? = 0 | configure:31858: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:31861: $? = 0 | configure:31868: test -s conftest | configure:31871: $? = 0 | configure:31885: result: yes | configure:31789: checking for iswctype | configure:31845: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lcrypt -lnsl >&5 | configure:31851: $? = 0 | configure:31858: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:31861: $? = 0 | configure:31868: test -s conftest | configure:31871: $? = 0 | configure:31885: result: yes | configure:31789: checking for mbrtowc | configure:31845: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lcrypt -lnsl >&5 | configure:31851: $? = 0 | configure:31858: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:31861: $? = 0 | configure:31868: test -s conftest | configure:31871: $? = 0 | configure:31885: result: yes | configure:31789: checking for wcrtomb | configure:31845: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lcrypt -lnsl >&5 | configure:31851: $? = 0 | configure:31858: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:31861: $? = 0 | configure:31868: test -s conftest | configure:31871: $? = 0 | configure:31885: result: yes | configure:31789: checking for wcscoll | configure:31845: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lcrypt -lnsl >&5 | configure:31851: $? = 0 | configure:31858: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:31861: $? = 0 | configure:31868: test -s conftest | configure:31871: $? = 0 | configure:31885: result: yes | configure:31789: checking for sleep | configure:31845: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lcrypt -lnsl >&5 | configure:31851: $? = 0 | configure:31858: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:31861: $? = 0 | configure:31868: test -s conftest | configure:31871: $? = 0 | configure:31885: result: yes | configure:31789: checking for strerror | configure:31845: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lcrypt -lnsl >&5 | configure:31851: $? = 0 | configure:31858: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:31861: $? = 0 | configure:31868: test -s conftest | configure:31871: $? = 0 | configure:31885: result: yes | configure:31789: checking for vasnprintf | configure:31845: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lcrypt -lnsl >&5 | /tmp/ccSC27kc.o: In function `main': | /tmp/buildd/radius-1.5/conftest.c:124: undefined reference to `vasnprintf' | collect2: ld returned 1 exit status | configure:31851: $? = 1 | configure: failed program was: | | /* confdefs.h. */ | | #define PACKAGE_NAME "GNU Radius" | | #define PACKAGE_TARNAME "radius" | | #define PACKAGE_VERSION "1.5" | | #define PACKAGE_STRING "GNU Radius 1.5" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE "radius" | | #define VERSION "1.5" | | #define _GNU_SOURCE 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_LIBNSL 1 | | #define HAVE_LIBCRYPT 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_MALLOC_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_FILE_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_CTYPE_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_NETINET_IN_H 1 | | #define HAVE_ARPA_INET_H 1 | | #define HAVE_NETDB_H 1 | | #define HAVE_STDARG_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_TERMIO_H 1 | | #define HAVE_SGTTY_H 1 | | #define HAVE_CRYPT_H 1 | | #define HAVE_SYS_UIO_H 1 | | #define HAVE_SYS_SELECT_H 1 | | #define HAVE_LIBINTL_H 1 | | #define RETSIGTYPE void | | #define SIZEOF_UINT32_T 4 | | #define SIZEOF_UNSIGNED_LONG 4 | | #define SIZEOF_UNSIGNED_INT 4 | | #define HAVE_GETSPNAM 1 | | #define HAVE_STRUCT_SPWD 1 | | #define HAVE_STRUCT_SPWD_SP_EXPIRE 1 | | #define RETSIGTYPE void | | #define TIME_WITH_SYS_TIME 1 | | #define HAVE_STRFTIME 1 | | #define HAVE_VPRINTF 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_GETPAGESIZE 1 | | #define HAVE_MMAP 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define restrict __restrict | | #define HAVE_DECL_GETENV 1 | | #define HAVE_DECL_CLEARERR_UNLOCKED 1 | | #define HAVE_DECL_FEOF_UNLOCKED 1 | | #define HAVE_DECL_FERROR_UNLOCKED 1 | | #define HAVE_DECL_FFLUSH_UNLOCKED 1 | | #define HAVE_DECL_FGETS_UNLOCKED 1 | | #define HAVE_DECL_FPUTC_UNLOCKED 1 | | #define HAVE_DECL_FPUTS_UNLOCKED 1 | | #define HAVE_DECL_FREAD_UNLOCKED 1 | | #define HAVE_DECL_FWRITE_UNLOCKED 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | | #define HAVE_DECL_PUTC_UNLOCKED 1 | | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | | #define HAVE_FLOCKFILE 1 | | #define HAVE_FUNLOCKFILE 1 | | #define HAVE_ISBLANK 1 | | #define HAVE_ISWCTYPE 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_WCRTOMB 1 | | #define HAVE_WCSCOLL 1 | | #define HAVE_SLEEP 1 | | #define HAVE_STRERROR 1 | | /* end confdefs.h. */ | | /* Define vasnprintf to an innocuous variant, in case declares vasnprintf. | | For example, HP-UX 11i declares gettimeofday. */ | | #define vasnprintf innocuous_vasnprintf | | | | /* System header to define __stub macros and hopefully few prototypes, | | which can conflict with char vasnprintf (); below. | | Prefer to if __STDC__ is defined, since | | exists even on freestanding compilers. */ | | | | #ifdef __STDC__ | | # include | | #else | | # include | | #endif | | | | #undef vasnprintf | | | | /* Override any GCC internal prototype to avoid an error. | | Use char because int might match the return type of a GCC | | builtin and then its argument prototype would still apply. */ | | #ifdef __cplusplus | | extern "C" | | #endif | | char vasnprintf (); | | /* The GNU C library defines this for functions which it implements | | to always fail with ENOSYS. Some functions are actually named | | something starting with __ and the normal name is an alias. */ | | #if defined __stub_vasnprintf || defined __stub___vasnprintf | | choke me | | #endif | | | | int | | main () | | { | | return vasnprintf (); | | ; | | return 0; | | } | configure:31885: result: no | configure:31789: checking for iswcntrl | configure:31845: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lcrypt -lnsl >&5 | conftest.c:113: warning: conflicting types for built-in function 'iswcntrl' | configure:31851: $? = 0 | configure:31858: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:31861: $? = 0 | configure:31868: test -s conftest | configure:31871: $? = 0 | configure:31885: result: yes | configure:31925: checking features.h usability | configure:31942: gcc -c -g -O2 conftest.c >&5 | configure:31948: $? = 0 | configure:31955: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:31958: $? = 0 | configure:31965: test -s conftest.o | configure:31968: $? = 0 | configure:31979: result: yes | configure:31983: checking features.h presence | configure:31998: gcc -E conftest.c | configure:32004: $? = 0 | configure:32025: result: yes | configure:32058: checking for features.h | configure:32066: result: yes | configure:31925: checking linewrap.h usability | configure:31942: gcc -c -g -O2 conftest.c >&5 | conftest.c:125:22: error: linewrap.h: No such file or directory | configure:31948: $? = 1 | configure: failed program was: | | /* confdefs.h. */ | | #define PACKAGE_NAME "GNU Radius" | | #define PACKAGE_TARNAME "radius" | | #define PACKAGE_VERSION "1.5" | | #define PACKAGE_STRING "GNU Radius 1.5" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE "radius" | | #define VERSION "1.5" | | #define _GNU_SOURCE 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_LIBNSL 1 | | #define HAVE_LIBCRYPT 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_MALLOC_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_FILE_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_CTYPE_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_NETINET_IN_H 1 | | #define HAVE_ARPA_INET_H 1 | | #define HAVE_NETDB_H 1 | | #define HAVE_STDARG_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_TERMIO_H 1 | | #define HAVE_SGTTY_H 1 | | #define HAVE_CRYPT_H 1 | | #define HAVE_SYS_UIO_H 1 | | #define HAVE_SYS_SELECT_H 1 | | #define HAVE_LIBINTL_H 1 | | #define RETSIGTYPE void | | #define SIZEOF_UINT32_T 4 | | #define SIZEOF_UNSIGNED_LONG 4 | | #define SIZEOF_UNSIGNED_INT 4 | | #define HAVE_GETSPNAM 1 | | #define HAVE_STRUCT_SPWD 1 | | #define HAVE_STRUCT_SPWD_SP_EXPIRE 1 | | #define RETSIGTYPE void | | #define TIME_WITH_SYS_TIME 1 | | #define HAVE_STRFTIME 1 | | #define HAVE_VPRINTF 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_GETPAGESIZE 1 | | #define HAVE_MMAP 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define restrict __restrict | | #define HAVE_DECL_GETENV 1 | | #define HAVE_DECL_CLEARERR_UNLOCKED 1 | | #define HAVE_DECL_FEOF_UNLOCKED 1 | | #define HAVE_DECL_FERROR_UNLOCKED 1 | | #define HAVE_DECL_FFLUSH_UNLOCKED 1 | | #define HAVE_DECL_FGETS_UNLOCKED 1 | | #define HAVE_DECL_FPUTC_UNLOCKED 1 | | #define HAVE_DECL_FPUTS_UNLOCKED 1 | | #define HAVE_DECL_FREAD_UNLOCKED 1 | | #define HAVE_DECL_FWRITE_UNLOCKED 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | | #define HAVE_DECL_PUTC_UNLOCKED 1 | | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | | #define HAVE_FLOCKFILE 1 | | #define HAVE_FUNLOCKFILE 1 | | #define HAVE_ISBLANK 1 | | #define HAVE_ISWCTYPE 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_WCRTOMB 1 | | #define HAVE_WCSCOLL 1 | | #define HAVE_SLEEP 1 | | #define HAVE_STRERROR 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_FEATURES_H 1 | | /* end confdefs.h. */ | | #include | | #if HAVE_SYS_TYPES_H | | # include | | #endif | | #if HAVE_SYS_STAT_H | | # include | | #endif | | #if STDC_HEADERS | | # include | | # include | | #else | | # if HAVE_STDLIB_H | | # include | | # endif | | #endif | | #if HAVE_STRING_H | | # if !STDC_HEADERS && HAVE_MEMORY_H | | # include | | # endif | | # include | | #endif | | #if HAVE_STRINGS_H | | # include | | #endif | | #if HAVE_INTTYPES_H | | # include | | #endif | | #if HAVE_STDINT_H | | # include | | #endif | | #if HAVE_UNISTD_H | | # include | | #endif | | #include | configure:31979: result: no | configure:31983: checking linewrap.h presence | configure:31998: gcc -E conftest.c | conftest.c:92:22: error: linewrap.h: No such file or directory | configure:32004: $? = 1 | configure: failed program was: | | /* confdefs.h. */ | | #define PACKAGE_NAME "GNU Radius" | | #define PACKAGE_TARNAME "radius" | | #define PACKAGE_VERSION "1.5" | | #define PACKAGE_STRING "GNU Radius 1.5" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE "radius" | | #define VERSION "1.5" | | #define _GNU_SOURCE 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_LIBNSL 1 | | #define HAVE_LIBCRYPT 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_MALLOC_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_FILE_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_CTYPE_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_NETINET_IN_H 1 | | #define HAVE_ARPA_INET_H 1 | | #define HAVE_NETDB_H 1 | | #define HAVE_STDARG_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_TERMIO_H 1 | | #define HAVE_SGTTY_H 1 | | #define HAVE_CRYPT_H 1 | | #define HAVE_SYS_UIO_H 1 | | #define HAVE_SYS_SELECT_H 1 | | #define HAVE_LIBINTL_H 1 | | #define RETSIGTYPE void | | #define SIZEOF_UINT32_T 4 | | #define SIZEOF_UNSIGNED_LONG 4 | | #define SIZEOF_UNSIGNED_INT 4 | | #define HAVE_GETSPNAM 1 | | #define HAVE_STRUCT_SPWD 1 | | #define HAVE_STRUCT_SPWD_SP_EXPIRE 1 | | #define RETSIGTYPE void | | #define TIME_WITH_SYS_TIME 1 | | #define HAVE_STRFTIME 1 | | #define HAVE_VPRINTF 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_GETPAGESIZE 1 | | #define HAVE_MMAP 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define restrict __restrict | | #define HAVE_DECL_GETENV 1 | | #define HAVE_DECL_CLEARERR_UNLOCKED 1 | | #define HAVE_DECL_FEOF_UNLOCKED 1 | | #define HAVE_DECL_FERROR_UNLOCKED 1 | | #define HAVE_DECL_FFLUSH_UNLOCKED 1 | | #define HAVE_DECL_FGETS_UNLOCKED 1 | | #define HAVE_DECL_FPUTC_UNLOCKED 1 | | #define HAVE_DECL_FPUTS_UNLOCKED 1 | | #define HAVE_DECL_FREAD_UNLOCKED 1 | | #define HAVE_DECL_FWRITE_UNLOCKED 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | | #define HAVE_DECL_PUTC_UNLOCKED 1 | | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | | #define HAVE_FLOCKFILE 1 | | #define HAVE_FUNLOCKFILE 1 | | #define HAVE_ISBLANK 1 | | #define HAVE_ISWCTYPE 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_WCRTOMB 1 | | #define HAVE_WCSCOLL 1 | | #define HAVE_SLEEP 1 | | #define HAVE_STRERROR 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_FEATURES_H 1 | | /* end confdefs.h. */ | | #include | configure:32025: result: no | configure:32058: checking for linewrap.h | configure:32066: result: no | configure:31925: checking float.h usability | configure:31942: gcc -c -g -O2 conftest.c >&5 | configure:31948: $? = 0 | configure:31955: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:31958: $? = 0 | configure:31965: test -s conftest.o | configure:31968: $? = 0 | configure:31979: result: yes | configure:31983: checking float.h presence | configure:31998: gcc -E conftest.c | configure:32004: $? = 0 | configure:32025: result: yes | configure:32058: checking for float.h | configure:32066: result: yes | configure:31925: checking locale.h usability | configure:31942: gcc -c -g -O2 conftest.c >&5 | configure:31948: $? = 0 | configure:31955: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:31958: $? = 0 | configure:31965: test -s conftest.o | configure:31968: $? = 0 | configure:31979: result: yes | configure:31983: checking locale.h presence | configure:31998: gcc -E conftest.c | configure:32004: $? = 0 | configure:32025: result: yes | configure:32058: checking for locale.h | configure:32066: result: yes | configure:31915: checking for stdint.h | configure:31921: result: yes | configure:31925: checking wchar.h usability | configure:31942: gcc -c -g -O2 conftest.c >&5 | configure:31948: $? = 0 | configure:31955: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:31958: $? = 0 | configure:31965: test -s conftest.o | configure:31968: $? = 0 | configure:31979: result: yes | configure:31983: checking wchar.h presence | configure:31998: gcc -E conftest.c | configure:32004: $? = 0 | configure:32025: result: yes | configure:32058: checking for wchar.h | configure:32066: result: yes | configure:31925: checking stdio.h usability | configure:31942: gcc -c -g -O2 conftest.c >&5 | configure:31948: $? = 0 | configure:31955: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:31958: $? = 0 | configure:31965: test -s conftest.o | configure:31968: $? = 0 | configure:31979: result: yes | configure:31983: checking stdio.h presence | configure:31998: gcc -E conftest.c | configure:32004: $? = 0 | configure:32025: result: yes | configure:32058: checking for stdio.h | configure:32066: result: yes | configure:31915: checking for stdlib.h | configure:31921: result: yes | configure:31915: checking for string.h | configure:31921: result: yes | configure:31925: checking sysexits.h usability | configure:31942: gcc -c -g -O2 conftest.c >&5 | configure:31948: $? = 0 | configure:31955: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:31958: $? = 0 | configure:31965: test -s conftest.o | configure:31968: $? = 0 | configure:31979: result: yes | configure:31983: checking sysexits.h presence | configure:31998: gcc -E conftest.c | configure:32004: $? = 0 | configure:32025: result: yes | configure:32058: checking for sysexits.h | configure:32066: result: yes | configure:31915: checking for unistd.h | configure:31921: result: yes | configure:31925: checking wctype.h usability | configure:31942: gcc -c -g -O2 conftest.c >&5 | configure:31948: $? = 0 | configure:31955: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:31958: $? = 0 | configure:31965: test -s conftest.o | configure:31968: $? = 0 | configure:31979: result: yes | configure:31983: checking wctype.h presence | configure:31998: gcc -E conftest.c | configure:32004: $? = 0 | configure:32025: result: yes | configure:32058: checking for wctype.h | configure:32066: result: yes | configure:32092: checking whether the preprocessor supports include_next | configure:32105: gcc -E conftest.c | conftest.c:1:2: warning: #include_next in primary source file | configure:32111: $? = 0 | configure:32133: result: yes | configure:32156: checking whether getdelim is declared | configure:32186: gcc -c -g -O2 conftest.c >&5 | configure:32192: $? = 0 | configure:32199: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:32202: $? = 0 | configure:32209: test -s conftest.o | configure:32212: $? = 0 | configure:32224: result: yes | configure:32260: checking getopt.h usability | configure:32277: gcc -c -g -O2 conftest.c >&5 | configure:32283: $? = 0 | configure:32290: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:32293: $? = 0 | configure:32300: test -s conftest.o | configure:32303: $? = 0 | configure:32314: result: yes | configure:32318: checking getopt.h presence | configure:32333: gcc -E conftest.c | configure:32339: $? = 0 | configure:32360: result: yes | configure:32393: checking for getopt.h | configure:32401: result: yes | configure:32423: checking for getopt_long_only | configure:32479: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lcrypt -lnsl >&5 | configure:32485: $? = 0 | configure:32492: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:32495: $? = 0 | configure:32502: test -s conftest | configure:32505: $? = 0 | configure:32519: result: yes | configure:32534: checking whether optreset is declared | configure:32565: gcc -c -g -O2 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:112: error: 'optreset' undeclared (first use in this function) | conftest.c:112: error: (Each undeclared identifier is reported only once | conftest.c:112: error: for each function it appears in.) | configure:32571: $? = 1 | configure: failed program was: | | /* confdefs.h. */ | | #define PACKAGE_NAME "GNU Radius" | | #define PACKAGE_TARNAME "radius" | | #define PACKAGE_VERSION "1.5" | | #define PACKAGE_STRING "GNU Radius 1.5" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE "radius" | | #define VERSION "1.5" | | #define _GNU_SOURCE 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_LIBNSL 1 | | #define HAVE_LIBCRYPT 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_MALLOC_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_FILE_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_CTYPE_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_NETINET_IN_H 1 | | #define HAVE_ARPA_INET_H 1 | | #define HAVE_NETDB_H 1 | | #define HAVE_STDARG_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_TERMIO_H 1 | | #define HAVE_SGTTY_H 1 | | #define HAVE_CRYPT_H 1 | | #define HAVE_SYS_UIO_H 1 | | #define HAVE_SYS_SELECT_H 1 | | #define HAVE_LIBINTL_H 1 | | #define RETSIGTYPE void | | #define SIZEOF_UINT32_T 4 | | #define SIZEOF_UNSIGNED_LONG 4 | | #define SIZEOF_UNSIGNED_INT 4 | | #define HAVE_GETSPNAM 1 | | #define HAVE_STRUCT_SPWD 1 | | #define HAVE_STRUCT_SPWD_SP_EXPIRE 1 | | #define RETSIGTYPE void | | #define TIME_WITH_SYS_TIME 1 | | #define HAVE_STRFTIME 1 | | #define HAVE_VPRINTF 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_GETPAGESIZE 1 | | #define HAVE_MMAP 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define restrict __restrict | | #define HAVE_DECL_GETENV 1 | | #define HAVE_DECL_CLEARERR_UNLOCKED 1 | | #define HAVE_DECL_FEOF_UNLOCKED 1 | | #define HAVE_DECL_FERROR_UNLOCKED 1 | | #define HAVE_DECL_FFLUSH_UNLOCKED 1 | | #define HAVE_DECL_FGETS_UNLOCKED 1 | | #define HAVE_DECL_FPUTC_UNLOCKED 1 | | #define HAVE_DECL_FPUTS_UNLOCKED 1 | | #define HAVE_DECL_FREAD_UNLOCKED 1 | | #define HAVE_DECL_FWRITE_UNLOCKED 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | | #define HAVE_DECL_PUTC_UNLOCKED 1 | | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | | #define HAVE_FLOCKFILE 1 | | #define HAVE_FUNLOCKFILE 1 | | #define HAVE_ISBLANK 1 | | #define HAVE_ISWCTYPE 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_WCRTOMB 1 | | #define HAVE_WCSCOLL 1 | | #define HAVE_SLEEP 1 | | #define HAVE_STRERROR 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_FLOAT_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_SYSEXITS_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_INCLUDE_NEXT 1 | | #define HAVE_DECL_GETDELIM 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | /* end confdefs.h. */ | | #include | | | | int | | main () | | { | | #ifndef optreset | | char *p = (char *) optreset; | | return !p; | | #endif | | | | ; | | return 0; | | } | configure:32603: result: no | configure:32612: checking for working GNU getopt function | configure:32723: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lcrypt -lnsl >&5 | configure:32726: $? = 0 | configure:32732: ./conftest | conftest: invalid option -- '+' | configure:32735: $? = 0 | configure:32751: result: yes | configure:32759: checking for nl_langinfo and CODESET | configure:32785: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lcrypt -lnsl >&5 | configure:32791: $? = 0 | configure:32798: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:32801: $? = 0 | configure:32808: test -s conftest | configure:32811: $? = 0 | configure:32825: result: yes | configure:32836: checking whether we are using the GNU C Library 2.1 or newer | configure:32867: result: yes | configure:32982: checking for stdbool.h that conforms to C99 | configure:33075: gcc -c -g -O2 conftest.c >&5 | configure:33081: $? = 0 | configure:33088: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:33091: $? = 0 | configure:33098: test -s conftest.o | configure:33101: $? = 0 | configure:33113: result: yes | configure:33115: checking for _Bool | configure:33145: gcc -c -g -O2 conftest.c >&5 | configure:33151: $? = 0 | configure:33158: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:33161: $? = 0 | configure:33168: test -s conftest.o | configure:33171: $? = 0 | configure:33183: result: yes | configure:33202: checking for long long int | configure:33235: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lcrypt -lnsl >&5 | configure:33241: $? = 0 | configure:33248: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:33251: $? = 0 | configure:33258: test -s conftest | configure:33261: $? = 0 | configure:33302: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lcrypt -lnsl >&5 | configure:33305: $? = 0 | configure:33311: ./conftest | configure:33314: $? = 0 | configure:33339: result: yes | configure:33350: checking for unsigned long long int | configure:33381: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lcrypt -lnsl >&5 | configure:33387: $? = 0 | configure:33394: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:33397: $? = 0 | configure:33404: test -s conftest | configure:33407: $? = 0 | configure:33420: result: yes | configure:33563: checking whether strndup is declared | configure:33593: gcc -c -g -O2 conftest.c >&5 | configure:33599: $? = 0 | configure:33606: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:33609: $? = 0 | configure:33616: test -s conftest.o | configure:33619: $? = 0 | configure:33631: result: yes | configure:33651: checking whether strnlen is declared | configure:33681: gcc -c -g -O2 conftest.c >&5 | configure:33687: $? = 0 | configure:33694: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:33697: $? = 0 | configure:33704: test -s conftest.o | configure:33707: $? = 0 | configure:33719: result: yes | configure:33752: checking for EOVERFLOW | configure:34235: result: yes | configure:34254: checking for wchar_t | configure:34281: gcc -c -g -O2 conftest.c >&5 | configure:34287: $? = 0 | configure:34294: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:34297: $? = 0 | configure:34304: test -s conftest.o | configure:34307: $? = 0 | configure:34319: result: yes | configure:34330: checking for wint_t | configure:34365: gcc -c -g -O2 conftest.c >&5 | configure:34371: $? = 0 | configure:34378: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:34381: $? = 0 | configure:34388: test -s conftest.o | configure:34391: $? = 0 | configure:34403: result: yes | configure:34414: checking for inttypes.h | configure:34441: gcc -c -g -O2 conftest.c >&5 | configure:34447: $? = 0 | configure:34454: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:34457: $? = 0 | configure:34464: test -s conftest.o | configure:34467: $? = 0 | configure:34479: result: yes | configure:34490: checking for stdint.h | configure:34517: gcc -c -g -O2 conftest.c >&5 | configure:34523: $? = 0 | configure:34530: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:34533: $? = 0 | configure:34540: test -s conftest.o | configure:34543: $? = 0 | configure:34555: result: yes | configure:34579: checking for intmax_t | configure:34614: gcc -c -g -O2 conftest.c >&5 | configure:34620: $? = 0 | configure:34627: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:34630: $? = 0 | configure:34637: test -s conftest.o | configure:34640: $? = 0 | configure:34652: result: yes | configure:34673: checking whether vsnprintf is declared | configure:34703: gcc -c -g -O2 conftest.c >&5 | configure:34709: $? = 0 | configure:34716: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:34719: $? = 0 | configure:34726: test -s conftest.o | configure:34729: $? = 0 | configure:34741: result: yes | configure:34801: checking for alloca as a compiler built-in | configure:34829: result: yes | configure:34879: checking whether program_invocation_name is declared | configure:34910: gcc -c -g -O2 conftest.c >&5 | configure:34916: $? = 0 | configure:34923: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:34926: $? = 0 | configure:34933: test -s conftest.o | configure:34936: $? = 0 | configure:34948: result: yes | configure:34964: checking whether program_invocation_short_name is declared | configure:34995: gcc -c -g -O2 conftest.c >&5 | configure:35001: $? = 0 | configure:35008: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:35011: $? = 0 | configure:35018: test -s conftest.o | configure:35021: $? = 0 | configure:35033: result: yes | configure:35054: checking whether program_invocation_name is defined | configure:35077: gcc -c -g -O2 conftest.c >&5 | configure:35083: $? = 0 | configure:35090: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:35093: $? = 0 | configure:35100: test -s conftest.o | configure:35103: $? = 0 | configure:35110: result: yes | configure:35122: checking whether program_invocation_short_name is defined | configure:35145: gcc -c -g -O2 conftest.c >&5 | configure:35151: $? = 0 | configure:35158: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:35161: $? = 0 | configure:35168: test -s conftest.o | configure:35171: $? = 0 | configure:35178: result: yes | configure:35375: checking for getdelim | configure:35431: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lcrypt -lnsl >&5 | configure:35437: $? = 0 | configure:35444: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:35447: $? = 0 | configure:35454: test -s conftest | configure:35457: $? = 0 | configure:35471: result: yes | configure:35610: checking whether getline is declared | configure:35640: gcc -c -g -O2 conftest.c >&5 | configure:35646: $? = 0 | configure:35653: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:35656: $? = 0 | configure:35663: test -s conftest.o | configure:35666: $? = 0 | configure:35678: result: yes | configure:35698: checking for getline | configure:35754: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lcrypt -lnsl >&5 | configure:35760: $? = 0 | configure:35767: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:35770: $? = 0 | configure:35777: test -s conftest | configure:35780: $? = 0 | configure:35793: result: yes | configure:35802: checking for working getline function | configure:35863: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lcrypt -lnsl >&5 | configure:35866: $? = 0 | configure:35872: ./conftest | configure:35875: $? = 0 | configure:35891: result: yes | configure:36196: checking for stdlib.h | configure:36202: result: yes | configure:36360: checking for GNU libc compatible malloc | configure:36394: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lcrypt -lnsl >&5 | configure:36397: $? = 0 | configure:36403: ./conftest | configure:36406: $? = 0 | configure:36422: result: yes | configure:36455: checking for mempcpy | configure:36511: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lcrypt -lnsl >&5 | conftest.c:155: warning: conflicting types for built-in function 'mempcpy' | configure:36517: $? = 0 | configure:36524: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:36527: $? = 0 | configure:36534: test -s conftest | configure:36537: $? = 0 | configure:36551: result: yes | configure:36574: checking for obstacks | configure:36600: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lcrypt -lnsl >&5 | configure:36606: $? = 0 | configure:36613: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:36616: $? = 0 | configure:36623: test -s conftest | configure:36626: $? = 0 | configure:36639: result: yes | configure:36675: checking for working re_compile_pattern | configure:36826: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lcrypt -lnsl >&5 | configure:36829: $? = 0 | configure:36835: ./conftest | configure:36838: $? = 0 | configure:36854: result: yes | configure:37067: checking for stdint.h | configure:37073: result: yes | configure:37231: checking for SIZE_MAX | configure:38131: result: yes | configure:38161: checking for ssize_t | configure:38188: gcc -c -g -O2 conftest.c >&5 | configure:38194: $? = 0 | configure:38201: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:38204: $? = 0 | configure:38211: test -s conftest.o | configure:38214: $? = 0 | configure:38226: result: yes | configure:38343: checking whether stdint.h conforms to C99 | configure:38516: gcc -c -g -O2 conftest.c >&5 | configure:38522: $? = 0 | configure:38529: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:38532: $? = 0 | configure:38539: test -s conftest.o | configure:38542: $? = 0 | configure:38554: result: yes | configure:39581: checking for strcasecmp | configure:39637: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lcrypt -lnsl >&5 | conftest.c:158: warning: conflicting types for built-in function 'strcasecmp' | configure:39643: $? = 0 | configure:39650: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:39653: $? = 0 | configure:39660: test -s conftest | configure:39663: $? = 0 | configure:39677: result: yes | configure:39702: checking for strncasecmp | configure:39758: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lcrypt -lnsl >&5 | conftest.c:159: warning: conflicting types for built-in function 'strncasecmp' | configure:39764: $? = 0 | configure:39771: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:39774: $? = 0 | configure:39781: test -s conftest | configure:39784: $? = 0 | configure:39798: result: yes | configure:39815: checking whether strncasecmp is declared | configure:39845: gcc -c -g -O2 conftest.c >&5 | configure:39851: $? = 0 | configure:39858: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:39861: $? = 0 | configure:39868: test -s conftest.o | configure:39871: $? = 0 | configure:39883: result: yes | configure:39914: checking for strchrnul | configure:39970: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lcrypt -lnsl >&5 | configure:39976: $? = 0 | configure:39983: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:39986: $? = 0 | configure:39993: test -s conftest | configure:39996: $? = 0 | configure:40010: result: yes | configure:40065: checking for working strndup | configure:40225: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lcrypt -lnsl >&5 | configure:40228: $? = 0 | configure:40234: ./conftest | configure:40237: $? = 0 | configure:40253: result: yes | configure:40286: checking for working strnlen | configure:40330: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lcrypt -lnsl >&5 | configure:40333: $? = 0 | configure:40339: ./conftest | configure:40342: $? = 0 | configure:40358: result: yes | configure:40479: gcc -c -g -O2 conftest.c >&5 | configure:40485: $? = 0 | configure:40492: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:40495: $? = 0 | configure:40502: test -s conftest.o | configure:40505: $? = 0 | configure:40629: checking for ptrdiff_t | configure:40659: gcc -c -g -O2 conftest.c >&5 | configure:40665: $? = 0 | configure:40672: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:40675: $? = 0 | configure:40682: test -s conftest.o | configure:40685: $? = 0 | configure:40697: result: yes | configure:40720: checking for snprintf | configure:40776: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lcrypt -lnsl >&5 | conftest.c:164: warning: conflicting types for built-in function 'snprintf' | configure:40782: $? = 0 | configure:40789: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:40792: $? = 0 | configure:40799: test -s conftest | configure:40802: $? = 0 | configure:40816: result: yes | configure:40720: checking for wcslen | configure:40776: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lcrypt -lnsl >&5 | configure:40782: $? = 0 | configure:40789: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:40792: $? = 0 | configure:40799: test -s conftest | configure:40802: $? = 0 | configure:40816: result: yes | configure:40826: checking whether _snprintf is declared | configure:40857: gcc -c -g -O2 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:149: error: '_snprintf' undeclared (first use in this function) | conftest.c:149: error: (Each undeclared identifier is reported only once | conftest.c:149: error: for each function it appears in.) | configure:40863: $? = 1 | configure: failed program was: | | /* confdefs.h. */ | | #define PACKAGE_NAME "GNU Radius" | | #define PACKAGE_TARNAME "radius" | | #define PACKAGE_VERSION "1.5" | | #define PACKAGE_STRING "GNU Radius 1.5" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE "radius" | | #define VERSION "1.5" | | #define _GNU_SOURCE 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_LIBNSL 1 | | #define HAVE_LIBCRYPT 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_MALLOC_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_FILE_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_CTYPE_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_NETINET_IN_H 1 | | #define HAVE_ARPA_INET_H 1 | | #define HAVE_NETDB_H 1 | | #define HAVE_STDARG_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_TERMIO_H 1 | | #define HAVE_SGTTY_H 1 | | #define HAVE_CRYPT_H 1 | | #define HAVE_SYS_UIO_H 1 | | #define HAVE_SYS_SELECT_H 1 | | #define HAVE_LIBINTL_H 1 | | #define RETSIGTYPE void | | #define SIZEOF_UINT32_T 4 | | #define SIZEOF_UNSIGNED_LONG 4 | | #define SIZEOF_UNSIGNED_INT 4 | | #define HAVE_GETSPNAM 1 | | #define HAVE_STRUCT_SPWD 1 | | #define HAVE_STRUCT_SPWD_SP_EXPIRE 1 | | #define RETSIGTYPE void | | #define TIME_WITH_SYS_TIME 1 | | #define HAVE_STRFTIME 1 | | #define HAVE_VPRINTF 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_GETPAGESIZE 1 | | #define HAVE_MMAP 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define restrict __restrict | | #define HAVE_DECL_GETENV 1 | | #define HAVE_DECL_CLEARERR_UNLOCKED 1 | | #define HAVE_DECL_FEOF_UNLOCKED 1 | | #define HAVE_DECL_FERROR_UNLOCKED 1 | | #define HAVE_DECL_FFLUSH_UNLOCKED 1 | | #define HAVE_DECL_FGETS_UNLOCKED 1 | | #define HAVE_DECL_FPUTC_UNLOCKED 1 | | #define HAVE_DECL_FPUTS_UNLOCKED 1 | | #define HAVE_DECL_FREAD_UNLOCKED 1 | | #define HAVE_DECL_FWRITE_UNLOCKED 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | | #define HAVE_DECL_PUTC_UNLOCKED 1 | | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | | #define HAVE_FLOCKFILE 1 | | #define HAVE_FUNLOCKFILE 1 | | #define HAVE_ISBLANK 1 | | #define HAVE_ISWCTYPE 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_WCRTOMB 1 | | #define HAVE_WCSCOLL 1 | | #define HAVE_SLEEP 1 | | #define HAVE_STRERROR 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_FLOAT_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_SYSEXITS_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_INCLUDE_NEXT 1 | | #define HAVE_DECL_GETDELIM 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE__BOOL 1 | | #define HAVE_STDBOOL_H 1 | | #define HAVE_LONG_LONG_INT 1 | | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | | #define HAVE_DECL_STRNDUP 1 | | #define HAVE_DECL_STRNLEN 1 | | #define HAVE_WCHAR_T 1 | | #define HAVE_WINT_T 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_LONG_LONG 1 | | #define HAVE_INTMAX_T 1 | | #define HAVE_DECL_VSNPRINTF 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_ALLOCA_H 1 | | #define __GETOPT_PREFIX rpl_ | | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 1 | | #define HAVE_PROGRAM_INVOCATION_NAME 1 | | #define HAVE_PROGRAM_INVOCATION_SHORT_NAME 1 | | #define HAVE_GETDELIM 1 | | #define HAVE_DECL_GETLINE 1 | | #define __GETOPT_PREFIX rpl_ | | #define HAVE_STDLIB_H 1 | | #define HAVE_MALLOC 1 | | #define HAVE_MEMPCPY 1 | | #define HAVE_OBSTACK 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRCASECMP 1 | | #define HAVE_STRNCASECMP 1 | | #define HAVE_DECL_STRNCASECMP 1 | | #define HAVE_STRCHRNUL 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PTRDIFF_T 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_WCSLEN 1 | | /* end confdefs.h. */ | | #include | | | | int | | main () | | { | | #ifndef _snprintf | | char *p = (char *) _snprintf; | | return !p; | | #endif | | | | ; | | return 0; | | } | configure:40895: result: no | configure:40924: checking for vasprintf | configure:40980: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lcrypt -lnsl >&5 | configure:40986: $? = 0 | configure:40993: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:40996: $? = 0 | configure:41003: test -s conftest | configure:41006: $? = 0 | configure:41020: result: yes | configure:41060: checking for vsnprintf | configure:41116: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lcrypt -lnsl >&5 | conftest.c:168: warning: conflicting types for built-in function 'vsnprintf' | configure:41122: $? = 0 | configure:41129: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:41132: $? = 0 | configure:41139: test -s conftest | configure:41142: $? = 0 | configure:41156: result: yes | configure:41192: checking whether is standalone | configure:41207: gcc -c -g -O2 conftest.c >&5 | configure:41213: $? = 0 | configure:41220: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:41223: $? = 0 | configure:41230: test -s conftest.o | configure:41233: $? = 0 | configure:41245: result: yes | configure:41416: checking for stdint.h | configure:41422: result: yes | configure:41589: checking whether NLS is requested | configure:41598: result: yes | configure:41636: checking for msgfmt | configure: trying /usr/bin/msgfmt... | 0 translated messages. | configure:41668: result: /usr/bin/msgfmt | configure:41677: checking for gmsgfmt | configure:41708: result: /usr/bin/msgfmt | configure:41759: checking for xgettext | configure: trying /usr/bin/xgettext... | /usr/bin/xgettext: warning: file `/dev/null' extension `' is unknown; will try C | configure:41791: result: /usr/bin/xgettext | configure:41837: checking for msgmerge | configure: trying /usr/bin/msgmerge... | configure:41868: result: /usr/bin/msgmerge | configure:41922: checking for ld used by GCC | configure:41986: result: /usr/bin/ld | configure:41995: checking if the linker (/usr/bin/ld) is GNU ld | configure:42008: result: yes | configure:42015: checking for shared library run path origin | configure:42028: result: done | configure:42529: checking for CFPreferencesCopyAppValue | configure:42557: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lcrypt -lnsl -Wl,-framework -Wl,CoreFoundation >&5 | conftest.c:147:42: error: CoreFoundation/CFPreferences.h: No such file or directory | conftest.c: In function 'main': | conftest.c:151: error: 'NULL' undeclared (first use in this function) | conftest.c:151: error: (Each undeclared identifier is reported only once | conftest.c:151: error: for each function it appears in.) | configure:42563: $? = 1 | configure: failed program was: | | /* confdefs.h. */ | | #define PACKAGE_NAME "GNU Radius" | | #define PACKAGE_TARNAME "radius" | | #define PACKAGE_VERSION "1.5" | | #define PACKAGE_STRING "GNU Radius 1.5" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE "radius" | | #define VERSION "1.5" | | #define _GNU_SOURCE 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_LIBNSL 1 | | #define HAVE_LIBCRYPT 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_MALLOC_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_FILE_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_CTYPE_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_NETINET_IN_H 1 | | #define HAVE_ARPA_INET_H 1 | | #define HAVE_NETDB_H 1 | | #define HAVE_STDARG_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_TERMIO_H 1 | | #define HAVE_SGTTY_H 1 | | #define HAVE_CRYPT_H 1 | | #define HAVE_SYS_UIO_H 1 | | #define HAVE_SYS_SELECT_H 1 | | #define HAVE_LIBINTL_H 1 | | #define RETSIGTYPE void | | #define SIZEOF_UINT32_T 4 | | #define SIZEOF_UNSIGNED_LONG 4 | | #define SIZEOF_UNSIGNED_INT 4 | | #define HAVE_GETSPNAM 1 | | #define HAVE_STRUCT_SPWD 1 | | #define HAVE_STRUCT_SPWD_SP_EXPIRE 1 | | #define RETSIGTYPE void | | #define TIME_WITH_SYS_TIME 1 | | #define HAVE_STRFTIME 1 | | #define HAVE_VPRINTF 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_GETPAGESIZE 1 | | #define HAVE_MMAP 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define restrict __restrict | | #define HAVE_DECL_GETENV 1 | | #define HAVE_DECL_CLEARERR_UNLOCKED 1 | | #define HAVE_DECL_FEOF_UNLOCKED 1 | | #define HAVE_DECL_FERROR_UNLOCKED 1 | | #define HAVE_DECL_FFLUSH_UNLOCKED 1 | | #define HAVE_DECL_FGETS_UNLOCKED 1 | | #define HAVE_DECL_FPUTC_UNLOCKED 1 | | #define HAVE_DECL_FPUTS_UNLOCKED 1 | | #define HAVE_DECL_FREAD_UNLOCKED 1 | | #define HAVE_DECL_FWRITE_UNLOCKED 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | | #define HAVE_DECL_PUTC_UNLOCKED 1 | | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | | #define HAVE_FLOCKFILE 1 | | #define HAVE_FUNLOCKFILE 1 | | #define HAVE_ISBLANK 1 | | #define HAVE_ISWCTYPE 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_WCRTOMB 1 | | #define HAVE_WCSCOLL 1 | | #define HAVE_SLEEP 1 | | #define HAVE_STRERROR 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_FLOAT_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_SYSEXITS_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_INCLUDE_NEXT 1 | | #define HAVE_DECL_GETDELIM 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE__BOOL 1 | | #define HAVE_STDBOOL_H 1 | | #define HAVE_LONG_LONG_INT 1 | | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | | #define HAVE_DECL_STRNDUP 1 | | #define HAVE_DECL_STRNLEN 1 | | #define HAVE_WCHAR_T 1 | | #define HAVE_WINT_T 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_LONG_LONG 1 | | #define HAVE_INTMAX_T 1 | | #define HAVE_DECL_VSNPRINTF 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_ALLOCA_H 1 | | #define __GETOPT_PREFIX rpl_ | | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 1 | | #define HAVE_PROGRAM_INVOCATION_NAME 1 | | #define HAVE_PROGRAM_INVOCATION_SHORT_NAME 1 | | #define HAVE_GETDELIM 1 | | #define HAVE_DECL_GETLINE 1 | | #define __GETOPT_PREFIX rpl_ | | #define HAVE_STDLIB_H 1 | | #define HAVE_MALLOC 1 | | #define HAVE_MEMPCPY 1 | | #define HAVE_OBSTACK 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRCASECMP 1 | | #define HAVE_STRNCASECMP 1 | | #define HAVE_DECL_STRNCASECMP 1 | | #define HAVE_STRCHRNUL 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PTRDIFF_T 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_WCSLEN 1 | | #define HAVE_DECL__SNPRINTF 0 | | #define HAVE_VASPRINTF 1 | | #define HAVE_VSNPRINTF 1 | | #define HAVE_STDINT_H 1 | | /* end confdefs.h. */ | | #include | | int | | main () | | { | | CFPreferencesCopyAppValue(NULL, NULL) | | ; | | return 0; | | } | configure:42597: result: no | configure:42606: checking for CFLocaleCopyCurrent | configure:42634: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lcrypt -lnsl -Wl,-framework -Wl,CoreFoundation >&5 | conftest.c:147:37: error: CoreFoundation/CFLocale.h: No such file or directory | configure:42640: $? = 1 | configure: failed program was: | | /* confdefs.h. */ | | #define PACKAGE_NAME "GNU Radius" | | #define PACKAGE_TARNAME "radius" | | #define PACKAGE_VERSION "1.5" | | #define PACKAGE_STRING "GNU Radius 1.5" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE "radius" | | #define VERSION "1.5" | | #define _GNU_SOURCE 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_LIBNSL 1 | | #define HAVE_LIBCRYPT 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_MALLOC_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_FILE_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_CTYPE_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_NETINET_IN_H 1 | | #define HAVE_ARPA_INET_H 1 | | #define HAVE_NETDB_H 1 | | #define HAVE_STDARG_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_TERMIO_H 1 | | #define HAVE_SGTTY_H 1 | | #define HAVE_CRYPT_H 1 | | #define HAVE_SYS_UIO_H 1 | | #define HAVE_SYS_SELECT_H 1 | | #define HAVE_LIBINTL_H 1 | | #define RETSIGTYPE void | | #define SIZEOF_UINT32_T 4 | | #define SIZEOF_UNSIGNED_LONG 4 | | #define SIZEOF_UNSIGNED_INT 4 | | #define HAVE_GETSPNAM 1 | | #define HAVE_STRUCT_SPWD 1 | | #define HAVE_STRUCT_SPWD_SP_EXPIRE 1 | | #define RETSIGTYPE void | | #define TIME_WITH_SYS_TIME 1 | | #define HAVE_STRFTIME 1 | | #define HAVE_VPRINTF 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_GETPAGESIZE 1 | | #define HAVE_MMAP 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define restrict __restrict | | #define HAVE_DECL_GETENV 1 | | #define HAVE_DECL_CLEARERR_UNLOCKED 1 | | #define HAVE_DECL_FEOF_UNLOCKED 1 | | #define HAVE_DECL_FERROR_UNLOCKED 1 | | #define HAVE_DECL_FFLUSH_UNLOCKED 1 | | #define HAVE_DECL_FGETS_UNLOCKED 1 | | #define HAVE_DECL_FPUTC_UNLOCKED 1 | | #define HAVE_DECL_FPUTS_UNLOCKED 1 | | #define HAVE_DECL_FREAD_UNLOCKED 1 | | #define HAVE_DECL_FWRITE_UNLOCKED 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | | #define HAVE_DECL_PUTC_UNLOCKED 1 | | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | | #define HAVE_FLOCKFILE 1 | | #define HAVE_FUNLOCKFILE 1 | | #define HAVE_ISBLANK 1 | | #define HAVE_ISWCTYPE 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_WCRTOMB 1 | | #define HAVE_WCSCOLL 1 | | #define HAVE_SLEEP 1 | | #define HAVE_STRERROR 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_FLOAT_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_SYSEXITS_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_INCLUDE_NEXT 1 | | #define HAVE_DECL_GETDELIM 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE__BOOL 1 | | #define HAVE_STDBOOL_H 1 | | #define HAVE_LONG_LONG_INT 1 | | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | | #define HAVE_DECL_STRNDUP 1 | | #define HAVE_DECL_STRNLEN 1 | | #define HAVE_WCHAR_T 1 | | #define HAVE_WINT_T 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_LONG_LONG 1 | | #define HAVE_INTMAX_T 1 | | #define HAVE_DECL_VSNPRINTF 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_ALLOCA_H 1 | | #define __GETOPT_PREFIX rpl_ | | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 1 | | #define HAVE_PROGRAM_INVOCATION_NAME 1 | | #define HAVE_PROGRAM_INVOCATION_SHORT_NAME 1 | | #define HAVE_GETDELIM 1 | | #define HAVE_DECL_GETLINE 1 | | #define __GETOPT_PREFIX rpl_ | | #define HAVE_STDLIB_H 1 | | #define HAVE_MALLOC 1 | | #define HAVE_MEMPCPY 1 | | #define HAVE_OBSTACK 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRCASECMP 1 | | #define HAVE_STRNCASECMP 1 | | #define HAVE_DECL_STRNCASECMP 1 | | #define HAVE_STRCHRNUL 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PTRDIFF_T 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_WCSLEN 1 | | #define HAVE_DECL__SNPRINTF 0 | | #define HAVE_VASPRINTF 1 | | #define HAVE_VSNPRINTF 1 | | #define HAVE_STDINT_H 1 | | /* end confdefs.h. */ | | #include | | int | | main () | | { | | CFLocaleCopyCurrent(); | | ; | | return 0; | | } | configure:42674: result: no | configure:42725: checking for GNU gettext in libc | configure:42755: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lcrypt -lnsl >&5 | configure:42761: $? = 0 | configure:42768: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:42771: $? = 0 | configure:42778: test -s conftest | configure:42781: $? = 0 | configure:42795: result: yes | configure:43743: checking whether to use NLS | configure:43745: result: yes | configure:43748: checking where the gettext function comes from | configure:43759: result: libc | configure:43851: checking for setsid | configure:43907: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lcrypt -lnsl >&5 | configure:43913: $? = 0 | configure:43920: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:43923: $? = 0 | configure:43930: test -s conftest | configure:43933: $? = 0 | configure:43947: result: yes | configure:43851: checking for gethostname | configure:43907: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lcrypt -lnsl >&5 | configure:43913: $? = 0 | configure:43920: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:43923: $? = 0 | configure:43930: test -s conftest | configure:43933: $? = 0 | configure:43947: result: yes | configure:43851: checking for gettimeofday | configure:43907: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lcrypt -lnsl >&5 | configure:43913: $? = 0 | configure:43920: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:43923: $? = 0 | configure:43930: test -s conftest | configure:43933: $? = 0 | configure:43947: result: yes | configure:43851: checking for mkdir | configure:43907: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lcrypt -lnsl >&5 | configure:43913: $? = 0 | configure:43920: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:43923: $? = 0 | configure:43930: test -s conftest | configure:43933: $? = 0 | configure:43947: result: yes | configure:43851: checking for mktime | configure:43907: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lcrypt -lnsl >&5 | configure:43913: $? = 0 | configure:43920: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:43923: $? = 0 | configure:43930: test -s conftest | configure:43933: $? = 0 | configure:43947: result: yes | configure:43851: checking for select | configure:43907: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lcrypt -lnsl >&5 | configure:43913: $? = 0 | configure:43920: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:43923: $? = 0 | configure:43930: test -s conftest | configure:43933: $? = 0 | configure:43947: result: yes | configure:43851: checking for socket | configure:43907: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lcrypt -lnsl >&5 | configure:43913: $? = 0 | configure:43920: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:43923: $? = 0 | configure:43930: test -s conftest | configure:43933: $? = 0 | configure:43947: result: yes | configure:43851: checking for strdup | configure:43907: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lcrypt -lnsl >&5 | conftest.c:180: warning: conflicting types for built-in function 'strdup' | configure:43913: $? = 0 | configure:43920: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:43923: $? = 0 | configure:43930: test -s conftest | configure:43933: $? = 0 | configure:43947: result: yes | configure:43851: checking for strtol | configure:43907: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lcrypt -lnsl >&5 | configure:43913: $? = 0 | configure:43920: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:43923: $? = 0 | configure:43930: test -s conftest | configure:43933: $? = 0 | configure:43947: result: yes | configure:43851: checking for lockf | configure:43907: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lcrypt -lnsl >&5 | configure:43913: $? = 0 | configure:43920: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:43923: $? = 0 | configure:43930: test -s conftest | configure:43933: $? = 0 | configure:43947: result: yes | configure:43851: checking for setlocale | configure:43907: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lcrypt -lnsl >&5 | configure:43913: $? = 0 | configure:43920: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:43923: $? = 0 | configure:43930: test -s conftest | configure:43933: $? = 0 | configure:43947: result: yes | configure:43851: checking for bzero | configure:43907: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lcrypt -lnsl >&5 | conftest.c:184: warning: conflicting types for built-in function 'bzero' | configure:43913: $? = 0 | configure:43920: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:43923: $? = 0 | configure:43930: test -s conftest | configure:43933: $? = 0 | configure:43947: result: yes | configure:43851: checking for inet_ntoa | configure:43907: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lcrypt -lnsl >&5 | configure:43913: $? = 0 | configure:43920: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:43923: $? = 0 | configure:43930: test -s conftest | configure:43933: $? = 0 | configure:43947: result: yes | configure:43851: checking for inet_aton | configure:43907: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lcrypt -lnsl >&5 | configure:43913: $? = 0 | configure:43920: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:43923: $? = 0 | configure:43930: test -s conftest | configure:43933: $? = 0 | configure:43947: result: yes | configure:43851: checking for setvbuf | configure:43907: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lcrypt -lnsl >&5 | configure:43913: $? = 0 | configure:43920: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:43923: $? = 0 | configure:43930: test -s conftest | configure:43933: $? = 0 | configure:43947: result: yes | configure:43851: checking for setegid | configure:43907: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lcrypt -lnsl >&5 | configure:43913: $? = 0 | configure:43920: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:43923: $? = 0 | configure:43930: test -s conftest | configure:43933: $? = 0 | configure:43947: result: yes | configure:43851: checking for setregid | configure:43907: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lcrypt -lnsl >&5 | configure:43913: $? = 0 | configure:43920: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:43923: $? = 0 | configure:43930: test -s conftest | configure:43933: $? = 0 | configure:43947: result: yes | configure:43851: checking for setresgid | configure:43907: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lcrypt -lnsl >&5 | configure:43913: $? = 0 | configure:43920: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:43923: $? = 0 | configure:43930: test -s conftest | configure:43933: $? = 0 | configure:43947: result: yes | configure:43851: checking for seteuid | configure:43907: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lcrypt -lnsl >&5 | configure:43913: $? = 0 | configure:43920: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:43923: $? = 0 | configure:43930: test -s conftest | configure:43933: $? = 0 | configure:43947: result: yes | configure:43851: checking for setreuid | configure:43907: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lcrypt -lnsl >&5 | configure:43913: $? = 0 | configure:43920: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:43923: $? = 0 | configure:43930: test -s conftest | configure:43933: $? = 0 | configure:43947: result: yes | configure:43851: checking for getdtablesize | configure:43907: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lcrypt -lnsl >&5 | configure:43913: $? = 0 | configure:43920: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:43923: $? = 0 | configure:43930: test -s conftest | configure:43933: $? = 0 | configure:43947: result: yes | configure:43851: checking for sigaction | configure:43907: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lcrypt -lnsl >&5 | configure:43913: $? = 0 | configure:43920: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:43923: $? = 0 | configure:43930: test -s conftest | configure:43933: $? = 0 | configure:43947: result: yes | configure:43959: checking whether strncasecmp is declared | configure:44045: result: yes | configure:44061: checking whether strtok_r is declared | configure:44109: gcc -c -g -O2 conftest.c >&5 | configure:44115: $? = 0 | configure:44122: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:44125: $? = 0 | configure:44132: test -s conftest.o | configure:44135: $? = 0 | configure:44147: result: yes | configure:44163: checking whether localtime_r is declared | configure:44211: gcc -c -g -O2 conftest.c >&5 | configure:44217: $? = 0 | configure:44224: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:44227: $? = 0 | configure:44234: test -s conftest.o | configure:44237: $? = 0 | configure:44249: result: yes | configure:44265: checking whether asprintf is declared | configure:44313: gcc -c -g -O2 conftest.c >&5 | configure:44319: $? = 0 | configure:44326: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:44329: $? = 0 | configure:44336: test -s conftest.o | configure:44339: $? = 0 | configure:44351: result: yes | configure:44367: checking whether vasprintf is declared | configure:44415: gcc -c -g -O2 conftest.c >&5 | configure:44421: $? = 0 | configure:44428: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:44431: $? = 0 | configure:44438: test -s conftest.o | configure:44441: $? = 0 | configure:44453: result: yes | configure:44469: checking whether getline is declared | configure:44555: result: yes | configure:44571: checking whether crypt is declared | configure:44619: gcc -c -g -O2 conftest.c >&5 | configure:44625: $? = 0 | configure:44632: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:44635: $? = 0 | configure:44642: test -s conftest.o | configure:44645: $? = 0 | configure:44657: result: yes | configure:44673: checking whether crypt_set_format is declared | configure:44721: gcc -c -g -O2 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:202: error: 'crypt_set_format' undeclared (first use in this function) | conftest.c:202: error: (Each undeclared identifier is reported only once | conftest.c:202: error: for each function it appears in.) | configure:44727: $? = 1 | configure: failed program was: | | /* confdefs.h. */ | | #define PACKAGE_NAME "GNU Radius" | | #define PACKAGE_TARNAME "radius" | | #define PACKAGE_VERSION "1.5" | | #define PACKAGE_STRING "GNU Radius 1.5" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE "radius" | | #define VERSION "1.5" | | #define _GNU_SOURCE 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_LIBNSL 1 | | #define HAVE_LIBCRYPT 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_MALLOC_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_FILE_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_CTYPE_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_NETINET_IN_H 1 | | #define HAVE_ARPA_INET_H 1 | | #define HAVE_NETDB_H 1 | | #define HAVE_STDARG_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_TERMIO_H 1 | | #define HAVE_SGTTY_H 1 | | #define HAVE_CRYPT_H 1 | | #define HAVE_SYS_UIO_H 1 | | #define HAVE_SYS_SELECT_H 1 | | #define HAVE_LIBINTL_H 1 | | #define RETSIGTYPE void | | #define SIZEOF_UINT32_T 4 | | #define SIZEOF_UNSIGNED_LONG 4 | | #define SIZEOF_UNSIGNED_INT 4 | | #define HAVE_GETSPNAM 1 | | #define HAVE_STRUCT_SPWD 1 | | #define HAVE_STRUCT_SPWD_SP_EXPIRE 1 | | #define RETSIGTYPE void | | #define TIME_WITH_SYS_TIME 1 | | #define HAVE_STRFTIME 1 | | #define HAVE_VPRINTF 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_GETPAGESIZE 1 | | #define HAVE_MMAP 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define restrict __restrict | | #define HAVE_DECL_GETENV 1 | | #define HAVE_DECL_CLEARERR_UNLOCKED 1 | | #define HAVE_DECL_FEOF_UNLOCKED 1 | | #define HAVE_DECL_FERROR_UNLOCKED 1 | | #define HAVE_DECL_FFLUSH_UNLOCKED 1 | | #define HAVE_DECL_FGETS_UNLOCKED 1 | | #define HAVE_DECL_FPUTC_UNLOCKED 1 | | #define HAVE_DECL_FPUTS_UNLOCKED 1 | | #define HAVE_DECL_FREAD_UNLOCKED 1 | | #define HAVE_DECL_FWRITE_UNLOCKED 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | | #define HAVE_DECL_PUTC_UNLOCKED 1 | | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | | #define HAVE_FLOCKFILE 1 | | #define HAVE_FUNLOCKFILE 1 | | #define HAVE_ISBLANK 1 | | #define HAVE_ISWCTYPE 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_WCRTOMB 1 | | #define HAVE_WCSCOLL 1 | | #define HAVE_SLEEP 1 | | #define HAVE_STRERROR 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_FLOAT_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_SYSEXITS_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_INCLUDE_NEXT 1 | | #define HAVE_DECL_GETDELIM 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE__BOOL 1 | | #define HAVE_STDBOOL_H 1 | | #define HAVE_LONG_LONG_INT 1 | | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | | #define HAVE_DECL_STRNDUP 1 | | #define HAVE_DECL_STRNLEN 1 | | #define HAVE_WCHAR_T 1 | | #define HAVE_WINT_T 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_LONG_LONG 1 | | #define HAVE_INTMAX_T 1 | | #define HAVE_DECL_VSNPRINTF 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_ALLOCA_H 1 | | #define __GETOPT_PREFIX rpl_ | | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 1 | | #define HAVE_PROGRAM_INVOCATION_NAME 1 | | #define HAVE_PROGRAM_INVOCATION_SHORT_NAME 1 | | #define HAVE_GETDELIM 1 | | #define HAVE_DECL_GETLINE 1 | | #define __GETOPT_PREFIX rpl_ | | #define HAVE_STDLIB_H 1 | | #define HAVE_MALLOC 1 | | #define HAVE_MEMPCPY 1 | | #define HAVE_OBSTACK 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRCASECMP 1 | | #define HAVE_STRNCASECMP 1 | | #define HAVE_DECL_STRNCASECMP 1 | | #define HAVE_STRCHRNUL 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PTRDIFF_T 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_WCSLEN 1 | | #define HAVE_DECL__SNPRINTF 0 | | #define HAVE_VASPRINTF 1 | | #define HAVE_VSNPRINTF 1 | | #define HAVE_STDINT_H 1 | | #define ENABLE_NLS 1 | | #define HAVE_GETTEXT 1 | | #define HAVE_DCGETTEXT 1 | | #define HAVE_SETSID 1 | | #define HAVE_GETHOSTNAME 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_MKDIR 1 | | #define HAVE_MKTIME 1 | | #define HAVE_SELECT 1 | | #define HAVE_SOCKET 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRTOL 1 | | #define HAVE_LOCKF 1 | | #define HAVE_SETLOCALE 1 | | #define HAVE_BZERO 1 | | #define HAVE_INET_NTOA 1 | | #define HAVE_INET_ATON 1 | | #define HAVE_SETVBUF 1 | | #define HAVE_SETEGID 1 | | #define HAVE_SETREGID 1 | | #define HAVE_SETRESGID 1 | | #define HAVE_SETEUID 1 | | #define HAVE_SETREUID 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_DECL_STRNCASECMP 1 | | #define HAVE_DECL_STRTOK_R 1 | | #define HAVE_DECL_LOCALTIME_R 1 | | #define HAVE_DECL_ASPRINTF 1 | | #define HAVE_DECL_VASPRINTF 1 | | #define HAVE_DECL_GETLINE 1 | | #define HAVE_DECL_CRYPT 1 | | /* end confdefs.h. */ | | | | #define _REENTRANT | | #include | | #ifdef HAVE_STRINGS_H | | # include | | #endif | | #ifdef HAVE_SYS_TIME_H | | # include | | # ifdef TIME_WITH_SYS_TIME | | # include | | # endif | | #else | | # include | | #endif | | #if defined(HAVE_CRYPT_H) | | # include | | #endif | | #include | | | | int | | main () | | { | | #ifndef crypt_set_format | | char *p = (char *) crypt_set_format; | | return !p; | | #endif | | | | ; | | return 0; | | } | configure:44759: result: no | configure:44815: checking for tputs in -lncurses | configure:44850: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lncurses -lcrypt -lnsl >&5 | /usr/bin/ld: cannot find -lncurses | collect2: ld returned 1 exit status | configure:44856: $? = 1 | configure: failed program was: | | /* confdefs.h. */ | | #define PACKAGE_NAME "GNU Radius" | | #define PACKAGE_TARNAME "radius" | | #define PACKAGE_VERSION "1.5" | | #define PACKAGE_STRING "GNU Radius 1.5" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE "radius" | | #define VERSION "1.5" | | #define _GNU_SOURCE 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_LIBNSL 1 | | #define HAVE_LIBCRYPT 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_MALLOC_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_FILE_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_CTYPE_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_NETINET_IN_H 1 | | #define HAVE_ARPA_INET_H 1 | | #define HAVE_NETDB_H 1 | | #define HAVE_STDARG_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_TERMIO_H 1 | | #define HAVE_SGTTY_H 1 | | #define HAVE_CRYPT_H 1 | | #define HAVE_SYS_UIO_H 1 | | #define HAVE_SYS_SELECT_H 1 | | #define HAVE_LIBINTL_H 1 | | #define RETSIGTYPE void | | #define SIZEOF_UINT32_T 4 | | #define SIZEOF_UNSIGNED_LONG 4 | | #define SIZEOF_UNSIGNED_INT 4 | | #define HAVE_GETSPNAM 1 | | #define HAVE_STRUCT_SPWD 1 | | #define HAVE_STRUCT_SPWD_SP_EXPIRE 1 | | #define RETSIGTYPE void | | #define TIME_WITH_SYS_TIME 1 | | #define HAVE_STRFTIME 1 | | #define HAVE_VPRINTF 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_GETPAGESIZE 1 | | #define HAVE_MMAP 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define restrict __restrict | | #define HAVE_DECL_GETENV 1 | | #define HAVE_DECL_CLEARERR_UNLOCKED 1 | | #define HAVE_DECL_FEOF_UNLOCKED 1 | | #define HAVE_DECL_FERROR_UNLOCKED 1 | | #define HAVE_DECL_FFLUSH_UNLOCKED 1 | | #define HAVE_DECL_FGETS_UNLOCKED 1 | | #define HAVE_DECL_FPUTC_UNLOCKED 1 | | #define HAVE_DECL_FPUTS_UNLOCKED 1 | | #define HAVE_DECL_FREAD_UNLOCKED 1 | | #define HAVE_DECL_FWRITE_UNLOCKED 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | | #define HAVE_DECL_PUTC_UNLOCKED 1 | | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | | #define HAVE_FLOCKFILE 1 | | #define HAVE_FUNLOCKFILE 1 | | #define HAVE_ISBLANK 1 | | #define HAVE_ISWCTYPE 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_WCRTOMB 1 | | #define HAVE_WCSCOLL 1 | | #define HAVE_SLEEP 1 | | #define HAVE_STRERROR 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_FLOAT_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_SYSEXITS_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_INCLUDE_NEXT 1 | | #define HAVE_DECL_GETDELIM 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE__BOOL 1 | | #define HAVE_STDBOOL_H 1 | | #define HAVE_LONG_LONG_INT 1 | | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | | #define HAVE_DECL_STRNDUP 1 | | #define HAVE_DECL_STRNLEN 1 | | #define HAVE_WCHAR_T 1 | | #define HAVE_WINT_T 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_LONG_LONG 1 | | #define HAVE_INTMAX_T 1 | | #define HAVE_DECL_VSNPRINTF 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_ALLOCA_H 1 | | #define __GETOPT_PREFIX rpl_ | | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 1 | | #define HAVE_PROGRAM_INVOCATION_NAME 1 | | #define HAVE_PROGRAM_INVOCATION_SHORT_NAME 1 | | #define HAVE_GETDELIM 1 | | #define HAVE_DECL_GETLINE 1 | | #define __GETOPT_PREFIX rpl_ | | #define HAVE_STDLIB_H 1 | | #define HAVE_MALLOC 1 | | #define HAVE_MEMPCPY 1 | | #define HAVE_OBSTACK 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRCASECMP 1 | | #define HAVE_STRNCASECMP 1 | | #define HAVE_DECL_STRNCASECMP 1 | | #define HAVE_STRCHRNUL 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PTRDIFF_T 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_WCSLEN 1 | | #define HAVE_DECL__SNPRINTF 0 | | #define HAVE_VASPRINTF 1 | | #define HAVE_VSNPRINTF 1 | | #define HAVE_STDINT_H 1 | | #define ENABLE_NLS 1 | | #define HAVE_GETTEXT 1 | | #define HAVE_DCGETTEXT 1 | | #define HAVE_SETSID 1 | | #define HAVE_GETHOSTNAME 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_MKDIR 1 | | #define HAVE_MKTIME 1 | | #define HAVE_SELECT 1 | | #define HAVE_SOCKET 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRTOL 1 | | #define HAVE_LOCKF 1 | | #define HAVE_SETLOCALE 1 | | #define HAVE_BZERO 1 | | #define HAVE_INET_NTOA 1 | | #define HAVE_INET_ATON 1 | | #define HAVE_SETVBUF 1 | | #define HAVE_SETEGID 1 | | #define HAVE_SETREGID 1 | | #define HAVE_SETRESGID 1 | | #define HAVE_SETEUID 1 | | #define HAVE_SETREUID 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_DECL_STRNCASECMP 1 | | #define HAVE_DECL_STRTOK_R 1 | | #define HAVE_DECL_LOCALTIME_R 1 | | #define HAVE_DECL_ASPRINTF 1 | | #define HAVE_DECL_VASPRINTF 1 | | #define HAVE_DECL_GETLINE 1 | | #define HAVE_DECL_CRYPT 1 | | #define HAVE_DECL_CRYPT_SET_FORMAT 0 | | /* end confdefs.h. */ | | | | /* Override any GCC internal prototype to avoid an error. | | Use char because int might match the return type of a GCC | | builtin and then its argument prototype would still apply. */ | | #ifdef __cplusplus | | extern "C" | | #endif | | char tputs (); | | int | | main () | | { | | return tputs (); | | ; | | return 0; | | } | configure:44891: result: no | configure:44815: checking for tputs in -lcurses | configure:44850: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lcurses -lcrypt -lnsl >&5 | /usr/bin/ld: cannot find -lcurses | collect2: ld returned 1 exit status | configure:44856: $? = 1 | configure: failed program was: | | /* confdefs.h. */ | | #define PACKAGE_NAME "GNU Radius" | | #define PACKAGE_TARNAME "radius" | | #define PACKAGE_VERSION "1.5" | | #define PACKAGE_STRING "GNU Radius 1.5" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE "radius" | | #define VERSION "1.5" | | #define _GNU_SOURCE 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_LIBNSL 1 | | #define HAVE_LIBCRYPT 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_MALLOC_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_FILE_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_CTYPE_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_NETINET_IN_H 1 | | #define HAVE_ARPA_INET_H 1 | | #define HAVE_NETDB_H 1 | | #define HAVE_STDARG_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_TERMIO_H 1 | | #define HAVE_SGTTY_H 1 | | #define HAVE_CRYPT_H 1 | | #define HAVE_SYS_UIO_H 1 | | #define HAVE_SYS_SELECT_H 1 | | #define HAVE_LIBINTL_H 1 | | #define RETSIGTYPE void | | #define SIZEOF_UINT32_T 4 | | #define SIZEOF_UNSIGNED_LONG 4 | | #define SIZEOF_UNSIGNED_INT 4 | | #define HAVE_GETSPNAM 1 | | #define HAVE_STRUCT_SPWD 1 | | #define HAVE_STRUCT_SPWD_SP_EXPIRE 1 | | #define RETSIGTYPE void | | #define TIME_WITH_SYS_TIME 1 | | #define HAVE_STRFTIME 1 | | #define HAVE_VPRINTF 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_GETPAGESIZE 1 | | #define HAVE_MMAP 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define restrict __restrict | | #define HAVE_DECL_GETENV 1 | | #define HAVE_DECL_CLEARERR_UNLOCKED 1 | | #define HAVE_DECL_FEOF_UNLOCKED 1 | | #define HAVE_DECL_FERROR_UNLOCKED 1 | | #define HAVE_DECL_FFLUSH_UNLOCKED 1 | | #define HAVE_DECL_FGETS_UNLOCKED 1 | | #define HAVE_DECL_FPUTC_UNLOCKED 1 | | #define HAVE_DECL_FPUTS_UNLOCKED 1 | | #define HAVE_DECL_FREAD_UNLOCKED 1 | | #define HAVE_DECL_FWRITE_UNLOCKED 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | | #define HAVE_DECL_PUTC_UNLOCKED 1 | | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | | #define HAVE_FLOCKFILE 1 | | #define HAVE_FUNLOCKFILE 1 | | #define HAVE_ISBLANK 1 | | #define HAVE_ISWCTYPE 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_WCRTOMB 1 | | #define HAVE_WCSCOLL 1 | | #define HAVE_SLEEP 1 | | #define HAVE_STRERROR 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_FLOAT_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_SYSEXITS_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_INCLUDE_NEXT 1 | | #define HAVE_DECL_GETDELIM 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE__BOOL 1 | | #define HAVE_STDBOOL_H 1 | | #define HAVE_LONG_LONG_INT 1 | | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | | #define HAVE_DECL_STRNDUP 1 | | #define HAVE_DECL_STRNLEN 1 | | #define HAVE_WCHAR_T 1 | | #define HAVE_WINT_T 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_LONG_LONG 1 | | #define HAVE_INTMAX_T 1 | | #define HAVE_DECL_VSNPRINTF 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_ALLOCA_H 1 | | #define __GETOPT_PREFIX rpl_ | | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 1 | | #define HAVE_PROGRAM_INVOCATION_NAME 1 | | #define HAVE_PROGRAM_INVOCATION_SHORT_NAME 1 | | #define HAVE_GETDELIM 1 | | #define HAVE_DECL_GETLINE 1 | | #define __GETOPT_PREFIX rpl_ | | #define HAVE_STDLIB_H 1 | | #define HAVE_MALLOC 1 | | #define HAVE_MEMPCPY 1 | | #define HAVE_OBSTACK 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRCASECMP 1 | | #define HAVE_STRNCASECMP 1 | | #define HAVE_DECL_STRNCASECMP 1 | | #define HAVE_STRCHRNUL 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PTRDIFF_T 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_WCSLEN 1 | | #define HAVE_DECL__SNPRINTF 0 | | #define HAVE_VASPRINTF 1 | | #define HAVE_VSNPRINTF 1 | | #define HAVE_STDINT_H 1 | | #define ENABLE_NLS 1 | | #define HAVE_GETTEXT 1 | | #define HAVE_DCGETTEXT 1 | | #define HAVE_SETSID 1 | | #define HAVE_GETHOSTNAME 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_MKDIR 1 | | #define HAVE_MKTIME 1 | | #define HAVE_SELECT 1 | | #define HAVE_SOCKET 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRTOL 1 | | #define HAVE_LOCKF 1 | | #define HAVE_SETLOCALE 1 | | #define HAVE_BZERO 1 | | #define HAVE_INET_NTOA 1 | | #define HAVE_INET_ATON 1 | | #define HAVE_SETVBUF 1 | | #define HAVE_SETEGID 1 | | #define HAVE_SETREGID 1 | | #define HAVE_SETRESGID 1 | | #define HAVE_SETEUID 1 | | #define HAVE_SETREUID 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_DECL_STRNCASECMP 1 | | #define HAVE_DECL_STRTOK_R 1 | | #define HAVE_DECL_LOCALTIME_R 1 | | #define HAVE_DECL_ASPRINTF 1 | | #define HAVE_DECL_VASPRINTF 1 | | #define HAVE_DECL_GETLINE 1 | | #define HAVE_DECL_CRYPT 1 | | #define HAVE_DECL_CRYPT_SET_FORMAT 0 | | /* end confdefs.h. */ | | | | /* Override any GCC internal prototype to avoid an error. | | Use char because int might match the return type of a GCC | | builtin and then its argument prototype would still apply. */ | | #ifdef __cplusplus | | extern "C" | | #endif | | char tputs (); | | int | | main () | | { | | return tputs (); | | ; | | return 0; | | } | configure:44891: result: no | configure:44815: checking for tputs in -ltermcap | configure:44850: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -ltermcap -lcrypt -lnsl >&5 | /usr/bin/ld: cannot find -ltermcap | collect2: ld returned 1 exit status | configure:44856: $? = 1 | configure: failed program was: | | /* confdefs.h. */ | | #define PACKAGE_NAME "GNU Radius" | | #define PACKAGE_TARNAME "radius" | | #define PACKAGE_VERSION "1.5" | | #define PACKAGE_STRING "GNU Radius 1.5" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE "radius" | | #define VERSION "1.5" | | #define _GNU_SOURCE 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_LIBNSL 1 | | #define HAVE_LIBCRYPT 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_MALLOC_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_FILE_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_CTYPE_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_NETINET_IN_H 1 | | #define HAVE_ARPA_INET_H 1 | | #define HAVE_NETDB_H 1 | | #define HAVE_STDARG_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_TERMIO_H 1 | | #define HAVE_SGTTY_H 1 | | #define HAVE_CRYPT_H 1 | | #define HAVE_SYS_UIO_H 1 | | #define HAVE_SYS_SELECT_H 1 | | #define HAVE_LIBINTL_H 1 | | #define RETSIGTYPE void | | #define SIZEOF_UINT32_T 4 | | #define SIZEOF_UNSIGNED_LONG 4 | | #define SIZEOF_UNSIGNED_INT 4 | | #define HAVE_GETSPNAM 1 | | #define HAVE_STRUCT_SPWD 1 | | #define HAVE_STRUCT_SPWD_SP_EXPIRE 1 | | #define RETSIGTYPE void | | #define TIME_WITH_SYS_TIME 1 | | #define HAVE_STRFTIME 1 | | #define HAVE_VPRINTF 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_GETPAGESIZE 1 | | #define HAVE_MMAP 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define restrict __restrict | | #define HAVE_DECL_GETENV 1 | | #define HAVE_DECL_CLEARERR_UNLOCKED 1 | | #define HAVE_DECL_FEOF_UNLOCKED 1 | | #define HAVE_DECL_FERROR_UNLOCKED 1 | | #define HAVE_DECL_FFLUSH_UNLOCKED 1 | | #define HAVE_DECL_FGETS_UNLOCKED 1 | | #define HAVE_DECL_FPUTC_UNLOCKED 1 | | #define HAVE_DECL_FPUTS_UNLOCKED 1 | | #define HAVE_DECL_FREAD_UNLOCKED 1 | | #define HAVE_DECL_FWRITE_UNLOCKED 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | | #define HAVE_DECL_PUTC_UNLOCKED 1 | | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | | #define HAVE_FLOCKFILE 1 | | #define HAVE_FUNLOCKFILE 1 | | #define HAVE_ISBLANK 1 | | #define HAVE_ISWCTYPE 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_WCRTOMB 1 | | #define HAVE_WCSCOLL 1 | | #define HAVE_SLEEP 1 | | #define HAVE_STRERROR 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_FLOAT_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_SYSEXITS_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_INCLUDE_NEXT 1 | | #define HAVE_DECL_GETDELIM 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE__BOOL 1 | | #define HAVE_STDBOOL_H 1 | | #define HAVE_LONG_LONG_INT 1 | | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | | #define HAVE_DECL_STRNDUP 1 | | #define HAVE_DECL_STRNLEN 1 | | #define HAVE_WCHAR_T 1 | | #define HAVE_WINT_T 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_LONG_LONG 1 | | #define HAVE_INTMAX_T 1 | | #define HAVE_DECL_VSNPRINTF 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_ALLOCA_H 1 | | #define __GETOPT_PREFIX rpl_ | | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 1 | | #define HAVE_PROGRAM_INVOCATION_NAME 1 | | #define HAVE_PROGRAM_INVOCATION_SHORT_NAME 1 | | #define HAVE_GETDELIM 1 | | #define HAVE_DECL_GETLINE 1 | | #define __GETOPT_PREFIX rpl_ | | #define HAVE_STDLIB_H 1 | | #define HAVE_MALLOC 1 | | #define HAVE_MEMPCPY 1 | | #define HAVE_OBSTACK 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRCASECMP 1 | | #define HAVE_STRNCASECMP 1 | | #define HAVE_DECL_STRNCASECMP 1 | | #define HAVE_STRCHRNUL 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PTRDIFF_T 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_WCSLEN 1 | | #define HAVE_DECL__SNPRINTF 0 | | #define HAVE_VASPRINTF 1 | | #define HAVE_VSNPRINTF 1 | | #define HAVE_STDINT_H 1 | | #define ENABLE_NLS 1 | | #define HAVE_GETTEXT 1 | | #define HAVE_DCGETTEXT 1 | | #define HAVE_SETSID 1 | | #define HAVE_GETHOSTNAME 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_MKDIR 1 | | #define HAVE_MKTIME 1 | | #define HAVE_SELECT 1 | | #define HAVE_SOCKET 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRTOL 1 | | #define HAVE_LOCKF 1 | | #define HAVE_SETLOCALE 1 | | #define HAVE_BZERO 1 | | #define HAVE_INET_NTOA 1 | | #define HAVE_INET_ATON 1 | | #define HAVE_SETVBUF 1 | | #define HAVE_SETEGID 1 | | #define HAVE_SETREGID 1 | | #define HAVE_SETRESGID 1 | | #define HAVE_SETEUID 1 | | #define HAVE_SETREUID 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_DECL_STRNCASECMP 1 | | #define HAVE_DECL_STRTOK_R 1 | | #define HAVE_DECL_LOCALTIME_R 1 | | #define HAVE_DECL_ASPRINTF 1 | | #define HAVE_DECL_VASPRINTF 1 | | #define HAVE_DECL_GETLINE 1 | | #define HAVE_DECL_CRYPT 1 | | #define HAVE_DECL_CRYPT_SET_FORMAT 0 | | /* end confdefs.h. */ | | | | /* Override any GCC internal prototype to avoid an error. | | Use char because int might match the return type of a GCC | | builtin and then its argument prototype would still apply. */ | | #ifdef __cplusplus | | extern "C" | | #endif | | char tputs (); | | int | | main () | | { | | return tputs (); | | ; | | return 0; | | } | configure:44891: result: no | configure:44901: checking for readline in -lreadline | configure:44936: gcc -o conftest -g -O2 -Wl,-Bsymbolic-functions conftest.c -lreadline -lcrypt -lnsl >&5 | /usr/bin/ld: cannot find -lreadline | collect2: ld returned 1 exit status | configure:44942: $? = 1 | configure: failed program was: | | /* confdefs.h. */ | | #define PACKAGE_NAME "GNU Radius" | | #define PACKAGE_TARNAME "radius" | | #define PACKAGE_VERSION "1.5" | | #define PACKAGE_STRING "GNU Radius 1.5" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE "radius" | | #define VERSION "1.5" | | #define _GNU_SOURCE 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_LIBNSL 1 | | #define HAVE_LIBCRYPT 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_MALLOC_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_FILE_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_CTYPE_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_NETINET_IN_H 1 | | #define HAVE_ARPA_INET_H 1 | | #define HAVE_NETDB_H 1 | | #define HAVE_STDARG_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_TERMIO_H 1 | | #define HAVE_SGTTY_H 1 | | #define HAVE_CRYPT_H 1 | | #define HAVE_SYS_UIO_H 1 | | #define HAVE_SYS_SELECT_H 1 | | #define HAVE_LIBINTL_H 1 | | #define RETSIGTYPE void | | #define SIZEOF_UINT32_T 4 | | #define SIZEOF_UNSIGNED_LONG 4 | | #define SIZEOF_UNSIGNED_INT 4 | | #define HAVE_GETSPNAM 1 | | #define HAVE_STRUCT_SPWD 1 | | #define HAVE_STRUCT_SPWD_SP_EXPIRE 1 | | #define RETSIGTYPE void | | #define TIME_WITH_SYS_TIME 1 | | #define HAVE_STRFTIME 1 | | #define HAVE_VPRINTF 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_GETPAGESIZE 1 | | #define HAVE_MMAP 1 | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define restrict __restrict | | #define HAVE_DECL_GETENV 1 | | #define HAVE_DECL_CLEARERR_UNLOCKED 1 | | #define HAVE_DECL_FEOF_UNLOCKED 1 | | #define HAVE_DECL_FERROR_UNLOCKED 1 | | #define HAVE_DECL_FFLUSH_UNLOCKED 1 | | #define HAVE_DECL_FGETS_UNLOCKED 1 | | #define HAVE_DECL_FPUTC_UNLOCKED 1 | | #define HAVE_DECL_FPUTS_UNLOCKED 1 | | #define HAVE_DECL_FREAD_UNLOCKED 1 | | #define HAVE_DECL_FWRITE_UNLOCKED 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | | #define HAVE_DECL_PUTC_UNLOCKED 1 | | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | | #define HAVE_FLOCKFILE 1 | | #define HAVE_FUNLOCKFILE 1 | | #define HAVE_ISBLANK 1 | | #define HAVE_ISWCTYPE 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_WCRTOMB 1 | | #define HAVE_WCSCOLL 1 | | #define HAVE_SLEEP 1 | | #define HAVE_STRERROR 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_FLOAT_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_SYSEXITS_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_INCLUDE_NEXT 1 | | #define HAVE_DECL_GETDELIM 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE__BOOL 1 | | #define HAVE_STDBOOL_H 1 | | #define HAVE_LONG_LONG_INT 1 | | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | | #define HAVE_DECL_STRNDUP 1 | | #define HAVE_DECL_STRNLEN 1 | | #define HAVE_WCHAR_T 1 | | #define HAVE_WINT_T 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_LONG_LONG 1 | | #define HAVE_INTMAX_T 1 | | #define HAVE_DECL_VSNPRINTF 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_ALLOCA_H 1 | | #define __GETOPT_PREFIX rpl_ | | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 1 | | #define HAVE_PROGRAM_INVOCATION_NAME 1 | | #define HAVE_PROGRAM_INVOCATION_SHORT_NAME 1 | | #define HAVE_GETDELIM 1 | | #define HAVE_DECL_GETLINE 1 | | #define __GETOPT_PREFIX rpl_ | | #define HAVE_STDLIB_H 1 | | #define HAVE_MALLOC 1 | | #define HAVE_MEMPCPY 1 | | #define HAVE_OBSTACK 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRCASECMP 1 | | #define HAVE_STRNCASECMP 1 | | #define HAVE_DECL_STRNCASECMP 1 | | #define HAVE_STRCHRNUL 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PTRDIFF_T 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_WCSLEN 1 | | #define HAVE_DECL__SNPRINTF 0 | | #define HAVE_VASPRINTF 1 | | #define HAVE_VSNPRINTF 1 | | #define HAVE_STDINT_H 1 | | #define ENABLE_NLS 1 | | #define HAVE_GETTEXT 1 | | #define HAVE_DCGETTEXT 1 | | #define HAVE_SETSID 1 | | #define HAVE_GETHOSTNAME 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_MKDIR 1 | | #define HAVE_MKTIME 1 | | #define HAVE_SELECT 1 | | #define HAVE_SOCKET 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRTOL 1 | | #define HAVE_LOCKF 1 | | #define HAVE_SETLOCALE 1 | | #define HAVE_BZERO 1 | | #define HAVE_INET_NTOA 1 | | #define HAVE_INET_ATON 1 | | #define HAVE_SETVBUF 1 | | #define HAVE_SETEGID 1 | | #define HAVE_SETREGID 1 | | #define HAVE_SETRESGID 1 | | #define HAVE_SETEUID 1 | | #define HAVE_SETREUID 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_DECL_STRNCASECMP 1 | | #define HAVE_DECL_STRTOK_R 1 | | #define HAVE_DECL_LOCALTIME_R 1 | | #define HAVE_DECL_ASPRINTF 1 | | #define HAVE_DECL_VASPRINTF 1 | | #define HAVE_DECL_GETLINE 1 | | #define HAVE_DECL_CRYPT 1 | | #define HAVE_DECL_CRYPT_SET_FORMAT 0 | | /* end confdefs.h. */ | | | | /* Override any GCC internal prototype to avoid an error. | | Use char because int might match the return type of a GCC | | builtin and then its argument prototype would still apply. */ | | #ifdef __cplusplus | | extern "C" | | #endif | | char readline (); | | int | | main () | | { | | return readline (); | | ; | | return 0; | | } | configure:44976: result: no | configure:45273: WARNING: readline requested but does not seem to be installed | configure:45282: checking whether struct hostent has h_addr_list field | configure:45309: gcc -c -g -O2 conftest.c >&5 | configure:45315: $? = 0 | configure:45322: test -z "$ac_c_werror_flag" || test ! -s conftest.err | configure:45325: $? = 0 | configure:45332: test -s conftest.o | configure:45335: $? = 0 | configure:45347: result: yes | configure:45383: checking for log directory path | configure:45404: result: /var/log | configure:45412: checking for pidfile directory path | configure:45431: result: /var/run | configure:45448: checking whether to build radius daemon | configure:45462: result: yes | configure:45465: checking whether to build client programs | configure:45488: result: no | configure:45771: checking authentication port number | configure:45793: result: Default ports are 1812/1813 | configure:47674: creating ./config.status | | ## ---------------------- ## | ## Running config.status. ## | ## ---------------------- ## | | This file was extended by GNU Radius config.status 1.5, which was | generated by GNU Autoconf 2.60. Invocation command line was | | CONFIG_FILES = | CONFIG_HEADERS = | CONFIG_LINKS = | CONFIG_COMMANDS = | $ ./config.status | | on rabbit | | config.status:982: creating tests/Makefile | config.status:982: creating tests/atlocal | config.status:982: creating tests/raddb/Makefile | config.status:982: creating tests/proxy/Makefile | config.status:982: creating Makefile | config.status:982: creating po/Makefile.in | config.status:982: creating raddb/client.conf | config.status:982: creating raddb/config | config.status:982: creating include/Makefile | config.status:982: creating include/radius/Makefile | config.status:982: creating include/snmp/Makefile | config.status:982: creating gnu/Makefile | config.status:982: creating lib/Makefile | config.status:982: creating sql/Makefile | config.status:982: creating snmplib/Makefile | config.status:982: creating radscm/Makefile | config.status:982: creating radiusd/Makefile | config.status:982: creating radlast/Makefile | config.status:982: creating radwho/Makefile | config.status:982: creating radzap/Makefile | config.status:982: creating radscripts/Makefile | config.status:982: creating doc/Makefile | config.status:982: creating doc/texinfo/Makefile | config.status:982: creating doc/man/Makefile | config.status:982: creating doc/man/config.so | config.status:982: creating doc/rfc/Makefile | config.status:982: creating mibs/Makefile | config.status:982: creating elisp/Makefile | config.status:982: creating raddb/Makefile | config.status:982: creating db/Makefile | config.status:982: creating client/Makefile | config.status:982: creating client/nas/Makefile | config.status:982: creating client/pam_radius/Makefile | config.status:982: creating radtest/Makefile | config.status:982: creating examples/Makefile | config.status:982: creating scripts/Makefile | config.status:982: creating scripts/guile/Makefile | config.status:982: creating scripts/guile/1.6/Makefile | config.status:982: creating contrib/Makefile | config.status:982: creating contrib/web-radact/Makefile | config.status:982: creating contrib/passcvt/Makefile | config.status:982: creating contrib/passwd_to_db/Makefile | config.status:982: creating contrib/radsend/Makefile | config.status:982: creating contrib/php/Makefile | config.status:982: creating config.h | config.status:1437: executing depfiles commands | config.status:1437: executing tests/atconfig commands | config.status:1437: executing po-directories commands | config.status:1437: executing status commands | | ## ---------------- ## | ## Cache variables. ## | ## ---------------- ## | | ac_cv_build=i486-pc-linux-gnu | ac_cv_c_compiler_gnu=yes | ac_cv_c_const=yes | ac_cv_c_inline=inline | ac_cv_c_restrict=__restrict | ac_cv_cxx_compiler_gnu=yes | ac_cv_decl_EOVERFLOW=yes | ac_cv_env_APXS_set= | ac_cv_env_APXS_value= | ac_cv_env_CCC_set= | ac_cv_env_CCC_value= | ac_cv_env_CC_set= | ac_cv_env_CC_value= | ac_cv_env_CFLAGS_set=set | ac_cv_env_CFLAGS_value='-g -O2' | ac_cv_env_CPPFLAGS_set=set | ac_cv_env_CPPFLAGS_value= | ac_cv_env_CPP_set= | ac_cv_env_CPP_value= | ac_cv_env_CXXCPP_set= | ac_cv_env_CXXCPP_value= | ac_cv_env_CXXFLAGS_set=set | ac_cv_env_CXXFLAGS_value='-g -O2' | ac_cv_env_CXX_set= | ac_cv_env_CXX_value= | ac_cv_env_EMACSLOADPATH_set= | ac_cv_env_EMACSLOADPATH_value= | ac_cv_env_EMACS_set= | ac_cv_env_EMACS_value= | ac_cv_env_F77_set= | ac_cv_env_F77_value= | ac_cv_env_FFLAGS_set=set | ac_cv_env_FFLAGS_value='-g -O2' | ac_cv_env_LDFLAGS_set=set | ac_cv_env_LDFLAGS_value=-Wl,-Bsymbolic-functions | ac_cv_env_LEAK_DETECTOR_set= | ac_cv_env_LEAK_DETECTOR_value= | ac_cv_env_PS_set= | ac_cv_env_PS_value= | ac_cv_env_YACC_set= | ac_cv_env_YACC_value= | ac_cv_env_YFLAGS_set= | ac_cv_env_YFLAGS_value= | ac_cv_env_build_alias_set=set | ac_cv_env_build_alias_value=i486-linux-gnu | ac_cv_env_host_alias_set= | ac_cv_env_host_alias_value= | ac_cv_env_target_alias_set= | ac_cv_env_target_alias_value= | ac_cv_f77_compiler_gnu=no | ac_cv_func__doprnt=no | ac_cv_func_alloca_works=yes | ac_cv_func_bzero=yes | ac_cv_func_flockfile=yes | ac_cv_func_funlockfile=yes | ac_cv_func_getdelim=yes | ac_cv_func_getdtablesize=yes | ac_cv_func_gethostname=yes | ac_cv_func_getline=yes | ac_cv_func_getopt_long_only=yes | ac_cv_func_getpagesize=yes | ac_cv_func_getspnam=yes | ac_cv_func_gettimeofday=yes | ac_cv_func_inet_aton=yes | ac_cv_func_inet_ntoa=yes | ac_cv_func_isblank=yes | ac_cv_func_iswcntrl=yes | ac_cv_func_iswctype=yes | ac_cv_func_lockf=yes | ac_cv_func_malloc_0_nonnull=yes | ac_cv_func_mbrtowc=yes | ac_cv_func_mempcpy=yes | ac_cv_func_mkdir=yes | ac_cv_func_mktime=yes | ac_cv_func_mmap_fixed_mapped=yes | ac_cv_func_obstack=yes | ac_cv_func_select=yes | ac_cv_func_setegid=yes | ac_cv_func_seteuid=yes | ac_cv_func_setlocale=yes | ac_cv_func_setregid=yes | ac_cv_func_setresgid=yes | ac_cv_func_setreuid=yes | ac_cv_func_setsid=yes | ac_cv_func_setvbuf=yes | ac_cv_func_sigaction=yes | ac_cv_func_sleep=yes | ac_cv_func_snprintf=yes | ac_cv_func_socket=yes | ac_cv_func_strcasecmp=yes | ac_cv_func_strchrnul=yes | ac_cv_func_strdup=yes | ac_cv_func_strerror=yes | ac_cv_func_strftime=yes | ac_cv_func_strncasecmp=yes | ac_cv_func_strnlen_working=yes | ac_cv_func_strtol=yes | ac_cv_func_vasnprintf=no | ac_cv_func_vasprintf=yes | ac_cv_func_vprintf=yes | ac_cv_func_vsnprintf=yes | ac_cv_func_wcrtomb=yes | ac_cv_func_wcscoll=yes | ac_cv_func_wcslen=yes | ac_cv_gnu_library_2_1=yes | ac_cv_have_decl__snprintf=no | ac_cv_have_decl_asprintf=yes | ac_cv_have_decl_clearerr_unlocked=yes | ac_cv_have_decl_crypt=yes | ac_cv_have_decl_crypt_set_format=no | ac_cv_have_decl_feof_unlocked=yes | ac_cv_have_decl_ferror_unlocked=yes | ac_cv_have_decl_fflush_unlocked=yes | ac_cv_have_decl_fgets_unlocked=yes | ac_cv_have_decl_fputc_unlocked=yes | ac_cv_have_decl_fputs_unlocked=yes | ac_cv_have_decl_fread_unlocked=yes | ac_cv_have_decl_fwrite_unlocked=yes | ac_cv_have_decl_getc_unlocked=yes | ac_cv_have_decl_getchar_unlocked=yes | ac_cv_have_decl_getdelim=yes | ac_cv_have_decl_getenv=yes | ac_cv_have_decl_getline=yes | ac_cv_have_decl_localtime_r=yes | ac_cv_have_decl_optreset=no | ac_cv_have_decl_program_invocation_name=yes | ac_cv_have_decl_program_invocation_short_name=yes | ac_cv_have_decl_putc_unlocked=yes | ac_cv_have_decl_putchar_unlocked=yes | ac_cv_have_decl_strncasecmp=yes | ac_cv_have_decl_strndup=yes | ac_cv_have_decl_strnlen=yes | ac_cv_have_decl_strtok_r=yes | ac_cv_have_decl_vasprintf=yes | ac_cv_have_decl_vsnprintf=yes | ac_cv_header_arpa_inet_h=yes | ac_cv_header_crypt_h=yes | ac_cv_header_ctype_h=yes | ac_cv_header_dlfcn_h=yes | ac_cv_header_fcntl_h=yes | ac_cv_header_features_h=yes | ac_cv_header_float_h=yes | ac_cv_header_getopt_h=yes | ac_cv_header_inttypes_h=yes | ac_cv_header_libintl_h=yes | ac_cv_header_linewrap_h=no | ac_cv_header_locale_h=yes | ac_cv_header_malloc_h=yes | ac_cv_header_memory_h=yes | ac_cv_header_minix_config_h=no | ac_cv_header_netdb_h=yes | ac_cv_header_netinet_in_h=yes | ac_cv_header_sgtty_h=yes | ac_cv_header_shadow_h=yes | ac_cv_header_socket_h=no | ac_cv_header_stdarg_h=yes | ac_cv_header_stdbool_h=yes | ac_cv_header_stdc=yes | ac_cv_header_stdint_h=yes | ac_cv_header_stdio_h=yes | ac_cv_header_stdlib_h=yes | ac_cv_header_string_h=yes | ac_cv_header_strings_h=yes | ac_cv_header_sys_file_h=yes | ac_cv_header_sys_resources_h=no | ac_cv_header_sys_select_h=yes | ac_cv_header_sys_socket_h=yes | ac_cv_header_sys_stat_h=yes | ac_cv_header_sys_time_h=yes | ac_cv_header_sys_types_h=yes | ac_cv_header_sys_uio_h=yes | ac_cv_header_sys_wait_h=yes | ac_cv_header_sysexits_h=yes | ac_cv_header_termcap_h=no | ac_cv_header_termio_h=yes | ac_cv_header_termios_h=yes | ac_cv_header_time=yes | ac_cv_header_unistd_h=yes | ac_cv_header_varargs_h=no | ac_cv_header_wchar_h=yes | ac_cv_header_wctype_h=yes | ac_cv_host=i486-pc-linux-gnu | ac_cv_lib_crypt_crypt=yes | ac_cv_lib_curses___tputs=no | ac_cv_lib_fl_yywrap=no | ac_cv_lib_l_yywrap=no | ac_cv_lib_ltdl_lt_dlinit=no | ac_cv_lib_ncurses___tputs=no | ac_cv_lib_nsl_gethostbyaddr=yes | ac_cv_lib_readline_readline=no | ac_cv_lib_socket_socket=no | ac_cv_lib_termcap___tputs=no | ac_cv_member_struct_passwd_pw_change=no | ac_cv_member_struct_passwd_pw_expire=no | ac_cv_member_struct_sockaddr_in_sin_len=no | ac_cv_member_struct_spwd_sp_expire=yes | ac_cv_objext=o | ac_cv_path_EGREP='/bin/grep -E' | ac_cv_path_GMSGFMT=/usr/bin/msgfmt | ac_cv_path_GREP=/bin/grep | ac_cv_path_GUILE_CONFIG=no | ac_cv_path_MSGFMT=/usr/bin/msgfmt | ac_cv_path_MSGMERGE=/usr/bin/msgmerge | ac_cv_path_PS=/bin/ps | ac_cv_path_XGETTEXT=/usr/bin/xgettext | ac_cv_path_install='/usr/bin/install -c' | ac_cv_prog_AWK=mawk | ac_cv_prog_CPP='gcc -E' | ac_cv_prog_CXXCPP='g++ -E' | ac_cv_prog_ac_ct_AR=ar | ac_cv_prog_ac_ct_CC=gcc | ac_cv_prog_ac_ct_CXX=g++ | ac_cv_prog_ac_ct_RANLIB=ranlib | ac_cv_prog_ac_ct_STRIP=strip | ac_cv_prog_cc_c89= | ac_cv_prog_cc_g=yes | ac_cv_prog_cxx_g=yes | ac_cv_prog_f77_g=no | ac_cv_prog_make_make_set=yes | ac_cv_safe_to_define___extensions__=yes | ac_cv_sizeof_uint32_t=4 | ac_cv_sizeof_unsigned_int=4 | ac_cv_sizeof_unsigned_long=4 | ac_cv_struct_tm=time.h | ac_cv_target=i486-pc-linux-gnu | ac_cv_type__Bool=yes | ac_cv_type_long_long=yes | ac_cv_type_long_long_int=yes | ac_cv_type_off_t=yes | ac_cv_type_pid_t=yes | ac_cv_type_ptrdiff_t=yes | ac_cv_type_signal=void | ac_cv_type_size_t=yes | ac_cv_type_socklen_t=yes | ac_cv_type_struct_spwd=yes | ac_cv_type_u_char=yes | ac_cv_type_u_int=yes | ac_cv_type_u_long=yes | ac_cv_type_uid_t=yes | ac_cv_type_uint32_t=yes | ac_cv_type_unsigned_int=yes | ac_cv_type_unsigned_long=yes | ac_cv_type_unsigned_long_long_int=yes | ac_cv_working_alloca_h=yes | acl_cv_hardcode_direct=no | acl_cv_hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' | acl_cv_hardcode_libdir_separator= | acl_cv_hardcode_minus_L=no | acl_cv_libext=a | acl_cv_libname_spec='lib$name' | acl_cv_library_names_spec='$libname$shrext' | acl_cv_path_LD=/usr/bin/ld | acl_cv_prog_gnu_ld=yes | acl_cv_rpath=done | acl_cv_shlibext=so | acl_cv_wl=-Wl, | am_cv_CC_dependencies_compiler_type=none | am_cv_CXX_dependencies_compiler_type=none | am_cv_func_working_getline=yes | am_cv_langinfo_codeset=yes | am_cv_lispdir='${datadir}/emacs/site-lisp' | am_cv_prog_cc_stdc= | gl_cv_func_gnu_getopt=yes | gl_cv_func_re_compile_pattern_working=yes | gl_cv_func_strndup=yes | gl_cv_have_include_next=yes | gl_cv_header_inttypes_h=yes | gl_cv_header_stdint_h=yes | gl_cv_header_wchar_h_standalone=yes | gl_cv_header_working_stdint_h=yes | gl_cv_next_stdint_h='' | gl_cv_next_stdio_h='' | gl_cv_next_stdlib_h='' | gl_cv_next_string_h='' | gl_cv_next_sysexits_h='' | gl_cv_next_unistd_h='' | gl_cv_next_wctype_h='' | gl_cv_rpl_alloca=yes | gl_cv_size_max=yes | gt_cv_c_intmax_t=yes | gt_cv_c_wchar_t=yes | gt_cv_c_wint_t=yes | gt_cv_func_CFLocaleCopyCurrent=no | gt_cv_func_CFPreferencesCopyAppValue=no | gt_cv_func_gnugettext2_libc=yes | gt_cv_ssize_t=yes | lt_cv_deplibs_check_method=pass_all | lt_cv_file_magic_cmd='$MAGIC_CMD' | lt_cv_file_magic_test_file= | lt_cv_ld_reload_flag=-r | lt_cv_objdir=.libs | lt_cv_path_LD=/usr/bin/ld | lt_cv_path_LDCXX=/usr/bin/ld | lt_cv_path_NM='/usr/bin/nm -B' | lt_cv_path_SED=/bin/sed | lt_cv_prog_compiler_c_o=yes | lt_cv_prog_compiler_c_o_CXX=yes | lt_cv_prog_compiler_rtti_exceptions=no | lt_cv_prog_gnu_ld=yes | lt_cv_prog_gnu_ldcxx=yes | lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\''' | lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \([^ ]*\) $/ {\"\1\", (lt_ptr) 0},/p'\'' -e '\''s/^[BCDEGRST] \([^ ]*\) \([^ ]*\)$/ {"\2", (lt_ptr) \&\2},/p'\''' | lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^. .* \(.*\)$/extern int \1;/p'\''' | lt_cv_sys_max_cmd_len=32768 | lt_lt_cv_prog_compiler_c_o='"yes"' | lt_lt_cv_prog_compiler_c_o_CXX='"yes"' | lt_lt_cv_sys_global_symbol_pipe='"sed -n -e '\''s/^.*[ ]\\([ABCDGIRSTW][ABCDGIRSTW]*\\)[ ][ ]*\\([_A-Za-z][_A-Za-z0-9]*\\)\$/\\1 \\2 \\2/p'\''"' | lt_lt_cv_sys_global_symbol_to_c_name_address='"sed -n -e '\''s/^: \\([^ ]*\\) \$/ {\\\"\\1\\\", (lt_ptr) 0},/p'\'' -e '\''s/^[BCDEGRST] \\([^ ]*\\) \\([^ ]*\\)\$/ {\"\\2\", (lt_ptr) \\&\\2},/p'\''"' | lt_lt_cv_sys_global_symbol_to_cdecl='"sed -n -e '\''s/^. .* \\(.*\\)\$/extern int \\1;/p'\''"' | ra_cv_decl_inaddrloopback=yes | ra_cv_ld_version_script_option=yes | ra_cv_lib_guile=no | ra_cv_struct_hostent_h_addr_list=yes | | ## ----------------- ## | ## Output variables. ## | ## ----------------- ## | | ACCT_PORT='1813' | ACLOCAL='${SHELL} /tmp/buildd/radius-1.5/scripts/missing --run aclocal-1.9' | ALLOCA='' | ALLOCA_H='alloca.h' | AMDEPBACKSLASH='' | AMDEP_FALSE='' | AMDEP_TRUE='#' | AMTAR='${SHELL} /tmp/buildd/radius-1.5/scripts/missing --run tar' | APACHEMODDIR='' | APACHE_INCLUDES='' | APXS='' | AR='ar' | AUTH_PORT='1812' | AUTOCONF='${SHELL} /tmp/buildd/radius-1.5/scripts/missing --run autoconf' | AUTOHEADER='${SHELL} /tmp/buildd/radius-1.5/scripts/missing --run autoheader' | AUTOM4TE='${SHELL} /tmp/buildd/radius-1.5/scripts/missing --run autom4te' | AUTOMAKE='${SHELL} /tmp/buildd/radius-1.5/scripts/missing --run automake-1.9' | AWK='mawk' | BITSIZEOF_PTRDIFF_T='' | BITSIZEOF_SIG_ATOMIC_T='' | BITSIZEOF_SIZE_T='' | BITSIZEOF_WCHAR_T='' | BITSIZEOF_WINT_T='' | BUILD_MOD_AUTH_RADIUS_LA='' | BUILD_MOD_RADIUS_LA='' | BUILD_NAS_SCM='' | BUILD_PAM_RADIUS_LA='' | BUILD_SQL='' | BUILD_TARGET='' | CC='gcc' | CCDEPMODE='depmode=none' | CFLAGS='-g -O2' | CPP='gcc -E' | CPPFLAGS='' | CXX='g++' | CXXCPP='g++ -E' | CXXDEPMODE='depmode=none' | CXXFLAGS='-g -O2' | CYGPATH_W='echo' | DEFS='-DHAVE_CONFIG_H' | DEPDIR='.deps' | ECHO='echo' | ECHO_C='' | ECHO_N='-n' | ECHO_T='' | EGREP='/bin/grep -E' | EMACS='no' | EMACSLOADPATH='' | EOVERFLOW='' | EXEEXT='' | F77='' | FFLAGS='-g -O2' | FLOAT_H='' | GETOPT_H='getopt.h' | GLIBC21='yes' | GL_COND_LIBTOOL_FALSE='#' | GL_COND_LIBTOOL_TRUE='' | GMSGFMT='/usr/bin/msgfmt' | GMSGFMT_015='/usr/bin/msgfmt' | GNULIB_CHOWN='0' | GNULIB_DUP2='0' | GNULIB_FCHDIR='0' | GNULIB_FFLUSH='0' | GNULIB_FPRINTF_POSIX='0' | GNULIB_FSEEK='0' | GNULIB_FSEEKO='0' | GNULIB_FTELL='0' | GNULIB_FTELLO='0' | GNULIB_FTRUNCATE='0' | GNULIB_GETCWD='0' | GNULIB_GETLOGIN_R='0' | GNULIB_GETSUBOPT='0' | GNULIB_LCHOWN='0' | GNULIB_LSEEK='0' | GNULIB_MBSCASECMP='0' | GNULIB_MBSCASESTR='0' | GNULIB_MBSCHR='0' | GNULIB_MBSCSPN='0' | GNULIB_MBSLEN='0' | GNULIB_MBSNCASECMP='0' | GNULIB_MBSNLEN='0' | GNULIB_MBSPBRK='0' | GNULIB_MBSPCASECMP='0' | GNULIB_MBSRCHR='0' | GNULIB_MBSSEP='0' | GNULIB_MBSSPN='0' | GNULIB_MBSSTR='0' | GNULIB_MBSTOK_R='0' | GNULIB_MEMMEM='0' | GNULIB_MEMPCPY='1' | GNULIB_MEMRCHR='0' | GNULIB_MKDTEMP='0' | GNULIB_MKSTEMP='0' | GNULIB_PRINTF_POSIX='0' | GNULIB_READLINK='0' | GNULIB_SLEEP='1' | GNULIB_SNPRINTF='0' | GNULIB_SPRINTF_POSIX='0' | GNULIB_STPCPY='0' | GNULIB_STPNCPY='0' | GNULIB_STRCASESTR='0' | GNULIB_STRCHRNUL='1' | GNULIB_STRDUP='0' | GNULIB_STRNDUP='1' | GNULIB_STRNLEN='1' | GNULIB_STRPBRK='0' | GNULIB_STRSEP='0' | GNULIB_STRTOK_R='0' | GNULIB_VASPRINTF='1' | GNULIB_VFPRINTF_POSIX='0' | GNULIB_VPRINTF_POSIX='0' | GNULIB_VSNPRINTF='1' | GNULIB_VSPRINTF_POSIX='0' | GREP='/bin/grep' | GUILE_BINDIR='' | GUILE_CONFIG='# ' | GUILE_INCLUDES='' | GUILE_LIBS='' | GUILE_SNARF_VERSION='1.6' | HAVE_DECL_GETLOGIN_R='1' | HAVE_DECL_MEMMEM='1' | HAVE_DECL_MEMRCHR='1' | HAVE_DECL_SNPRINTF='1' | HAVE_DECL_STRDUP='1' | HAVE_DECL_STRNCASECMP='1' | HAVE_DECL_STRNDUP='1' | HAVE_DECL_STRNLEN='1' | HAVE_DECL_STRTOK_R='1' | HAVE_DECL_VSNPRINTF='1' | HAVE_DUP2='1' | HAVE_FSEEKO='1' | HAVE_FTELLO='1' | HAVE_FTRUNCATE='1' | HAVE_GETSUBOPT='1' | HAVE_INTTYPES_H='1' | HAVE_ISWCNTRL='1' | HAVE_LONG_LONG_INT='1' | HAVE_MEMPCPY='1' | HAVE_MKDTEMP='1' | HAVE_READLINK='1' | HAVE_SIGNED_SIG_ATOMIC_T='' | HAVE_SIGNED_WCHAR_T='' | HAVE_SIGNED_WINT_T='' | HAVE_SLEEP='1' | HAVE_STDINT_H='1' | HAVE_STPCPY='1' | HAVE_STPNCPY='1' | HAVE_STRCASECMP='1' | HAVE_STRCASESTR='1' | HAVE_STRCHRNUL='1' | HAVE_STRNDUP='1' | HAVE_STRPBRK='1' | HAVE_STRSEP='1' | HAVE_SYSEXITS_H='1' | HAVE_SYS_BITYPES_H='' | HAVE_SYS_INTTYPES_H='' | HAVE_SYS_TYPES_H='1' | HAVE_UNISTD_H='1' | HAVE_UNSIGNED_LONG_LONG_INT='1' | HAVE_VASPRINTF='1' | HAVE_WCHAR_H='' | HAVE_WCTYPE_H='1' | HAVE_WINT_T='1' | HAVE__BOOL='1' | INCLUDEPATH='' | INCLUDE_NEXT='include_next' | INSTALL_DATA='${INSTALL} -m 644' | INSTALL_PROGRAM='${INSTALL}' | INSTALL_SCRIPT='${INSTALL}' | INSTALL_STRIP_PROGRAM='${SHELL} $(install_sh) -c -s' | INTLLIBS='' | INTL_MACOSX_LIBS='' | LDFLAGS='-Wl,-Bsymbolic-functions' | LEAK_DETECTOR='' | LEX='${SHELL} /tmp/buildd/radius-1.5/scripts/missing --run flex' | LEXLIB='' | LEX_OUTPUT_ROOT='' | LIBGNURADIUS='-L${top_builddir}/lib -lgnuradius' | LIBICONV='-liconv' | LIBINTL='' | LIBOBJS='' | LIBRADEXTRA='-lradextra -L${top_builddir}/gnu -lgnu' | LIBRADSCM='' | LIBS='-lcrypt -lnsl ' | LIBTOOL='$(SHELL) $(top_builddir)/libtool' | LN_S='ln -s' | LTALLOCA='' | LTLIBICONV='-liconv' | LTLIBINTL='' | LTLIBOBJS='' | M4='`cd $(top_srcdir); pwd`/scripts/missing --run m4' | MAINT='#' | MAINTAINER_MODE_FALSE='' | MAINTAINER_MODE_TRUE='#' | MAKEINFO='${SHELL} /tmp/buildd/radius-1.5/scripts/missing --run makeinfo' | MSGFMT='/usr/bin/msgfmt' | MSGFMT_015='/usr/bin/msgfmt' | MSGMERGE='/usr/bin/msgmerge' | MYSQLLIBS='' | NEXT_FLOAT_H='' | NEXT_STDINT_H='' | NEXT_STDIO_H='' | NEXT_STDLIB_H='' | NEXT_STRING_H='' | NEXT_SYSEXITS_H='' | NEXT_UNISTD_H='' | NEXT_WCHAR_H='' | NEXT_WCTYPE_H='' | OBJEXT='o' | ODBCLIBS='' | PACKAGE='radius' | PACKAGE_BUGREPORT='address@hidden' | PACKAGE_NAME='GNU Radius' | PACKAGE_STRING='GNU Radius 1.5' | PACKAGE_TARNAME='radius' | PACKAGE_VERSION='1.5' | PAMDIR='$(prefix)/lib/security' | PATHFLAGS='-DSYSCONFDIR=\"$(sysconfdir)\" -DRADPID_DIR=\"$(RADPID_DIR)\" -DRADLOG_DIR=\"$(RADLOG_DIR)\"' | PATH_SEPARATOR=':' | PHPMODDIR='' | PHP_INCLUDES='' | POSTGRESLIBS='' | POSUB='po' | PS='/bin/ps' | PTRDIFF_T_SUFFIX='' | RADIUSD_LDADD_LIST='' | RADIUS_DAEMON='radiusd' | RADIUS_INCLUDE_PATH='-I$(top_builddir) -I$(top_srcdir)/include -I$(top_builddir)/include -I$(top_builddir)/include/radius -I$(top_srcdir)/include/radius -I$(top_srcdir)/lib -I$(top_srcdir)/gnu -I$(top_builddir)/gnu ' | RADIUS_PID='' | RADLOG_DIR='/var/log' | RADPID_DIR='/var/run' | RADSCM='' | RADSCM_BUILT_SOURCES_LIST='' | RADSCM_PKGDATA='' | RADSESSION='' | RANLIB='ranlib' | READLINE_LIBS='' | REPLACE_CHOWN='0' | REPLACE_FCHDIR='0' | REPLACE_FFLUSH='0' | REPLACE_FPRINTF='0' | REPLACE_FSEEK='0' | REPLACE_FSEEKO='0' | REPLACE_FTELL='0' | REPLACE_FTELLO='0' | REPLACE_GETCWD='0' | REPLACE_LCHOWN='0' | REPLACE_LSEEK='0' | REPLACE_MKSTEMP='0' | REPLACE_PRINTF='0' | REPLACE_SNPRINTF='0' | REPLACE_SPRINTF='0' | REPLACE_VASPRINTF='0' | REPLACE_VFPRINTF='0' | REPLACE_VPRINTF='0' | REPLACE_VSNPRINTF='0' | REPLACE_VSPRINTF='0' | SET_MAKE='' | SHELL='/bin/bash' | SIG_ATOMIC_T_SUFFIX='' | SIZE_T_SUFFIX='' | SNMP_CONFIG='# ' | SQLLIB='' | SQL_LIBOBJS='' | SQL_LOADABLE_MODULES='' | SQL_LTLIBOBJS='' | SQL_MODULES='' | STDBOOL_H='' | STDINT_H='' | STRIP='strip' | SYSEXITS_H='' | USE_NLS='yes' | VERSION='1.5' | VERSION_SCRIPT_OPTION='-Wl,--version-script=$(VERSION_SCRIPT)' | VI_AGE='0' | VI_CURRENT='1' | VI_REVISION='0' | WCHAR_H='' | WCHAR_T_SUFFIX='' | WCTYPE_H='' | WINT_T_SUFFIX='' | XGETTEXT='/usr/bin/xgettext' | XGETTEXT_015='/usr/bin/xgettext' | YACC='yacc' | YFLAGS='' | ac_ct_CC='gcc' | ac_ct_CXX='g++' | ac_ct_F77='' | am__fastdepCC_FALSE='' | am__fastdepCC_TRUE='#' | am__fastdepCXX_FALSE='' | am__fastdepCXX_TRUE='#' | am__include='include' | am__leading_dot='.' | am__quote='' | am__tar='${AMTAR} chof - "$$tardir"' | am__untar='${AMTAR} xf -' | bindir='${exec_prefix}/bin' | build='i486-pc-linux-gnu' | build_alias='i486-linux-gnu' | build_cpu='i486' | build_os='linux-gnu' | build_vendor='pc' | datadir='${datarootdir}' | datarootdir='${prefix}/share' | docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' | dvidir='${docdir}' | exec_prefix='${prefix}' | gl_LIBOBJS=' asnprintf.o exitfail.o getopt.o getopt1.o printf-args.o printf-parse.o vasnprintf.o' | gl_LTLIBOBJS=' asnprintf.lo exitfail.lo getopt.lo getopt1.lo printf-args.lo printf-parse.lo vasnprintf.lo' | host='i486-pc-linux-gnu' | host_alias='' | host_cpu='i486' | host_os='linux-gnu' | host_vendor='pc' | htmldir='${docdir}' | includedir='${prefix}/include' | infodir='${prefix}/share/info' | install_sh='/tmp/buildd/radius-1.5/scripts/install-sh' | libdir='${exec_prefix}/lib' | libexecdir='${prefix}/lib/radius' | lisp_LISP='' | lispdir='${datadir}/emacs/site-lisp' | localedir='${datarootdir}/locale' | localstatedir='/var' | mandir='${prefix}/share/man' | mkdir_p='mkdir -p --' | oldincludedir='/usr/include' | pdfdir='${docdir}' | prefix='/usr' | program_transform_name='s,x,x,' | psdir='${docdir}' | sbindir='${exec_prefix}/sbin' | sharedstatedir='${prefix}/com' | sysconfdir='/etc' | target='i486-pc-linux-gnu' | target_alias='' | target_cpu='i486' | target_os='linux-gnu' | target_vendor='pc' | | ## ----------- ## | ## confdefs.h. ## | ## ----------- ## | | #define PACKAGE_NAME "GNU Radius" | #define PACKAGE_TARNAME "radius" | #define PACKAGE_VERSION "1.5" | #define PACKAGE_STRING "GNU Radius 1.5" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE "radius" | #define VERSION "1.5" | #define _GNU_SOURCE 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_DLFCN_H 1 | #define HAVE_LIBNSL 1 | #define HAVE_LIBCRYPT 1 | #define STDC_HEADERS 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_CTYPE_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_NETDB_H 1 | #define HAVE_STDARG_H 1 | #define HAVE_TERMIOS_H 1 | #define HAVE_TERMIO_H 1 | #define HAVE_SGTTY_H 1 | #define HAVE_CRYPT_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_LIBINTL_H 1 | #define RETSIGTYPE void | #define SIZEOF_UINT32_T 4 | #define SIZEOF_UNSIGNED_LONG 4 | #define SIZEOF_UNSIGNED_INT 4 | #define HAVE_GETSPNAM 1 | #define HAVE_STRUCT_SPWD 1 | #define HAVE_STRUCT_SPWD_SP_EXPIRE 1 | #define RETSIGTYPE void | #define TIME_WITH_SYS_TIME 1 | #define HAVE_STRFTIME 1 | #define HAVE_VPRINTF 1 | #define HAVE_STDLIB_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_MMAP 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define restrict __restrict | #define HAVE_DECL_GETENV 1 | #define HAVE_DECL_CLEARERR_UNLOCKED 1 | #define HAVE_DECL_FEOF_UNLOCKED 1 | #define HAVE_DECL_FERROR_UNLOCKED 1 | #define HAVE_DECL_FFLUSH_UNLOCKED 1 | #define HAVE_DECL_FGETS_UNLOCKED 1 | #define HAVE_DECL_FPUTC_UNLOCKED 1 | #define HAVE_DECL_FPUTS_UNLOCKED 1 | #define HAVE_DECL_FREAD_UNLOCKED 1 | #define HAVE_DECL_FWRITE_UNLOCKED 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | #define HAVE_DECL_PUTC_UNLOCKED 1 | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | #define HAVE_FLOCKFILE 1 | #define HAVE_FUNLOCKFILE 1 | #define HAVE_ISBLANK 1 | #define HAVE_ISWCTYPE 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_WCSCOLL 1 | #define HAVE_SLEEP 1 | #define HAVE_STRERROR 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_FEATURES_H 1 | #define HAVE_FLOAT_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_STDIO_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_SYSEXITS_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_INCLUDE_NEXT 1 | #define HAVE_DECL_GETDELIM 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE__BOOL 1 | #define HAVE_STDBOOL_H 1 | #define HAVE_LONG_LONG_INT 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define HAVE_DECL_STRNDUP 1 | #define HAVE_DECL_STRNLEN 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_LONG_LONG 1 | #define HAVE_INTMAX_T 1 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_ALLOCA 1 | #define HAVE_ALLOCA_H 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 1 | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 1 | #define HAVE_PROGRAM_INVOCATION_NAME 1 | #define HAVE_PROGRAM_INVOCATION_SHORT_NAME 1 | #define HAVE_GETDELIM 1 | #define HAVE_DECL_GETLINE 1 | #define __GETOPT_PREFIX rpl_ | #define HAVE_STDLIB_H 1 | #define HAVE_MALLOC 1 | #define HAVE_MEMPCPY 1 | #define HAVE_OBSTACK 1 | #define HAVE_STDINT_H 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_DECL_STRNCASECMP 1 | #define HAVE_STRCHRNUL 1 | #define HAVE_STRNDUP 1 | #define HAVE_PTRDIFF_T 1 | #define HAVE_SNPRINTF 1 | #define HAVE_WCSLEN 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_VASPRINTF 1 | #define HAVE_VSNPRINTF 1 | #define HAVE_STDINT_H 1 | #define ENABLE_NLS 1 | #define HAVE_GETTEXT 1 | #define HAVE_DCGETTEXT 1 | #define HAVE_SETSID 1 | #define HAVE_GETHOSTNAME 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_MKDIR 1 | #define HAVE_MKTIME 1 | #define HAVE_SELECT 1 | #define HAVE_SOCKET 1 | #define HAVE_STRDUP 1 | #define HAVE_STRTOL 1 | #define HAVE_LOCKF 1 | #define HAVE_SETLOCALE 1 | #define HAVE_BZERO 1 | #define HAVE_INET_NTOA 1 | #define HAVE_INET_ATON 1 | #define HAVE_SETVBUF 1 | #define HAVE_SETEGID 1 | #define HAVE_SETREGID 1 | #define HAVE_SETRESGID 1 | #define HAVE_SETEUID 1 | #define HAVE_SETREUID 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_SIGACTION 1 | #define HAVE_DECL_STRNCASECMP 1 | #define HAVE_DECL_STRTOK_R 1 | #define HAVE_DECL_LOCALTIME_R 1 | #define HAVE_DECL_ASPRINTF 1 | #define HAVE_DECL_VASPRINTF 1 | #define HAVE_DECL_GETLINE 1 | #define HAVE_DECL_CRYPT 1 | #define HAVE_DECL_CRYPT_SET_FORMAT 0 | #define HAVE_HOSTENT_H_ADDR_LIST 1 | #define RADIUS_DEBUG 1 | #define BUILD_TARGET "i486-pc-linux-gnu" | #define DEF_AUTH_PORT 1812 | #define DEF_ACCT_PORT 1813 | | configure: exit 0