GNU Radius 1.3 testsiute:4 5 failed
akash shrestha <[email protected]> Sun, 23 Jan 2005 19:13:17 -0800 (PST)
| Newsgroups | gmane.comp.gnu.radius.bugs |
|---|---|
| Message-ID | <[email protected]> |
--0-1715333661-1106536397=:32333 Content-Type: text/plain; charset=us-ascii Hello Actually I'm trying to install RADIUS server in PPC Linux but I got error during make command. What should I do to install the RADIUS in PPC LInux. Is there any similar package that can be installed for authentication and accounting. I have sent you the testsuite.log on attachement. Hope to hear soon from you. Akash --------------------------------- Do you Yahoo!? Yahoo! Mail - Helps protect you from nasty viruses. --0-1715333661-1106536397=:32333 Content-Type: text/plain; name="testsuite.log" Content-Description: testsuite.log Content-Disposition: inline; filename="testsuite.log" ## -------------------------- ## ## GNU Radius 1.3 test suite. ## ## -------------------------- ## testsuite: command line was: $ ./testsuite ## ----------- ## ## ChangeLogs. ## ## ----------- ## testsuite: ../doc/texinfo/ChangeLog: | 2004-11-20 Sergey Poznyakoff <[email protected]> | | * acct.texi: Updated | * attributes.texi: Updated | * auth.texi: Updated | * configure.texi: Updated | * gradient.texi: Updated | * radctl.texi: Updated | | 2004-11-03 Sergey Poznyakoff <[email protected]> testsuite: ../intl/ChangeLog: | 2003-05-22 GNU <[email protected]> | | * Version 0.12.1 released. | testsuite: ../po/ChangeLog: | 2004-16-11 Sergey Poznyakoff | | * fr.po: Updated | * pl.po: Updated | * ru.po: Updated | | 2004-09-16 Sergey Poznyakoff | | * LINGUAS: Added Catalan | * pl.po: Updated testsuite: ../ChangeLog: | 2004-11-20 Sergey Poznyakoff | | * configure.ac: Raised version number to 1.3 | * NEWS: Likewise | | * raddb/sqlserver: Updated | * raddb/users: Updated | * radiusd/exec.c: Minor comment. | * sql/mysql.c (do_mysql_query): Actually disconnect only if mysql | returned CR_SERVER_GONE_ERROR ## --------- ## ## Platform. ## ## --------- ## hostname = akash.kuro.com uname -m = ppc uname -r = 2.4.17_kuro-box uname -s = Linux uname -v = #2 2004ǯ 3·î 18Æü ÌÚÍËÆü 11:39:47 JST /usr/bin/uname -p = unknown /bin/uname -X = unknown /bin/arch = unknown /usr/bin/arch -k = unknown /usr/convex/getsysinfo = unknown hostinfo = unknown /bin/machine = unknown /usr/bin/oslevel = unknown /bin/universe = unknown PATH: /usr/local/radius-1.3/tests PATH: /usr/local/radius-1.3/radiusd PATH: /usr/local/radius-1.3/radtest PATH: /usr/local/radius-1.3 PATH: /usr/local/bin PATH: /usr/bin PATH: /bin PATH: /var/qmail/bin PATH: /usr/local/sbin PATH: /usr/sbin PATH: /sbin testsuite: atconfig: | # Configurable variable values for building test suites. | # Generated by ./config.status. | # Copyright (C) 2000, 2001, 2003 Free Software Foundation, Inc. | | # The test suite will define top_srcdir=/../.. etc. | at_testdir='tests' | abs_builddir='/usr/local/radius-1.3/tests' | at_srcdir='.' | abs_srcdir='/usr/local/radius-1.3/tests' | at_top_srcdir='..' | abs_top_srcdir='/usr/local/radius-1.3/tests/..' | at_top_builddir='../' | abs_top_builddir='/usr/local/radius-1.3/tests/../.' | | AUTOTEST_PATH='tests' | | SHELL=${CONFIG_SHELL-'/bin/sh'} testsuite: atlocal: | # tests/atlocal. Generated from atlocal.in by configure. -*- shell-script -*- | # Configurable variable values for tar test suite. | # Copyright (C) 2004 Free Software Foundation, Inc. | | SOURCEDIR=$abs_srcdir | BUILDDIR=$abs_builddir | PATH=/usr/local/radius-1.3/tests:/usr/local/radius-1.3/tests/.././radiusd:/usr/local/radius-1.3/tests/.././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=`/usr/local/radius-1.3/tests/findport -c5 -s1644 "-fs^@TEST_AUTH_PORT@^%d^;\ | s^@TEST_ACCT_PORT@^%d^;\ | s^@TEST_SNMP_PORT@^%d^;\ | s^@PROXY_AUTH_PORT@^%d^;\ | s^@PROXY_ACCT_PORT@^%d^;\ | s^@USER@^%u^;\ | s^@BUILDDIR@^$BUILDDIR^;\ | s^@SOURCEDIR@^$SOURCEDIR^;\ | s^@GUILE@^$GUILE^;\ | s^@SNMP@^$SNMP^;"` | | for file in $* | do | sed $EXPR $ABS_NAME/${file}.in > $ABS_NAME/$file | 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() { | /usr/local/radius-1.3/tests/.././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 users 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 | } ## ---------------- ## ## Tested programs. ## ## ---------------- ## testsuite.at:24: /usr/local/radius-1.3/radiusd/radiusd --version radiusd: GNU Radius version 1.3 (powerpc-unknown-linux-gnu) Compilation platform: linux Debugging flags: Compilation flags: PWD_SHADOW=SHADOW Compilation defaults: Ports in use: AUTH: 1812 ACCT: 1813 Paths: configuration directory: /usr/local/etc/raddb logging directory: /var/log accounting directory: /var/log/radacct pidfile directory: /var/run Report bugs to <[email protected]> ## ------------------ ## ## Running the tests. ## ## ------------------ ## testsuite: starting at: Mon Jan 24 21:20:52 JST 2005 1. Starting radius server (begin.at:21): ok 2. Status-Server (status-server.at:21): ok (0m0.140s 0m0.070s) 3. Basic Authentication Types (basic-auth.at:21): ok (0m0.140s 0m0.110s) 6. DEFAULT Keyword (default-kw.at:21): ok (0m0.350s 0m0.330s) 7. Match-Profile (match-profile.at:21): ok (0m0.390s 0m0.480s) 8. hints (hints.at:21): ok (0m0.240s 0m0.400s) 9. huntgroups (huntgroups.at:21): ok (0m0.180s 0m0.240s) 10. Scheme authentication (scheme-auth.at:21): skipped (scheme-auth.at:32) 11. Access control lists (acl.at:21): ok (0m0.100s 0m0.100s) 12. Expiration attribute (expiration.at:21): ok (0m0.160s 0m0.260s) 13. menus (menu.at:21): skipped (menu.at:42) 14. accounting and simultaneous use control (acct.at:21): ok (0m0.370s 0m0.450s) 15. rewrite rules (rewrite.at:21): ok (0m0.420s 0m0.440s) 16. external procedures (execwait.at:21): ok (0m0.350s 0m0.270s) 17. filters (filter.at:21): ok (0m0.580s 0m0.710s) 18. Scheme accounting (scheme-acct.at:21): skipped (scheme-acct.at:40) 19. tunnel attributes (tunnel.at:21): ok (0m0.140s 0m0.070s) 20. Log-Mode-Mask attribute (log-mode.at:21): ok (0m0.160s 0m0.260s) 21. Shutting down radius server (end.at:21): ok (0m0.050s 0m0.050s) 22. Starting radius server (begin-proxy.at:21): ok 23. Basic Authentication Types (proxy) (proxy-basic-auth.at:21): ok (0m0.530s 0m0.700s) 24. Case-insensitive realms (proxy-ignorecase.at:21): ok (0m0.110s 0m0.080s) 25. VSA propagation (proxy-vsa.at:21): ok (0m0.100s 0m0.120s) 26. menus (proxy) (proxy-menu.at:21): skipped (proxy-menu.at:42) 27. nested realms (proxy-nested.at:21): ok (0m0.120s 0m0.090s) 28. proxy accounting (proxy-acct.at:21): ok (0m0.210s 0m0.250s) 29. tunnel attributes (proxy) (proxy-tunnel.at:21): ok (0m0.100s 0m0.110s) 30. Shutting down radius server (end-proxy.at:21): ok (0m0.080s 0m0.070s) testsuite: ending at: Mon Jan 24 21:21:31 JST 2005 testsuite: test suite duration: 0h 0m 39s ## ------------- ## ## Test results. ## ## ------------- ## ERROR: 26 tests were run, 2 failed unexpectedly. 4 tests were skipped. ## ------------------------ ## ## Summary of the failures. ## ## ------------------------ ## Failed tests: GNU Radius 1.3 test suite test groups: NUM: FILENAME:LINE TEST-GROUP-NAME KEYWORDS 4: reply.at:21 Reply attributes reply 5: begin-kw.at:21 BEGIN Keyword begin-kw Skipped tests: GNU Radius 1.3 test suite test groups: NUM: FILENAME:LINE TEST-GROUP-NAME KEYWORDS 10: scheme-auth.at:21 Scheme authentication scheme-auth 13: menu.at:21 menus menu 18: scheme-acct.at:21 Scheme accounting scheme-acct 26: proxy-menu.at:21 menus (proxy) proxy-menu ## ---------------------- ## ## Detailed failed tests. ## ## ---------------------- ## 4. reply.at:21: testing ... reply.at:27: radtest -d `cat $BUILDDIR/confdir` --no-interactive -f script reply.at:32: radtest -d `cat $BUILDDIR/confdir` --no-interactive -f script --- - Mon Jan 24 21:20:59 2005 +++ /usr/local/radius-1.3/tests/testsuite.dir/at-stdout Mon Jan 24 21:20:59 2005 @@ -1,2 +1,2 @@ -PASS +FAIL 4. reply.at:21: 4. Reply attributes (reply.at:21): FAILED (reply.at:32) 5. begin-kw.at:21: testing ... begin-kw.at:26: radtest -d `cat $BUILDDIR/confdir` --no-interactive -f script --- - Mon Jan 24 21:21:02 2005 +++ /usr/local/radius-1.3/tests/testsuite.dir/at-stdout Mon Jan 24 21:21:02 2005 @@ -1,2 +1,2 @@ -PASS +FAIL 5. begin-kw.at:21: 5. BEGIN Keyword (begin-kw.at:21): FAILED (begin-kw.at:26) ## -------------- ## ## ..//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.3, which was | generated by GNU Autoconf 2.59. Invocation command line was | | $ ./configure | | ## --------- ## | ## Platform. ## | ## --------- ## | | hostname = akash.kuro.com | uname -m = ppc | uname -r = 2.4.17_kuro-box | uname -s = Linux | uname -v = #2 2004ǯ 3·î 18Æü ÌÚÍËÆü 11:39:47 JST | | /usr/bin/uname -p = unknown | /bin/uname -X = unknown | | /bin/arch = unknown | /usr/bin/arch -k = unknown | /usr/convex/getsysinfo = unknown | hostinfo = unknown | /bin/machine = unknown | /usr/bin/oslevel = unknown | /bin/universe = unknown | | PATH: /usr/local/bin | PATH: /usr/bin | PATH: /bin | PATH: /usr/bin/X11 | PATH: /usr/games | PATH: /var/qmail/bin | PATH: /usr/local/sbin | PATH: /usr/sbin | PATH: /sbin | | | ## ----------- ## | ## Core tests. ## | ## ----------- ## | | configure:1591: checking build system type | configure:1609: result: powerpc-unknown-linux-gnu | configure:1617: checking host system type | configure:1631: result: powerpc-unknown-linux-gnu | configure:1639: checking target system type | configure:1653: result: powerpc-unknown-linux-gnu | configure:1681: checking for a BSD-compatible install | configure:1736: result: /usr/bin/install -c | configure:1747: checking whether build environment is sane | configure:1790: result: yes | configure:1847: checking for gawk | configure:1876: result: no | configure:1847: checking for mawk | configure:1876: result: no | configure:1847: checking for nawk | configure:1876: result: no | configure:1847: checking for awk | configure:1863: found /bin/awk | configure:1873: result: awk | configure:1883: checking whether make sets $(MAKE) | configure:1903: result: yes | configure:2124: checking for gcc | configure:2140: found /usr/bin/gcc | configure:2150: result: gcc | configure:2394: checking for C compiler version | configure:2397: gcc --version </dev/null >&5 | 2.95.3 | configure:2400: $? = 0 | configure:2402: gcc -v </dev/null >&5 | Reading specs from /usr/lib/gcc-lib/powerpc-hardhat-linux/2.95.3/specs | gcc version 2.95.3 20010315 (release/MontaVista) | configure:2405: $? = 0 | configure:2407: gcc -V </dev/null >&5 | gcc: argument to `-V' is missing | configure:2410: $? = 1 | configure:2433: checking for C compiler default output file name | configure:2436: gcc conftest.c >&5 | configure:2439: $? = 0 | configure:2485: result: a.out | configure:2490: checking whether the C compiler works | configure:2496: ./a.out | configure:2499: $? = 0 | configure:2516: result: yes | configure:2523: checking whether we are cross compiling | configure:2525: result: no | configure:2528: checking for suffix of executables | configure:2530: gcc -o conftest conftest.c >&5 | configure:2533: $? = 0 | configure:2558: result: | configure:2564: checking for suffix of object files | configure:2585: gcc -c conftest.c >&5 | configure:2588: $? = 0 | configure:2610: result: o | configure:2614: checking whether we are using the GNU C compiler | configure:2638: gcc -c conftest.c >&5 | configure:2644: $? = 0 | configure:2648: test -z | || test ! -s conftest.err | configure:2651: $? = 0 | configure:2654: test -s conftest.o | configure:2657: $? = 0 | configure:2670: result: yes | configure:2676: checking whether gcc accepts -g | configure:2697: gcc -c -g conftest.c >&5 | configure:2703: $? = 0 | configure:2707: test -z | || test ! -s conftest.err | configure:2710: $? = 0 | configure:2713: test -s conftest.o | configure:2716: $? = 0 | configure:2727: result: yes | configure:2744: checking for gcc option to accept ANSI C | configure:2814: gcc -c -g -O2 conftest.c >&5 | configure:2820: $? = 0 | configure:2824: test -z | || test ! -s conftest.err | configure:2827: $? = 0 | configure:2830: test -s conftest.o | configure:2833: $? = 0 | configure:2851: result: none needed | configure:2869: gcc -c -g -O2 conftest.c >&5 | conftest.c:2: parse error before `me' | configure:2875: $? = 1 | configure: failed program was: | | #ifndef __cplusplus | | choke me | | #endif | configure:3019: checking for style of include used by make | configure:3047: result: GNU | configure:3075: checking dependency style of gcc | configure:3165: result: gcc | configure:3228: checking for gcc | configure:3254: result: gcc | configure:3498: checking for C compiler version | configure:3501: gcc --version </dev/null >&5 | 2.95.3 | configure:3504: $? = 0 | configure:3506: gcc -v </dev/null >&5 | Reading specs from /usr/lib/gcc-lib/powerpc-hardhat-linux/2.95.3/specs | gcc version 2.95.3 20010315 (release/MontaVista) | configure:3509: $? = 0 | configure:3511: gcc -V </dev/null >&5 | gcc: argument to `-V' is missing | configure:3514: $? = 1 | configure:3517: checking whether we are using the GNU C compiler | configure:3573: result: yes | configure:3579: checking whether gcc accepts -g | configure:3630: result: yes | configure:3647: checking for gcc option to accept ANSI C | configure:3754: result: none needed | configure:3772: gcc -c -g -O2 conftest.c >&5 | conftest.c:2: parse error before `me' | configure:3778: $? = 1 | configure: failed program was: | | #ifndef __cplusplus | | choke me | | #endif | configure:3913: checking dependency style of gcc | configure:4003: result: gcc | configure:4027: checking for bison | configure:4056: result: no | configure:4027: checking for byacc | configure:4056: result: no | configure:4069: checking for flex | configure:4098: result: no | configure:4069: checking for lex | configure:4098: result: no | configure:4108: checking for yywrap in -lfl | configure:4138: gcc -o conftest -g -O2 conftest.c -lfl >&5 | /usr/powerpc-hardhat-linux/bin/ld: cannot find -lfl | collect2: ld returned 1 exit status | configure:4144: $? = 1 | configure: failed program was: | | /* confdefs.h. */ | | | | #define PACKAGE_NAME "GNU Radius" | | #define PACKAGE_TARNAME "radius" | | #define PACKAGE_VERSION "1.3" | | #define PACKAGE_STRING "GNU Radius 1.3" | | #define PACKAGE_BUGREPORT "[email protected]" | | #define PACKAGE "radius" | | #define VERSION "1.3" | | /* end confdefs.h. */ | | | | /* Override any gcc2 internal prototype to avoid an error. */ | | #ifdef __cplusplus | | extern "C" | | #endif | | /* We use char because int might match the return type of a gcc2 | | builtin and then its argument prototype would still apply. */ | | char yywrap (); | | int | | main () | | { | | yywrap (); | | ; | | return 0; | | } | configure:4170: result: no | configure:4175: checking for yywrap in -ll | configure:4205: gcc -o conftest -g -O2 conftest.c -ll >&5 | /usr/powerpc-hardhat-linux/bin/ld: cannot find -ll | collect2: ld returned 1 exit status | configure:4211: $? = 1 | configure: failed program was: | | /* confdefs.h. */ | | | | #define PACKAGE_NAME "GNU Radius" | | #define PACKAGE_TARNAME "radius" | | #define PACKAGE_VERSION "1.3" | | #define PACKAGE_STRING "GNU Radius 1.3" | | #define PACKAGE_BUGREPORT "[email protected]" | | #define PACKAGE "radius" | | #define VERSION "1.3" | | /* end confdefs.h. */ | | | | /* Override any gcc2 internal prototype to avoid an error. */ | | #ifdef __cplusplus | | extern "C" | | #endif | | /* We use char because int might match the return type of a gcc2 | | builtin and then its argument prototype would still apply. */ | | char yywrap (); | | int | | main () | | { | | yywrap (); | | ; | | return 0; | | } | configure:4237: result: no | configure:4346: checking for gawk | configure:4372: result: awk | configure:4385: checking for ps | configure:4404: found /bin/ps | configure:4417: result: /bin/ps | configure:4426: checking whether ln -s works | configure:4430: result: yes | configure:4525: checking for ld used by GCC | configure:4588: result: /usr/powerpc-hardhat-linux/bin/ld | configure:4597: checking if the linker (/usr/powerpc-hardhat-linux/bin/ld) is GNU ld | configure:4609: result: no | configure:4614: checking for /usr/powerpc-hardhat-linux/bin/ld option to reload object files | configure:4621: result: -r | configure:4626: checking for BSD-compatible nm | configure:4662: result: /usr/bin/nm -p | configure:4665: checking for a sed that does not truncate output | configure:4747: result: /bin/sed | configure:4750: checking how to recognise dependent libraries | configure:4931: result: pass_all | configure:4943: checking command to parse /usr/bin/nm -p output | configure:5027: gcc -c -g -O2 conftest.c >&5 | configure:5030: $? = 0 | configure:5034: /usr/bin/nm -p conftest.o \| sed -n -e 's/^.*[ ]\([BCDEGRST][BCDEGRST]*\)[ ][ ]*\(\)\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2\3 \3/p' \> conftest.nm | configure:5037: $? = 0 | configure:5089: gcc -o conftest -g -O2 conftest.c conftstm.o >&5 | configure:5092: $? = 0 | configure:5136: result: ok | configure:5145: checking how to run the C preprocessor | configure:5180: gcc -E conftest.c | configure:5186: $? = 0 | configure:5218: gcc -E conftest.c | conftest.c:11: ac_nonexistent.h: No such file or directory | configure:5224: $? = 1 | configure: failed program was: | | /* confdefs.h. */ | | | | #define PACKAGE_NAME "GNU Radius" | | #define PACKAGE_TARNAME "radius" | | #define PACKAGE_VERSION "1.3" | | #define PACKAGE_STRING "GNU Radius 1.3" | | #define PACKAGE_BUGREPORT "[email protected]" | | #define PACKAGE "radius" | | #define VERSION "1.3" | | /* end confdefs.h. */ | | #include <ac_nonexistent.h> | configure:5263: result: gcc -E | configure:5287: gcc -E conftest.c | configure:5293: $? = 0 | configure:5325: gcc -E conftest.c | conftest.c:11: ac_nonexistent.h: No such file or directory | configure:5331: $? = 1 | configure: failed program was: | | /* confdefs.h. */ | | | | #define PACKAGE_NAME "GNU Radius" | | #define PACKAGE_TARNAME "radius" | | #define PACKAGE_VERSION "1.3" | | #define PACKAGE_STRING "GNU Radius 1.3" | | #define PACKAGE_BUGREPORT "[email protected]" | | #define PACKAGE "radius" | | #define VERSION "1.3" | | /* end confdefs.h. */ | | #include <ac_nonexistent.h> | configure:5375: checking for egrep | configure:5385: result: grep -E | configure:5390: checking for ANSI C header files | configure:5415: gcc -c -g -O2 conftest.c >&5 | configure:5421: $? = 0 | configure:5425: test -z | || test ! -s conftest.err | configure:5428: $? = 0 | configure:5431: test -s conftest.o | configure:5434: $? = 0 | configure:5520: gcc -o conftest -g -O2 conftest.c >&5 | configure:5523: $? = 0 | configure:5525: ./conftest | configure:5528: $? = 0 | configure:5543: result: yes | configure:5567: checking for sys/types.h | configure:5583: gcc -c -g -O2 conftest.c >&5 | configure:5589: $? = 0 | configure:5593: test -z | || test ! -s conftest.err | configure:5596: $? = 0 | configure:5599: test -s conftest.o | configure:5602: $? = 0 | configure:5613: result: yes | configure:5567: checking for sys/stat.h | configure:5583: gcc -c -g -O2 conftest.c >&5 | configure:5589: $? = 0 | configure:5593: test -z | || test ! -s conftest.err | configure:5596: $? = 0 | configure:5599: test -s conftest.o | configure:5602: $? = 0 | configure:5613: result: yes | configure:5567: checking for stdlib.h | configure:5583: gcc -c -g -O2 conftest.c >&5 | configure:5589: $? = 0 | configure:5593: test -z | || test ! -s conftest.err | configure:5596: $? = 0 | configure:5599: test -s conftest.o | configure:5602: $? = 0 | configure:5613: result: yes | configure:5567: checking for string.h | configure:5583: gcc -c -g -O2 conftest.c >&5 | configure:5589: $? = 0 | configure:5593: test -z | || test ! -s conftest.err | configure:5596: $? = 0 | configure:5599: test -s conftest.o | configure:5602: $? = 0 | configure:5613: result: yes | configure:5567: checking for memory.h | configure:5583: gcc -c -g -O2 conftest.c >&5 | configure:5589: $? = 0 | configure:5593: test -z | || test ! -s conftest.err | configure:5596: $? = 0 | configure:5599: test -s conftest.o | configure:5602: $? = 0 | configure:5613: result: yes | configure:5567: checking for strings.h | configure:5583: gcc -c -g -O2 conftest.c >&5 | configure:5589: $? = 0 | configure:5593: test -z | || test ! -s conftest.err | configure:5596: $? = 0 | configure:5599: test -s conftest.o | configure:5602: $? = 0 | configure:5613: result: yes | configure:5567: checking for inttypes.h | configure:5583: gcc -c -g -O2 conftest.c >&5 | configure:5589: $? = 0 | configure:5593: test -z | || test ! -s conftest.err | configure:5596: $? = 0 | configure:5599: test -s conftest.o | configure:5602: $? = 0 | configure:5613: result: yes | configure:5567: checking for stdint.h | configure:5583: gcc -c -g -O2 conftest.c >&5 | configure:5589: $? = 0 | configure:5593: test -z | || test ! -s conftest.err | configure:5596: $? = 0 | configure:5599: test -s conftest.o | configure:5602: $? = 0 | configure:5613: result: yes | configure:5567: checking for unistd.h | configure:5583: gcc -c -g -O2 conftest.c >&5 | configure:5589: $? = 0 | configure:5593: test -z | || test ! -s conftest.err | configure:5596: $? = 0 | configure:5599: test -s conftest.o | configure:5602: $? = 0 | configure:5613: result: yes | configure:5639: checking dlfcn.h usability | configure:5651: gcc -c -g -O2 conftest.c >&5 | configure:5657: $? = 0 | configure:5661: test -z | || test ! -s conftest.err | configure:5664: $? = 0 | configure:5667: test -s conftest.o | configure:5670: $? = 0 | configure:5680: result: yes | configure:5684: checking dlfcn.h presence | configure:5694: gcc -E conftest.c | configure:5700: $? = 0 | configure:5720: result: yes | configure:5755: checking for dlfcn.h | configure:5762: result: yes | configure:5960: checking for ranlib | configure:5976: found /usr/bin/ranlib | configure:5987: result: ranlib | configure:6040: checking for strip | configure:6056: found /usr/bin/strip | configure:6067: result: strip | configure:6287: checking for objdir | configure:6298: result: .libs | configure:6315: checking for gcc option to produce PIC | configure:6461: result: -fPIC | configure:6465: checking if gcc PIC flag -fPIC works | configure:6488: gcc -c -g -O2 -fPIC -DPIC conftest.c >&5 | configure:6494: $? = 0 | configure:6498: test -z | || test ! -s conftest.err | configure:6501: $? = 0 | configure:6504: test -s conftest.o | configure:6507: $? = 0 | configure:6545: result: yes | configure:6561: checking if gcc static flag -static works | configure:6585: gcc -o conftest -g -O2 -static conftest.c >&5 | configure:6591: $? = 0 | configure:6595: test -z | || test ! -s conftest.err | configure:6598: $? = 0 | configure:6601: test -s conftest | configure:6604: $? = 0 | configure:6621: result: yes | configure:6633: checking if gcc supports -c -o file.o | configure:6656: gcc -c -g -O2 -o out/conftest2.o conftest.c >&5 | configure:6677: result: yes | configure:6682: checking if gcc supports -c -o file.lo | configure:6709: gcc -c -g -O2 -c -o conftest.lo conftest.c >&5 | configure:6715: $? = 0 | configure:6719: test -z | || test ! -s conftest.err | configure:6722: $? = 0 | configure:6725: test -s conftest.lo | configure:6728: $? = 0 | configure:6750: result: yes | configure:6781: checking if gcc supports -fno-rtti -fno-exceptions | configure:6803: gcc -c -g -O2 -fno-rtti -fno-exceptions -c conftest.c conftest.c >&5 | configure:6809: $? = 0 | configure:6813: test -z | || test ! -s conftest.err | configure:6816: $? = 0 | configure:6819: test -s conftest.o | configure:6822: $? = 0 | configure:6839: result: yes | configure:6850: checking whether the linker (/usr/powerpc-hardhat-linux/bin/ld) supports shared libraries | configure:7545: result: no | configure:7550: checking how to hardcode library paths into programs | configure:7574: result: unsupported | configure:7579: checking whether stripping libraries is possible | configure:7584: result: yes | configure:7595: checking dynamic linker characteristics | configure:8002: result: GNU/Linux ld.so | configure:8007: checking if libtool supports shared libraries | configure:8009: result: no | configure:8012: checking whether to build shared libraries | configure:8033: result: no | configure:8036: checking whether to build static libraries | configure:8040: result: yes | configure:9409: checking whether to enable maintainer-specific portions of Makefiles | configure:9418: result: no | configure:9520: checking for guile-config | configure:9551: result: no | configure:9646: checking whether to build guile support | configure:9667: result: no | configure:9873: checking for emacs | configure:9902: result: no | configure:9873: checking for xemacs | configure:9902: result: no | configure:9923: checking where .elc files should go | configure:9952: result: ${datadir}/emacs/site-lisp | configure:9961: checking whether compiler defines __FUNCTION__ | configure:9976: gcc -o conftest -g -O2 conftest.c >&5 | configure:9979: $? = 0 | configure:9981: ./conftest | configure:9984: $? = 0 | configure:9986: result: yes | configure:10008: checking for additional includes | configure:10019: result: | configure:10022: checking for additional libraries | configure:10033: result: | configure:10038: checking for socket in -lsocket | configure:10068: gcc -o conftest -g -O2 conftest.c -lsocket >&5 | /usr/powerpc-hardhat-linux/bin/ld: cannot find -lsocket | collect2: ld returned 1 exit status | configure:10074: $? = 1 | configure: failed program was: | | /* confdefs.h. */ | | | | #define PACKAGE_NAME "GNU Radius" | | #define PACKAGE_TARNAME "radius" | | #define PACKAGE_VERSION "1.3" | | #define PACKAGE_STRING "GNU Radius 1.3" | | #define PACKAGE_BUGREPORT "[email protected]" | | #define PACKAGE "radius" | | #define VERSION "1.3" | | #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 HAVE_DLFCN_H 1 | | /* end confdefs.h. */ | | | | /* Override any gcc2 internal prototype to avoid an error. */ | | #ifdef __cplusplus | | extern "C" | | #endif | | /* We use char because int might match the return type of a gcc2 | | builtin and then its argument prototype would still apply. */ | | char socket (); | | int | | main () | | { | | socket (); | | ; | | return 0; | | } | configure:10100: result: no | configure:10112: checking for gethostbyaddr in -lnsl | configure:10142: gcc -o conftest -g -O2 conftest.c -lnsl >&5 | configure:10148: $? = 0 | configure:10152: test -z | || test ! -s conftest.err | configure:10155: $? = 0 | configure:10158: test -s conftest | configure:10161: $? = 0 | configure:10174: result: yes | configure:10186: checking for crypt in -lcrypt | configure:10216: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | configure:10222: $? = 0 | configure:10226: test -z | || test ! -s conftest.err | configure:10229: $? = 0 | configure:10232: test -s conftest | configure:10235: $? = 0 | configure:10248: result: yes | configure:10352: checking for ANSI C header files | configure:10505: result: yes | configure:10515: checking for sys/wait.h that is POSIX.1 compatible | configure:10546: gcc -c -g -O2 conftest.c >&5 | configure:10552: $? = 0 | configure:10556: test -z | || test ! -s conftest.err | configure:10559: $? = 0 | configure:10562: test -s conftest.o | configure:10565: $? = 0 | configure:10576: result: yes | configure:10629: checking argp.h usability | configure:10641: gcc -c -g -O2 conftest.c >&5 | configure:10647: $? = 0 | configure:10651: test -z | || test ! -s conftest.err | configure:10654: $? = 0 | configure:10657: test -s conftest.o | configure:10660: $? = 0 | configure:10670: result: yes | configure:10674: checking argp.h presence | configure:10684: gcc -E conftest.c | configure:10690: $? = 0 | configure:10710: result: yes | configure:10745: checking for argp.h | configure:10752: result: yes | configure:10629: checking fcntl.h usability | configure:10641: gcc -c -g -O2 conftest.c >&5 | configure:10647: $? = 0 | configure:10651: test -z | || test ! -s conftest.err | configure:10654: $? = 0 | configure:10657: test -s conftest.o | configure:10660: $? = 0 | configure:10670: result: yes | configure:10674: checking fcntl.h presence | configure:10684: gcc -E conftest.c | configure:10690: $? = 0 | configure:10710: result: yes | configure:10745: checking for fcntl.h | configure:10752: result: yes | configure:10629: checking malloc.h usability | configure:10641: gcc -c -g -O2 conftest.c >&5 | configure:10647: $? = 0 | configure:10651: test -z | || test ! -s conftest.err | configure:10654: $? = 0 | configure:10657: test -s conftest.o | configure:10660: $? = 0 | configure:10670: result: yes | configure:10674: checking malloc.h presence | configure:10684: gcc -E conftest.c | configure:10690: $? = 0 | configure:10710: result: yes | configure:10745: checking for malloc.h | configure:10752: result: yes | configure:10620: checking for strings.h | configure:10625: result: yes | configure:10629: checking sys/file.h usability | configure:10641: gcc -c -g -O2 conftest.c >&5 | configure:10647: $? = 0 | configure:10651: test -z | || test ! -s conftest.err | configure:10654: $? = 0 | configure:10657: test -s conftest.o | configure:10660: $? = 0 | configure:10670: result: yes | configure:10674: checking sys/file.h presence | configure:10684: gcc -E conftest.c | configure:10690: $? = 0 | configure:10710: result: yes | configure:10745: checking for sys/file.h | configure:10752: result: yes | configure:10629: checking sys/time.h usability | configure:10641: gcc -c -g -O2 conftest.c >&5 | configure:10647: $? = 0 | configure:10651: test -z | || test ! -s conftest.err | configure:10654: $? = 0 | configure:10657: test -s conftest.o | configure:10660: $? = 0 | configure:10670: result: yes | configure:10674: checking sys/time.h presence | configure:10684: gcc -E conftest.c | configure:10690: $? = 0 | configure:10710: result: yes | configure:10745: checking for sys/time.h | configure:10752: result: yes | configure:10620: checking for sys/types.h | configure:10625: result: yes | configure:10620: checking for unistd.h | configure:10625: result: yes | configure:10629: checking ctype.h usability | configure:10641: gcc -c -g -O2 conftest.c >&5 | configure:10647: $? = 0 | configure:10651: test -z | || test ! -s conftest.err | configure:10654: $? = 0 | configure:10657: test -s conftest.o | configure:10660: $? = 0 | configure:10670: result: yes | configure:10674: checking ctype.h presence | configure:10684: gcc -E conftest.c | configure:10690: $? = 0 | configure:10710: result: yes | configure:10745: checking for ctype.h | configure:10752: result: yes | configure:10629: checking sys/socket.h usability | configure:10641: gcc -c -g -O2 conftest.c >&5 | configure:10647: $? = 0 | configure:10651: test -z | || test ! -s conftest.err | configure:10654: $? = 0 | configure:10657: test -s conftest.o | configure:10660: $? = 0 | configure:10670: result: yes | configure:10674: checking sys/socket.h presence | configure:10684: gcc -E conftest.c | configure:10690: $? = 0 | configure:10710: result: yes | configure:10745: checking for sys/socket.h | configure:10752: result: yes | configure:10629: checking socket.h usability | configure:10641: gcc -c -g -O2 conftest.c >&5 | conftest.c:70: socket.h: No such file or directory | configure:10647: $? = 1 | configure: failed program was: | | /* confdefs.h. */ | | | | #define PACKAGE_NAME "GNU Radius" | | #define PACKAGE_TARNAME "radius" | | #define PACKAGE_VERSION "1.3" | | #define PACKAGE_STRING "GNU Radius 1.3" | | #define PACKAGE_BUGREPORT "[email protected]" | | #define PACKAGE "radius" | | #define VERSION "1.3" | | #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 HAVE_DLFCN_H 1 | | #define HAVE_LIBNSL 1 | | #define HAVE_LIBCRYPT 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_ARGP_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 <stdio.h> | | #if HAVE_SYS_TYPES_H | | # include <sys/types.h> | | #endif | | #if HAVE_SYS_STAT_H | | # include <sys/stat.h> | | #endif | | #if STDC_HEADERS | | # include <stdlib.h> | | # include <stddef.h> | | #else | | # if HAVE_STDLIB_H | | # include <stdlib.h> | | # endif | | #endif | | #if HAVE_STRING_H | | # if !STDC_HEADERS && HAVE_MEMORY_H | | # include <memory.h> | | # endif | | # include <string.h> | | #endif | | #if HAVE_STRINGS_H | | # include <strings.h> | | #endif | | #if HAVE_INTTYPES_H | | # include <inttypes.h> | | #else | | # if HAVE_STDINT_H | | # include <stdint.h> | | # endif | | #endif | | #if HAVE_UNISTD_H | | # include <unistd.h> | | #endif | | #include <socket.h> | configure:10670: result: no | configure:10674: checking socket.h presence | configure:10684: gcc -E conftest.c | conftest.c:36: socket.h: No such file or directory | configure:10690: $? = 1 | configure: failed program was: | | /* confdefs.h. */ | | | | #define PACKAGE_NAME "GNU Radius" | | #define PACKAGE_TARNAME "radius" | | #define PACKAGE_VERSION "1.3" | | #define PACKAGE_STRING "GNU Radius 1.3" | | #define PACKAGE_BUGREPORT "[email protected]" | | #define PACKAGE "radius" | | #define VERSION "1.3" | | #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 HAVE_DLFCN_H 1 | | #define HAVE_LIBNSL 1 | | #define HAVE_LIBCRYPT 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_ARGP_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 <socket.h> | configure:10710: result: no | configure:10745: checking for socket.h | configure:10752: result: no | configure:10629: checking netinet/in.h usability | configure:10641: gcc -c -g -O2 conftest.c >&5 | configure:10647: $? = 0 | configure:10651: test -z | || test ! -s conftest.err | configure:10654: $? = 0 | configure:10657: test -s conftest.o | configure:10660: $? = 0 | configure:10670: result: yes | configure:10674: checking netinet/in.h presence | configure:10684: gcc -E conftest.c | configure:10690: $? = 0 | configure:10710: result: yes | configure:10745: checking for netinet/in.h | configure:10752: result: yes | configure:10629: checking arpa/inet.h usability | configure:10641: gcc -c -g -O2 conftest.c >&5 | configure:10647: $? = 0 | configure:10651: test -z | || test ! -s conftest.err | configure:10654: $? = 0 | configure:10657: test -s conftest.o | configure:10660: $? = 0 | configure:10670: result: yes | configure:10674: checking arpa/inet.h presence | configure:10684: gcc -E conftest.c | configure:10690: $? = 0 | configure:10710: result: yes | configure:10745: checking for arpa/inet.h | configure:10752: result: yes | configure:10629: checking netdb.h usability | configure:10641: gcc -c -g -O2 conftest.c >&5 | configure:10647: $? = 0 | configure:10651: test -z | || test ! -s conftest.err | configure:10654: $? = 0 | configure:10657: test -s conftest.o | configure:10660: $? = 0 | configure:10670: result: yes | configure:10674: checking netdb.h presence | configure:10684: gcc -E conftest.c | configure:10690: $? = 0 | configure:10710: result: yes | configure:10745: checking for netdb.h | configure:10752: result: yes | configure:10629: checking stdarg.h usability | configure:10641: gcc -c -g -O2 conftest.c >&5 | configure:10647: $? = 0 | configure:10651: test -z | || test ! -s conftest.err | configure:10654: $? = 0 | configure:10657: test -s conftest.o | configure:10660: $? = 0 | configure:10670: result: yes | configure:10674: checking stdarg.h presence | configure:10684: gcc -E conftest.c | configure:10690: $? = 0 | configure:10710: result: yes | configure:10745: checking for stdarg.h | configure:10752: result: yes | configure:10629: checking varargs.h usability | configure:10641: gcc -c -g -O2 conftest.c >&5 | configure:10647: $? = 0 | configure:10651: test -z | || test ! -s conftest.err | configure:10654: $? = 0 | configure:10657: test -s conftest.o | configure:10660: $? = 0 | configure:10670: result: yes | configure:10674: checking varargs.h presence | configure:10684: gcc -E conftest.c | configure:10690: $? = 0 | configure:10710: result: yes | configure:10745: checking for varargs.h | configure:10752: result: yes | configure:10629: checking termcap.h usability | configure:10641: gcc -c -g -O2 conftest.c >&5 | configure:10647: $? = 0 | configure:10651: test -z | || test ! -s conftest.err | configure:10654: $? = 0 | configure:10657: test -s conftest.o | configure:10660: $? = 0 | configure:10670: result: yes | configure:10674: checking termcap.h presence | configure:10684: gcc -E conftest.c | configure:10690: $? = 0 | configure:10710: result: yes | configure:10745: checking for termcap.h | configure:10752: result: yes | configure:10629: checking termios.h usability | configure:10641: gcc -c -g -O2 conftest.c >&5 | configure:10647: $? = 0 | configure:10651: test -z | || test ! -s conftest.err | configure:10654: $? = 0 | configure:10657: test -s conftest.o | configure:10660: $? = 0 | configure:10670: result: yes | configure:10674: checking termios.h presence | configure:10684: gcc -E conftest.c | configure:10690: $? = 0 | configure:10710: result: yes | configure:10745: checking for termios.h | configure:10752: result: yes | configure:10629: checking termio.h usability | configure:10641: gcc -c -g -O2 conftest.c >&5 | configure:10647: $? = 0 | configure:10651: test -z | || test ! -s conftest.err | configure:10654: $? = 0 | configure:10657: test -s conftest.o | configure:10660: $? = 0 | configure:10670: result: yes | configure:10674: checking termio.h presence | configure:10684: gcc -E conftest.c | configure:10690: $? = 0 | configure:10710: result: yes | configure:10745: checking for termio.h | configure:10752: result: yes | configure:10629: checking sgtty.h usability | configure:10641: gcc -c -g -O2 conftest.c >&5 | configure:10647: $? = 0 | configure:10651: test -z | || test ! -s conftest.err | configure:10654: $? = 0 | configure:10657: test -s conftest.o | configure:10660: $? = 0 | configure:10670: result: yes | configure:10674: checking sgtty.h presence | configure:10684: gcc -E conftest.c | configure:10690: $? = 0 | configure:10710: result: yes | configure:10745: checking for sgtty.h | configure:10752: result: yes | configure:10629: checking crypt.h usability | configure:10641: gcc -c -g -O2 conftest.c >&5 | configure:10647: $? = 0 | configure:10651: test -z | || test ! -s conftest.err | configure:10654: $? = 0 | configure:10657: test -s conftest.o | configure:10660: $? = 0 | configure:10670: result: yes | configure:10674: checking crypt.h presence | configure:10684: gcc -E conftest.c | configure:10690: $? = 0 | configure:10710: result: yes | configure:10745: checking for crypt.h | configure:10752: result: yes | configure:10629: checking sys/uio.h usability | configure:10641: gcc -c -g -O2 conftest.c >&5 | configure:10647: $? = 0 | configure:10651: test -z | || test ! -s conftest.err | configure:10654: $? = 0 | configure:10657: test -s conftest.o | configure:10660: $? = 0 | configure:10670: result: yes | configure:10674: checking sys/uio.h presence | configure:10684: gcc -E conftest.c | configure:10690: $? = 0 | configure:10710: result: yes | configure:10745: checking for sys/uio.h | configure:10752: result: yes | configure:10629: checking sys/select.h usability | configure:10641: gcc -c -g -O2 conftest.c >&5 | configure:10647: $? = 0 | configure:10651: test -z | || test ! -s conftest.err | configure:10654: $? = 0 | configure:10657: test -s conftest.o | configure:10660: $? = 0 | configure:10670: result: yes | configure:10674: checking sys/select.h presence | configure:10684: gcc -E conftest.c | configure:10690: $? = 0 | configure:10710: result: yes | configure:10745: checking for sys/select.h | configure:10752: result: yes | configure:10629: checking sys/resources.h usability | configure:10641: gcc -c -g -O2 conftest.c >&5 | conftest.c:82: sys/resources.h: No such file or directory | configure:10647: $? = 1 | configure: failed program was: | | /* confdefs.h. */ | | | | #define PACKAGE_NAME "GNU Radius" | | #define PACKAGE_TARNAME "radius" | | #define PACKAGE_VERSION "1.3" | | #define PACKAGE_STRING "GNU Radius 1.3" | | #define PACKAGE_BUGREPORT "[email protected]" | | #define PACKAGE "radius" | | #define VERSION "1.3" | | #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 HAVE_DLFCN_H 1 | | #define HAVE_LIBNSL 1 | | #define HAVE_LIBCRYPT 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_ARGP_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_VARARGS_H 1 | | #define HAVE_TERMCAP_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 <stdio.h> | | #if HAVE_SYS_TYPES_H | | # include <sys/types.h> | | #endif | | #if HAVE_SYS_STAT_H | | # include <sys/stat.h> | | #endif | | #if STDC_HEADERS | | # include <stdlib.h> | | # include <stddef.h> | | #else | | # if HAVE_STDLIB_H | | # include <stdlib.h> | | # endif | | #endif | | #if HAVE_STRING_H | | # if !STDC_HEADERS && HAVE_MEMORY_H | | # include <memory.h> | | # endif | | # include <string.h> | | #endif | | #if HAVE_STRINGS_H | | # include <strings.h> | | #endif | | #if HAVE_INTTYPES_H | | # include <inttypes.h> | | #else | | # if HAVE_STDINT_H | | # include <stdint.h> | | # endif | | #endif | | #if HAVE_UNISTD_H | | # include <unistd.h> | | #endif | | #include <sys/resources.h> | configure:10670: result: no | configure:10674: checking sys/resources.h presence | configure:10684: gcc -E conftest.c | conftest.c:48: sys/resources.h: No such file or directory | configure:10690: $? = 1 | configure: failed program was: | | /* confdefs.h. */ | | | | #define PACKAGE_NAME "GNU Radius" | | #define PACKAGE_TARNAME "radius" | | #define PACKAGE_VERSION "1.3" | | #define PACKAGE_STRING "GNU Radius 1.3" | | #define PACKAGE_BUGREPORT "[email protected]" | | #define PACKAGE "radius" | | #define VERSION "1.3" | | #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 HAVE_DLFCN_H 1 | | #define HAVE_LIBNSL 1 | | #define HAVE_LIBCRYPT 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_ARGP_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_VARARGS_H 1 | | #define HAVE_TERMCAP_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 <sys/resources.h> | configure:10710: result: no | configure:10745: checking for sys/resources.h | configure:10752: result: no | configure:10629: checking getopt.h usability | configure:10641: gcc -c -g -O2 conftest.c >&5 | configure:10647: $? = 0 | configure:10651: test -z | || test ! -s conftest.err | configure:10654: $? = 0 | configure:10657: test -s conftest.o | configure:10660: $? = 0 | configure:10670: result: yes | configure:10674: checking getopt.h presence | configure:10684: gcc -E conftest.c | configure:10690: $? = 0 | configure:10710: result: yes | configure:10745: checking for getopt.h | configure:10752: result: yes | configure:10629: checking libintl.h usability | configure:10641: gcc -c -g -O2 conftest.c >&5 | configure:10647: $? = 0 | configure:10651: test -z | || test ! -s conftest.err | configure:10654: $? = 0 | configure:10657: test -s conftest.o | configure:10660: $? = 0 | configure:10670: result: yes | configure:10674: checking libintl.h presence | configure:10684: gcc -E conftest.c | configure:10690: $? = 0 | configure:10710: result: yes | configure:10745: checking for libintl.h | configure:10752: result: yes | configure:10766: checking for pid_t | configure:10790: gcc -c -g -O2 conftest.c >&5 | configure:10796: $? = 0 | configure:10800: test -z | || test ! -s conftest.err | configure:10803: $? = 0 | configure:10806: test -s conftest.o | configure:10809: $? = 0 | configure:10820: result: yes | configure:10832: checking for size_t | configure:10856: gcc -c -g -O2 conftest.c >&5 | configure:10862: $? = 0 | configure:10866: test -z | || test ! -s conftest.err | configure:10869: $? = 0 | configure:10872: test -s conftest.o | configure:10875: $? = 0 | configure:10886: result: yes | configure:10898: checking for off_t | configure:10922: gcc -c -g -O2 conftest.c >&5 | configure:10928: $? = 0 | configure:10932: test -z | || test ! -s conftest.err | configure:10935: $? = 0 | configure:10938: test -s conftest.o | configure:10941: $? = 0 | configure:10952: result: yes | configure:10964: checking return type of signal handlers | configure:10995: gcc -c -g -O2 conftest.c >&5 | configure:11001: $? = 0 | configure:11005: test -z | || test ! -s conftest.err | configure:11008: $? = 0 | configure:11011: test -s conftest.o | configure:11014: $? = 0 | configure:11025: result: void | configure:11033: checking for uint32_t | configure:11057: gcc -c -g -O2 conftest.c >&5 | configure:11063: $? = 0 | configure:11067: test -z | || test ! -s conftest.err | configure:11070: $? = 0 | configure:11073: test -s conftest.o | configure:11076: $? = 0 | configure:11087: result: yes | configure:11090: checking size of uint32_t | configure:11409: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | configure:11412: $? = 0 | configure:11414: ./conftest | configure:11417: $? = 0 | configure:11440: result: 4 | configure:11447: checking for unsigned long | configure:11471: gcc -c -g -O2 conftest.c >&5 | configure:11477: $? = 0 | configure:11481: test -z | || test ! -s conftest.err | configure:11484: $? = 0 | configure:11487: test -s conftest.o | configure:11490: $? = 0 | configure:11501: result: yes | configure:11504: checking size of unsigned long | configure:11823: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | configure:11826: $? = 0 | configure:11828: ./conftest | configure:11831: $? = 0 | configure:11854: result: 4 | configure:11861: checking for unsigned int | configure:11885: gcc -c -g -O2 conftest.c >&5 | configure:11891: $? = 0 | configure:11895: test -z | || test ! -s conftest.err | configure:11898: $? = 0 | configure:11901: test -s conftest.o | configure:11904: $? = 0 | configure:11915: result: yes | configure:11918: checking size of unsigned int | configure:12237: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | configure:12240: $? = 0 | configure:12242: ./conftest | configure:12245: $? = 0 | configure:12268: result: 4 | configure:12276: checking for socklen_t | configure:12311: gcc -c -g -O2 conftest.c >&5 | configure:12317: $? = 0 | configure:12321: test -z | || test ! -s conftest.err | configure:12324: $? = 0 | configure:12327: test -s conftest.o | configure:12330: $? = 0 | configure:12341: result: yes | configure:12354: checking for struct passwd.pw_expire | configure:12378: gcc -c -g -O2 conftest.c >&5 | conftest.c: In function `main': | conftest.c:60: structure has no member named `pw_expire' | configure:12384: $? = 1 | configure: failed program was: | | /* confdefs.h. */ | | | | #define PACKAGE_NAME "GNU Radius" | | #define PACKAGE_TARNAME "radius" | | #define PACKAGE_VERSION "1.3" | | #define PACKAGE_STRING "GNU Radius 1.3" | | #define PACKAGE_BUGREPORT "[email protected]" | | #define PACKAGE "radius" | | #define VERSION "1.3" | | #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 HAVE_DLFCN_H 1 | | #define HAVE_LIBNSL 1 | | #define HAVE_LIBCRYPT 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_ARGP_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_VARARGS_H 1 | | #define HAVE_TERMCAP_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_GETOPT_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 <pwd.h> | | | | int | | main () | | { | | static struct passwd ac_aggr; | | if (ac_aggr.pw_expire) | | return 0; | | ; | | return 0; | | } | configure:12423: gcc -c -g -O2 conftest.c >&5 | conftest.c: In function `main': | conftest.c:60: structure has no member named `pw_expire' | configure:12429: $? = 1 | configure: failed program was: | | /* confdefs.h. */ | | | | #define PACKAGE_NAME "GNU Radius" | | #define PACKAGE_TARNAME "radius" | | #define PACKAGE_VERSION "1.3" | | #define PACKAGE_STRING "GNU Radius 1.3" | | #define PACKAGE_BUGREPORT "[email protected]" | | #define PACKAGE "radius" | | #define VERSION "1.3" | | #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 HAVE_DLFCN_H 1 | | #define HAVE_LIBNSL 1 | | #define HAVE_LIBCRYPT 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_ARGP_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_VARARGS_H 1 | | #define HAVE_TERMCAP_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_GETOPT_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 <pwd.h> | | | | int | | main () | | { | | static struct passwd ac_aggr; | | if (sizeof ac_aggr.pw_expire) | | return 0; | | ; | | return 0; | | } | configure:12455: result: no | configure:12465: checking for struct passwd.pw_change | configure:12489: gcc -c -g -O2 conftest.c >&5 | conftest.c: In function `main': | conftest.c:60: structure has no member named `pw_change' | configure:12495: $? = 1 | configure: failed program was: | | /* confdefs.h. */ | | | | #define PACKAGE_NAME "GNU Radius" | | #define PACKAGE_TARNAME "radius" | | #define PACKAGE_VERSION "1.3" | | #define PACKAGE_STRING "GNU Radius 1.3" | | #define PACKAGE_BUGREPORT "[email protected]" | | #define PACKAGE "radius" | | #define VERSION "1.3" | | #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 HAVE_DLFCN_H 1 | | #define HAVE_LIBNSL 1 | | #define HAVE_LIBCRYPT 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_ARGP_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_VARARGS_H 1 | | #define HAVE_TERMCAP_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_GETOPT_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 <pwd.h> | | | | int | | main () | | { | | static struct passwd ac_aggr; | | if (ac_aggr.pw_change) | | return 0; | | ; | | return 0; | | } | configure:12534: gcc -c -g -O2 conftest.c >&5 | conftest.c: In function `main': | conftest.c:60: structure has no member named `pw_change' | configure:12540: $? = 1 | configure: failed program was: | | /* confdefs.h. */ | | | | #define PACKAGE_NAME "GNU Radius" | | #define PACKAGE_TARNAME "radius" | | #define PACKAGE_VERSION "1.3" | | #define PACKAGE_STRING "GNU Radius 1.3" | | #define PACKAGE_BUGREPORT "[email protected]" | | #define PACKAGE "radius" | | #define VERSION "1.3" | | #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 HAVE_DLFCN_H 1 | | #define HAVE_LIBNSL 1 | | #define HAVE_LIBCRYPT 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_ARGP_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_VARARGS_H 1 | | #define HAVE_TERMCAP_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_GETOPT_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 <pwd.h> | | | | int | | main () | | { | | static struct passwd ac_aggr; | | if (sizeof ac_aggr.pw_change) | | return 0; | | ; | | return 0; | | } | configure:12566: result: no | configure:12589: checking shadow.h usability | configure:12601: gcc -c -g -O2 conftest.c >&5 | configure:12607: $? = 0 | configure:12611: test -z | || test ! -s conftest.err | configure:12614: $? = 0 | configure:12617: test -s conftest.o | configure:12620: $? = 0 | configure:12630: result: yes | configure:12634: checking shadow.h presence | configure:12644: gcc -E conftest.c | configure:12650: $? = 0 | configure:12670: result: yes | configure:12705: checking for shadow.h | configure:12712: result: yes | configure:12721: checking for getspnam | configure:12778: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | configure:12784: $? = 0 | configure:12788: test -z | || test ! -s conftest.err | configure:12791: $? = 0 | configure:12794: test -s conftest | configure:12797: $? = 0 | configure:12809: result: yes | configure:12819: checking for struct spwd | configure:12844: gcc -c -g -O2 conftest.c >&5 | configure:12850: $? = 0 | configure:12854: test -z | || test ! -s conftest.err | configure:12857: $? = 0 | configure:12860: test -s conftest.o | configure:12863: $? = 0 | configure:12874: result: yes | configure:12885: checking for struct spwd.sp_expire | configure:12909: gcc -c -g -O2 conftest.c >&5 | configure:12915: $? = 0 | configure:12919: test -z | || test ! -s conftest.err | configure:12922: $? = 0 | configure:12925: test -s conftest.o | configure:12928: $? = 0 | configure:12986: result: yes | configure:13581: checking whether NLS is requested | configure:13590: result: yes | configure:13628: checking for msgfmt | configure:13659: result: /usr/bin/msgfmt | configure:13668: checking for gmsgfmt | configure:13699: result: /usr/bin/msgfmt | configure:13738: checking for xgettext | configure:13772: result: no | configure:13809: checking for msgmerge | configure:13842: result: no | configure:13915: checking for ranlib | configure:13942: result: ranlib | configure:13954: checking for library containing strerror | configure:13984: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | configure:13990: $? = 0 | configure:13994: test -z | || test ! -s conftest.err | configure:13997: $? = 0 | configure:14000: test -s conftest | configure:14003: $? = 0 | configure:14073: result: none required | configure:14080: checking for an ANSI C-conforming const | configure:14147: gcc -c -g -O2 conftest.c >&5 | configure:14153: $? = 0 | configure:14157: test -z | || test ! -s conftest.err | configure:14160: $? = 0 | configure:14163: test -s conftest.o | configure:14166: $? = 0 | configure:14177: result: yes | configure:14187: checking for inline | configure:14208: gcc -c -g -O2 conftest.c >&5 | configure:14214: $? = 0 | configure:14218: test -z | || test ! -s conftest.err | configure:14221: $? = 0 | configure:14224: test -s conftest.o | configure:14227: $? = 0 | configure:14239: result: inline | configure:14260: checking for working alloca.h | configure:14281: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | configure:14287: $? = 0 | configure:14291: test -z | || test ! -s conftest.err | configure:14294: $? = 0 | configure:14297: test -s conftest | configure:14300: $? = 0 | configure:14312: result: yes | configure:14322: checking for alloca | configure:14363: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | configure:14369: $? = 0 | configure:14373: test -z | || test ! -s conftest.err | configure:14376: $? = 0 | configure:14379: test -s conftest | configure:14382: $? = 0 | configure:14394: result: yes | configure:14623: checking for stdlib.h | configure:14628: result: yes | configure:14623: checking for unistd.h | configure:14628: result: yes | configure:14772: checking for getpagesize | configure:14829: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | configure:14835: $? = 0 | configure:14839: test -z | || test ! -s conftest.err | configure:14842: $? = 0 | configure:14845: test -s conftest | configure:14848: $? = 0 | configure:14860: result: yes | configure:14870: checking for working mmap | configure:15012: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | configure:15015: $? = 0 | configure:15017: ./conftest | configure:15020: $? = 0 | configure:15034: result: yes | configure:15046: checking whether we are using the GNU C Library 2.1 or newer | configure:15077: result: yes | configure:15085: checking whether integer division by zero raises SIGFPE | configure:15147: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | configure:15150: $? = 0 | configure:15152: ./conftest | configure:15155: $? = 1 | configure: program exited with status 1 | configure: failed program was: | | /* confdefs.h. */ | | | | #define PACKAGE_NAME "GNU Radius" | | #define PACKAGE_TARNAME "radius" | | #define PACKAGE_VERSION "1.3" | | #define PACKAGE_STRING "GNU Radius 1.3" | | #define PACKAGE_BUGREPORT "[email protected]" | | #define PACKAGE "radius" | | #define VERSION "1.3" | | #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 HAVE_DLFCN_H 1 | | #define HAVE_LIBNSL 1 | | #define HAVE_LIBCRYPT 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_ARGP_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_VARARGS_H 1 | | #define HAVE_TERMCAP_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_GETOPT_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 HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_GETPAGESIZE 1 | | #define HAVE_MMAP 1 | | /* end confdefs.h. */ | | | | #include <stdlib.h> | | #include <signal.h> | | | | static void | | #ifdef __cplusplus | | sigfpe_handler (int sig) | | #else | | sigfpe_handler (sig) int sig; | | #endif | | { | | /* Exit with code 0 if SIGFPE, with code 1 if any other signal. */ | | exit (sig != SIGFPE); | | } | | | | int x = 1; | | int y = 0; | | int z; | | int nan; | | | | int main () | | { | | signal (SIGFPE, sigfpe_handler); | | /* IRIX and AIX (when "xlc -qcheck" is used) yield signal SIGTRAP. */ | | #if (defined (__sgi) || defined (_AIX)) && defined (SIGTRAP) | | signal (SIGTRAP, sigfpe_handler); | | #endif | | /* Linux/SPARC yields signal SIGILL. */ | | #if defined (__sparc__) && defined (__linux__) | | signal (SIGILL, sigfpe_handler); | | #endif | | | | z = x / y; | | nan = y / y; | | exit (1); | | } | | | configure:15170: result: no | configure:15183: checking for inttypes.h | configure:15205: gcc -c -g -O2 conftest.c >&5 | configure:15211: $? = 0 | configure:15215: test -z | || test ! -s conftest.err | configure:15218: $? = 0 | configure:15221: test -s conftest.o | configure:15224: $? = 0 | configure:15235: result: yes | configure:15246: checking for stdint.h | configure:15268: gcc -c -g -O2 conftest.c >&5 | configure:15274: $? = 0 | configure:15278: test -z | || test ! -s conftest.err | configure:15281: $? = 0 | configure:15284: test -s conftest.o | configure:15287: $? = 0 | configure:15298: result: yes | configure:15309: checking for unsigned long long | configure:15331: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | configure:15337: $? = 0 | configure:15341: test -z | || test ! -s conftest.err | configure:15344: $? = 0 | configure:15347: test -s conftest | configure:15350: $? = 0 | configure:15362: result: yes | configure:15394: checking for inttypes.h | configure:15417: gcc -c -g -O2 conftest.c >&5 | configure:15423: $? = 0 | configure:15427: test -z | || test ! -s conftest.err | configure:15430: $? = 0 | configure:15433: test -s conftest.o | configure:15436: $? = 0 | configure:15448: result: yes | configure:15461: checking whether the inttypes.h PRIxNN macros are broken | configure:15487: gcc -c -g -O2 conftest.c >&5 | configure:15493: $? = 0 | configure:15497: test -z | || test ! -s conftest.err | configure:15500: $? = 0 | configure:15503: test -s conftest.o | configure:15506: $? = 0 | configure:15518: result: no | configure:15569: checking for ld used by GCC | configure:15632: result: /usr/powerpc-hardhat-linux/bin/ld | configure:15641: checking if the linker (/usr/powerpc-hardhat-linux/bin/ld) is GNU ld | configure:15653: result: no | configure:15659: checking for shared library run path origin | configure:15672: result: done | configure:16098: checking argz.h usability | configure:16110: gcc -c -g -O2 conftest.c >&5 | configure:16116: $? = 0 | configure:16120: test -z | || test ! -s conftest.err | configure:16123: $? = 0 | configure:16126: test -s conftest.o | configure:16129: $? = 0 | configure:16139: result: yes | configure:16143: checking argz.h presence | configure:16153: gcc -E conftest.c | configure:16159: $? = 0 | configure:16179: result: yes | configure:16214: checking for argz.h | configure:16221: result: yes | configure:16098: checking limits.h usability | configure:16110: gcc -c -g -O2 conftest.c >&5 | configure:16116: $? = 0 | configure:16120: test -z | || test ! -s conftest.err | configure:16123: $? = 0 | configure:16126: test -s conftest.o | configure:16129: $? = 0 | configure:16139: result: yes | configure:16143: checking limits.h presence | configure:16153: gcc -E conftest.c | configure:16159: $? = 0 | configure:16179: result: yes | configure:16214: checking for limits.h | configure:16221: result: yes | configure:16098: checking locale.h usability | configure:16110: gcc -c -g -O2 conftest.c >&5 | configure:16116: $? = 0 | configure:16120: test -z | || test ! -s conftest.err | configure:16123: $? = 0 | configure:16126: test -s conftest.o | configure:16129: $? = 0 | configure:16139: result: yes | configure:16143: checking locale.h presence | configure:16153: gcc -E conftest.c | configure:16159: $? = 0 | configure:16179: result: yes | configure:16214: checking for locale.h | configure:16221: result: yes | configure:16098: checking nl_types.h usability | configure:16110: gcc -c -g -O2 conftest.c >&5 | configure:16116: $? = 0 | configure:16120: test -z | || test ! -s conftest.err | configure:16123: $? = 0 | configure:16126: test -s conftest.o | configure:16129: $? = 0 | configure:16139: result: yes | configure:16143: checking nl_types.h presence | configure:16153: gcc -E conftest.c | configure:16159: $? = 0 | configure:16179: result: yes | configure:16214: checking for nl_types.h | configure:16221: result: yes | configure:16089: checking for malloc.h | configure:16094: result: yes | configure:16098: checking stddef.h usability | configure:16110: gcc -c -g -O2 conftest.c >&5 | configure:16116: $? = 0 | configure:16120: test -z | || test ! -s conftest.err | configure:16123: $? = 0 | configure:16126: test -s conftest.o | configure:16129: $? = 0 | configure:16139: result: yes | configure:16143: checking stddef.h presence | configure:16153: gcc -E conftest.c | configure:16159: $? = 0 | configure:16179: result: yes | configure:16214: checking for stddef.h | configure:16221: result: yes | configure:16089: checking for stdlib.h | configure:16094: result: yes | configure:16089: checking for string.h | configure:16094: result: yes | configure:16089: checking for unistd.h | configure:16094: result: yes | configure:16098: checking sys/param.h usability | configure:16110: gcc -c -g -O2 conftest.c >&5 | configure:16116: $? = 0 | configure:16120: test -z | || test ! -s conftest.err | configure:16123: $? = 0 | configure:16126: test -s conftest.o | configure:16129: $? = 0 | configure:16139: result: yes | configure:16143: checking sys/param.h presence | configure:16153: gcc -E conftest.c | configure:16159: $? = 0 | configure:16179: result: yes | configure:16214: checking for sys/param.h | configure:16221: result: yes | configure:16262: checking for feof_unlocked | configure:16319: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | configure:16325: $? = 0 | configure:16329: test -z | || test ! -s conftest.err | configure:16332: $? = 0 | configure:16335: test -s conftest | configure:16338: $? = 0 | configure:16350: result: yes | configure:16262: checking for fgets_unlocked | configure:16319: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | configure:16325: $? = 0 | configure:16329: test -z | || test ! -s conftest.err | configure:16332: $? = 0 | configure:16335: test -s conftest | configure:16338: $? = 0 | configure:16350: result: yes | configure:16262: checking for getc_unlocked | configure:16319: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | configure:16325: $? = 0 | configure:16329: test -z | || test ! -s conftest.err | configure:16332: $? = 0 | configure:16335: test -s conftest | configure:16338: $? = 0 | configure:16350: result: yes | configure:16262: checking for getcwd | configure:16319: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | configure:16325: $? = 0 | configure:16329: test -z | || test ! -s conftest.err | configure:16332: $? = 0 | configure:16335: test -s conftest | configure:16338: $? = 0 | configure:16350: result: yes | configure:16262: checking for getegid | configure:16319: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | configure:16325: $? = 0 | configure:16329: test -z | || test ! -s conftest.err | configure:16332: $? = 0 | configure:16335: test -s conftest | configure:16338: $? = 0 | configure:16350: result: yes | configure:16262: checking for geteuid | configure:16319: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | configure:16325: $? = 0 | configure:16329: test -z | || test ! -s conftest.err | configure:16332: $? = 0 | configure:16335: test -s conftest | configure:16338: $? = 0 | configure:16350: result: yes | configure:16262: checking for getgid | configure:16319: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | configure:16325: $? = 0 | configure:16329: test -z | || test ! -s conftest.err | configure:16332: $? = 0 | configure:16335: test -s conftest | configure:16338: $? = 0 | configure:16350: result: yes | configure:16262: checking for getuid | configure:16319: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | configure:16325: $? = 0 | configure:16329: test -z | || test ! -s conftest.err | configure:16332: $? = 0 | configure:16335: test -s conftest | configure:16338: $? = 0 | configure:16350: result: yes | configure:16262: checking for mempcpy | configure:16319: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | configure:16325: $? = 0 | configure:16329: test -z | || test ! -s conftest.err | configure:16332: $? = 0 | configure:16335: test -s conftest | configure:16338: $? = 0 | configure:16350: result: yes | configure:16262: checking for munmap | configure:16319: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | configure:16325: $? = 0 | configure:16329: test -z | || test ! -s conftest.err | configure:16332: $? = 0 | configure:16335: test -s conftest | configure:16338: $? = 0 | configure:16350: result: yes | configure:16262: checking for putenv | configure:16319: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | configure:16325: $? = 0 | configure:16329: test -z | || test ! -s conftest.err | configure:16332: $? = 0 | configure:16335: test -s conftest | configure:16338: $? = 0 | configure:16350: result: yes | configure:16262: checking for setenv | configure:16319: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | configure:16325: $? = 0 | configure:16329: test -z | || test ! -s conftest.err | configure:16332: $? = 0 | configure:16335: test -s conftest | configure:16338: $? = 0 | configure:16350: result: yes | configure:16262: checking for setlocale | configure:16319: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | configure:16325: $? = 0 | configure:16329: test -z | || test ! -s conftest.err | configure:16332: $? = 0 | configure:16335: test -s conftest | configure:16338: $? = 0 | configure:16350: result: yes | configure:16262: checking for stpcpy | configure:16319: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | configure:16325: $? = 0 | configure:16329: test -z | || test ! -s conftest.err | configure:16332: $? = 0 | configure:16335: test -s conftest | configure:16338: $? = 0 | configure:16350: result: yes | configure:16262: checking for strcasecmp | configure:16319: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | configure:16325: $? = 0 | configure:16329: test -z | || test ! -s conftest.err | configure:16332: $? = 0 | configure:16335: test -s conftest | configure:16338: $? = 0 | configure:16350: result: yes | configure:16262: checking for strdup | configure:16319: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | configure:16325: $? = 0 | configure:16329: test -z | || test ! -s conftest.err | configure:16332: $? = 0 | configure:16335: test -s conftest | configure:16338: $? = 0 | configure:16350: result: yes | configure:16262: checking for strtoul | configure:16319: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | configure:16325: $? = 0 | configure:16329: test -z | || test ! -s conftest.err | configure:16332: $? = 0 | configure:16335: test -s conftest | configure:16338: $? = 0 | configure:16350: result: yes | configure:16262: checking for tsearch | configure:16319: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | configure:16325: $? = 0 | configure:16329: test -z | || test ! -s conftest.err | configure:16332: $? = 0 | configure:16335: test -s conftest | configure:16338: $? = 0 | configure:16350: result: yes | configure:16262: checking for __argz_count | configure:16319: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | configure:16325: $? = 0 | configure:16329: test -z | || test ! -s conftest.err | configure:16332: $? = 0 | configure:16335: test -s conftest | configure:16338: $? = 0 | configure:16350: result: yes | configure:16262: checking for __argz_stringify | configure:16319: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | configure:16325: $? = 0 | configure:16329: test -z | || test ! -s conftest.err | configure:16332: $? = 0 | configure:16335: test -s conftest | configure:16338: $? = 0 | configure:16350: result: yes | configure:16262: checking for __argz_next | configure:16319: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | configure:16325: $? = 0 | configure:16329: test -z | || test ! -s conftest.err | configure:16332: $? = 0 | configure:16335: test -s conftest | configure:16338: $? = 0 | configure:16350: result: yes | configure:16262: checking for __fsetlocking | configure:16319: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | configure:16325: $? = 0 | configure:16329: test -z | || test ! -s conftest.err | configure:16332: $? = 0 | configure:16335: test -s conftest | configure:16338: $? = 0 | configure:16350: result: yes | configure:16391: checking for iconv | configure:16418: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | configure:16424: $? = 0 | configure:16428: test -z | || test ! -s conftest.err | configure:16431: $? = 0 | configure:16434: test -s conftest | configure:16437: $? = 0 | configure:16503: result: yes | configure:16526: checking for iconv declaration | configure:16560: gcc -c -g -O2 conftest.c >&5 | configure:16566: $? = 0 | configure:16570: test -z | || test ! -s conftest.err | configure:16573: $? = 0 | configure:16576: test -s conftest.o | configure:16579: $? = 0 | configure:16594: result: | extern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft); | configure:16605: checking for nl_langinfo and CODESET | configure:16626: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | configure:16632: $? = 0 | configure:16636: test -z | || test ! -s conftest.err | configure:16639: $? = 0 | configure:16642: test -s conftest | configure:16645: $? = 0 | configure:16658: result: yes | configure:16670: checking for LC_MESSAGES | configure:16691: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | configure:16697: $? = 0 | configure:16701: test -z | || test ! -s conftest.err | configure:16704: $? = 0 | configure:16707: test -s conftest | configure:16710: $? = 0 | configure:16722: result: yes | configure:16738: checking for bison | configure:16767: result: no | configure:16808: checking whether NLS is requested | configure:16817: result: yes | configure:16833: checking whether included gettext is requested | configure:16843: result: no | configure:16854: checking for GNU gettext in libc | configure:16878: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | configure:16884: $? = 0 | configure:16888: test -z | || test ! -s conftest.err | configure:16891: $? = 0 | configure:16894: test -s conftest | configure:16897: $? = 0 | configure:16909: result: yes | configure:17462: checking whether to use NLS | configure:17464: result: yes | configure:17467: checking where the gettext function comes from | configure:17478: result: libc | configure:17605: checking for an ANSI C-conforming const | configure:17702: result: yes | configure:17712: checking for uid_t in sys/types.h | configure:17735: result: yes | configure:17750: checking for off_t | configure:17804: result: yes | configure:17816: checking for pid_t | configure:17870: result: yes | configure:17882: checking for size_t | configure:17936: result: yes | configure:17948: checking return type of signal handlers | configure:18009: result: void | configure:18017: checking for u_char | configure:18041: gcc -c -g -O2 conftest.c >&5 | configure:18047: $? = 0 | configure:18051: test -z | || test ! -s conftest.err | configure:18054: $? = 0 | configure:18057: test -s conftest.o | configure:18060: $? = 0 | configure:18071: result: yes | configure:18083: checking for u_int | configure:18107: gcc -c -g -O2 conftest.c >&5 | configure:18113: $? = 0 | configure:18117: test -z | || test ! -s conftest.err | configure:18120: $? = 0 | configure:18123: test -s conftest.o | configure:18126: $? = 0 | configure:18137: result: yes | configure:18149: checking for u_long | configure:18173: gcc -c -g -O2 conftest.c >&5 | configure:18179: $? = 0 | configure:18183: test -z | || test ! -s conftest.err | configure:18186: $? = 0 | configure:18189: test -s conftest.o | configure:18192: $? = 0 | configure:18203: result: yes | configure:18215: checking whether time.h and sys/time.h may both be included | configure:18240: gcc -c -g -O2 conftest.c >&5 | configure:18246: $? = 0 | configure:18250: test -z | || test ! -s conftest.err | configure:18253: $? = 0 | configure:18256: test -s conftest.o | configure:18259: $? = 0 | configure:18270: result: yes | configure:18280: checking whether struct tm is in sys/time.h or time.h | configure:18303: gcc -c -g -O2 conftest.c >&5 | configure:18309: $? = 0 | configure:18313: test -z | || test ! -s conftest.err | configure:18316: $? = 0 | configure:18319: test -s conftest.o | configure:18322: $? = 0 | configure:18333: result: time.h | configure:18343: checking for struct sockaddr_in.sin_len | configure:18368: gcc -c -g -O2 conftest.c >&5 | conftest.c: In function `main': | conftest.c:117: structure has no member named `sin_len' | configure:18374: $? = 1 | configure: failed program was: | | /* confdefs.h. */ | | | | #define PACKAGE_NAME "GNU Radius" | | #define PACKAGE_TARNAME "radius" | | #define PACKAGE_VERSION "1.3" | | #define PACKAGE_STRING "GNU Radius 1.3" | | #define PACKAGE_BUGREPORT "[email protected]" | | #define PACKAGE "radius" | | #define VERSION "1.3" | | #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 HAVE_DLFCN_H 1 | | #define HAVE_LIBNSL 1 | | #define HAVE_LIBCRYPT 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_ARGP_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_VARARGS_H 1 | | #define HAVE_TERMCAP_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_GETOPT_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 HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_GETPAGESIZE 1 | | #define HAVE_MMAP 1 | | #define INTDIV0_RAISES_SIGFPE 0 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_UNSIGNED_LONG_LONG 1 | | #define HAVE_UINTMAX_T 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_ARGZ_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_NL_TYPES_H 1 | | #define HAVE_MALLOC_H 1 | | #define HAVE_STDDEF_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_FEOF_UNLOCKED 1 | | #define HAVE_FGETS_UNLOCKED 1 | | #define HAVE_GETC_UNLOCKED 1 | | #define HAVE_GETCWD 1 | | #define HAVE_GETEGID 1 | | #define HAVE_GETEUID 1 | | #define HAVE_GETGID 1 | | #define HAVE_GETUID 1 | | #define HAVE_MEMPCPY 1 | | #define HAVE_MUNMAP 1 | | #define HAVE_PUTENV 1 | | #define HAVE_SETENV 1 | | #define HAVE_SETLOCALE 1 | | #define HAVE_STPCPY 1 | | #define HAVE_STRCASECMP 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRTOUL 1 | | #define HAVE_TSEARCH 1 | | #define HAVE___ARGZ_COUNT 1 | | #define HAVE___ARGZ_STRINGIFY 1 | | #define HAVE___ARGZ_NEXT 1 | | #define HAVE___FSETLOCKING 1 | | #define HAVE_ICONV 1 | | #define ICONV_CONST | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_LC_MESSAGES 1 | | #define ENABLE_NLS 1 | | #define HAVE_GETTEXT 1 | | #define HAVE_DCGETTEXT 1 | | #define RETSIGTYPE void | | #define TIME_WITH_SYS_TIME 1 | | /* end confdefs.h. */ | | #include <sys/types.h> | | #include <netinet/in.h> | | | | int | | main () | | { | | static struct sockaddr_in ac_aggr; | | if (ac_aggr.sin_len) | | return 0; | | ; | | return 0; | | } | configure:18414: gcc -c -g -O2 conftest.c >&5 | conftest.c: In function `main': | conftest.c:117: structure has no member named `sin_len' | configure:18420: $? = 1 | configure: failed program was: | | /* confdefs.h. */ | | | | #define PACKAGE_NAME "GNU Radius" | | #define PACKAGE_TARNAME "radius" | | #define PACKAGE_VERSION "1.3" | | #define PACKAGE_STRING "GNU Radius 1.3" | | #define PACKAGE_BUGREPORT "[email protected]" | | #define PACKAGE "radius" | | #define VERSION "1.3" | | #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 HAVE_DLFCN_H 1 | | #define HAVE_LIBNSL 1 | | #define HAVE_LIBCRYPT 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_ARGP_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_VARARGS_H 1 | | #define HAVE_TERMCAP_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_GETOPT_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 HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_GETPAGESIZE 1 | | #define HAVE_MMAP 1 | | #define INTDIV0_RAISES_SIGFPE 0 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_UNSIGNED_LONG_LONG 1 | | #define HAVE_UINTMAX_T 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_ARGZ_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_NL_TYPES_H 1 | | #define HAVE_MALLOC_H 1 | | #define HAVE_STDDEF_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_FEOF_UNLOCKED 1 | | #define HAVE_FGETS_UNLOCKED 1 | | #define HAVE_GETC_UNLOCKED 1 | | #define HAVE_GETCWD 1 | | #define HAVE_GETEGID 1 | | #define HAVE_GETEUID 1 | | #define HAVE_GETGID 1 | | #define HAVE_GETUID 1 | | #define HAVE_MEMPCPY 1 | | #define HAVE_MUNMAP 1 | | #define HAVE_PUTENV 1 | | #define HAVE_SETENV 1 | | #define HAVE_SETLOCALE 1 | | #define HAVE_STPCPY 1 | | #define HAVE_STRCASECMP 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRTOUL 1 | | #define HAVE_TSEARCH 1 | | #define HAVE___ARGZ_COUNT 1 | | #define HAVE___ARGZ_STRINGIFY 1 | | #define HAVE___ARGZ_NEXT 1 | | #define HAVE___FSETLOCKING 1 | | #define HAVE_ICONV 1 | | #define ICONV_CONST | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_LC_MESSAGES 1 | | #define ENABLE_NLS 1 | | #define HAVE_GETTEXT 1 | | #define HAVE_DCGETTEXT 1 | | #define RETSIGTYPE void | | #define TIME_WITH_SYS_TIME 1 | | /* end confdefs.h. */ | | #include <sys/types.h> | | #include <netinet/in.h> | | | | int | | main () | | { | | static struct sockaddr_in ac_aggr; | | if (sizeof ac_aggr.sin_len) | | return 0; | | ; | | return 0; | | } | configure:18446: result: no | configure:18458: checking for INADDR_LOOPBACK | configure:18487: gcc -c -g -O2 conftest.c >&5 | configure:18493: $? = 0 | configure:18497: test -z | || test ! -s conftest.err | configure:18500: $? = 0 | configure:18503: test -s conftest.o | configure:18506: $? = 0 | configure:18519: result: found | configure:18537: checking for strftime | configure:18594: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | configure:18600: $? = 0 | configure:18604: test -z | || test ! -s conftest.err | configure:18607: $? = 0 | configure:18610: test -s conftest | configure:18613: $? = 0 | configure:18625: result: yes | configure:18713: checking for vprintf | configure:18770: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | configure:18776: $? = 0 | configure:18780: test -z | || test ! -s conftest.err | configure:18783: $? = 0 | configure:18786: test -s conftest | configure:18789: $? = 0 | configure:18801: result: yes | configure:18808: checking for _doprnt | configure:18865: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | /tmp/ccFC760g.o: In function `main': | /usr/local/radius-1.3/conftest.c:152: undefined reference to `_doprnt' | /usr/local/radius-1.3/conftest.c:152: undefined reference to `_doprnt' | /usr/local/radius-1.3/conftest.c:152: undefined reference to `_doprnt' | collect2: ld returned 1 exit status | configure:18871: $? = 1 | configure: failed program was: | | /* confdefs.h. */ | | | | #define PACKAGE_NAME "GNU Radius" | | #define PACKAGE_TARNAME "radius" | | #define PACKAGE_VERSION "1.3" | | #define PACKAGE_STRING "GNU Radius 1.3" | | #define PACKAGE_BUGREPORT "[email protected]" | | #define PACKAGE "radius" | | #define VERSION "1.3" | | #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 HAVE_DLFCN_H 1 | | #define HAVE_LIBNSL 1 | | #define HAVE_LIBCRYPT 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_ARGP_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_VARARGS_H 1 | | #define HAVE_TERMCAP_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_GETOPT_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 HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_GETPAGESIZE 1 | | #define HAVE_MMAP 1 | | #define INTDIV0_RAISES_SIGFPE 0 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_UNSIGNED_LONG_LONG 1 | | #define HAVE_UINTMAX_T 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_ARGZ_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_NL_TYPES_H 1 | | #define HAVE_MALLOC_H 1 | | #define HAVE_STDDEF_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_FEOF_UNLOCKED 1 | | #define HAVE_FGETS_UNLOCKED 1 | | #define HAVE_GETC_UNLOCKED 1 | | #define HAVE_GETCWD 1 | | #define HAVE_GETEGID 1 | | #define HAVE_GETEUID 1 | | #define HAVE_GETGID 1 | | #define HAVE_GETUID 1 | | #define HAVE_MEMPCPY 1 | | #define HAVE_MUNMAP 1 | | #define HAVE_PUTENV 1 | | #define HAVE_SETENV 1 | | #define HAVE_SETLOCALE 1 | | #define HAVE_STPCPY 1 | | #define HAVE_STRCASECMP 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRTOUL 1 | | #define HAVE_TSEARCH 1 | | #define HAVE___ARGZ_COUNT 1 | | #define HAVE___ARGZ_STRINGIFY 1 | | #define HAVE___ARGZ_NEXT 1 | | #define HAVE___FSETLOCKING 1 | | #define HAVE_ICONV 1 | | #define ICONV_CONST | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_LC_MESSAGES 1 | | #define ENABLE_NLS 1 | | #define HAVE_GETTEXT 1 | | #define HAVE_DCGETTEXT 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 <limits.h> declares _doprnt. | | For example, HP-UX 11i <limits.h> declares gettimeofday. */ | | #define _doprnt innocuous__doprnt | | | | /* System header to define __stub macros and hopefully few prototypes, | | which can conflict with char _doprnt (); below. | | Prefer <limits.h> to <assert.h> if __STDC__ is defined, since | | <limits.h> exists even on freestanding compilers. */ | | | | #ifdef __STDC__ | | # include <limits.h> | | #else | | # include <assert.h> | | #endif | | | | #undef _doprnt | | | | /* Override any gcc2 internal prototype to avoid an error. */ | | #ifdef __cplusplus | | extern "C" | | { | | #endif | | /* We use char because int might match the return type of a gcc2 | | builtin and then its argument prototype would still apply. */ | | 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 | | #else | | char (*f) () = _doprnt; | | #endif | | #ifdef __cplusplus | | } | | #endif | | | | int | | main () | | { | | return f != _doprnt; | | ; | | return 0; | | } | configure:18896: result: no | configure:18916: checking for stdlib.h | configure:18921: result: yes | configure:18916: checking for unistd.h | configure:18921: result: yes | configure:19065: checking for getpagesize | configure:19153: result: yes | configure:19163: checking for working mmap | configure:19327: result: yes | configure:19367: checking for setsid | configure:19424: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | configure:19430: $? = 0 | configure:19434: test -z | || test ! -s conftest.err | configure:19437: $? = 0 | configure:19440: test -s conftest | configure:19443: $? = 0 | configure:19455: result: yes | configure:19367: checking for gethostname | configure:19424: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | configure:19430: $? = 0 | configure:19434: test -z | || test ! -s conftest.err | configure:19437: $? = 0 | configure:19440: test -s conftest | configure:19443: $? = 0 | configure:19455: result: yes | configure:19367: checking for gettimeofday | configure:19424: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | configure:19430: $? = 0 | configure:19434: test -z | || test ! -s conftest.err | configure:19437: $? = 0 | configure:19440: test -s conftest | configure:19443: $? = 0 | configure:19455: result: yes | configure:19367: checking for mkdir | configure:19424: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | configure:19430: $? = 0 | configure:19434: test -z | || test ! -s conftest.err | configure:19437: $? = 0 | configure:19440: test -s conftest | configure:19443: $? = 0 | configure:19455: result: yes | configure:19367: checking for mktime | configure:19424: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | configure:19430: $? = 0 | configure:19434: test -z | || test ! -s conftest.err | configure:19437: $? = 0 | configure:19440: test -s conftest | configure:19443: $? = 0 | configure:19455: result: yes | configure:19367: checking for select | configure:19424: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | configure:19430: $? = 0 | configure:19434: test -z | || test ! -s conftest.err | configure:19437: $? = 0 | configure:19440: test -s conftest | configure:19443: $? = 0 | configure:19455: result: yes | configure:19367: checking for socket | configure:19424: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | configure:19430: $? = 0 | configure:19434: test -z | || test ! -s conftest.err | configure:19437: $? = 0 | configure:19440: test -s conftest | configure:19443: $? = 0 | configure:19455: result: yes | configure:19367: checking for strdup | configure:19455: result: yes | configure:19367: checking for strtol | configure:19424: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | configure:19430: $? = 0 | configure:19434: test -z | || test ! -s conftest.err | configure:19437: $? = 0 | configure:19440: test -s conftest | configure:19443: $? = 0 | configure:19455: result: yes | configure:19367: checking for lockf | configure:19424: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | configure:19430: $? = 0 | configure:19434: test -z | || test ! -s conftest.err | configure:19437: $? = 0 | configure:19440: test -s conftest | configure:19443: $? = 0 | configure:19455: result: yes | configure:19367: checking for setlocale | configure:19455: result: yes | configure:19367: checking for bzero | configure:19424: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | configure:19430: $? = 0 | configure:19434: test -z | || test ! -s conftest.err | configure:19437: $? = 0 | configure:19440: test -s conftest | configure:19443: $? = 0 | configure:19455: result: yes | configure:19367: checking for inet_ntoa | configure:19424: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | configure:19430: $? = 0 | configure:19434: test -z | || test ! -s conftest.err | configure:19437: $? = 0 | configure:19440: test -s conftest | configure:19443: $? = 0 | configure:19455: result: yes | configure:19367: checking for inet_aton | configure:19424: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | configure:19430: $? = 0 | configure:19434: test -z | || test ! -s conftest.err | configure:19437: $? = 0 | configure:19440: test -s conftest | configure:19443: $? = 0 | configure:19455: result: yes | configure:19367: checking for setvbuf | configure:19424: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | configure:19430: $? = 0 | configure:19434: test -z | || test ! -s conftest.err | configure:19437: $? = 0 | configure:19440: test -s conftest | configure:19443: $? = 0 | configure:19455: result: yes | configure:19367: checking for setegid | configure:19424: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | configure:19430: $? = 0 | configure:19434: test -z | || test ! -s conftest.err | configure:19437: $? = 0 | configure:19440: test -s conftest | configure:19443: $? = 0 | configure:19455: result: yes | configure:19367: checking for setregid | configure:19424: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | configure:19430: $? = 0 | configure:19434: test -z | || test ! -s conftest.err | configure:19437: $? = 0 | configure:19440: test -s conftest | configure:19443: $? = 0 | configure:19455: result: yes | configure:19367: checking for setresgid | configure:19424: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | configure:19430: $? = 0 | configure:19434: test -z | || test ! -s conftest.err | configure:19437: $? = 0 | configure:19440: test -s conftest | configure:19443: $? = 0 | configure:19455: result: yes | configure:19367: checking for seteuid | configure:19424: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | configure:19430: $? = 0 | configure:19434: test -z | || test ! -s conftest.err | configure:19437: $? = 0 | configure:19440: test -s conftest | configure:19443: $? = 0 | configure:19455: result: yes | configure:19367: checking for setreuid | configure:19424: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | configure:19430: $? = 0 | configure:19434: test -z | || test ! -s conftest.err | configure:19437: $? = 0 | configure:19440: test -s conftest | configure:19443: $? = 0 | configure:19455: result: yes | configure:19367: checking for getdtablesize | configure:19424: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | configure:19430: $? = 0 | configure:19434: test -z | || test ! -s conftest.err | configure:19437: $? = 0 | configure:19440: test -s conftest | configure:19443: $? = 0 | configure:19455: result: yes | configure:19367: checking for sigaction | configure:19424: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | configure:19430: $? = 0 | configure:19434: test -z | || test ! -s conftest.err | configure:19437: $? = 0 | configure:19440: test -s conftest | configure:19443: $? = 0 | configure:19455: result: yes | configure:19478: checking obstack.h usability | configure:19490: gcc -c -g -O2 conftest.c >&5 | configure:19496: $? = 0 | configure:19500: test -z | || test ! -s conftest.err | configure:19503: $? = 0 | configure:19506: test -s conftest.o | configure:19509: $? = 0 | configure:19519: result: yes | configure:19523: checking obstack.h presence | configure:19533: gcc -E conftest.c | configure:19539: $? = 0 | configure:19559: result: yes | configure:19594: checking for obstack.h | configure:19601: result: yes | configure:19606: checking for obstacks | configure:19627: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | configure:19633: $? = 0 | configure:19637: test -z | || test ! -s conftest.err | configure:19640: $? = 0 | configure:19643: test -s conftest | configure:19646: $? = 0 | configure:19658: result: yes | configure:19694: checking whether strncasecmp is declared | configure:19736: gcc -c -g -O2 conftest.c >&5 | configure:19742: $? = 0 | configure:19746: test -z | || test ! -s conftest.err | configure:19749: $? = 0 | configure:19752: test -s conftest.o | configure:19755: $? = 0 | configure:19766: result: yes | configure:19782: checking whether strtok_r is declared | configure:19824: gcc -c -g -O2 conftest.c >&5 | configure:19830: $? = 0 | configure:19834: test -z | || test ! -s conftest.err | configure:19837: $? = 0 | configure:19840: test -s conftest.o | configure:19843: $? = 0 | configure:19854: result: yes | configure:19870: checking whether localtime_r is declared | configure:19912: gcc -c -g -O2 conftest.c >&5 | configure:19918: $? = 0 | configure:19922: test -z | || test ! -s conftest.err | configure:19925: $? = 0 | configure:19928: test -s conftest.o | configure:19931: $? = 0 | configure:19942: result: yes | configure:19958: checking whether asprintf is declared | configure:20000: gcc -c -g -O2 conftest.c >&5 | conftest.c: In function `main': | conftest.c:165: `asprintf' undeclared (first use in this function) | conftest.c:165: (Each undeclared identifier is reported only once | conftest.c:165: for each function it appears in.) | configure:20006: $? = 1 | configure: failed program was: | | /* confdefs.h. */ | | | | #define PACKAGE_NAME "GNU Radius" | | #define PACKAGE_TARNAME "radius" | | #define PACKAGE_VERSION "1.3" | | #define PACKAGE_STRING "GNU Radius 1.3" | | #define PACKAGE_BUGREPORT "[email protected]" | | #define PACKAGE "radius" | | #define VERSION "1.3" | | #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 HAVE_DLFCN_H 1 | | #define HAVE_LIBNSL 1 | | #define HAVE_LIBCRYPT 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_ARGP_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_VARARGS_H 1 | | #define HAVE_TERMCAP_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_GETOPT_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 HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_GETPAGESIZE 1 | | #define HAVE_MMAP 1 | | #define INTDIV0_RAISES_SIGFPE 0 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_UNSIGNED_LONG_LONG 1 | | #define HAVE_UINTMAX_T 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_ARGZ_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_NL_TYPES_H 1 | | #define HAVE_MALLOC_H 1 | | #define HAVE_STDDEF_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_FEOF_UNLOCKED 1 | | #define HAVE_FGETS_UNLOCKED 1 | | #define HAVE_GETC_UNLOCKED 1 | | #define HAVE_GETCWD 1 | | #define HAVE_GETEGID 1 | | #define HAVE_GETEUID 1 | | #define HAVE_GETGID 1 | | #define HAVE_GETUID 1 | | #define HAVE_MEMPCPY 1 | | #define HAVE_MUNMAP 1 | | #define HAVE_PUTENV 1 | | #define HAVE_SETENV 1 | | #define HAVE_SETLOCALE 1 | | #define HAVE_STPCPY 1 | | #define HAVE_STRCASECMP 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRTOUL 1 | | #define HAVE_TSEARCH 1 | | #define HAVE___ARGZ_COUNT 1 | | #define HAVE___ARGZ_STRINGIFY 1 | | #define HAVE___ARGZ_NEXT 1 | | #define HAVE___FSETLOCKING 1 | | #define HAVE_ICONV 1 | | #define ICONV_CONST | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_LC_MESSAGES 1 | | #define ENABLE_NLS 1 | | #define HAVE_GETTEXT 1 | | #define HAVE_DCGETTEXT 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_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_OBSTACK 1 | | #define HAVE_DECL_STRNCASECMP 1 | | #define HAVE_DECL_STRTOK_R 1 | | #define HAVE_DECL_LOCALTIME_R 1 | | /* end confdefs.h. */ | | | | #define _REENTRANT | | #include <string.h> | | #ifdef HAVE_STRINGS_H | | # include <strings.h> | | #endif | | #ifdef HAVE_SYS_TIME_H | | # include <sys/time.h> | | # ifdef TIME_WITH_SYS_TIME | | # include <time.h> | | # endif | | #else | | # include <time.h> | | #endif | | #if defined(HAVE_CRYPT_H) | | # include <crypt.h> | | #endif | | #include <stdio.h> | | | | int | | main () | | { | | #ifndef asprintf | | char *p = (char *) asprintf; | | #endif | | | | ; | | return 0; | | } | configure:20030: result: no | configure:20046: checking whether vasprintf is declared | configure:20088: gcc -c -g -O2 conftest.c >&5 | conftest.c: In function `main': | conftest.c:166: `vasprintf' undeclared (first use in this function) | conftest.c:166: (Each undeclared identifier is reported only once | conftest.c:166: for each function it appears in.) | configure:20094: $? = 1 | configure: failed program was: | | /* confdefs.h. */ | | | | #define PACKAGE_NAME "GNU Radius" | | #define PACKAGE_TARNAME "radius" | | #define PACKAGE_VERSION "1.3" | | #define PACKAGE_STRING "GNU Radius 1.3" | | #define PACKAGE_BUGREPORT "[email protected]" | | #define PACKAGE "radius" | | #define VERSION "1.3" | | #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 HAVE_DLFCN_H 1 | | #define HAVE_LIBNSL 1 | | #define HAVE_LIBCRYPT 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_ARGP_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_VARARGS_H 1 | | #define HAVE_TERMCAP_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_GETOPT_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 HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_GETPAGESIZE 1 | | #define HAVE_MMAP 1 | | #define INTDIV0_RAISES_SIGFPE 0 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_UNSIGNED_LONG_LONG 1 | | #define HAVE_UINTMAX_T 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_ARGZ_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_NL_TYPES_H 1 | | #define HAVE_MALLOC_H 1 | | #define HAVE_STDDEF_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_FEOF_UNLOCKED 1 | | #define HAVE_FGETS_UNLOCKED 1 | | #define HAVE_GETC_UNLOCKED 1 | | #define HAVE_GETCWD 1 | | #define HAVE_GETEGID 1 | | #define HAVE_GETEUID 1 | | #define HAVE_GETGID 1 | | #define HAVE_GETUID 1 | | #define HAVE_MEMPCPY 1 | | #define HAVE_MUNMAP 1 | | #define HAVE_PUTENV 1 | | #define HAVE_SETENV 1 | | #define HAVE_SETLOCALE 1 | | #define HAVE_STPCPY 1 | | #define HAVE_STRCASECMP 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRTOUL 1 | | #define HAVE_TSEARCH 1 | | #define HAVE___ARGZ_COUNT 1 | | #define HAVE___ARGZ_STRINGIFY 1 | | #define HAVE___ARGZ_NEXT 1 | | #define HAVE___FSETLOCKING 1 | | #define HAVE_ICONV 1 | | #define ICONV_CONST | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_LC_MESSAGES 1 | | #define ENABLE_NLS 1 | | #define HAVE_GETTEXT 1 | | #define HAVE_DCGETTEXT 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_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_OBSTACK 1 | | #define HAVE_DECL_STRNCASECMP 1 | | #define HAVE_DECL_STRTOK_R 1 | | #define HAVE_DECL_LOCALTIME_R 1 | | #define HAVE_DECL_ASPRINTF 0 | | /* end confdefs.h. */ | | | | #define _REENTRANT | | #include <string.h> | | #ifdef HAVE_STRINGS_H | | # include <strings.h> | | #endif | | #ifdef HAVE_SYS_TIME_H | | # include <sys/time.h> | | # ifdef TIME_WITH_SYS_TIME | | # include <time.h> | | # endif | | #else | | # include <time.h> | | #endif | | #if defined(HAVE_CRYPT_H) | | # include <crypt.h> | | #endif | | #include <stdio.h> | | | | int | | main () | | { | | #ifndef vasprintf | | char *p = (char *) vasprintf; | | #endif | | | | ; | | return 0; | | } | configure:20118: result: no | configure:20134: checking whether getline is declared | configure:20176: gcc -c -g -O2 conftest.c >&5 | conftest.c: In function `main': | conftest.c:167: `getline' undeclared (first use in this function) | conftest.c:167: (Each undeclared identifier is reported only once | conftest.c:167: for each function it appears in.) | configure:20182: $? = 1 | configure: failed program was: | | /* confdefs.h. */ | | | | #define PACKAGE_NAME "GNU Radius" | | #define PACKAGE_TARNAME "radius" | | #define PACKAGE_VERSION "1.3" | | #define PACKAGE_STRING "GNU Radius 1.3" | | #define PACKAGE_BUGREPORT "[email protected]" | | #define PACKAGE "radius" | | #define VERSION "1.3" | | #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 HAVE_DLFCN_H 1 | | #define HAVE_LIBNSL 1 | | #define HAVE_LIBCRYPT 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_ARGP_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_VARARGS_H 1 | | #define HAVE_TERMCAP_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_GETOPT_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 HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_GETPAGESIZE 1 | | #define HAVE_MMAP 1 | | #define INTDIV0_RAISES_SIGFPE 0 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_UNSIGNED_LONG_LONG 1 | | #define HAVE_UINTMAX_T 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_ARGZ_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_NL_TYPES_H 1 | | #define HAVE_MALLOC_H 1 | | #define HAVE_STDDEF_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_FEOF_UNLOCKED 1 | | #define HAVE_FGETS_UNLOCKED 1 | | #define HAVE_GETC_UNLOCKED 1 | | #define HAVE_GETCWD 1 | | #define HAVE_GETEGID 1 | | #define HAVE_GETEUID 1 | | #define HAVE_GETGID 1 | | #define HAVE_GETUID 1 | | #define HAVE_MEMPCPY 1 | | #define HAVE_MUNMAP 1 | | #define HAVE_PUTENV 1 | | #define HAVE_SETENV 1 | | #define HAVE_SETLOCALE 1 | | #define HAVE_STPCPY 1 | | #define HAVE_STRCASECMP 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRTOUL 1 | | #define HAVE_TSEARCH 1 | | #define HAVE___ARGZ_COUNT 1 | | #define HAVE___ARGZ_STRINGIFY 1 | | #define HAVE___ARGZ_NEXT 1 | | #define HAVE___FSETLOCKING 1 | | #define HAVE_ICONV 1 | | #define ICONV_CONST | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_LC_MESSAGES 1 | | #define ENABLE_NLS 1 | | #define HAVE_GETTEXT 1 | | #define HAVE_DCGETTEXT 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_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_OBSTACK 1 | | #define HAVE_DECL_STRNCASECMP 1 | | #define HAVE_DECL_STRTOK_R 1 | | #define HAVE_DECL_LOCALTIME_R 1 | | #define HAVE_DECL_ASPRINTF 0 | | #define HAVE_DECL_VASPRINTF 0 | | /* end confdefs.h. */ | | | | #define _REENTRANT | | #include <string.h> | | #ifdef HAVE_STRINGS_H | | # include <strings.h> | | #endif | | #ifdef HAVE_SYS_TIME_H | | # include <sys/time.h> | | # ifdef TIME_WITH_SYS_TIME | | # include <time.h> | | # endif | | #else | | # include <time.h> | | #endif | | #if defined(HAVE_CRYPT_H) | | # include <crypt.h> | | #endif | | #include <stdio.h> | | | | int | | main () | | { | | #ifndef getline | | char *p = (char *) getline; | | #endif | | | | ; | | return 0; | | } | configure:20206: result: no | configure:20222: checking whether crypt is declared | configure:20264: gcc -c -g -O2 conftest.c >&5 | configure:20270: $? = 0 | configure:20274: test -z | || test ! -s conftest.err | configure:20277: $? = 0 | configure:20280: test -s conftest.o | configure:20283: $? = 0 | configure:20294: result: yes | configure:20310: checking whether crypt_set_format is declared | configure:20352: gcc -c -g -O2 conftest.c >&5 | conftest.c: In function `main': | conftest.c:169: `crypt_set_format' undeclared (first use in this function) | conftest.c:169: (Each undeclared identifier is reported only once | conftest.c:169: for each function it appears in.) | configure:20358: $? = 1 | configure: failed program was: | | /* confdefs.h. */ | | | | #define PACKAGE_NAME "GNU Radius" | | #define PACKAGE_TARNAME "radius" | | #define PACKAGE_VERSION "1.3" | | #define PACKAGE_STRING "GNU Radius 1.3" | | #define PACKAGE_BUGREPORT "[email protected]" | | #define PACKAGE "radius" | | #define VERSION "1.3" | | #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 HAVE_DLFCN_H 1 | | #define HAVE_LIBNSL 1 | | #define HAVE_LIBCRYPT 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_ARGP_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_VARARGS_H 1 | | #define HAVE_TERMCAP_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_GETOPT_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 HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_GETPAGESIZE 1 | | #define HAVE_MMAP 1 | | #define INTDIV0_RAISES_SIGFPE 0 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_UNSIGNED_LONG_LONG 1 | | #define HAVE_UINTMAX_T 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_ARGZ_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_NL_TYPES_H 1 | | #define HAVE_MALLOC_H 1 | | #define HAVE_STDDEF_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_FEOF_UNLOCKED 1 | | #define HAVE_FGETS_UNLOCKED 1 | | #define HAVE_GETC_UNLOCKED 1 | | #define HAVE_GETCWD 1 | | #define HAVE_GETEGID 1 | | #define HAVE_GETEUID 1 | | #define HAVE_GETGID 1 | | #define HAVE_GETUID 1 | | #define HAVE_MEMPCPY 1 | | #define HAVE_MUNMAP 1 | | #define HAVE_PUTENV 1 | | #define HAVE_SETENV 1 | | #define HAVE_SETLOCALE 1 | | #define HAVE_STPCPY 1 | | #define HAVE_STRCASECMP 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRTOUL 1 | | #define HAVE_TSEARCH 1 | | #define HAVE___ARGZ_COUNT 1 | | #define HAVE___ARGZ_STRINGIFY 1 | | #define HAVE___ARGZ_NEXT 1 | | #define HAVE___FSETLOCKING 1 | | #define HAVE_ICONV 1 | | #define ICONV_CONST | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_LC_MESSAGES 1 | | #define ENABLE_NLS 1 | | #define HAVE_GETTEXT 1 | | #define HAVE_DCGETTEXT 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_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_OBSTACK 1 | | #define HAVE_DECL_STRNCASECMP 1 | | #define HAVE_DECL_STRTOK_R 1 | | #define HAVE_DECL_LOCALTIME_R 1 | | #define HAVE_DECL_ASPRINTF 0 | | #define HAVE_DECL_VASPRINTF 0 | | #define HAVE_DECL_GETLINE 0 | | #define HAVE_DECL_CRYPT 1 | | /* end confdefs.h. */ | | | | #define _REENTRANT | | #include <string.h> | | #ifdef HAVE_STRINGS_H | | # include <strings.h> | | #endif | | #ifdef HAVE_SYS_TIME_H | | # include <sys/time.h> | | # ifdef TIME_WITH_SYS_TIME | | # include <time.h> | | # endif | | #else | | # include <time.h> | | #endif | | #if defined(HAVE_CRYPT_H) | | # include <crypt.h> | | #endif | | #include <stdio.h> | | | | int | | main () | | { | | #ifndef crypt_set_format | | char *p = (char *) crypt_set_format; | | #endif | | | | ; | | return 0; | | } | configure:20382: result: no | configure:20417: checking for argp_parse | configure:20474: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | configure:20480: $? = 0 | configure:20484: test -z | || test ! -s conftest.err | configure:20487: $? = 0 | configure:20490: test -s conftest | configure:20493: $? = 0 | configure:20505: result: yes | configure:20521: checking whether extern program_invocation_name is declared | configure:20540: gcc -c -g -O2 conftest.c >&5 | conftest.c: In function `main': | conftest.c:153: `program_invocation_name' undeclared (first use in this function) | conftest.c:153: (Each undeclared identifier is reported only once | conftest.c:153: for each function it appears in.) | configure:20546: $? = 1 | configure: failed program was: | | /* confdefs.h. */ | | | | #define PACKAGE_NAME "GNU Radius" | | #define PACKAGE_TARNAME "radius" | | #define PACKAGE_VERSION "1.3" | | #define PACKAGE_STRING "GNU Radius 1.3" | | #define PACKAGE_BUGREPORT "[email protected]" | | #define PACKAGE "radius" | | #define VERSION "1.3" | | #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 HAVE_DLFCN_H 1 | | #define HAVE_LIBNSL 1 | | #define HAVE_LIBCRYPT 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_ARGP_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_VARARGS_H 1 | | #define HAVE_TERMCAP_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_GETOPT_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 HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_GETPAGESIZE 1 | | #define HAVE_MMAP 1 | | #define INTDIV0_RAISES_SIGFPE 0 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_UNSIGNED_LONG_LONG 1 | | #define HAVE_UINTMAX_T 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_ARGZ_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_NL_TYPES_H 1 | | #define HAVE_MALLOC_H 1 | | #define HAVE_STDDEF_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_FEOF_UNLOCKED 1 | | #define HAVE_FGETS_UNLOCKED 1 | | #define HAVE_GETC_UNLOCKED 1 | | #define HAVE_GETCWD 1 | | #define HAVE_GETEGID 1 | | #define HAVE_GETEUID 1 | | #define HAVE_GETGID 1 | | #define HAVE_GETUID 1 | | #define HAVE_MEMPCPY 1 | | #define HAVE_MUNMAP 1 | | #define HAVE_PUTENV 1 | | #define HAVE_SETENV 1 | | #define HAVE_SETLOCALE 1 | | #define HAVE_STPCPY 1 | | #define HAVE_STRCASECMP 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRTOUL 1 | | #define HAVE_TSEARCH 1 | | #define HAVE___ARGZ_COUNT 1 | | #define HAVE___ARGZ_STRINGIFY 1 | | #define HAVE___ARGZ_NEXT 1 | | #define HAVE___FSETLOCKING 1 | | #define HAVE_ICONV 1 | | #define ICONV_CONST | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_LC_MESSAGES 1 | | #define ENABLE_NLS 1 | | #define HAVE_GETTEXT 1 | | #define HAVE_DCGETTEXT 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_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_OBSTACK 1 | | #define HAVE_DECL_STRNCASECMP 1 | | #define HAVE_DECL_STRTOK_R 1 | | #define HAVE_DECL_LOCALTIME_R 1 | | #define HAVE_DECL_ASPRINTF 0 | | #define HAVE_DECL_VASPRINTF 0 | | #define HAVE_DECL_GETLINE 0 | | #define HAVE_DECL_CRYPT 1 | | #define HAVE_DECL_CRYPT_SET_FORMAT 0 | | #define HAVE_ARGP_PARSE 1 | | /* end confdefs.h. */ | | #include <argp.h> | | #include <errno.h> | | int | | main () | | { | | program_invocation_name = "test"; | | ; | | return 0; | | } | configure:20572: result: no | configure:20580: checking whether program_invocation_name is present | configure:20604: gcc -c -g -O2 conftest.c >&5 | configure:20610: $? = 0 | configure:20614: test -z | || test ! -s conftest.err | configure:20617: $? = 0 | configure:20620: test -s conftest.o | configure:20623: $? = 0 | configure:20630: result: yes | configure:20751: checking for getline | configure:20808: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | configure:20814: $? = 0 | configure:20818: test -z | || test ! -s conftest.err | configure:20821: $? = 0 | configure:20824: test -s conftest | configure:20827: $? = 0 | configure:20839: result: yes | configure:20751: checking for strerror | configure:20808: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | configure:20814: $? = 0 | configure:20818: test -z | || test ! -s conftest.err | configure:20821: $? = 0 | configure:20824: test -s conftest | configure:20827: $? = 0 | configure:20839: result: yes | configure:20751: checking for strncasecmp | configure:20808: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | configure:20814: $? = 0 | configure:20818: test -z | || test ! -s conftest.err | configure:20821: $? = 0 | configure:20824: test -s conftest | configure:20827: $? = 0 | configure:20839: result: yes | configure:20751: checking for strcspn | configure:20808: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | configure:20814: $? = 0 | configure:20818: test -z | || test ! -s conftest.err | configure:20821: $? = 0 | configure:20824: test -s conftest | configure:20827: $? = 0 | configure:20839: result: yes | configure:20751: checking for snprintf | configure:20808: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | configure:20814: $? = 0 | configure:20818: test -z | || test ! -s conftest.err | configure:20821: $? = 0 | configure:20824: test -s conftest | configure:20827: $? = 0 | configure:20839: result: yes | configure:20751: checking for vasprintf | configure:20808: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | configure:20814: $? = 0 | configure:20818: test -z | || test ! -s conftest.err | configure:20821: $? = 0 | configure:20824: test -s conftest | configure:20827: $? = 0 | configure:20839: result: yes | configure:20751: checking for strtok_r | configure:20808: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | configure:20814: $? = 0 | configure:20818: test -z | || test ! -s conftest.err | configure:20821: $? = 0 | configure:20824: test -s conftest | configure:20827: $? = 0 | configure:20839: result: yes | configure:20751: checking for localtime_r | configure:20808: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | configure:20814: $? = 0 | configure:20818: test -z | || test ! -s conftest.err | configure:20821: $? = 0 | configure:20824: test -s conftest | configure:20827: $? = 0 | configure:20839: result: yes | configure:20751: checking for strchrnul | configure:20808: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | configure:20814: $? = 0 | configure:20818: test -z | || test ! -s conftest.err | configure:20821: $? = 0 | configure:20824: test -s conftest | configure:20827: $? = 0 | configure:20839: result: yes | configure:20751: checking for strndup | configure:20808: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | configure:20814: $? = 0 | configure:20818: test -z | || test ! -s conftest.err | configure:20821: $? = 0 | configure:20824: test -s conftest | configure:20827: $? = 0 | configure:20839: result: yes | configure:20751: checking for strnlen | configure:20808: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | configure:20814: $? = 0 | configure:20818: test -z | || test ! -s conftest.err | configure:20821: $? = 0 | configure:20824: test -s conftest | configure:20827: $? = 0 | configure:20839: result: yes | configure:20885: checking for tputs in -lncurses | configure:20915: gcc -o conftest -g -O2 conftest.c -lncurses -lcrypt -lnsl >&5 | configure:20921: $? = 0 | configure:20925: test -z | || test ! -s conftest.err | configure:20928: $? = 0 | configure:20931: test -s conftest | configure:20934: $? = 0 | configure:20947: result: yes | configure:20957: checking for readline in -lreadline | configure:20987: gcc -o conftest -g -O2 conftest.c -lreadline -lcrypt -lnsl -lncurses >&5 | configure:20993: $? = 0 | configure:20997: test -z | || test ! -s conftest.err | configure:21000: $? = 0 | configure:21003: test -s conftest | configure:21006: $? = 0 | configure:21019: result: yes | configure:21042: checking readline/readline.h usability | configure:21054: gcc -c -g -O2 conftest.c >&5 | configure:21060: $? = 0 | configure:21064: test -z | || test ! -s conftest.err | configure:21067: $? = 0 | configure:21070: test -s conftest.o | configure:21073: $? = 0 | configure:21083: result: yes | configure:21087: checking readline/readline.h presence | configure:21097: gcc -E conftest.c | configure:21103: $? = 0 | configure:21123: result: yes | configure:21158: checking for readline/readline.h | configure:21165: result: yes | configure:21189: checking for rl_completion_matches | configure:21246: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl -lreadline -lncurses >&5 | /tmp/ccThZasw.o: In function `main': | /usr/local/radius-1.3/conftest.c:202: undefined reference to `rl_completion_matches' | /usr/local/radius-1.3/conftest.c:202: undefined reference to `rl_completion_matches' | /usr/local/radius-1.3/conftest.c:202: undefined reference to `rl_completion_matches' | collect2: ld returned 1 exit status | configure:21252: $? = 1 | configure: failed program was: | | /* confdefs.h. */ | | | | #define PACKAGE_NAME "GNU Radius" | | #define PACKAGE_TARNAME "radius" | | #define PACKAGE_VERSION "1.3" | | #define PACKAGE_STRING "GNU Radius 1.3" | | #define PACKAGE_BUGREPORT "[email protected]" | | #define PACKAGE "radius" | | #define VERSION "1.3" | | #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 HAVE_DLFCN_H 1 | | #define HAVE_LIBNSL 1 | | #define HAVE_LIBCRYPT 1 | | #define STDC_HEADERS 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_ARGP_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_VARARGS_H 1 | | #define HAVE_TERMCAP_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_GETOPT_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 HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_GETPAGESIZE 1 | | #define HAVE_MMAP 1 | | #define INTDIV0_RAISES_SIGFPE 0 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_UNSIGNED_LONG_LONG 1 | | #define HAVE_UINTMAX_T 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_ARGZ_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_NL_TYPES_H 1 | | #define HAVE_MALLOC_H 1 | | #define HAVE_STDDEF_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_FEOF_UNLOCKED 1 | | #define HAVE_FGETS_UNLOCKED 1 | | #define HAVE_GETC_UNLOCKED 1 | | #define HAVE_GETCWD 1 | | #define HAVE_GETEGID 1 | | #define HAVE_GETEUID 1 | | #define HAVE_GETGID 1 | | #define HAVE_GETUID 1 | | #define HAVE_MEMPCPY 1 | | #define HAVE_MUNMAP 1 | | #define HAVE_PUTENV 1 | | #define HAVE_SETENV 1 | | #define HAVE_SETLOCALE 1 | | #define HAVE_STPCPY 1 | | #define HAVE_STRCASECMP 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRTOUL 1 | | #define HAVE_TSEARCH 1 | | #define HAVE___ARGZ_COUNT 1 | | #define HAVE___ARGZ_STRINGIFY 1 | | #define HAVE___ARGZ_NEXT 1 | | #define HAVE___FSETLOCKING 1 | | #define HAVE_ICONV 1 | | #define ICONV_CONST | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_LC_MESSAGES 1 | | #define ENABLE_NLS 1 | | #define HAVE_GETTEXT 1 | | #define HAVE_DCGETTEXT 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_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_OBSTACK 1 | | #define HAVE_DECL_STRNCASECMP 1 | | #define HAVE_DECL_STRTOK_R 1 | | #define HAVE_DECL_LOCALTIME_R 1 | | #define HAVE_DECL_ASPRINTF 0 | | #define HAVE_DECL_VASPRINTF 0 | | #define HAVE_DECL_GETLINE 0 | | #define HAVE_DECL_CRYPT 1 | | #define HAVE_DECL_CRYPT_SET_FORMAT 0 | | #define HAVE_ARGP_PARSE 1 | | #define HAVE_PROGRAM_INVOCATION_NAME 1 | | #define HAVE_GETLINE 1 | | #define HAVE_STRERROR 1 | | #define HAVE_STRNCASECMP 1 | | #define HAVE_STRCSPN 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_VASPRINTF 1 | | #define HAVE_STRTOK_R 1 | | #define HAVE_LOCALTIME_R 1 | | #define HAVE_STRCHRNUL 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_READLINE_READLINE_H 1 | | #define WITH_READLINE 1 | | /* end confdefs.h. */ | | /* Define rl_completion_matches to an innocuous variant, in case <limits.h> declares rl_completion_matches. | | For example, HP-UX 11i <limits.h> declares gettimeofday. */ | | #define rl_completion_matches innocuous_rl_completion_matches | | | | /* System header to define __stub macros and hopefully few prototypes, | | which can conflict with char rl_completion_matches (); below. | | Prefer <limits.h> to <assert.h> if __STDC__ is defined, since | | <limits.h> exists even on freestanding compilers. */ | | | | #ifdef __STDC__ | | # include <limits.h> | | #else | | # include <assert.h> | | #endif | | | | #undef rl_completion_matches | | | | /* Override any gcc2 internal prototype to avoid an error. */ | | #ifdef __cplusplus | | extern "C" | | { | | #endif | | /* We use char because int might match the return type of a gcc2 | | builtin and then its argument prototype would still apply. */ | | char rl_completion_matches (); | | /* 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_rl_completion_matches) || defined (__stub___rl_completion_matches) | | choke me | | #else | | char (*f) () = rl_completion_matches; | | #endif | | #ifdef __cplusplus | | } | | #endif | | | | int | | main () | | { | | return f != rl_completion_matches; | | ; | | return 0; | | } | configure:21277: result: no | configure:21298: checking whether struct hostent has h_addr_list field | configure:21320: gcc -c -g -O2 conftest.c >&5 | configure:21326: $? = 0 | configure:21330: test -z | || test ! -s conftest.err | configure:21333: $? = 0 | configure:21336: test -s conftest.o | configure:21339: $? = 0 | configure:21350: result: yes | configure:21363: checking for GNU getopt | configure:21396: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | configure:21399: $? = 0 | configure:21401: ./conftest | configure:21404: $? = 0 | configure:21418: result: yes | configure:21465: checking for working re_compile_pattern | configure:21503: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | configure:21506: $? = 0 | configure:21508: ./conftest | configure:21511: $? = 0 | configure:21526: result: yes | configure:21553: checking for sys_errlist and sys_nerr | configure:21570: gcc -o conftest -g -O2 conftest.c -lcrypt -lnsl >&5 | configure:21573: $? = 0 | configure:21575: ./conftest | configure:21578: $? = 0 | configure:21585: result: Ok | configure:21622: checking for log directory path | configure:21643: result: /var/log | configure:21651: checking for pidfile directory path | configure:21670: result: /var/run | configure:21687: checking whether to build radius daemon | configure:21701: result: yes | configure:21704: checking whether to build client programs | configure:21727: result: no | configure:21929: checking authentication port number | configure:21951: result: Default ports are 1812/1813 | configure:23636: creating ./config.status | | ## ---------------------- ## | ## Running config.status. ## | ## ---------------------- ## | | This file was extended by GNU Radius config.status 1.3, which was | generated by GNU Autoconf 2.59. Invocation command line was | | CONFIG_FILES = | CONFIG_HEADERS = | CONFIG_LINKS = | CONFIG_COMMANDS = | $ ./config.status | | on akash.kuro.com | | config.status:848: creating tests/Makefile | config.status:848: creating tests/atlocal | config.status:848: creating tests/raddb/Makefile | config.status:848: creating tests/proxy/Makefile | config.status:848: creating Makefile | config.status:848: creating intl/Makefile | config.status:848: creating po/Makefile.in | config.status:848: creating raddb/client.conf | config.status:848: creating raddb/config | config.status:848: creating include/Makefile | config.status:848: creating include/radius/Makefile | config.status:848: creating include/snmp/Makefile | config.status:848: creating lib/Makefile | config.status:848: creating sql/Makefile | config.status:848: creating snmplib/Makefile | config.status:848: creating radscm/Makefile | config.status:848: creating radiusd/Makefile | config.status:848: creating radlast/Makefile | config.status:848: creating radwho/Makefile | config.status:848: creating radzap/Makefile | config.status:848: creating radscripts/Makefile | config.status:848: creating doc/Makefile | config.status:848: creating doc/texinfo/Makefile | config.status:848: creating doc/man/Makefile | config.status:848: creating doc/man/config.so | config.status:848: creating doc/rfc/Makefile | config.status:848: creating mibs/Makefile | config.status:848: creating elisp/Makefile | config.status:848: creating raddb/Makefile | config.status:848: creating db/Makefile | config.status:848: creating client/Makefile | config.status:848: creating client/nas/Makefile | config.status:848: creating client/pam_radius/Makefile | config.status:848: creating radtest/Makefile | config.status:848: creating examples/Makefile | config.status:848: creating scripts/Makefile | config.status:848: creating scripts/guile/Makefile | config.status:848: creating scripts/guile/1.6/Makefile | config.status:848: creating contrib/Makefile | config.status:848: creating contrib/web-radact/Makefile | config.status:848: creating contrib/passcvt/Makefile | config.status:848: creating contrib/passwd_to_db/Makefile | config.status:848: creating contrib/radsend/Makefile | config.status:848: creating contrib/php/Makefile | config.status:952: creating config.h | config.status:1742: executing depfiles commands | config.status:1742: executing default-1 commands | config.status:1742: executing tests/atconfig commands | | ## ---------------- ## | ## Cache variables. ## | ## ---------------- ## | | ac_cv_build=powerpc-unknown-linux-gnu | ac_cv_build_alias=powerpc-unknown-linux-gnu | ac_cv_c_compiler_gnu=yes | ac_cv_c_const=yes | ac_cv_c_inline=inline | ac_cv_env_CC_set= | ac_cv_env_CC_value= | ac_cv_env_CFLAGS_set= | ac_cv_env_CFLAGS_value= | ac_cv_env_CPPFLAGS_set= | ac_cv_env_CPPFLAGS_value= | ac_cv_env_CPP_set= | ac_cv_env_CPP_value= | ac_cv_env_EMACSLOADPATH_set= | ac_cv_env_EMACSLOADPATH_value= | ac_cv_env_EMACS_set= | ac_cv_env_EMACS_value= | ac_cv_env_LDFLAGS_set= | ac_cv_env_LDFLAGS_value= | 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_build_alias_set= | ac_cv_env_build_alias_value= | 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_exeext= | ac_cv_func___argz_count=yes | ac_cv_func___argz_next=yes | ac_cv_func___argz_stringify=yes | ac_cv_func___fsetlocking=yes | ac_cv_func__doprnt=no | ac_cv_func_alloca_works=yes | ac_cv_func_argp_parse=yes | ac_cv_func_bzero=yes | ac_cv_func_feof_unlocked=yes | ac_cv_func_fgets_unlocked=yes | ac_cv_func_getc_unlocked=yes | ac_cv_func_getcwd=yes | ac_cv_func_getdtablesize=yes | ac_cv_func_getegid=yes | ac_cv_func_geteuid=yes | ac_cv_func_getgid=yes | ac_cv_func_gethostname=yes | ac_cv_func_getline=yes | ac_cv_func_getpagesize=yes | ac_cv_func_getspnam=yes | ac_cv_func_gettimeofday=yes | ac_cv_func_getuid=yes | ac_cv_func_inet_aton=yes | ac_cv_func_inet_ntoa=yes | ac_cv_func_localtime_r=yes | ac_cv_func_lockf=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_munmap=yes | ac_cv_func_obstack=yes | ac_cv_func_putenv=yes | ac_cv_func_rl_completion_matches=no | ac_cv_func_select=yes | ac_cv_func_setegid=yes | ac_cv_func_setenv=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_snprintf=yes | ac_cv_func_socket=yes | ac_cv_func_stpcpy=yes | ac_cv_func_strcasecmp=yes | ac_cv_func_strchrnul=yes | ac_cv_func_strcspn=yes | ac_cv_func_strdup=yes | ac_cv_func_strerror=yes | ac_cv_func_strftime=yes | ac_cv_func_strncasecmp=yes | ac_cv_func_strndup=yes | ac_cv_func_strnlen=yes | ac_cv_func_strtok_r=yes | ac_cv_func_strtol=yes | ac_cv_func_strtoul=yes | ac_cv_func_tsearch=yes | ac_cv_func_vasprintf=yes | ac_cv_func_vprintf=yes | ac_cv_gnu_library_2_1=yes | ac_cv_have_decl_asprintf=no | ac_cv_have_decl_crypt=yes | ac_cv_have_decl_crypt_set_format=no | ac_cv_have_decl_getline=no | ac_cv_have_decl_localtime_r=yes | ac_cv_have_decl_strncasecmp=yes | ac_cv_have_decl_strtok_r=yes | ac_cv_have_decl_vasprintf=no | ac_cv_header_argp_h=yes | ac_cv_header_argz_h=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_getopt_h=yes | ac_cv_header_inttypes_h=yes | ac_cv_header_libintl_h=yes | ac_cv_header_limits_h=yes | ac_cv_header_locale_h=yes | ac_cv_header_malloc_h=yes | ac_cv_header_memory_h=yes | ac_cv_header_netdb_h=yes | ac_cv_header_netinet_in_h=yes | ac_cv_header_nl_types_h=yes | ac_cv_header_obstack_h=yes | ac_cv_header_readline_readline_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_stdc=yes | ac_cv_header_stddef_h=yes | ac_cv_header_stdint_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_param_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_termcap_h=yes | 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=yes | ac_cv_host=powerpc-unknown-linux-gnu | ac_cv_host_alias=powerpc-unknown-linux-gnu | ac_cv_lib_crypt_crypt=yes | ac_cv_lib_fl_yywrap=no | ac_cv_lib_l_yywrap=no | ac_cv_lib_ncurses___tputs=yes | ac_cv_lib_nsl_gethostbyaddr=yes | ac_cv_lib_readline_readline=yes | ac_cv_lib_socket_socket=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_GMSGFMT=/usr/bin/msgfmt | ac_cv_path_GUILE_CONFIG=no | ac_cv_path_MSGFMT=/usr/bin/msgfmt | ac_cv_path_MSGMERGE=: | ac_cv_path_PS=/bin/ps | ac_cv_path_XGETTEXT=: | ac_cv_path_install='/usr/bin/install -c' | ac_cv_prog_AWK=awk | ac_cv_prog_CPP='gcc -E' | ac_cv_prog_ac_ct_CC=gcc | ac_cv_prog_ac_ct_RANLIB=ranlib | ac_cv_prog_ac_ct_STRIP=strip | ac_cv_prog_cc_g=yes | ac_cv_prog_cc_stdc= | ac_cv_prog_egrep='grep -E' | ac_cv_prog_make_make_set=yes | ac_cv_search_strerror='none required' | 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=powerpc-unknown-linux-gnu | ac_cv_target_alias=powerpc-unknown-linux-gnu | ac_cv_type_off_t=yes | ac_cv_type_pid_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=yes | ac_cv_working_alloca_h=yes | acl_cv_hardcode_direct=no | acl_cv_hardcode_libdir_flag_spec= | acl_cv_hardcode_libdir_separator= | acl_cv_hardcode_minus_L=no | acl_cv_libext=a | acl_cv_path_LD=/usr/powerpc-hardhat-linux/bin/ld | acl_cv_prog_gnu_ld=no | acl_cv_rpath=done | acl_cv_shlibext=so | acl_cv_wl=-Wl, | am_cv_CC_dependencies_compiler_type=gcc | am_cv_func_iconv=yes | am_cv_langinfo_codeset=yes | am_cv_lib_iconv=no | am_cv_lispdir='${datadir}/emacs/site-lisp' | am_cv_prog_cc_stdc= | am_cv_proto_iconv='extern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);' | am_cv_proto_iconv_arg1= | am_cv_val_LC_MESSAGES=yes | gt_cv_func_gnugettext2_libc=yes | gt_cv_header_inttypes_h=yes | gt_cv_int_divbyzero_sigfpe=no | gt_cv_inttypes_pri_broken=no | jm_ac_cv_header_inttypes_h=yes | jm_ac_cv_header_stdint_h=yes | lt_cv_compiler_c_o=yes | lt_cv_compiler_o_lo=yes | lt_cv_deplibs_check_method=pass_all | lt_cv_file_magic_cmd='$MAGIC_CMD' | lt_cv_file_magic_test_file='/lib/libc.so.6 /lib/libc-2.2.3.so' | lt_cv_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_global_symbol_to_cdecl='sed -n -e '\''s/^. .* \(.*\)$/extern char \1;/p'\''' | lt_cv_ld_reload_flag=-r | lt_cv_path_LD=/usr/powerpc-hardhat-linux/bin/ld | lt_cv_path_NM='/usr/bin/nm -p' | lt_cv_path_SED=/bin/sed | lt_cv_prog_cc_can_build_shared=yes | lt_cv_prog_cc_no_builtin= | lt_cv_prog_cc_pic=' -fPIC' | lt_cv_prog_cc_pic_works=yes | lt_cv_prog_cc_shlib= | lt_cv_prog_cc_static=-static | lt_cv_prog_cc_static_works=yes | lt_cv_prog_cc_wl=-Wl, | lt_cv_prog_gnu_ld=no | lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[ ]\([BCDEGRST][BCDEGRST]*\)[ ][ ]*\(\)\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2\3 \3/p'\''' | nls_cv_force_use_gnu_gettext=no | nls_cv_header_intl= | nls_cv_header_libgt= | nls_cv_use_gnu_gettext=no | ra_cv_decl_inaddrloopback=yes | ra_cv_func_working_re_compile_pattern=yes | ra_cv_have_gnu_getopt=yes | ra_cv_lib_guile=no | ra_cv_struct_hostent_h_addr_list=yes | | ## ----------------- ## | ## Output variables. ## | ## ----------------- ## | | ACCT_PORT='1813' | ACLOCAL='${SHELL} /usr/local/radius-1.3/scripts/missing --run aclocal-1.8' | ALLOCA='' | AMDEPBACKSLASH='\' | AMDEP_FALSE='#' | AMDEP_TRUE='' | AMTAR='${SHELL} /usr/local/radius-1.3/scripts/missing --run tar' | AUTH_PORT='1812' | AUTOCONF='${SHELL} /usr/local/radius-1.3/scripts/missing --run autoconf' | AUTOHEADER='${SHELL} /usr/local/radius-1.3/scripts/missing --run autoheader' | AUTOM4TE='${SHELL} /usr/local/radius-1.3/scripts/missing --run autom4te' | AUTOMAKE='${SHELL} /usr/local/radius-1.3/scripts/missing --run automake-1.8' | AWK='awk' | BUILD_INCLUDED_LIBINTL='no' | BUILD_MOD_RADIUS_LA='' | BUILD_NAS_SCM='' | BUILD_PAM_RADIUS_LA='' | BUILD_SQL='' | BUILD_TARGET='' | CATOBJEXT='.gmo' | CC='gcc' | CCDEPMODE='depmode=gcc' | CFLAGS='-g -O2' | CPP='gcc -E' | CPPFLAGS='' | CYGPATH_W='echo' | DATADIRNAME='share' | DEFS='-DHAVE_CONFIG_H' | DEPDIR='.deps' | ECHO='echo' | ECHO_C='' | ECHO_N='-n' | ECHO_T='' | EGREP='grep -E' | EMACS='no' | EMACSLOADPATH='' | EXEEXT='' | GENCAT='gencat' | GLIBC21='yes' | GMSGFMT='/usr/bin/msgfmt' | GNU_INCLUDES='' | GUILE_BINDIR='' | GUILE_CONFIG='no' | GUILE_INCLUDES='' | GUILE_LIBS='' | GUILE_SNARF_VERSION='1.6' | INCLUDEPATH='' | INSTALL_DATA='${INSTALL} -m 644' | INSTALL_PROGRAM='${INSTALL}' | INSTALL_SCRIPT='${INSTALL}' | INSTALL_STRIP_PROGRAM='${SHELL} $(install_sh) -c -s' | INSTOBJEXT='.mo' | INTLBISON=':' | INTLLIBS='' | INTLOBJS='' | INTL_LIBTOOL_SUFFIX_PREFIX='' | LDFLAGS='' | LEAK_DETECTOR='' | LEX='${SHELL} /usr/local/radius-1.3/scripts/missing --run flex' | LEXLIB='' | LEX_OUTPUT_ROOT='' | LIBGNURADIUS='${top_builddir}/lib/libgnuradius.la' | LIBICONV='' | LIBINTL='' | LIBOBJS='' | LIBRADSCM='' | LIBS='-lcrypt -lnsl ' | LIBTOOL='$(SHELL) $(top_builddir)/libtool' | LN_S='ln -s' | LTLIBICONV='' | LTLIBINTL='' | LTLIBOBJS='' | M4='`cd $(top_srcdir); pwd`/scripts/missing --run m4' | MAINT='#' | MAINTAINER_MODE_FALSE='' | MAINTAINER_MODE_TRUE='#' | MAKEINFO='${SHELL} /usr/local/radius-1.3/scripts/missing --run makeinfo' | MKINSTALLDIRS='$(top_builddir)/scripts/mkinstalldirs' | MSGFMT='/usr/bin/msgfmt' | MSGMERGE=':' | MYSQLLIBS='' | OBJEXT='o' | ODBCLIBS='' | PACKAGE='radius' | PACKAGE_BUGREPORT='[email protected]' | PACKAGE_NAME='GNU Radius' | PACKAGE_STRING='GNU Radius 1.3' | PACKAGE_TARNAME='radius' | PACKAGE_VERSION='1.3' | 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' | 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 ' | RADIUS_PID='' | RADLOG_DIR='/var/log' | RADPID_DIR='/var/run' | RADSCM='' | RADSCM_BUILT_SOURCES_LIST='' | RADSCM_PKGDATA='' | RADSESSION='' | RANLIB='ranlib' | READLINE_LIBS='-lreadline -lncurses' | SET_MAKE='' | SHELL='/bin/sh' | SNMP_CONFIG='# ' | SQLLIB='' | SQL_LIBOBJS='' | SQL_LOADABLE_MODULES='' | SQL_LTLIBOBJS='' | SQL_MODULES='' | STRIP='strip' | USE_INCLUDED_LIBINTL='no' | USE_NLS='yes' | VERSION='1.3' | XGETTEXT=':' | YACC='yacc' | ac_ct_CC='gcc' | ac_ct_RANLIB='ranlib' | ac_ct_STRIP='strip' | am__fastdepCC_FALSE='' | am__fastdepCC_TRUE='#' | am__include='include' | am__leading_dot='.' | am__quote='' | bindir='${exec_prefix}/bin' | build='powerpc-unknown-linux-gnu' | build_POFILTER='' | build_alias='' | build_cpu='powerpc' | build_os='linux-gnu' | build_vendor='unknown' | datadir='${prefix}/share' | exec_prefix='${prefix}' | host='powerpc-unknown-linux-gnu' | host_alias='' | host_cpu='powerpc' | host_os='linux-gnu' | host_vendor='unknown' | includedir='${prefix}/include' | infodir='${prefix}/info' | install_sh='/usr/local/radius-1.3/scripts/install-sh' | libdir='${exec_prefix}/lib' | libexecdir='${exec_prefix}/libexec' | lisp_LISP='' | lispdir='${datadir}/emacs/site-lisp' | localstatedir='${prefix}/var' | mandir='${prefix}/man' | mkdir_p='mkdir -p -- .' | oldincludedir='/usr/include' | prefix='/usr/local' | program_transform_name='s,x,x,' | sbindir='${exec_prefix}/sbin' | sharedstatedir='${prefix}/com' | sysconfdir='${prefix}/etc' | target='powerpc-unknown-linux-gnu' | target_alias='' | target_cpu='powerpc' | target_os='linux-gnu' | target_vendor='unknown' | | ## ----------- ## | ## confdefs.h. ## | ## ----------- ## | | #define BUILD_TARGET "powerpc-unknown-linux-gnu" | #define DEF_ACCT_PORT 1813 | #define DEF_AUTH_PORT 1812 | #define ENABLE_NLS 1 | #define HAVE_ALLOCA 1 | #define HAVE_ALLOCA_H 1 | #define HAVE_ARGP_H 1 | #define HAVE_ARGP_PARSE 1 | #define HAVE_ARGZ_H 1 | #define HAVE_ARPA_INET_H 1 | #define HAVE_BZERO 1 | #define HAVE_CRYPT_H 1 | #define HAVE_CTYPE_H 1 | #define HAVE_DCGETTEXT 1 | #define HAVE_DECL_ASPRINTF 0 | #define HAVE_DECL_CRYPT 1 | #define HAVE_DECL_CRYPT_SET_FORMAT 0 | #define HAVE_DECL_GETLINE 0 | #define HAVE_DECL_LOCALTIME_R 1 | #define HAVE_DECL_STRNCASECMP 1 | #define HAVE_DECL_STRTOK_R 1 | #define HAVE_DECL_VASPRINTF 0 | #define HAVE_DLFCN_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_FEOF_UNLOCKED 1 | #define HAVE_FGETS_UNLOCKED 1 | #define HAVE_GETCWD 1 | #define HAVE_GETC_UNLOCKED 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_GETEGID 1 | #define HAVE_GETEUID 1 | #define HAVE_GETGID 1 | #define HAVE_GETHOSTNAME 1 | #define HAVE_GETLINE 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_GETPAGESIZE 1 | #define HAVE_GETSPNAM 1 | #define HAVE_GETTEXT 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_GETUID 1 | #define HAVE_GNU_GETOPT 1 | #define HAVE_HOSTENT_H_ADDR_LIST 1 | #define HAVE_ICONV 1 | #define HAVE_INET_ATON 1 | #define HAVE_INET_NTOA 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_LC_MESSAGES 1 | #define HAVE_LIBCRYPT 1 | #define HAVE_LIBINTL_H 1 | #define HAVE_LIBNSL 1 | #define HAVE_LIMITS_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_LOCALTIME_R 1 | #define HAVE_LOCKF 1 | #define HAVE_MALLOC_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_MEMPCPY 1 | #define HAVE_MKDIR 1 | #define HAVE_MKTIME 1 | #define HAVE_MMAP 1 | #define HAVE_MMAP 1 | #define HAVE_MUNMAP 1 | #define HAVE_NETDB_H 1 | #define HAVE_NETINET_IN_H 1 | #define HAVE_NL_TYPES_H 1 | #define HAVE_OBSTACK 1 | #define HAVE_PROGRAM_INVOCATION_NAME 1 | #define HAVE_PUTENV 1 | #define HAVE_READLINE_READLINE_H 1 | #define HAVE_SELECT 1 | #define HAVE_SETEGID 1 | #define HAVE_SETENV 1 | #define HAVE_SETEUID 1 | #define HAVE_SETLOCALE 1 | #define HAVE_SETLOCALE 1 | #define HAVE_SETREGID 1 | #define HAVE_SETRESGID 1 | #define HAVE_SETREUID 1 | #define HAVE_SETSID 1 | #define HAVE_SETVBUF 1 | #define HAVE_SGTTY_H 1 | #define HAVE_SIGACTION 1 | #define HAVE_SNPRINTF 1 | #define HAVE_SOCKET 1 | #define HAVE_STDARG_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STPCPY 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRCHRNUL 1 | #define HAVE_STRCSPN 1 | #define HAVE_STRDUP 1 | #define HAVE_STRDUP 1 | #define HAVE_STRERROR 1 | #define HAVE_STRFTIME 1 | #define HAVE_STRINGS_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRING_H 1 | #define HAVE_STRNCASECMP 1 | #define HAVE_STRNDUP 1 | #define HAVE_STRNLEN 1 | #define HAVE_STRTOK_R 1 | #define HAVE_STRTOL 1 | #define HAVE_STRTOUL 1 | #define HAVE_STRUCT_SPWD 1 | #define HAVE_STRUCT_SPWD_SP_EXPIRE 1 | #define HAVE_SYS_ERRLIST 1 | #define HAVE_SYS_FILE_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_SELECT_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_UIO_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_TERMCAP_H 1 | #define HAVE_TERMIOS_H 1 | #define HAVE_TERMIO_H 1 | #define HAVE_TSEARCH 1 | #define HAVE_UINTMAX_T 1 | #define HAVE_UNISTD_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_UNSIGNED_LONG_LONG 1 | #define HAVE_VARARGS_H 1 | #define HAVE_VASPRINTF 1 | #define HAVE_VPRINTF 1 | #define HAVE___ARGZ_COUNT 1 | #define HAVE___ARGZ_NEXT 1 | #define HAVE___ARGZ_STRINGIFY 1 | #define HAVE___FSETLOCKING 1 | #define ICONV_CONST | #define INTDIV0_RAISES_SIGFPE 0 | #define PACKAGE "radius" | #define PACKAGE_BUGREPORT "[email protected]" | #define PACKAGE_NAME "GNU Radius" | #define PACKAGE_STRING "GNU Radius 1.3" | #define PACKAGE_TARNAME "radius" | #define PACKAGE_VERSION "1.3" | #define RADIUS_DEBUG 1 | #define RETSIGTYPE void | #define RETSIGTYPE void | #define SIZEOF_UINT32_T 4 | #define SIZEOF_UNSIGNED_INT 4 | #define SIZEOF_UNSIGNED_LONG 4 | #define STDC_HEADERS 1 | #define STDC_HEADERS 1 | #define TIME_WITH_SYS_TIME 1 | #define VERSION "1.3" | #define WITH_READLINE 1 | | configure: exit 0 --0-1715333661-1106536397=:32333 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Bug-gnu-radius mailing list [email protected] http://lists.gnu.org/mailman/listinfo/bug-gnu-radius --0-1715333661-1106536397=:32333--