Mercurial > hg > xemacs-beta
changeset 1800:6c853dd06f0d
[xemacs-hg @ 2003-11-20 16:06:00 by james]
And one more commit because our broken archive won't take toplevel stuff
the first time.
author | james |
---|---|
date | Thu, 20 Nov 2003 16:06:05 +0000 |
parents | 19c89a2e24b6 |
children | c67cb4768d70 |
files | ChangeLog configure configure.in |
diffstat | 3 files changed, 281 insertions(+), 218 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog Thu Nov 20 16:04:47 2003 +0000 +++ b/ChangeLog Thu Nov 20 16:06:05 2003 +0000 @@ -1,3 +1,7 @@ +2003-11-18 Jerry James <james@xemacs.org> + + * configure.in: Check for the typeof extension. + 2003-10-15 Jerry James <james@xemacs.org> * aclocal.m4: Add icc (Intel compiler) support.
--- a/configure Thu Nov 20 16:04:47 2003 +0000 +++ b/configure Thu Nov 20 16:06:05 2003 +0000 @@ -12848,22 +12848,71 @@ echo " xemacs will be linked with \"inline.o\"" fi +echo $ac_n "checking for typeof""... $ac_c" 1>&6 +echo "configure:12853: checking for typeof" >&5 +cat > conftest.$ac_ext <<EOF +#line 12855 "configure" +#include "confdefs.h" + +int main() { +int i; __typeof__(i) j; +; return 0; } +EOF +if { (eval echo configure:12862: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then + rm -rf conftest* + typeofname="__typeof__" +else + echo "configure: failed program was:" >&5 + cat conftest.$ac_ext >&5 + rm -rf conftest* + cat > conftest.$ac_ext <<EOF +#line 12870 "configure" +#include "confdefs.h" + +int main() { +int i; typeof(i) j; +; return 0; } +EOF +if { (eval echo configure:12877: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then + rm -rf conftest* + typeofname="typeof" +else + echo "configure: failed program was:" >&5 + cat conftest.$ac_ext >&5 + rm -rf conftest* + typeofname=no +fi +rm -f conftest* +fi +rm -f conftest* +echo "$ac_t""$typeofname" 1>&6 +if test "$typeofname" != "no"; then + { test "$extra_verbose" = "yes" && cat << EOF + Defining TYPEOF = $typeofname +EOF +cat >> confdefs.h <<EOF +#define TYPEOF $typeofname +EOF +} + +fi + if test "$__DECC" != "yes"; then # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works # for constant arguments. Useless! echo $ac_n "checking for working alloca.h""... $ac_c" 1>&6 -echo "configure:12857: checking for working alloca.h" >&5 - -cat > conftest.$ac_ext <<EOF -#line 12860 "configure" +echo "configure:12906: checking for working alloca.h" >&5 + +cat > conftest.$ac_ext <<EOF +#line 12909 "configure" #include "confdefs.h" #include <alloca.h> int main() { char *p = alloca(2 * sizeof(int)); ; return 0; } EOF -if { (eval echo configure:12867: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:12916: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ac_cv_header_alloca_h=yes else @@ -12887,10 +12936,10 @@ fi echo $ac_n "checking for alloca""... $ac_c" 1>&6 -echo "configure:12891: checking for alloca" >&5 - -cat > conftest.$ac_ext <<EOF -#line 12894 "configure" +echo "configure:12940: checking for alloca" >&5 + +cat > conftest.$ac_ext <<EOF +#line 12943 "configure" #include "confdefs.h" #ifdef __GNUC__ @@ -12918,7 +12967,7 @@ char *p = (char *) alloca(1); ; return 0; } EOF -if { (eval echo configure:12922: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:12971: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ac_cv_func_alloca_works=yes else @@ -12957,10 +13006,10 @@ echo $ac_n "checking whether alloca needs Cray hooks""... $ac_c" 1>&6 -echo "configure:12961: checking whether alloca needs Cray hooks" >&5 - -cat > conftest.$ac_ext <<EOF -#line 12964 "configure" +echo "configure:13010: checking whether alloca needs Cray hooks" >&5 + +cat > conftest.$ac_ext <<EOF +#line 13013 "configure" #include "confdefs.h" #if defined(CRAY) && ! defined(CRAY2) webecray @@ -12984,10 +13033,10 @@ if test $ac_cv_os_cray = yes; then for ac_func in _getb67 GETB67 getb67; do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:12988: checking for $ac_func" >&5 - -cat > conftest.$ac_ext <<EOF -#line 12991 "configure" +echo "configure:13037: checking for $ac_func" >&5 + +cat > conftest.$ac_ext <<EOF +#line 13040 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func(); below. */ @@ -13010,7 +13059,7 @@ ; return 0; } EOF -if { (eval echo configure:13014: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:13063: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -13040,10 +13089,10 @@ fi echo $ac_n "checking stack direction for C alloca""... $ac_c" 1>&6 -echo "configure:13044: checking stack direction for C alloca" >&5 - -cat > conftest.$ac_ext <<EOF -#line 13047 "configure" +echo "configure:13093: checking stack direction for C alloca" >&5 + +cat > conftest.$ac_ext <<EOF +#line 13096 "configure" #include "confdefs.h" find_stack_direction () { @@ -13062,7 +13111,7 @@ exit (find_stack_direction() < 0); } EOF -if { (eval echo configure:13066: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit $?) 2>&5 +if { (eval echo configure:13115: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit $?) 2>&5 then ac_cv_c_stack_direction=1 else @@ -13091,9 +13140,9 @@ fi echo $ac_n "checking for working alloca in function calls""... $ac_c" 1>&6 -echo "configure:13095: checking for working alloca in function calls" >&5 -cat > conftest.$ac_ext <<EOF -#line 13097 "configure" +echo "configure:13144: checking for working alloca in function calls" >&5 +cat > conftest.$ac_ext <<EOF +#line 13146 "configure" #include "confdefs.h" #if defined (__CYGWIN__) @@ -13146,7 +13195,7 @@ } EOF -if { (eval echo configure:13150: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit $?) 2>&5 +if { (eval echo configure:13199: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit $?) 2>&5 then working_alloca_in_function_calls=yes else @@ -13169,10 +13218,10 @@ echo $ac_n "checking for working strcoll""... $ac_c" 1>&6 -echo "configure:13173: checking for working strcoll" >&5 - -cat > conftest.$ac_ext <<EOF -#line 13176 "configure" +echo "configure:13222: checking for working strcoll" >&5 + +cat > conftest.$ac_ext <<EOF +#line 13225 "configure" #include "confdefs.h" #include <string.h> main () @@ -13182,7 +13231,7 @@ strcoll ("123", "456") >= 0); } EOF -if { (eval echo configure:13186: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit $?) 2>&5 +if { (eval echo configure:13235: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit $?) 2>&5 then ac_cv_func_strcoll_works=yes else @@ -13210,10 +13259,10 @@ for ac_func in getpgrp do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:13214: checking for $ac_func" >&5 - -cat > conftest.$ac_ext <<EOF -#line 13217 "configure" +echo "configure:13263: checking for $ac_func" >&5 + +cat > conftest.$ac_ext <<EOF +#line 13266 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func(); below. */ @@ -13236,7 +13285,7 @@ ; return 0; } EOF -if { (eval echo configure:13240: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:13289: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -13264,10 +13313,10 @@ done echo $ac_n "checking whether getpgrp takes no argument""... $ac_c" 1>&6 -echo "configure:13268: checking whether getpgrp takes no argument" >&5 - -cat > conftest.$ac_ext <<EOF -#line 13271 "configure" +echo "configure:13317: checking whether getpgrp takes no argument" >&5 + +cat > conftest.$ac_ext <<EOF +#line 13320 "configure" #include "confdefs.h" /* @@ -13322,7 +13371,7 @@ } EOF -if { (eval echo configure:13326: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit $?) 2>&5 +if { (eval echo configure:13375: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit $?) 2>&5 then ac_cv_func_getpgrp_void=yes else @@ -13349,10 +13398,10 @@ echo $ac_n "checking for working mmap""... $ac_c" 1>&6 -echo "configure:13353: checking for working mmap" >&5 +echo "configure:13402: checking for working mmap" >&5 case "$opsys" in ultrix* ) have_mmap=no ;; *) cat > conftest.$ac_ext <<EOF -#line 13356 "configure" +#line 13405 "configure" #include "confdefs.h" #include <stdio.h> #include <unistd.h> @@ -13385,7 +13434,7 @@ return 1; } EOF -if { (eval echo configure:13389: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit $?) 2>&5 +if { (eval echo configure:13438: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit $?) 2>&5 then have_mmap=yes else @@ -13414,9 +13463,9 @@ if test "$rel_alloc $have_mmap" = "default yes"; then if test "$doug_lea_malloc" = "yes"; then echo $ac_n "checking for M_MMAP_THRESHOLD""... $ac_c" 1>&6 -echo "configure:13418: checking for M_MMAP_THRESHOLD" >&5 +echo "configure:13467: checking for M_MMAP_THRESHOLD" >&5 cat > conftest.$ac_ext <<EOF -#line 13420 "configure" +#line 13469 "configure" #include "confdefs.h" #include <malloc.h> int main() { @@ -13428,7 +13477,7 @@ ; return 0; } EOF -if { (eval echo configure:13432: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:13481: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* rel_alloc=no; echo "$ac_t""yes" 1>&6; else @@ -13453,15 +13502,15 @@ ac_safe=`echo "termios.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for termios.h""... $ac_c" 1>&6 -echo "configure:13457: checking for termios.h" >&5 - -cat > conftest.$ac_ext <<EOF -#line 13460 "configure" +echo "configure:13506: checking for termios.h" >&5 + +cat > conftest.$ac_ext <<EOF +#line 13509 "configure" #include "confdefs.h" #include <termios.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:13465: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:13514: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -13504,15 +13553,15 @@ echo "$ac_t""no" 1>&6 ac_safe=`echo "termio.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for termio.h""... $ac_c" 1>&6 -echo "configure:13508: checking for termio.h" >&5 - -cat > conftest.$ac_ext <<EOF -#line 13511 "configure" +echo "configure:13557: checking for termio.h" >&5 + +cat > conftest.$ac_ext <<EOF +#line 13560 "configure" #include "confdefs.h" #include <termio.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:13516: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:13565: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -13544,10 +13593,10 @@ echo $ac_n "checking for socket""... $ac_c" 1>&6 -echo "configure:13548: checking for socket" >&5 - -cat > conftest.$ac_ext <<EOF -#line 13551 "configure" +echo "configure:13597: checking for socket" >&5 + +cat > conftest.$ac_ext <<EOF +#line 13600 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char socket(); below. */ @@ -13570,7 +13619,7 @@ ; return 0; } EOF -if { (eval echo configure:13574: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:13623: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_socket=yes" else @@ -13585,15 +13634,15 @@ echo "$ac_t""yes" 1>&6 ac_safe=`echo "netinet/in.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for netinet/in.h""... $ac_c" 1>&6 -echo "configure:13589: checking for netinet/in.h" >&5 - -cat > conftest.$ac_ext <<EOF -#line 13592 "configure" +echo "configure:13638: checking for netinet/in.h" >&5 + +cat > conftest.$ac_ext <<EOF +#line 13641 "configure" #include "confdefs.h" #include <netinet/in.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:13597: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:13646: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -13610,15 +13659,15 @@ echo "$ac_t""yes" 1>&6 ac_safe=`echo "arpa/inet.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for arpa/inet.h""... $ac_c" 1>&6 -echo "configure:13614: checking for arpa/inet.h" >&5 - -cat > conftest.$ac_ext <<EOF -#line 13617 "configure" +echo "configure:13663: checking for arpa/inet.h" >&5 + +cat > conftest.$ac_ext <<EOF +#line 13666 "configure" #include "confdefs.h" #include <arpa/inet.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:13622: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:13671: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -13643,9 +13692,9 @@ } echo $ac_n "checking "for sun_len member in struct sockaddr_un"""... $ac_c" 1>&6 -echo "configure:13647: checking "for sun_len member in struct sockaddr_un"" >&5 +echo "configure:13696: checking "for sun_len member in struct sockaddr_un"" >&5 cat > conftest.$ac_ext <<EOF -#line 13649 "configure" +#line 13698 "configure" #include "confdefs.h" #include <sys/types.h> @@ -13656,7 +13705,7 @@ static struct sockaddr_un x; x.sun_len = 1; ; return 0; } EOF -if { (eval echo configure:13660: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:13709: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* echo "$ac_t""yes" 1>&6; { test "$extra_verbose" = "yes" && cat << \EOF Defining HAVE_SOCKADDR_SUN_LEN @@ -13674,9 +13723,9 @@ fi rm -f conftest* echo $ac_n "checking "for ip_mreq struct in netinet/in.h"""... $ac_c" 1>&6 -echo "configure:13678: checking "for ip_mreq struct in netinet/in.h"" >&5 +echo "configure:13727: checking "for ip_mreq struct in netinet/in.h"" >&5 cat > conftest.$ac_ext <<EOF -#line 13680 "configure" +#line 13729 "configure" #include "confdefs.h" #include <sys/types.h> @@ -13686,7 +13735,7 @@ static struct ip_mreq x; ; return 0; } EOF -if { (eval echo configure:13690: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:13739: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* echo "$ac_t""yes" 1>&6; { test "$extra_verbose" = "yes" && cat << \EOF Defining HAVE_MULTICAST @@ -13717,10 +13766,10 @@ echo $ac_n "checking for msgget""... $ac_c" 1>&6 -echo "configure:13721: checking for msgget" >&5 - -cat > conftest.$ac_ext <<EOF -#line 13724 "configure" +echo "configure:13770: checking for msgget" >&5 + +cat > conftest.$ac_ext <<EOF +#line 13773 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char msgget(); below. */ @@ -13743,7 +13792,7 @@ ; return 0; } EOF -if { (eval echo configure:13747: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:13796: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_msgget=yes" else @@ -13758,15 +13807,15 @@ echo "$ac_t""yes" 1>&6 ac_safe=`echo "sys/ipc.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for sys/ipc.h""... $ac_c" 1>&6 -echo "configure:13762: checking for sys/ipc.h" >&5 - -cat > conftest.$ac_ext <<EOF -#line 13765 "configure" +echo "configure:13811: checking for sys/ipc.h" >&5 + +cat > conftest.$ac_ext <<EOF +#line 13814 "configure" #include "confdefs.h" #include <sys/ipc.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:13770: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:13819: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -13783,15 +13832,15 @@ echo "$ac_t""yes" 1>&6 ac_safe=`echo "sys/msg.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for sys/msg.h""... $ac_c" 1>&6 -echo "configure:13787: checking for sys/msg.h" >&5 - -cat > conftest.$ac_ext <<EOF -#line 13790 "configure" +echo "configure:13836: checking for sys/msg.h" >&5 + +cat > conftest.$ac_ext <<EOF +#line 13839 "configure" #include "confdefs.h" #include <sys/msg.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:13795: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:13844: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -13829,15 +13878,15 @@ ac_safe=`echo "dirent.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for dirent.h""... $ac_c" 1>&6 -echo "configure:13833: checking for dirent.h" >&5 - -cat > conftest.$ac_ext <<EOF -#line 13836 "configure" +echo "configure:13882: checking for dirent.h" >&5 + +cat > conftest.$ac_ext <<EOF +#line 13885 "configure" #include "confdefs.h" #include <dirent.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:13841: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:13890: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -13864,15 +13913,15 @@ echo "$ac_t""no" 1>&6 ac_safe=`echo "sys/dir.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for sys/dir.h""... $ac_c" 1>&6 -echo "configure:13868: checking for sys/dir.h" >&5 - -cat > conftest.$ac_ext <<EOF -#line 13871 "configure" +echo "configure:13917: checking for sys/dir.h" >&5 + +cat > conftest.$ac_ext <<EOF +#line 13920 "configure" #include "confdefs.h" #include <sys/dir.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:13876: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:13925: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -13905,15 +13954,15 @@ ac_safe=`echo "nlist.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for nlist.h""... $ac_c" 1>&6 -echo "configure:13909: checking for nlist.h" >&5 - -cat > conftest.$ac_ext <<EOF -#line 13912 "configure" +echo "configure:13958: checking for nlist.h" >&5 + +cat > conftest.$ac_ext <<EOF +#line 13961 "configure" #include "confdefs.h" #include <nlist.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:13917: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:13966: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -13943,22 +13992,22 @@ echo "checking "for sound support"" 1>&6 -echo "configure:13947: checking "for sound support"" >&5 +echo "configure:13996: checking "for sound support"" >&5 test -z "$with_native_sound" -a -n "$native_sound_lib" && with_native_sound=yes if test "$with_native_sound" != "no"; then if test -n "$native_sound_lib"; then ac_safe=`echo "multimedia/audio_device.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for multimedia/audio_device.h""... $ac_c" 1>&6 -echo "configure:13954: checking for multimedia/audio_device.h" >&5 - -cat > conftest.$ac_ext <<EOF -#line 13957 "configure" +echo "configure:14003: checking for multimedia/audio_device.h" >&5 + +cat > conftest.$ac_ext <<EOF +#line 14006 "configure" #include "confdefs.h" #include <multimedia/audio_device.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:13962: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:14011: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -14014,12 +14063,12 @@ if test -z "$native_sound_lib"; then echo $ac_n "checking for ALopenport in -laudio""... $ac_c" 1>&6 -echo "configure:14018: checking for ALopenport in -laudio" >&5 +echo "configure:14067: checking for ALopenport in -laudio" >&5 ac_lib_var=`echo audio'_'ALopenport | sed 'y%./+-%__p_%'` xe_check_libs=" -laudio " cat > conftest.$ac_ext <<EOF -#line 14023 "configure" +#line 14072 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 @@ -14030,7 +14079,7 @@ ALopenport() ; return 0; } EOF -if { (eval echo configure:14034: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:14083: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -14061,12 +14110,12 @@ if test -z "$native_sound_lib"; then echo $ac_n "checking for AOpenAudio in -lAlib""... $ac_c" 1>&6 -echo "configure:14065: checking for AOpenAudio in -lAlib" >&5 +echo "configure:14114: checking for AOpenAudio in -lAlib" >&5 ac_lib_var=`echo Alib'_'AOpenAudio | sed 'y%./+-%__p_%'` xe_check_libs=" -lAlib " cat > conftest.$ac_ext <<EOF -#line 14070 "configure" +#line 14119 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 @@ -14077,7 +14126,7 @@ AOpenAudio() ; return 0; } EOF -if { (eval echo configure:14081: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:14130: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -14125,15 +14174,15 @@ for dir in "machine" "sys" "linux"; do ac_safe=`echo "${dir}/soundcard.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for ${dir}/soundcard.h""... $ac_c" 1>&6 -echo "configure:14129: checking for ${dir}/soundcard.h" >&5 - -cat > conftest.$ac_ext <<EOF -#line 14132 "configure" +echo "configure:14178: checking for ${dir}/soundcard.h" >&5 + +cat > conftest.$ac_ext <<EOF +#line 14181 "configure" #include "confdefs.h" #include <${dir}/soundcard.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:14137: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:14186: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -14187,15 +14236,15 @@ if test "$with_nas_sound" != "no"; then ac_safe=`echo "audio/audiolib.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for audio/audiolib.h""... $ac_c" 1>&6 -echo "configure:14191: checking for audio/audiolib.h" >&5 - -cat > conftest.$ac_ext <<EOF -#line 14194 "configure" +echo "configure:14240: checking for audio/audiolib.h" >&5 + +cat > conftest.$ac_ext <<EOF +#line 14243 "configure" #include "confdefs.h" #include <audio/audiolib.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:14199: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:14248: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -14213,12 +14262,12 @@ echo $ac_n "checking for AuOpenServer in -laudio""... $ac_c" 1>&6 -echo "configure:14217: checking for AuOpenServer in -laudio" >&5 +echo "configure:14266: checking for AuOpenServer in -laudio" >&5 ac_lib_var=`echo audio'_'AuOpenServer | sed 'y%./+-%__p_%'` xe_check_libs=" -laudio " cat > conftest.$ac_ext <<EOF -#line 14222 "configure" +#line 14271 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 @@ -14229,7 +14278,7 @@ AuOpenServer() ; return 0; } EOF -if { (eval echo configure:14233: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:14282: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -14268,7 +14317,7 @@ fi libs_x="-laudio $libs_x" && if test "$extra_verbose" = "yes"; then echo " Prepending \"-laudio\" to \$libs_x"; fi cat > conftest.$ac_ext <<EOF -#line 14272 "configure" +#line 14321 "configure" #include "confdefs.h" #include <audio/Xtutil.h> EOF @@ -14299,7 +14348,7 @@ # Extract the first word of "esd-config", so it can be a program name with args. set dummy esd-config; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:14303: checking for $ac_word" >&5 +echo "configure:14352: checking for $ac_word" >&5 if test -n "$have_esd_config"; then ac_cv_prog_have_esd_config="$have_esd_config" # Let the user override the test. @@ -14328,10 +14377,10 @@ c_switch_site="$c_switch_site `esd-config --cflags`" && if test "$extra_verbose" = "yes"; then echo " Appending \"`esd-config --cflags`\" to \$c_switch_site"; fi LIBS="`esd-config --libs` $LIBS" && if test "$extra_verbose" = "yes"; then echo " Prepending \"`esd-config --libs`\" to \$LIBS"; fi echo $ac_n "checking for esd_play_stream""... $ac_c" 1>&6 -echo "configure:14332: checking for esd_play_stream" >&5 - -cat > conftest.$ac_ext <<EOF -#line 14335 "configure" +echo "configure:14381: checking for esd_play_stream" >&5 + +cat > conftest.$ac_ext <<EOF +#line 14384 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char esd_play_stream(); below. */ @@ -14354,7 +14403,7 @@ ; return 0; } EOF -if { (eval echo configure:14358: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:14407: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_esd_play_stream=yes" else @@ -14405,7 +14454,7 @@ if test "$with_tty" = "yes" ; then echo "checking for TTY-related features" 1>&6 -echo "configure:14409: checking for TTY-related features" >&5 +echo "configure:14458: checking for TTY-related features" >&5 { test "$extra_verbose" = "yes" && cat << \EOF Defining HAVE_TTY EOF @@ -14418,12 +14467,12 @@ if test -z "$with_ncurses"; then echo $ac_n "checking for tgetent in -lncurses""... $ac_c" 1>&6 -echo "configure:14422: checking for tgetent in -lncurses" >&5 +echo "configure:14471: checking for tgetent in -lncurses" >&5 ac_lib_var=`echo ncurses'_'tgetent | sed 'y%./+-%__p_%'` xe_check_libs=" -lncurses " cat > conftest.$ac_ext <<EOF -#line 14427 "configure" +#line 14476 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 @@ -14434,7 +14483,7 @@ tgetent() ; return 0; } EOF -if { (eval echo configure:14438: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:14487: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -14467,15 +14516,15 @@ ac_safe=`echo "ncurses/curses.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for ncurses/curses.h""... $ac_c" 1>&6 -echo "configure:14471: checking for ncurses/curses.h" >&5 - -cat > conftest.$ac_ext <<EOF -#line 14474 "configure" +echo "configure:14520: checking for ncurses/curses.h" >&5 + +cat > conftest.$ac_ext <<EOF +#line 14523 "configure" #include "confdefs.h" #include <ncurses/curses.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:14479: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:14528: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -14497,15 +14546,15 @@ ac_safe=`echo "ncurses/term.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for ncurses/term.h""... $ac_c" 1>&6 -echo "configure:14501: checking for ncurses/term.h" >&5 - -cat > conftest.$ac_ext <<EOF -#line 14504 "configure" +echo "configure:14550: checking for ncurses/term.h" >&5 + +cat > conftest.$ac_ext <<EOF +#line 14553 "configure" #include "confdefs.h" #include <ncurses/term.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:14509: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:14558: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -14535,15 +14584,15 @@ c_switch_site="$c_switch_site -I/usr/include/ncurses" ac_safe=`echo "ncurses/curses.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for ncurses/curses.h""... $ac_c" 1>&6 -echo "configure:14539: checking for ncurses/curses.h" >&5 - -cat > conftest.$ac_ext <<EOF -#line 14542 "configure" +echo "configure:14588: checking for ncurses/curses.h" >&5 + +cat > conftest.$ac_ext <<EOF +#line 14591 "configure" #include "confdefs.h" #include <ncurses/curses.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:14547: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:14596: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -14578,12 +14627,12 @@ for lib in curses termlib termcap; do echo $ac_n "checking for tgetent in -l$lib""... $ac_c" 1>&6 -echo "configure:14582: checking for tgetent in -l$lib" >&5 +echo "configure:14631: checking for tgetent in -l$lib" >&5 ac_lib_var=`echo $lib'_'tgetent | sed 'y%./+-%__p_%'` xe_check_libs=" -l$lib " cat > conftest.$ac_ext <<EOF -#line 14587 "configure" +#line 14636 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 @@ -14594,7 +14643,7 @@ tgetent() ; return 0; } EOF -if { (eval echo configure:14598: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:14647: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -14625,12 +14674,12 @@ else echo $ac_n "checking for tgetent in -lcurses""... $ac_c" 1>&6 -echo "configure:14629: checking for tgetent in -lcurses" >&5 +echo "configure:14678: checking for tgetent in -lcurses" >&5 ac_lib_var=`echo curses'_'tgetent | sed 'y%./+-%__p_%'` xe_check_libs=" -lcurses " cat > conftest.$ac_ext <<EOF -#line 14634 "configure" +#line 14683 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 @@ -14641,7 +14690,7 @@ tgetent() ; return 0; } EOF -if { (eval echo configure:14645: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:14694: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -14659,12 +14708,12 @@ else echo "$ac_t""no" 1>&6 echo $ac_n "checking for tgetent in -ltermcap""... $ac_c" 1>&6 -echo "configure:14663: checking for tgetent in -ltermcap" >&5 +echo "configure:14712: checking for tgetent in -ltermcap" >&5 ac_lib_var=`echo termcap'_'tgetent | sed 'y%./+-%__p_%'` xe_check_libs=" -ltermcap " cat > conftest.$ac_ext <<EOF -#line 14668 "configure" +#line 14717 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 @@ -14675,7 +14724,7 @@ tgetent() ; return 0; } EOF -if { (eval echo configure:14679: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:14728: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -14723,15 +14772,15 @@ test -z "$with_gpm" && { ac_safe=`echo "gpm.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for gpm.h""... $ac_c" 1>&6 -echo "configure:14727: checking for gpm.h" >&5 - -cat > conftest.$ac_ext <<EOF -#line 14730 "configure" +echo "configure:14776: checking for gpm.h" >&5 + +cat > conftest.$ac_ext <<EOF +#line 14779 "configure" #include "confdefs.h" #include <gpm.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:14735: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:14784: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -14754,12 +14803,12 @@ } test -z "$with_gpm" && { echo $ac_n "checking for Gpm_Open in -lgpm""... $ac_c" 1>&6 -echo "configure:14758: checking for Gpm_Open in -lgpm" >&5 +echo "configure:14807: checking for Gpm_Open in -lgpm" >&5 ac_lib_var=`echo gpm'_'Gpm_Open | sed 'y%./+-%__p_%'` xe_check_libs=" -lgpm " cat > conftest.$ac_ext <<EOF -#line 14763 "configure" +#line 14812 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 @@ -14770,7 +14819,7 @@ Gpm_Open() ; return 0; } EOF -if { (eval echo configure:14774: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:14823: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -14813,20 +14862,20 @@ test "$with_database_gdbm $with_database_dbm $with_database_berkdb" \ != "no no no" && echo "checking for database support" 1>&6 -echo "configure:14817: checking for database support" >&5 +echo "configure:14866: checking for database support" >&5 if test "$with_database_gdbm $with_database_dbm" != "no no"; then ac_safe=`echo "ndbm.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for ndbm.h""... $ac_c" 1>&6 -echo "configure:14822: checking for ndbm.h" >&5 - -cat > conftest.$ac_ext <<EOF -#line 14825 "configure" +echo "configure:14871: checking for ndbm.h" >&5 + +cat > conftest.$ac_ext <<EOF +#line 14874 "configure" #include "confdefs.h" #include <ndbm.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:14830: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:14879: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -14856,12 +14905,12 @@ if test "$with_database_gdbm" != "no"; then echo $ac_n "checking for dbm_open in -lgdbm""... $ac_c" 1>&6 -echo "configure:14860: checking for dbm_open in -lgdbm" >&5 +echo "configure:14909: checking for dbm_open in -lgdbm" >&5 ac_lib_var=`echo gdbm'_'dbm_open | sed 'y%./+-%__p_%'` xe_check_libs=" -lgdbm " cat > conftest.$ac_ext <<EOF -#line 14865 "configure" +#line 14914 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 @@ -14872,7 +14921,7 @@ dbm_open() ; return 0; } EOF -if { (eval echo configure:14876: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:14925: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -14900,10 +14949,10 @@ if test "$with_database_dbm" != "no"; then echo $ac_n "checking for dbm_open""... $ac_c" 1>&6 -echo "configure:14904: checking for dbm_open" >&5 - -cat > conftest.$ac_ext <<EOF -#line 14907 "configure" +echo "configure:14953: checking for dbm_open" >&5 + +cat > conftest.$ac_ext <<EOF +#line 14956 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char dbm_open(); below. */ @@ -14926,7 +14975,7 @@ ; return 0; } EOF -if { (eval echo configure:14930: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:14979: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_dbm_open=yes" else @@ -14945,12 +14994,12 @@ echo $ac_n "checking for dbm_open in -ldbm""... $ac_c" 1>&6 -echo "configure:14949: checking for dbm_open in -ldbm" >&5 +echo "configure:14998: checking for dbm_open in -ldbm" >&5 ac_lib_var=`echo dbm'_'dbm_open | sed 'y%./+-%__p_%'` xe_check_libs=" -ldbm " cat > conftest.$ac_ext <<EOF -#line 14954 "configure" +#line 15003 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 @@ -14961,7 +15010,7 @@ dbm_open() ; return 0; } EOF -if { (eval echo configure:14965: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:15014: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -15002,10 +15051,10 @@ if test "$with_database_berkdb" != "no"; then echo $ac_n "checking for Berkeley db.h""... $ac_c" 1>&6 -echo "configure:15006: checking for Berkeley db.h" >&5 +echo "configure:15055: checking for Berkeley db.h" >&5 for header in "db/db.h" "db.h"; do cat > conftest.$ac_ext <<EOF -#line 15009 "configure" +#line 15058 "configure" #include "confdefs.h" #include <stdlib.h> @@ -15027,7 +15076,7 @@ ; return 0; } EOF -if { (eval echo configure:15031: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:15080: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* db_h_file="$header"; break else @@ -15043,9 +15092,9 @@ if test "$with_database_berkdb" != "no"; then echo $ac_n "checking for Berkeley DB version""... $ac_c" 1>&6 -echo "configure:15047: checking for Berkeley DB version" >&5 +echo "configure:15096: checking for Berkeley DB version" >&5 cat > conftest.$ac_ext <<EOF -#line 15049 "configure" +#line 15098 "configure" #include "confdefs.h" #include <$db_h_file> #if DB_VERSION_MAJOR > 1 @@ -15057,7 +15106,7 @@ egrep "yes" >/dev/null 2>&1; then rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 15061 "configure" +#line 15110 "configure" #include "confdefs.h" #include <$db_h_file> #if DB_VERSION_MAJOR > 2 @@ -15069,7 +15118,7 @@ egrep "yes" >/dev/null 2>&1; then rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 15073 "configure" +#line 15122 "configure" #include "confdefs.h" #include <$db_h_file> #if DB_VERSION_MAJOR > 3 @@ -15103,10 +15152,10 @@ rm -f conftest* echo $ac_n "checking for $dbfunc""... $ac_c" 1>&6 -echo "configure:15107: checking for $dbfunc" >&5 - -cat > conftest.$ac_ext <<EOF -#line 15110 "configure" +echo "configure:15156: checking for $dbfunc" >&5 + +cat > conftest.$ac_ext <<EOF +#line 15159 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $dbfunc(); below. */ @@ -15129,7 +15178,7 @@ ; return 0; } EOF -if { (eval echo configure:15133: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:15182: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$dbfunc=yes" else @@ -15148,12 +15197,12 @@ echo $ac_n "checking for $dbfunc in -ldb""... $ac_c" 1>&6 -echo "configure:15152: checking for $dbfunc in -ldb" >&5 +echo "configure:15201: checking for $dbfunc in -ldb" >&5 ac_lib_var=`echo db'_'$dbfunc | sed 'y%./+-%__p_%'` xe_check_libs=" -ldb " cat > conftest.$ac_ext <<EOF -#line 15157 "configure" +#line 15206 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 @@ -15164,7 +15213,7 @@ $dbfunc() ; return 0; } EOF -if { (eval echo configure:15168: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:15217: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -15198,12 +15247,12 @@ echo "configure: warning: "db_create is really $dbfunc"" 1>&2 echo $ac_n "checking for $dbfunc in -ldb""... $ac_c" 1>&6 -echo "configure:15202: checking for $dbfunc in -ldb" >&5 +echo "configure:15251: checking for $dbfunc in -ldb" >&5 ac_lib_var=`echo db'_'$dbfunc | sed 'y%./+-%__p_%'` xe_check_libs=" -ldb " cat > conftest.$ac_ext <<EOF -#line 15207 "configure" +#line 15256 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 @@ -15214,7 +15263,7 @@ $dbfunc() ; return 0; } EOF -if { (eval echo configure:15218: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:15267: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -15273,12 +15322,12 @@ if test "$with_socks" = "yes"; then echo $ac_n "checking for SOCKSinit in -lsocks""... $ac_c" 1>&6 -echo "configure:15277: checking for SOCKSinit in -lsocks" >&5 +echo "configure:15326: checking for SOCKSinit in -lsocks" >&5 ac_lib_var=`echo socks'_'SOCKSinit | sed 'y%./+-%__p_%'` xe_check_libs=" -lsocks " cat > conftest.$ac_ext <<EOF -#line 15282 "configure" +#line 15331 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 @@ -15289,7 +15338,7 @@ SOCKSinit() ; return 0; } EOF -if { (eval echo configure:15293: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:15342: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -15343,11 +15392,11 @@ fi cat > conftest.$ac_ext <<EOF -#line 15347 "configure" +#line 15396 "configure" #include "confdefs.h" int main(int c,char *v[]){return 0;} EOF -if { (eval echo configure:15351: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit $?) 2>&5 +if { (eval echo configure:15400: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit $?) 2>&5 then : else
--- a/configure.in Thu Nov 20 16:04:47 2003 +0000 +++ b/configure.in Thu Nov 20 16:06:05 2003 +0000 @@ -4196,6 +4196,16 @@ AC_C_INLINE test "$ac_cv_c_inline" != "no" -a "$GCC" = "yes" && XE_ADD_OBJS(inline.o) +dnl check for the typeof extension +AC_MSG_CHECKING(for typeof) +AC_TRY_COMPILE(, [int i; __typeof__(i) j;], typeofname="__typeof__", + [AC_TRY_COMPILE(, [int i; typeof(i) j;], typeofname="typeof", + typeofname=no)]) +AC_MSG_RESULT($typeofname) +if test "$typeofname" != "no"; then + AC_DEFINE_UNQUOTED(TYPEOF, $typeofname) +fi + dnl HP-UX has a working alloca in libPW. dnl case "${GCC}${opsys}" in hpux* ) dnl AC_CHECK_FUNC(alloca, [:], [AC_CHECK_LIB(PW, alloca)])