Index: ChangeLog =================================================================== RCS file: /home/circledb/.cvs/circle/ChangeLog,v retrieving revision 1.225 retrieving revision 1.234 diff -u -p -r1.225 -r1.234 --- ChangeLog 4 Oct 2002 07:18:16 -0000 1.225 +++ ChangeLog 19 Nov 2002 04:03:26 -0000 1.234 @@ -1,5 +1,6 @@ Release history: +Version 3.1 (yes, no beta pl): November 18, 2002 Version 3.00 beta pl22 release: October 4, 2002 Version 3.00 beta pl21 release: April 15, 2002 Version 3.00 beta pl20 release: January 15, 2002 @@ -4185,3 +4186,68 @@ change. of throwing it away. write_to_descriptor(): Return number of bytes written. process_output(): Keep data on socket write block. + +******** CircleMUD 3.1 *************************************************** + +11/15/2002 + +-- gg - comm.c: echo_on(), echo_off(): "%s" format strings, though not + necessary. + make_prompt(): Revert changeset #1.115. + process_output(): Cast 'result' to avoid unsigned warnings. + +-- gg - structs.h: Force 'byte' to signed char. Some platforms use + an unsigned char by default. + +-- gg - limits.c: gain_condition(): Cosmetic return -> break change. + +-- gg - lib/text/credits: Added Alex Fletcher, George Greer, and Daniel + Koepke. Changed jelson@ address to cdev@. + +-- gg - shop.h: Make it more obvious the WILL_* #define values are + bitvectors and not simply counting. + From: Carlton Colter + +-- gg - comm.c: process_output(): Correctly switch to large buffer + when text would just barely fit in the small buffer + then forget to change. + From: Yoram Harmelin + +-- gg - cnf/configure.in, cnf/aclocal.m4: Added -fno-builtin detection + to fix prototype testing. Functions such as bzero(), + printf(), and fprintf() were receiving false negatives. + configure: Regenerated. + +11/17/2002 + +-- gg - utils.h: Make TOGGLE_BIT "x^=y" instead of "x=x^y" to avoid + a VC++ warning. + +-- gg - house.c: House_delete_file(): Make 'vnum' a 'room_vnum' type. + +-- gg - castle.c: castle_mob_spec(): Use 'mob_vnum' type. + +-- ae - Updated docs, and added coding.tex/coding.pdf + +-- gg - autorun, autorun.cmd, autorun.pl, autorun.sh: Remove '3.0' + version number, to avoid needing to update it. + +-- gg - Makefile.lcc, constants.c, structs.h: bpl22 -> 3.1 + +-- gg - Makefile.amiga, Makefile.arc, Makefile.in, Makefile.lcc, Makefile.msvc, + Makefile.os2, Smakefile, magic.c, structs.h, Makefile.in: + Remove '3.0' version numbers to avoid updates. + +-- gg - util/Makefile.in: Remove '3.0' version numbers to avoid updates. + +-- gg - lib/world/README: Remove '3.0' version numbers to avoid updates. + +-- gg - lib/text/greetings, lib/text/imotd: Change 3.0 to 3.1. + +-- gg - doc/README-NOW: Deleted. + +-- gg - doc/README.AMIGA, doc/README.ARC, doc/README.BORLAND, doc/README.CYGWIN, + doc/README.MSVC4, doc/README.MSVC5, doc/README.MSVC6, + doc/README.OS2, doc/README.UNIX, doc/README.VMS, + doc/README.WATCOM, doc/README.WIN: Remove '3.0' version numbers + to avoid updates. Index: README =================================================================== RCS file: /home/circledb/.cvs/circle/README,v retrieving revision 1.14 retrieving revision 1.15 diff -u -p -r1.14 -r1.15 --- README 23 Aug 2001 15:32:28 -0000 1.14 +++ README 18 Nov 2002 15:15:01 -0000 1.15 @@ -2,7 +2,7 @@ CircleMUD README File --------------------- -Welcome to CircleMUD 3.0! I hope you enjoy your stay. +Welcome to CircleMUD 3.1! I hope you enjoy your stay. More information about CircleMUD can be found at the CircleMUD Home Page: http://www.circlemud.org. That site has the latest source distributions, @@ -33,7 +33,7 @@ jelson@circlemud.org Downloading CircleMUD --------------------- -You can find version 3.0 of CircleMUD at the following anonymous FTP sites: +You can find version 3.1 of CircleMUD at the following anonymous FTP sites: ftp.circlemud.org:/pub/CircleMUD/3.x ftp2.circlemud.org:/pub/CircleMUD/3.x @@ -98,7 +98,7 @@ doc/README.VMS - If you happen to be o If you are interested in porting CircleMUD to a new platform, see the file doc/porting.txt for some tips. -Version 3.0 source currently does NOT compile under DOS, Windows 3.x, or +Version 3.1 source currently does NOT compile under DOS, Windows 3.x, or Windows for Workgroups. Also, we currently do not distribute binaries, although the FTP site does have a very old Amiga binary of CircleMUD 2.20. @@ -115,25 +115,25 @@ Other Documentation If this information isn't enough to get you running, there's a lot more information available. All documentation (other than this file) is in -the "doc" directory and available on-line at http://www.circlemud.org. +the "doc" directory and available on-line at http://www.circlemud.org/. The README file in the doc directory describes each documentation file in detail, but there are several main files which should be of interest: -"The CircleMUD Administrator's Guide" (admin.txt, admin.ps) +"The CircleMUD Administrator's Guide" (admin.pdf) A good place to start after reading this README file, admin.txt gives an overall description of how Circle works, how to get it to compile and run for the first time, information about customizing and configuration options and command-line arguments, and tips on maintenance and day-to-day MUD administration. -"The CircleMUD Builder's Manual" (building.txt, building.ps) +"The CircleMUD Builder's Manual" (building.pdf) For the builders in your group, this documents the world-file format and describes how to create new rooms, objects, and monsters. Also, it describes how to add new areas to the MUD and gives some tips about game balance and world-file debugging. -"The CircleMUD Coder's Manual" (coding.txt, coding.ps) +"The CircleMUD Coder's Manual" (coding.pdf) For the coders in your group, a technical reference describing some of the more basic coding tasks such as how to add new commands, spells, skills, socials, and classes. Note that it assumes the reader already has @@ -143,6 +143,7 @@ an excellent knowledge of C; the manual A comprehensive list of all the possible SYSERR messages CircleMUD can generate, and a description of what can cause each problem and how to solve it. An excellent guide for troubleshooting and area debugging. +[NOTE: This document is not complete at this time] Getting Help Index: autorun =================================================================== RCS file: /home/circledb/.cvs/circle/autorun,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- autorun 31 Jan 2002 18:05:29 -0000 1.6 +++ autorun 18 Nov 2002 17:18:24 -0000 1.7 @@ -1,6 +1,6 @@ #!/bin/sh # -# CircleMUD 3.0 autorun script +# CircleMUD autorun script # Contributions by Fred Merkel, Stuart Lamble, and Jeremy Elson # New log rotating code contributed by Peter Ajamian # Copyright (c) 1996 The Trustees of The Johns Hopkins University Index: autorun.cmd =================================================================== RCS file: /home/circledb/.cvs/circle/autorun.cmd,v retrieving revision 1.1 retrieving revision 1.3 diff -u -p -r1.1 -r1.3 --- autorun.cmd 29 Oct 1997 05:15:32 -0000 1.1 +++ autorun.cmd 18 Nov 2002 22:43:48 -0000 1.3 @@ -1,10 +1,10 @@ /* REXX */ /* Note: This is an example Autorun REXX Script for use with OS/2 and - CircleMUD 3.0. You may use it as is, or as the basis for your own + CircleMUD. You may use it as is, or as the basis for your own script. April 18, 1996 - David A. Carver */ -/* CircleMUD 3.0 autorun script +/* CircleMUD autorun script * Originally by Fred C. Merkel * Copyright (c) 1993 The Trustees of The Johns Hopkins University * All Rights Reserved Index: autorun.pl =================================================================== RCS file: /home/circledb/.cvs/circle/autorun.pl,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- autorun.pl 29 Oct 1997 05:15:32 -0000 1.1 +++ autorun.pl 18 Nov 2002 17:18:24 -0000 1.2 @@ -1,5 +1,5 @@ #!/usr/bin/perl -# autorun -- maintain a Circle V3.0 mud server +# autorun -- maintain a Circle mud server # Copyright (c)1995 Vi'Rage Studios # This program is free software; you can redistribute it and/or modify Index: autorun.sh =================================================================== RCS file: /home/circledb/.cvs/circle/autorun.sh,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- autorun.sh 25 Jun 2001 18:28:38 -0000 1.1 +++ autorun.sh 18 Nov 2002 17:18:24 -0000 1.2 @@ -1,6 +1,6 @@ #!/bin/sh # -# CircleMUD 3.0 autorun script +# CircleMUD autorun script # Contributions by Fred Merkel, Stuart Lamble, and Jeremy Elson # Copyright (c) 1996 The Trustees of The Johns Hopkins University # All Rights Reserved Index: configure =================================================================== RCS file: /home/circledb/.cvs/circle/configure,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- configure 16 Apr 2002 02:23:38 -0000 1.16 +++ configure 13 Nov 2002 20:17:00 -0000 1.17 @@ -1,7 +1,7 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated automatically using autoconf version 2.14.1 +# Generated automatically using autoconf version 2.13 # Copyright (C) 1992, 93, 94, 95, 96 Free Software Foundation, Inc. # # This configure script is free software; the Free Software Foundation @@ -333,7 +333,7 @@ EOF verbose=yes ;; -version | --version | --versio | --versi | --vers) - echo "configure generated by autoconf version 2.14.1" + echo "configure generated by autoconf version 2.13" exit 0 ;; -with-* | --with-*) @@ -493,7 +493,7 @@ done if test -r "$cache_file"; then echo "loading cache $cache_file" - test -f "$cache_file" && . $cache_file + . $cache_file else echo "creating cache $cache_file" > $cache_file @@ -537,7 +537,7 @@ do set dummy $ac_prog; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 echo "configure:540: checking for $ac_word" >&5 -if eval "test \"\${ac_cv_prog_MORE+set}\" = set"; then +if eval "test \"`echo '$''{'ac_cv_prog_MORE'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else if test -n "$MORE"; then @@ -570,7 +570,7 @@ done set dummy gcc; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 echo "configure:573: checking for $ac_word" >&5 -if eval "test \"\${ac_cv_prog_CC+set}\" = set"; then +if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else if test -n "$CC"; then @@ -600,7 +600,7 @@ if test -z "$CC"; then set dummy cc; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 echo "configure:603: checking for $ac_word" >&5 -if eval "test \"\${ac_cv_prog_CC+set}\" = set"; then +if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else if test -n "$CC"; then @@ -646,12 +646,12 @@ fi if test -z "$CC"; then case "`uname -s`" in - *win32* | *WIN32* | *CYGWIN*) + *win32* | *WIN32*) # Extract the first word of "cl", so it can be a program name with args. set dummy cl; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 echo "configure:654: checking for $ac_word" >&5 -if eval "test \"\${ac_cv_prog_CC+set}\" = set"; then +if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else if test -n "$CC"; then @@ -681,8 +681,8 @@ fi test -z "$CC" && { echo "configure: error: no acceptable cc found in \$PATH" 1>&2; exit 1; } fi -echo $ac_n "checking whether the C compiler ($CC $CFLAGS $CPPFLAGS $LDFLAGS) works""... $ac_c" 1>&6 -echo "configure:686: checking whether the C compiler ($CC $CFLAGS $CPPFLAGS $LDFLAGS) works" >&5 +echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6 +echo "configure:686: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5 ac_ext=c # CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options. @@ -723,14 +723,14 @@ echo "$ac_t""$ac_cv_prog_cc_works" 1>&6 if test $ac_cv_prog_cc_works = no; then { echo "configure: error: installation or configuration problem: C compiler cannot create executables." 1>&2; exit 1; } fi -echo $ac_n "checking whether the C compiler ($CC $CFLAGS $CPPFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6 -echo "configure:728: checking whether the C compiler ($CC $CFLAGS $CPPFLAGS $LDFLAGS) is a cross-compiler" >&5 +echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6 +echo "configure:728: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5 echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6 cross_compiling=$ac_cv_prog_cc_cross echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6 echo "configure:733: checking whether we are using GNU C" >&5 -if eval "test \"\${ac_cv_prog_gcc+set}\" = set"; then +if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.c <&6 echo "configure:761: checking whether ${CC-cc} accepts -g" >&5 -if eval "test \"\${ac_cv_prog_cc_g+set}\" = set"; then +if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else echo 'void f(){}' > conftest.c @@ -793,7 +793,7 @@ if test $ac_cv_prog_gcc = yes; then echo $ac_n "checking whether ${CC-cc} -Wall also needs -Wno-char-subscripts""... $ac_c" 1>&6 echo "configure:796: checking whether ${CC-cc} -Wall also needs -Wno-char-subscripts" >&5 -if eval "test \"\${ac_cv_char_warn+set}\" = set"; then +if eval "test \"`echo '$''{'ac_cv_char_warn'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -829,7 +829,7 @@ echo "$ac_t""$ac_cv_char_warn" 1>&6 echo $ac_n "checking whether ${CC-cc} accepts -Wno-char-subscripts""... $ac_c" 1>&6 echo "configure:832: checking whether ${CC-cc} accepts -Wno-char-subscripts" >&5 -if eval "test \"\${ac_cv_gcc_ncs+set}\" = set"; then +if eval "test \"`echo '$''{'ac_cv_gcc_ncs'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -859,6 +859,38 @@ fi echo "$ac_t""$ac_cv_gcc_ncs" 1>&6 + echo $ac_n "checking whether ${CC-cc} accepts -fno-builtin""... $ac_c" 1>&6 +echo "configure:864: checking whether ${CC-cc} accepts -fno-builtin" >&5 +if eval "test \"`echo '$''{'ac_cv_gcc_fnb'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + + OLDCFLAGS=$CFLAGS + CFLAGS="$CFLAGS -fno-builtin" + cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then + rm -rf conftest* + ac_cv_gcc_fnb=yes +else + echo "configure: failed program was:" >&5 + cat conftest.$ac_ext >&5 + rm -rf conftest* + ac_cv_gcc_fnb=no +fi +rm -f conftest* + CFLAGS=$OLDCFLAGS + +fi + +echo "$ac_t""$ac_cv_gcc_fnb" 1>&6 + if test ${ac_cv_char_warn:-ERROR} = no; then MYFLAGS="-Wall" @@ -876,12 +908,12 @@ else fi echo $ac_n "checking for gethostbyaddr""... $ac_c" 1>&6 -echo "configure:880: checking for gethostbyaddr" >&5 -if eval "test \"\${ac_cv_func_gethostbyaddr+set}\" = set"; then +echo "configure:912: checking for gethostbyaddr" >&5 +if eval "test \"`echo '$''{'ac_cv_func_gethostbyaddr'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:940: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_gethostbyaddr=yes" else @@ -923,15 +954,15 @@ if eval "test \"`echo '$ac_cv_func_'geth else echo "$ac_t""no" 1>&6 echo $ac_n "checking for gethostbyaddr in -lnsl""... $ac_c" 1>&6 -echo "configure:927: checking for gethostbyaddr in -lnsl" >&5 +echo "configure:958: checking for gethostbyaddr in -lnsl" >&5 ac_lib_var=`echo nsl'_'gethostbyaddr | sed 'y%./+-%__p_%'` -if eval "test \"\${ac_cv_lib_$ac_lib_var+set}\" = set"; then +if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else ac_save_LIBS="$LIBS" LIBS="-lnsl $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:977: \"$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 @@ -966,12 +997,12 @@ fi echo $ac_n "checking for socket""... $ac_c" 1>&6 -echo "configure:970: checking for socket" >&5 -if eval "test \"\${ac_cv_func_socket+set}\" = set"; then +echo "configure:1001: checking for socket" >&5 +if eval "test \"`echo '$''{'ac_cv_func_socket'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:1029: \"$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 @@ -1013,15 +1043,15 @@ if eval "test \"`echo '$ac_cv_func_'sock else echo "$ac_t""no" 1>&6 echo $ac_n "checking for socket in -lsocket""... $ac_c" 1>&6 -echo "configure:1017: checking for socket in -lsocket" >&5 +echo "configure:1047: checking for socket in -lsocket" >&5 ac_lib_var=`echo socket'_'socket | sed 'y%./+-%__p_%'` -if eval "test \"\${ac_cv_lib_$ac_lib_var+set}\" = set"; then +if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else ac_save_LIBS="$LIBS" LIBS="-lsocket $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:1066: \"$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 @@ -1056,12 +1086,12 @@ fi echo $ac_n "checking for malloc""... $ac_c" 1>&6 -echo "configure:1060: checking for malloc" >&5 -if eval "test \"\${ac_cv_func_malloc+set}\" = set"; then +echo "configure:1090: checking for malloc" >&5 +if eval "test \"`echo '$''{'ac_cv_func_malloc'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:1118: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_malloc=yes" else @@ -1103,15 +1132,15 @@ if eval "test \"`echo '$ac_cv_func_'mall else echo "$ac_t""no" 1>&6 echo $ac_n "checking for malloc in -lmalloc""... $ac_c" 1>&6 -echo "configure:1107: checking for malloc in -lmalloc" >&5 +echo "configure:1136: checking for malloc in -lmalloc" >&5 ac_lib_var=`echo malloc'_'malloc | sed 'y%./+-%__p_%'` -if eval "test \"\${ac_cv_lib_$ac_lib_var+set}\" = set"; then +if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else ac_save_LIBS="$LIBS" LIBS="-lmalloc $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:1155: \"$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 @@ -1153,12 +1182,12 @@ fi echo $ac_n "checking for crypt""... $ac_c" 1>&6 -echo "configure:1157: checking for crypt" >&5 -if eval "test \"\${ac_cv_func_crypt+set}\" = set"; then +echo "configure:1186: checking for crypt" >&5 +if eval "test \"`echo '$''{'ac_cv_func_crypt'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:1214: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_crypt=yes" else @@ -1203,15 +1231,15 @@ EOF else echo "$ac_t""no" 1>&6 echo $ac_n "checking for crypt in -lcrypt""... $ac_c" 1>&6 -echo "configure:1207: checking for crypt in -lcrypt" >&5 +echo "configure:1235: checking for crypt in -lcrypt" >&5 ac_lib_var=`echo crypt'_'crypt | sed 'y%./+-%__p_%'` -if eval "test \"\${ac_cv_lib_$ac_lib_var+set}\" = set"; then +if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else ac_save_LIBS="$LIBS" LIBS="-lcrypt $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:1254: \"$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 @@ -1250,13 +1278,13 @@ fi echo $ac_n "checking how to run the C preprocessor""... $ac_c" 1>&6 -echo "configure:1254: checking how to run the C preprocessor" >&5 +echo "configure:1282: checking how to run the C preprocessor" >&5 # On Suns, sometimes $CPP names a directory. if test -n "$CPP" && test -d "$CPP"; then CPP= fi if test -z "$CPP"; then -if eval "test \"\${ac_cv_prog_CPP+set}\" = set"; then +if eval "test \"`echo '$''{'ac_cv_prog_CPP'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else # This must be in double quotes, not single quotes, because CPP may get @@ -1265,13 +1293,13 @@ else # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. cat > conftest.$ac_ext < Syntax Error EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:1275: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:1303: \"$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 : @@ -1282,13 +1310,13 @@ else rm -rf conftest* CPP="${CC-cc} -E -traditional-cpp" cat > conftest.$ac_ext < Syntax Error EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:1292: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:1320: \"$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 : @@ -1299,13 +1327,13 @@ else rm -rf conftest* CPP="${CC-cc} -nologo -E" cat > conftest.$ac_ext < Syntax Error EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:1309: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:1337: \"$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 : @@ -1330,12 +1358,12 @@ fi echo "$ac_t""$CPP" 1>&6 echo $ac_n "checking for ANSI C header files""... $ac_c" 1>&6 -echo "configure:1334: checking for ANSI C header files" >&5 -if eval "test \"\${ac_cv_header_stdc+set}\" = set"; then +echo "configure:1362: checking for ANSI C header files" >&5 +if eval "test \"`echo '$''{'ac_cv_header_stdc'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < #include @@ -1343,7 +1371,7 @@ else #include EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:1347: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:1375: \"$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* @@ -1360,7 +1388,7 @@ rm -f conftest* if test $ac_cv_header_stdc = yes; then # SunOS 4.x string.h does not declare mem*, contrary to ANSI. cat > conftest.$ac_ext < EOF @@ -1378,7 +1406,7 @@ fi if test $ac_cv_header_stdc = yes; then # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. cat > conftest.$ac_ext < EOF @@ -1399,7 +1427,7 @@ if test "$cross_compiling" = yes; then : else cat > conftest.$ac_ext < #define ISLOWER(c) ('a' <= (c) && (c) <= 'z') @@ -1410,7 +1438,7 @@ if (XOR (islower (i), ISLOWER (i)) || to exit (0); } EOF -if { (eval echo configure:1414: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:1442: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then : else @@ -1434,12 +1462,12 @@ EOF fi echo $ac_n "checking for sys/wait.h that is POSIX.1 compatible""... $ac_c" 1>&6 -echo "configure:1438: checking for sys/wait.h that is POSIX.1 compatible" >&5 -if eval "test \"\${ac_cv_header_sys_wait_h+set}\" = set"; then +echo "configure:1466: checking for sys/wait.h that is POSIX.1 compatible" >&5 +if eval "test \"`echo '$''{'ac_cv_header_sys_wait_h'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < #include @@ -1455,7 +1483,7 @@ wait (&s); s = WIFEXITED (s) ? WEXITSTATUS (s) : 1; ; return 0; } EOF -if { (eval echo configure:1459: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:1487: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ac_cv_header_sys_wait_h=yes else @@ -1479,21 +1507,17 @@ for ac_hdr in fcntl.h sys/fcntl.h errno. do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:1483: checking for $ac_hdr" >&5 -if eval "test \"\${ac_cv_header_$ac_safe+set}\" = set"; then +echo "configure:1511: checking for $ac_hdr" >&5 +if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < -#endif #include <$ac_hdr> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:1497: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:1521: \"$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* @@ -1523,21 +1547,17 @@ for ac_hdr in limits.h sys/time.h sys/se do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:1527: checking for $ac_hdr" >&5 -if eval "test \"\${ac_cv_header_$ac_safe+set}\" = set"; then +echo "configure:1551: checking for $ac_hdr" >&5 +if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < -#endif #include <$ac_hdr> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:1541: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:1561: \"$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* @@ -1567,21 +1587,17 @@ for ac_hdr in memory.h crypt.h assert.h do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:1571: checking for $ac_hdr" >&5 -if eval "test \"\${ac_cv_header_$ac_safe+set}\" = set"; then +echo "configure:1591: checking for $ac_hdr" >&5 +if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < -#endif #include <$ac_hdr> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:1585: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:1601: \"$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* @@ -1611,21 +1627,17 @@ for ac_hdr in sys/stat.h sys/socket.h sy do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:1615: checking for $ac_hdr" >&5 -if eval "test \"\${ac_cv_header_$ac_safe+set}\" = set"; then +echo "configure:1631: checking for $ac_hdr" >&5 +if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < -#endif #include <$ac_hdr> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:1629: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:1641: \"$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* @@ -1655,21 +1667,17 @@ for ac_hdr in signal.h sys/uio.h mcheck. do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:1659: checking for $ac_hdr" >&5 -if eval "test \"\${ac_cv_header_$ac_safe+set}\" = set"; then +echo "configure:1671: checking for $ac_hdr" >&5 +if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < -#endif #include <$ac_hdr> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:1673: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:1681: \"$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* @@ -1698,8 +1706,8 @@ done echo $ac_n "checking whether crypt needs over 10 characters""... $ac_c" 1>&6 -echo "configure:1702: checking whether crypt needs over 10 characters" >&5 -if eval "test \"\${ac_cv_unsafe_crypt+set}\" = set"; then +echo "configure:1710: checking whether crypt needs over 10 characters" >&5 +if eval "test \"`echo '$''{'ac_cv_unsafe_crypt'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1714,7 +1722,7 @@ else ac_cv_unsafe_crypt=no else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:1749: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then ac_cv_unsafe_crypt=yes else @@ -1764,12 +1772,12 @@ fi echo $ac_n "checking for working const""... $ac_c" 1>&6 -echo "configure:1768: checking for working const" >&5 -if eval "test \"\${ac_cv_c_const+set}\" = set"; then +echo "configure:1776: checking for working const" >&5 +if eval "test \"`echo '$''{'ac_cv_c_const'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:1830: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ac_cv_c_const=yes else @@ -1839,129 +1847,111 @@ EOF fi echo $ac_n "checking for pid_t""... $ac_c" 1>&6 -echo "configure:1843: checking for pid_t" >&5 -if eval "test \"\${ac_cv_type_pid_t+set}\" = set"; then +echo "configure:1851: checking for pid_t" >&5 +if eval "test \"`echo '$''{'ac_cv_type_pid_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < #if STDC_HEADERS -#include #include #include #endif -#if HAVE_SYS_BITYPES_H -#include -#endif EOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | egrep "(^|[^a-zA-Z_0-9])pid_t[^a-zA-Z_0-9]" >/dev/null 2>&1; then rm -rf conftest* - eval "ac_cv_type_pid_t=yes" + ac_cv_type_pid_t=yes else rm -rf conftest* - eval "ac_cv_type_pid_t=no" + ac_cv_type_pid_t=no fi rm -f conftest* fi -if eval "test \"`echo '$ac_cv_type_'pid_t`\" = yes"; then - echo "$ac_t""yes" 1>&6 -else - echo "$ac_t""no" 1>&6 - cat >> confdefs.h <&6 +if test $ac_cv_type_pid_t = no; then + cat >> confdefs.h <<\EOF #define pid_t int EOF fi echo $ac_n "checking for size_t""... $ac_c" 1>&6 -echo "configure:1882: checking for size_t" >&5 -if eval "test \"\${ac_cv_type_size_t+set}\" = set"; then +echo "configure:1884: checking for size_t" >&5 +if eval "test \"`echo '$''{'ac_cv_type_size_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < #if STDC_HEADERS -#include #include #include #endif -#if HAVE_SYS_BITYPES_H -#include -#endif EOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | egrep "(^|[^a-zA-Z_0-9])size_t[^a-zA-Z_0-9]" >/dev/null 2>&1; then rm -rf conftest* - eval "ac_cv_type_size_t=yes" + ac_cv_type_size_t=yes else rm -rf conftest* - eval "ac_cv_type_size_t=no" + ac_cv_type_size_t=no fi rm -f conftest* fi -if eval "test \"`echo '$ac_cv_type_'size_t`\" = yes"; then - echo "$ac_t""yes" 1>&6 -else - echo "$ac_t""no" 1>&6 - cat >> confdefs.h <&6 +if test $ac_cv_type_size_t = no; then + cat >> confdefs.h <<\EOF #define size_t unsigned EOF fi echo $ac_n "checking for ssize_t""... $ac_c" 1>&6 -echo "configure:1921: checking for ssize_t" >&5 -if eval "test \"\${ac_cv_type_ssize_t+set}\" = set"; then +echo "configure:1917: checking for ssize_t" >&5 +if eval "test \"`echo '$''{'ac_cv_type_ssize_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < #if STDC_HEADERS -#include #include #include #endif -#if HAVE_SYS_BITYPES_H -#include -#endif EOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | egrep "(^|[^a-zA-Z_0-9])ssize_t[^a-zA-Z_0-9]" >/dev/null 2>&1; then rm -rf conftest* - eval "ac_cv_type_ssize_t=yes" + ac_cv_type_ssize_t=yes else rm -rf conftest* - eval "ac_cv_type_ssize_t=no" + ac_cv_type_ssize_t=no fi rm -f conftest* fi -if eval "test \"`echo '$ac_cv_type_'ssize_t`\" = yes"; then - echo "$ac_t""yes" 1>&6 -else - echo "$ac_t""no" 1>&6 - cat >> confdefs.h <&6 +if test $ac_cv_type_ssize_t = no; then + cat >> confdefs.h <<\EOF #define ssize_t int EOF fi echo $ac_n "checking whether time.h and sys/time.h may both be included""... $ac_c" 1>&6 -echo "configure:1960: checking whether time.h and sys/time.h may both be included" >&5 -if eval "test \"\${ac_cv_header_time+set}\" = set"; then +echo "configure:1950: checking whether time.h and sys/time.h may both be included" >&5 +if eval "test \"`echo '$''{'ac_cv_header_time'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < #include @@ -1970,7 +1960,7 @@ int main() { struct tm *tp; ; return 0; } EOF -if { (eval echo configure:1974: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:1964: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ac_cv_header_time=yes else @@ -2005,19 +1995,19 @@ EOF fi echo $ac_n "checking for struct in_addr""... $ac_c" 1>&6 -echo "configure:2009: checking for struct in_addr" >&5 -if eval "test \"\${ac_cv_struct_in_addr+set}\" = set"; then +echo "configure:1999: checking for struct in_addr" >&5 +if eval "test \"`echo '$''{'ac_cv_struct_in_addr'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:2011: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ac_cv_struct_in_addr=yes else @@ -2044,19 +2034,19 @@ if test $ac_cv_header_sys_socket_h = no; ac_cv_socklen_t = no; else echo $ac_n "checking for typedef socklen_t""... $ac_c" 1>&6 -echo "configure:2048: checking for typedef socklen_t" >&5 -if eval "test \"\${ac_cv_socklen_t+set}\" = set"; then +echo "configure:2038: checking for typedef socklen_t" >&5 +if eval "test \"`echo '$''{'ac_cv_socklen_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < int main() { socklen_t sl; sl=0; ; return 0; } EOF -if { (eval echo configure:2060: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:2050: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ac_cv_socklen_t=yes else @@ -2080,12 +2070,12 @@ fi echo $ac_n "checking return type of signal handlers""... $ac_c" 1>&6 -echo "configure:2084: checking return type of signal handlers" >&5 -if eval "test \"\${ac_cv_type_signal+set}\" = set"; then +echo "configure:2074: checking return type of signal handlers" >&5 +if eval "test \"`echo '$''{'ac_cv_type_signal'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < #include @@ -2102,7 +2092,7 @@ int main() { int i; ; return 0; } EOF -if { (eval echo configure:2106: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:2096: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ac_cv_type_signal=void else @@ -2121,12 +2111,12 @@ EOF echo $ac_n "checking for vprintf""... $ac_c" 1>&6 -echo "configure:2125: checking for vprintf" >&5 -if eval "test \"\${ac_cv_func_vprintf+set}\" = set"; then +echo "configure:2115: checking for vprintf" >&5 +if eval "test \"`echo '$''{'ac_cv_func_vprintf'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:2143: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_vprintf=yes" else @@ -2174,12 +2163,12 @@ fi if test "$ac_cv_func_vprintf" != yes; then echo $ac_n "checking for _doprnt""... $ac_c" 1>&6 -echo "configure:2178: checking for _doprnt" >&5 -if eval "test \"\${ac_cv_func__doprnt+set}\" = set"; then +echo "configure:2167: checking for _doprnt" >&5 +if eval "test \"`echo '$''{'ac_cv_func__doprnt'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:2195: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func__doprnt=yes" else @@ -2230,12 +2218,12 @@ fi for ac_func in gettimeofday select snprintf strcasecmp strdup strerror stricmp strlcpy strncasecmp strnicmp strstr vsnprintf do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:2234: checking for $ac_func" >&5 -if eval "test \"\${ac_cv_func_$ac_func+set}\" = set"; then +echo "configure:2222: checking for $ac_func" >&5 +if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:2250: \"$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 @@ -2289,12 +2276,12 @@ LIBS="$LIBS $NETLIB" for ac_func in inet_addr inet_aton do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:2293: checking for $ac_func" >&5 -if eval "test \"\${ac_cv_func_$ac_func+set}\" = set"; then +echo "configure:2280: checking for $ac_func" >&5 +if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:2308: \"$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 @@ -2348,13 +2334,17 @@ LIBS=$ORIGLIBS ac_safe=accept; echo $ac_n "checking if accept is prototyped""... $ac_c" 1>&6 -echo "configure:2352: checking if accept is prototyped" >&5 -if eval "test \"\${ac_cv_prototype_$ac_safe+set}\" = set"; then +echo "configure:2338: checking if accept is prototyped" >&5 +if eval "test \"`echo '$''{'ac_cv_prototype_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else # + if test $ac_cv_gcc_fnb = yes; then + OLDCFLAGS=$CFLAGS + CFLAGS="$CFLAGS -fno-builtin" + fi cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:2364: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* eval "ac_cv_prototype_$ac_safe=no" else @@ -2380,6 +2370,9 @@ else eval "ac_cv_prototype_$ac_safe=yes" fi rm -f conftest* + if test $ac_cv_gcc_fnb = yes; then + CFLAGS=$OLDCFLAGS + fi fi @@ -2398,13 +2391,17 @@ fi ac_safe=atoi; echo $ac_n "checking if atoi is prototyped""... $ac_c" 1>&6 -echo "configure:2402: checking if atoi is prototyped" >&5 -if eval "test \"\${ac_cv_prototype_$ac_safe+set}\" = set"; then +echo "configure:2395: checking if atoi is prototyped" >&5 +if eval "test \"`echo '$''{'ac_cv_prototype_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else # + if test $ac_cv_gcc_fnb = yes; then + OLDCFLAGS=$CFLAGS + CFLAGS="$CFLAGS -fno-builtin" + fi cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:2421: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* eval "ac_cv_prototype_$ac_safe=no" else @@ -2430,6 +2427,9 @@ else eval "ac_cv_prototype_$ac_safe=yes" fi rm -f conftest* + if test $ac_cv_gcc_fnb = yes; then + CFLAGS=$OLDCFLAGS + fi fi @@ -2449,12 +2449,16 @@ ac_safe=atol; echo $ac_n "checking if atol is prototyped""... $ac_c" 1>&6 echo "configure:2452: checking if atol is prototyped" >&5 -if eval "test \"\${ac_cv_prototype_$ac_safe+set}\" = set"; then +if eval "test \"`echo '$''{'ac_cv_prototype_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else # + if test $ac_cv_gcc_fnb = yes; then + OLDCFLAGS=$CFLAGS + CFLAGS="$CFLAGS -fno-builtin" + fi cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:2478: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* eval "ac_cv_prototype_$ac_safe=no" else @@ -2480,6 +2484,9 @@ else eval "ac_cv_prototype_$ac_safe=yes" fi rm -f conftest* + if test $ac_cv_gcc_fnb = yes; then + CFLAGS=$OLDCFLAGS + fi fi @@ -2498,13 +2505,17 @@ fi ac_safe=bind; echo $ac_n "checking if bind is prototyped""... $ac_c" 1>&6 -echo "configure:2502: checking if bind is prototyped" >&5 -if eval "test \"\${ac_cv_prototype_$ac_safe+set}\" = set"; then +echo "configure:2509: checking if bind is prototyped" >&5 +if eval "test \"`echo '$''{'ac_cv_prototype_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else # + if test $ac_cv_gcc_fnb = yes; then + OLDCFLAGS=$CFLAGS + CFLAGS="$CFLAGS -fno-builtin" + fi cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:2535: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* eval "ac_cv_prototype_$ac_safe=no" else @@ -2530,6 +2541,9 @@ else eval "ac_cv_prototype_$ac_safe=yes" fi rm -f conftest* + if test $ac_cv_gcc_fnb = yes; then + CFLAGS=$OLDCFLAGS + fi fi @@ -2548,13 +2562,17 @@ fi ac_safe=bzero; echo $ac_n "checking if bzero is prototyped""... $ac_c" 1>&6 -echo "configure:2552: checking if bzero is prototyped" >&5 -if eval "test \"\${ac_cv_prototype_$ac_safe+set}\" = set"; then +echo "configure:2566: checking if bzero is prototyped" >&5 +if eval "test \"`echo '$''{'ac_cv_prototype_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else # + if test $ac_cv_gcc_fnb = yes; then + OLDCFLAGS=$CFLAGS + CFLAGS="$CFLAGS -fno-builtin" + fi cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:2592: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* eval "ac_cv_prototype_$ac_safe=no" else @@ -2580,6 +2598,9 @@ else eval "ac_cv_prototype_$ac_safe=yes" fi rm -f conftest* + if test $ac_cv_gcc_fnb = yes; then + CFLAGS=$OLDCFLAGS + fi fi @@ -2598,13 +2619,17 @@ fi ac_safe=chdir; echo $ac_n "checking if chdir is prototyped""... $ac_c" 1>&6 -echo "configure:2602: checking if chdir is prototyped" >&5 -if eval "test \"\${ac_cv_prototype_$ac_safe+set}\" = set"; then +echo "configure:2623: checking if chdir is prototyped" >&5 +if eval "test \"`echo '$''{'ac_cv_prototype_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else # + if test $ac_cv_gcc_fnb = yes; then + OLDCFLAGS=$CFLAGS + CFLAGS="$CFLAGS -fno-builtin" + fi cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:2649: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* eval "ac_cv_prototype_$ac_safe=no" else @@ -2630,6 +2655,9 @@ else eval "ac_cv_prototype_$ac_safe=yes" fi rm -f conftest* + if test $ac_cv_gcc_fnb = yes; then + CFLAGS=$OLDCFLAGS + fi fi @@ -2648,13 +2676,17 @@ fi ac_safe=close; echo $ac_n "checking if close is prototyped""... $ac_c" 1>&6 -echo "configure:2652: checking if close is prototyped" >&5 -if eval "test \"\${ac_cv_prototype_$ac_safe+set}\" = set"; then +echo "configure:2680: checking if close is prototyped" >&5 +if eval "test \"`echo '$''{'ac_cv_prototype_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else # + if test $ac_cv_gcc_fnb = yes; then + OLDCFLAGS=$CFLAGS + CFLAGS="$CFLAGS -fno-builtin" + fi cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:2706: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* eval "ac_cv_prototype_$ac_safe=no" else @@ -2680,6 +2712,9 @@ else eval "ac_cv_prototype_$ac_safe=yes" fi rm -f conftest* + if test $ac_cv_gcc_fnb = yes; then + CFLAGS=$OLDCFLAGS + fi fi @@ -2698,13 +2733,17 @@ fi ac_safe=crypt; echo $ac_n "checking if crypt is prototyped""... $ac_c" 1>&6 -echo "configure:2702: checking if crypt is prototyped" >&5 -if eval "test \"\${ac_cv_prototype_$ac_safe+set}\" = set"; then +echo "configure:2737: checking if crypt is prototyped" >&5 +if eval "test \"`echo '$''{'ac_cv_prototype_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else # + if test $ac_cv_gcc_fnb = yes; then + OLDCFLAGS=$CFLAGS + CFLAGS="$CFLAGS -fno-builtin" + fi cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:2763: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* eval "ac_cv_prototype_$ac_safe=no" else @@ -2730,6 +2769,9 @@ else eval "ac_cv_prototype_$ac_safe=yes" fi rm -f conftest* + if test $ac_cv_gcc_fnb = yes; then + CFLAGS=$OLDCFLAGS + fi fi @@ -2748,13 +2790,17 @@ fi ac_safe=fclose; echo $ac_n "checking if fclose is prototyped""... $ac_c" 1>&6 -echo "configure:2752: checking if fclose is prototyped" >&5 -if eval "test \"\${ac_cv_prototype_$ac_safe+set}\" = set"; then +echo "configure:2794: checking if fclose is prototyped" >&5 +if eval "test \"`echo '$''{'ac_cv_prototype_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else # + if test $ac_cv_gcc_fnb = yes; then + OLDCFLAGS=$CFLAGS + CFLAGS="$CFLAGS -fno-builtin" + fi cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:2820: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* eval "ac_cv_prototype_$ac_safe=no" else @@ -2780,6 +2826,9 @@ else eval "ac_cv_prototype_$ac_safe=yes" fi rm -f conftest* + if test $ac_cv_gcc_fnb = yes; then + CFLAGS=$OLDCFLAGS + fi fi @@ -2798,13 +2847,17 @@ fi ac_safe=fcntl; echo $ac_n "checking if fcntl is prototyped""... $ac_c" 1>&6 -echo "configure:2802: checking if fcntl is prototyped" >&5 -if eval "test \"\${ac_cv_prototype_$ac_safe+set}\" = set"; then +echo "configure:2851: checking if fcntl is prototyped" >&5 +if eval "test \"`echo '$''{'ac_cv_prototype_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else # + if test $ac_cv_gcc_fnb = yes; then + OLDCFLAGS=$CFLAGS + CFLAGS="$CFLAGS -fno-builtin" + fi cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:2877: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* eval "ac_cv_prototype_$ac_safe=no" else @@ -2830,6 +2883,9 @@ else eval "ac_cv_prototype_$ac_safe=yes" fi rm -f conftest* + if test $ac_cv_gcc_fnb = yes; then + CFLAGS=$OLDCFLAGS + fi fi @@ -2848,13 +2904,17 @@ fi ac_safe=fflush; echo $ac_n "checking if fflush is prototyped""... $ac_c" 1>&6 -echo "configure:2852: checking if fflush is prototyped" >&5 -if eval "test \"\${ac_cv_prototype_$ac_safe+set}\" = set"; then +echo "configure:2908: checking if fflush is prototyped" >&5 +if eval "test \"`echo '$''{'ac_cv_prototype_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else # + if test $ac_cv_gcc_fnb = yes; then + OLDCFLAGS=$CFLAGS + CFLAGS="$CFLAGS -fno-builtin" + fi cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:2934: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* eval "ac_cv_prototype_$ac_safe=no" else @@ -2880,6 +2940,9 @@ else eval "ac_cv_prototype_$ac_safe=yes" fi rm -f conftest* + if test $ac_cv_gcc_fnb = yes; then + CFLAGS=$OLDCFLAGS + fi fi @@ -2898,13 +2961,17 @@ fi ac_safe=fprintf; echo $ac_n "checking if fprintf is prototyped""... $ac_c" 1>&6 -echo "configure:2902: checking if fprintf is prototyped" >&5 -if eval "test \"\${ac_cv_prototype_$ac_safe+set}\" = set"; then +echo "configure:2965: checking if fprintf is prototyped" >&5 +if eval "test \"`echo '$''{'ac_cv_prototype_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else # + if test $ac_cv_gcc_fnb = yes; then + OLDCFLAGS=$CFLAGS + CFLAGS="$CFLAGS -fno-builtin" + fi cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:2991: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* eval "ac_cv_prototype_$ac_safe=no" else @@ -2930,6 +2997,9 @@ else eval "ac_cv_prototype_$ac_safe=yes" fi rm -f conftest* + if test $ac_cv_gcc_fnb = yes; then + CFLAGS=$OLDCFLAGS + fi fi @@ -2948,13 +3018,17 @@ fi ac_safe=fputc; echo $ac_n "checking if fputc is prototyped""... $ac_c" 1>&6 -echo "configure:2952: checking if fputc is prototyped" >&5 -if eval "test \"\${ac_cv_prototype_$ac_safe+set}\" = set"; then +echo "configure:3022: checking if fputc is prototyped" >&5 +if eval "test \"`echo '$''{'ac_cv_prototype_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else # + if test $ac_cv_gcc_fnb = yes; then + OLDCFLAGS=$CFLAGS + CFLAGS="$CFLAGS -fno-builtin" + fi cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3048: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* eval "ac_cv_prototype_$ac_safe=no" else @@ -2980,6 +3054,9 @@ else eval "ac_cv_prototype_$ac_safe=yes" fi rm -f conftest* + if test $ac_cv_gcc_fnb = yes; then + CFLAGS=$OLDCFLAGS + fi fi @@ -2998,13 +3075,17 @@ fi ac_safe=fputs; echo $ac_n "checking if fputs is prototyped""... $ac_c" 1>&6 -echo "configure:3002: checking if fputs is prototyped" >&5 -if eval "test \"\${ac_cv_prototype_$ac_safe+set}\" = set"; then +echo "configure:3079: checking if fputs is prototyped" >&5 +if eval "test \"`echo '$''{'ac_cv_prototype_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else # + if test $ac_cv_gcc_fnb = yes; then + OLDCFLAGS=$CFLAGS + CFLAGS="$CFLAGS -fno-builtin" + fi cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3105: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* eval "ac_cv_prototype_$ac_safe=no" else @@ -3030,6 +3111,9 @@ else eval "ac_cv_prototype_$ac_safe=yes" fi rm -f conftest* + if test $ac_cv_gcc_fnb = yes; then + CFLAGS=$OLDCFLAGS + fi fi @@ -3048,13 +3132,17 @@ fi ac_safe=fread; echo $ac_n "checking if fread is prototyped""... $ac_c" 1>&6 -echo "configure:3052: checking if fread is prototyped" >&5 -if eval "test \"\${ac_cv_prototype_$ac_safe+set}\" = set"; then +echo "configure:3136: checking if fread is prototyped" >&5 +if eval "test \"`echo '$''{'ac_cv_prototype_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else # + if test $ac_cv_gcc_fnb = yes; then + OLDCFLAGS=$CFLAGS + CFLAGS="$CFLAGS -fno-builtin" + fi cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3162: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* eval "ac_cv_prototype_$ac_safe=no" else @@ -3080,6 +3168,9 @@ else eval "ac_cv_prototype_$ac_safe=yes" fi rm -f conftest* + if test $ac_cv_gcc_fnb = yes; then + CFLAGS=$OLDCFLAGS + fi fi @@ -3098,13 +3189,17 @@ fi ac_safe=fscanf; echo $ac_n "checking if fscanf is prototyped""... $ac_c" 1>&6 -echo "configure:3102: checking if fscanf is prototyped" >&5 -if eval "test \"\${ac_cv_prototype_$ac_safe+set}\" = set"; then +echo "configure:3193: checking if fscanf is prototyped" >&5 +if eval "test \"`echo '$''{'ac_cv_prototype_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else # + if test $ac_cv_gcc_fnb = yes; then + OLDCFLAGS=$CFLAGS + CFLAGS="$CFLAGS -fno-builtin" + fi cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3219: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* eval "ac_cv_prototype_$ac_safe=no" else @@ -3130,6 +3225,9 @@ else eval "ac_cv_prototype_$ac_safe=yes" fi rm -f conftest* + if test $ac_cv_gcc_fnb = yes; then + CFLAGS=$OLDCFLAGS + fi fi @@ -3148,13 +3246,17 @@ fi ac_safe=fseek; echo $ac_n "checking if fseek is prototyped""... $ac_c" 1>&6 -echo "configure:3152: checking if fseek is prototyped" >&5 -if eval "test \"\${ac_cv_prototype_$ac_safe+set}\" = set"; then +echo "configure:3250: checking if fseek is prototyped" >&5 +if eval "test \"`echo '$''{'ac_cv_prototype_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else # + if test $ac_cv_gcc_fnb = yes; then + OLDCFLAGS=$CFLAGS + CFLAGS="$CFLAGS -fno-builtin" + fi cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3276: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* eval "ac_cv_prototype_$ac_safe=no" else @@ -3180,6 +3282,9 @@ else eval "ac_cv_prototype_$ac_safe=yes" fi rm -f conftest* + if test $ac_cv_gcc_fnb = yes; then + CFLAGS=$OLDCFLAGS + fi fi @@ -3198,13 +3303,17 @@ fi ac_safe=fwrite; echo $ac_n "checking if fwrite is prototyped""... $ac_c" 1>&6 -echo "configure:3202: checking if fwrite is prototyped" >&5 -if eval "test \"\${ac_cv_prototype_$ac_safe+set}\" = set"; then +echo "configure:3307: checking if fwrite is prototyped" >&5 +if eval "test \"`echo '$''{'ac_cv_prototype_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else # + if test $ac_cv_gcc_fnb = yes; then + OLDCFLAGS=$CFLAGS + CFLAGS="$CFLAGS -fno-builtin" + fi cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3333: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* eval "ac_cv_prototype_$ac_safe=no" else @@ -3230,6 +3339,9 @@ else eval "ac_cv_prototype_$ac_safe=yes" fi rm -f conftest* + if test $ac_cv_gcc_fnb = yes; then + CFLAGS=$OLDCFLAGS + fi fi @@ -3248,13 +3360,17 @@ fi ac_safe=getpeername; echo $ac_n "checking if getpeername is prototyped""... $ac_c" 1>&6 -echo "configure:3252: checking if getpeername is prototyped" >&5 -if eval "test \"\${ac_cv_prototype_$ac_safe+set}\" = set"; then +echo "configure:3364: checking if getpeername is prototyped" >&5 +if eval "test \"`echo '$''{'ac_cv_prototype_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else # + if test $ac_cv_gcc_fnb = yes; then + OLDCFLAGS=$CFLAGS + CFLAGS="$CFLAGS -fno-builtin" + fi cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3390: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* eval "ac_cv_prototype_$ac_safe=no" else @@ -3280,6 +3396,9 @@ else eval "ac_cv_prototype_$ac_safe=yes" fi rm -f conftest* + if test $ac_cv_gcc_fnb = yes; then + CFLAGS=$OLDCFLAGS + fi fi @@ -3298,13 +3417,17 @@ fi ac_safe=getpid; echo $ac_n "checking if getpid is prototyped""... $ac_c" 1>&6 -echo "configure:3302: checking if getpid is prototyped" >&5 -if eval "test \"\${ac_cv_prototype_$ac_safe+set}\" = set"; then +echo "configure:3421: checking if getpid is prototyped" >&5 +if eval "test \"`echo '$''{'ac_cv_prototype_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else # + if test $ac_cv_gcc_fnb = yes; then + OLDCFLAGS=$CFLAGS + CFLAGS="$CFLAGS -fno-builtin" + fi cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3447: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* eval "ac_cv_prototype_$ac_safe=no" else @@ -3330,6 +3453,9 @@ else eval "ac_cv_prototype_$ac_safe=yes" fi rm -f conftest* + if test $ac_cv_gcc_fnb = yes; then + CFLAGS=$OLDCFLAGS + fi fi @@ -3348,13 +3474,17 @@ fi ac_safe=getrlimit; echo $ac_n "checking if getrlimit is prototyped""... $ac_c" 1>&6 -echo "configure:3352: checking if getrlimit is prototyped" >&5 -if eval "test \"\${ac_cv_prototype_$ac_safe+set}\" = set"; then +echo "configure:3478: checking if getrlimit is prototyped" >&5 +if eval "test \"`echo '$''{'ac_cv_prototype_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else # + if test $ac_cv_gcc_fnb = yes; then + OLDCFLAGS=$CFLAGS + CFLAGS="$CFLAGS -fno-builtin" + fi cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3504: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* eval "ac_cv_prototype_$ac_safe=no" else @@ -3380,6 +3510,9 @@ else eval "ac_cv_prototype_$ac_safe=yes" fi rm -f conftest* + if test $ac_cv_gcc_fnb = yes; then + CFLAGS=$OLDCFLAGS + fi fi @@ -3398,13 +3531,17 @@ fi ac_safe=getsockname; echo $ac_n "checking if getsockname is prototyped""... $ac_c" 1>&6 -echo "configure:3402: checking if getsockname is prototyped" >&5 -if eval "test \"\${ac_cv_prototype_$ac_safe+set}\" = set"; then +echo "configure:3535: checking if getsockname is prototyped" >&5 +if eval "test \"`echo '$''{'ac_cv_prototype_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else # + if test $ac_cv_gcc_fnb = yes; then + OLDCFLAGS=$CFLAGS + CFLAGS="$CFLAGS -fno-builtin" + fi cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3561: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* eval "ac_cv_prototype_$ac_safe=no" else @@ -3430,6 +3567,9 @@ else eval "ac_cv_prototype_$ac_safe=yes" fi rm -f conftest* + if test $ac_cv_gcc_fnb = yes; then + CFLAGS=$OLDCFLAGS + fi fi @@ -3448,13 +3588,17 @@ fi ac_safe=gettimeofday; echo $ac_n "checking if gettimeofday is prototyped""... $ac_c" 1>&6 -echo "configure:3452: checking if gettimeofday is prototyped" >&5 -if eval "test \"\${ac_cv_prototype_$ac_safe+set}\" = set"; then +echo "configure:3592: checking if gettimeofday is prototyped" >&5 +if eval "test \"`echo '$''{'ac_cv_prototype_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else # + if test $ac_cv_gcc_fnb = yes; then + OLDCFLAGS=$CFLAGS + CFLAGS="$CFLAGS -fno-builtin" + fi cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3618: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* eval "ac_cv_prototype_$ac_safe=no" else @@ -3480,6 +3624,9 @@ else eval "ac_cv_prototype_$ac_safe=yes" fi rm -f conftest* + if test $ac_cv_gcc_fnb = yes; then + CFLAGS=$OLDCFLAGS + fi fi @@ -3498,13 +3645,17 @@ fi ac_safe=htonl; echo $ac_n "checking if htonl is prototyped""... $ac_c" 1>&6 -echo "configure:3502: checking if htonl is prototyped" >&5 -if eval "test \"\${ac_cv_prototype_$ac_safe+set}\" = set"; then +echo "configure:3649: checking if htonl is prototyped" >&5 +if eval "test \"`echo '$''{'ac_cv_prototype_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else # + if test $ac_cv_gcc_fnb = yes; then + OLDCFLAGS=$CFLAGS + CFLAGS="$CFLAGS -fno-builtin" + fi cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3675: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* eval "ac_cv_prototype_$ac_safe=no" else @@ -3530,6 +3681,9 @@ else eval "ac_cv_prototype_$ac_safe=yes" fi rm -f conftest* + if test $ac_cv_gcc_fnb = yes; then + CFLAGS=$OLDCFLAGS + fi fi @@ -3548,13 +3702,17 @@ fi ac_safe=htons; echo $ac_n "checking if htons is prototyped""... $ac_c" 1>&6 -echo "configure:3552: checking if htons is prototyped" >&5 -if eval "test \"\${ac_cv_prototype_$ac_safe+set}\" = set"; then +echo "configure:3706: checking if htons is prototyped" >&5 +if eval "test \"`echo '$''{'ac_cv_prototype_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else # + if test $ac_cv_gcc_fnb = yes; then + OLDCFLAGS=$CFLAGS + CFLAGS="$CFLAGS -fno-builtin" + fi cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3732: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* eval "ac_cv_prototype_$ac_safe=no" else @@ -3580,6 +3738,9 @@ else eval "ac_cv_prototype_$ac_safe=yes" fi rm -f conftest* + if test $ac_cv_gcc_fnb = yes; then + CFLAGS=$OLDCFLAGS + fi fi @@ -3598,13 +3759,17 @@ fi ac_safe=inet_addr; echo $ac_n "checking if inet_addr is prototyped""... $ac_c" 1>&6 -echo "configure:3602: checking if inet_addr is prototyped" >&5 -if eval "test \"\${ac_cv_prototype_$ac_safe+set}\" = set"; then +echo "configure:3763: checking if inet_addr is prototyped" >&5 +if eval "test \"`echo '$''{'ac_cv_prototype_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else # + if test $ac_cv_gcc_fnb = yes; then + OLDCFLAGS=$CFLAGS + CFLAGS="$CFLAGS -fno-builtin" + fi cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3789: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* eval "ac_cv_prototype_$ac_safe=no" else @@ -3630,6 +3795,9 @@ else eval "ac_cv_prototype_$ac_safe=yes" fi rm -f conftest* + if test $ac_cv_gcc_fnb = yes; then + CFLAGS=$OLDCFLAGS + fi fi @@ -3648,13 +3816,17 @@ fi ac_safe=inet_aton; echo $ac_n "checking if inet_aton is prototyped""... $ac_c" 1>&6 -echo "configure:3652: checking if inet_aton is prototyped" >&5 -if eval "test \"\${ac_cv_prototype_$ac_safe+set}\" = set"; then +echo "configure:3820: checking if inet_aton is prototyped" >&5 +if eval "test \"`echo '$''{'ac_cv_prototype_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else # + if test $ac_cv_gcc_fnb = yes; then + OLDCFLAGS=$CFLAGS + CFLAGS="$CFLAGS -fno-builtin" + fi cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3846: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* eval "ac_cv_prototype_$ac_safe=no" else @@ -3680,6 +3852,9 @@ else eval "ac_cv_prototype_$ac_safe=yes" fi rm -f conftest* + if test $ac_cv_gcc_fnb = yes; then + CFLAGS=$OLDCFLAGS + fi fi @@ -3698,13 +3873,17 @@ fi ac_safe=inet_ntoa; echo $ac_n "checking if inet_ntoa is prototyped""... $ac_c" 1>&6 -echo "configure:3702: checking if inet_ntoa is prototyped" >&5 -if eval "test \"\${ac_cv_prototype_$ac_safe+set}\" = set"; then +echo "configure:3877: checking if inet_ntoa is prototyped" >&5 +if eval "test \"`echo '$''{'ac_cv_prototype_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else # + if test $ac_cv_gcc_fnb = yes; then + OLDCFLAGS=$CFLAGS + CFLAGS="$CFLAGS -fno-builtin" + fi cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3903: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* eval "ac_cv_prototype_$ac_safe=no" else @@ -3730,6 +3909,9 @@ else eval "ac_cv_prototype_$ac_safe=yes" fi rm -f conftest* + if test $ac_cv_gcc_fnb = yes; then + CFLAGS=$OLDCFLAGS + fi fi @@ -3748,13 +3930,17 @@ fi ac_safe=listen; echo $ac_n "checking if listen is prototyped""... $ac_c" 1>&6 -echo "configure:3752: checking if listen is prototyped" >&5 -if eval "test \"\${ac_cv_prototype_$ac_safe+set}\" = set"; then +echo "configure:3934: checking if listen is prototyped" >&5 +if eval "test \"`echo '$''{'ac_cv_prototype_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else # + if test $ac_cv_gcc_fnb = yes; then + OLDCFLAGS=$CFLAGS + CFLAGS="$CFLAGS -fno-builtin" + fi cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:3960: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* eval "ac_cv_prototype_$ac_safe=no" else @@ -3780,6 +3966,9 @@ else eval "ac_cv_prototype_$ac_safe=yes" fi rm -f conftest* + if test $ac_cv_gcc_fnb = yes; then + CFLAGS=$OLDCFLAGS + fi fi @@ -3798,13 +3987,17 @@ fi ac_safe=ntohl; echo $ac_n "checking if ntohl is prototyped""... $ac_c" 1>&6 -echo "configure:3802: checking if ntohl is prototyped" >&5 -if eval "test \"\${ac_cv_prototype_$ac_safe+set}\" = set"; then +echo "configure:3991: checking if ntohl is prototyped" >&5 +if eval "test \"`echo '$''{'ac_cv_prototype_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else # + if test $ac_cv_gcc_fnb = yes; then + OLDCFLAGS=$CFLAGS + CFLAGS="$CFLAGS -fno-builtin" + fi cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4017: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* eval "ac_cv_prototype_$ac_safe=no" else @@ -3830,6 +4023,9 @@ else eval "ac_cv_prototype_$ac_safe=yes" fi rm -f conftest* + if test $ac_cv_gcc_fnb = yes; then + CFLAGS=$OLDCFLAGS + fi fi @@ -3848,13 +4044,17 @@ fi ac_safe=perror; echo $ac_n "checking if perror is prototyped""... $ac_c" 1>&6 -echo "configure:3852: checking if perror is prototyped" >&5 -if eval "test \"\${ac_cv_prototype_$ac_safe+set}\" = set"; then +echo "configure:4048: checking if perror is prototyped" >&5 +if eval "test \"`echo '$''{'ac_cv_prototype_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else # + if test $ac_cv_gcc_fnb = yes; then + OLDCFLAGS=$CFLAGS + CFLAGS="$CFLAGS -fno-builtin" + fi cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4074: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* eval "ac_cv_prototype_$ac_safe=no" else @@ -3880,6 +4080,9 @@ else eval "ac_cv_prototype_$ac_safe=yes" fi rm -f conftest* + if test $ac_cv_gcc_fnb = yes; then + CFLAGS=$OLDCFLAGS + fi fi @@ -3898,13 +4101,17 @@ fi ac_safe=printf; echo $ac_n "checking if printf is prototyped""... $ac_c" 1>&6 -echo "configure:3902: checking if printf is prototyped" >&5 -if eval "test \"\${ac_cv_prototype_$ac_safe+set}\" = set"; then +echo "configure:4105: checking if printf is prototyped" >&5 +if eval "test \"`echo '$''{'ac_cv_prototype_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else # + if test $ac_cv_gcc_fnb = yes; then + OLDCFLAGS=$CFLAGS + CFLAGS="$CFLAGS -fno-builtin" + fi cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4131: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* eval "ac_cv_prototype_$ac_safe=no" else @@ -3930,6 +4137,9 @@ else eval "ac_cv_prototype_$ac_safe=yes" fi rm -f conftest* + if test $ac_cv_gcc_fnb = yes; then + CFLAGS=$OLDCFLAGS + fi fi @@ -3948,13 +4158,17 @@ fi ac_safe=qsort; echo $ac_n "checking if qsort is prototyped""... $ac_c" 1>&6 -echo "configure:3952: checking if qsort is prototyped" >&5 -if eval "test \"\${ac_cv_prototype_$ac_safe+set}\" = set"; then +echo "configure:4162: checking if qsort is prototyped" >&5 +if eval "test \"`echo '$''{'ac_cv_prototype_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else # + if test $ac_cv_gcc_fnb = yes; then + OLDCFLAGS=$CFLAGS + CFLAGS="$CFLAGS -fno-builtin" + fi cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4188: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* eval "ac_cv_prototype_$ac_safe=no" else @@ -3980,6 +4194,9 @@ else eval "ac_cv_prototype_$ac_safe=yes" fi rm -f conftest* + if test $ac_cv_gcc_fnb = yes; then + CFLAGS=$OLDCFLAGS + fi fi @@ -3998,13 +4215,17 @@ fi ac_safe=read; echo $ac_n "checking if read is prototyped""... $ac_c" 1>&6 -echo "configure:4002: checking if read is prototyped" >&5 -if eval "test \"\${ac_cv_prototype_$ac_safe+set}\" = set"; then +echo "configure:4219: checking if read is prototyped" >&5 +if eval "test \"`echo '$''{'ac_cv_prototype_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else # + if test $ac_cv_gcc_fnb = yes; then + OLDCFLAGS=$CFLAGS + CFLAGS="$CFLAGS -fno-builtin" + fi cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4245: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* eval "ac_cv_prototype_$ac_safe=no" else @@ -4030,6 +4251,9 @@ else eval "ac_cv_prototype_$ac_safe=yes" fi rm -f conftest* + if test $ac_cv_gcc_fnb = yes; then + CFLAGS=$OLDCFLAGS + fi fi @@ -4048,13 +4272,17 @@ fi ac_safe=remove; echo $ac_n "checking if remove is prototyped""... $ac_c" 1>&6 -echo "configure:4052: checking if remove is prototyped" >&5 -if eval "test \"\${ac_cv_prototype_$ac_safe+set}\" = set"; then +echo "configure:4276: checking if remove is prototyped" >&5 +if eval "test \"`echo '$''{'ac_cv_prototype_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else # + if test $ac_cv_gcc_fnb = yes; then + OLDCFLAGS=$CFLAGS + CFLAGS="$CFLAGS -fno-builtin" + fi cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4302: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* eval "ac_cv_prototype_$ac_safe=no" else @@ -4080,6 +4308,9 @@ else eval "ac_cv_prototype_$ac_safe=yes" fi rm -f conftest* + if test $ac_cv_gcc_fnb = yes; then + CFLAGS=$OLDCFLAGS + fi fi @@ -4098,13 +4329,17 @@ fi ac_safe=rewind; echo $ac_n "checking if rewind is prototyped""... $ac_c" 1>&6 -echo "configure:4102: checking if rewind is prototyped" >&5 -if eval "test \"\${ac_cv_prototype_$ac_safe+set}\" = set"; then +echo "configure:4333: checking if rewind is prototyped" >&5 +if eval "test \"`echo '$''{'ac_cv_prototype_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else # + if test $ac_cv_gcc_fnb = yes; then + OLDCFLAGS=$CFLAGS + CFLAGS="$CFLAGS -fno-builtin" + fi cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4359: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* eval "ac_cv_prototype_$ac_safe=no" else @@ -4130,6 +4365,9 @@ else eval "ac_cv_prototype_$ac_safe=yes" fi rm -f conftest* + if test $ac_cv_gcc_fnb = yes; then + CFLAGS=$OLDCFLAGS + fi fi @@ -4148,13 +4386,17 @@ fi ac_safe=select; echo $ac_n "checking if select is prototyped""... $ac_c" 1>&6 -echo "configure:4152: checking if select is prototyped" >&5 -if eval "test \"\${ac_cv_prototype_$ac_safe+set}\" = set"; then +echo "configure:4390: checking if select is prototyped" >&5 +if eval "test \"`echo '$''{'ac_cv_prototype_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else # + if test $ac_cv_gcc_fnb = yes; then + OLDCFLAGS=$CFLAGS + CFLAGS="$CFLAGS -fno-builtin" + fi cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4416: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* eval "ac_cv_prototype_$ac_safe=no" else @@ -4180,6 +4422,9 @@ else eval "ac_cv_prototype_$ac_safe=yes" fi rm -f conftest* + if test $ac_cv_gcc_fnb = yes; then + CFLAGS=$OLDCFLAGS + fi fi @@ -4198,13 +4443,17 @@ fi ac_safe=setitimer; echo $ac_n "checking if setitimer is prototyped""... $ac_c" 1>&6 -echo "configure:4202: checking if setitimer is prototyped" >&5 -if eval "test \"\${ac_cv_prototype_$ac_safe+set}\" = set"; then +echo "configure:4447: checking if setitimer is prototyped" >&5 +if eval "test \"`echo '$''{'ac_cv_prototype_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else # + if test $ac_cv_gcc_fnb = yes; then + OLDCFLAGS=$CFLAGS + CFLAGS="$CFLAGS -fno-builtin" + fi cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4473: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* eval "ac_cv_prototype_$ac_safe=no" else @@ -4230,6 +4479,9 @@ else eval "ac_cv_prototype_$ac_safe=yes" fi rm -f conftest* + if test $ac_cv_gcc_fnb = yes; then + CFLAGS=$OLDCFLAGS + fi fi @@ -4248,13 +4500,17 @@ fi ac_safe=setrlimit; echo $ac_n "checking if setrlimit is prototyped""... $ac_c" 1>&6 -echo "configure:4252: checking if setrlimit is prototyped" >&5 -if eval "test \"\${ac_cv_prototype_$ac_safe+set}\" = set"; then +echo "configure:4504: checking if setrlimit is prototyped" >&5 +if eval "test \"`echo '$''{'ac_cv_prototype_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else # + if test $ac_cv_gcc_fnb = yes; then + OLDCFLAGS=$CFLAGS + CFLAGS="$CFLAGS -fno-builtin" + fi cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4530: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* eval "ac_cv_prototype_$ac_safe=no" else @@ -4280,6 +4536,9 @@ else eval "ac_cv_prototype_$ac_safe=yes" fi rm -f conftest* + if test $ac_cv_gcc_fnb = yes; then + CFLAGS=$OLDCFLAGS + fi fi @@ -4298,13 +4557,17 @@ fi ac_safe=setsockopt; echo $ac_n "checking if setsockopt is prototyped""... $ac_c" 1>&6 -echo "configure:4302: checking if setsockopt is prototyped" >&5 -if eval "test \"\${ac_cv_prototype_$ac_safe+set}\" = set"; then +echo "configure:4561: checking if setsockopt is prototyped" >&5 +if eval "test \"`echo '$''{'ac_cv_prototype_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else # + if test $ac_cv_gcc_fnb = yes; then + OLDCFLAGS=$CFLAGS + CFLAGS="$CFLAGS -fno-builtin" + fi cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4587: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* eval "ac_cv_prototype_$ac_safe=no" else @@ -4330,6 +4593,9 @@ else eval "ac_cv_prototype_$ac_safe=yes" fi rm -f conftest* + if test $ac_cv_gcc_fnb = yes; then + CFLAGS=$OLDCFLAGS + fi fi @@ -4348,13 +4614,17 @@ fi ac_safe=snprintf; echo $ac_n "checking if snprintf is prototyped""... $ac_c" 1>&6 -echo "configure:4352: checking if snprintf is prototyped" >&5 -if eval "test \"\${ac_cv_prototype_$ac_safe+set}\" = set"; then +echo "configure:4618: checking if snprintf is prototyped" >&5 +if eval "test \"`echo '$''{'ac_cv_prototype_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else # + if test $ac_cv_gcc_fnb = yes; then + OLDCFLAGS=$CFLAGS + CFLAGS="$CFLAGS -fno-builtin" + fi cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4644: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* eval "ac_cv_prototype_$ac_safe=no" else @@ -4380,6 +4650,9 @@ else eval "ac_cv_prototype_$ac_safe=yes" fi rm -f conftest* + if test $ac_cv_gcc_fnb = yes; then + CFLAGS=$OLDCFLAGS + fi fi @@ -4398,13 +4671,17 @@ fi ac_safe=socket; echo $ac_n "checking if socket is prototyped""... $ac_c" 1>&6 -echo "configure:4402: checking if socket is prototyped" >&5 -if eval "test \"\${ac_cv_prototype_$ac_safe+set}\" = set"; then +echo "configure:4675: checking if socket is prototyped" >&5 +if eval "test \"`echo '$''{'ac_cv_prototype_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else # + if test $ac_cv_gcc_fnb = yes; then + OLDCFLAGS=$CFLAGS + CFLAGS="$CFLAGS -fno-builtin" + fi cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4701: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* eval "ac_cv_prototype_$ac_safe=no" else @@ -4430,6 +4707,9 @@ else eval "ac_cv_prototype_$ac_safe=yes" fi rm -f conftest* + if test $ac_cv_gcc_fnb = yes; then + CFLAGS=$OLDCFLAGS + fi fi @@ -4448,13 +4728,17 @@ fi ac_safe=sprintf; echo $ac_n "checking if sprintf is prototyped""... $ac_c" 1>&6 -echo "configure:4452: checking if sprintf is prototyped" >&5 -if eval "test \"\${ac_cv_prototype_$ac_safe+set}\" = set"; then +echo "configure:4732: checking if sprintf is prototyped" >&5 +if eval "test \"`echo '$''{'ac_cv_prototype_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else # + if test $ac_cv_gcc_fnb = yes; then + OLDCFLAGS=$CFLAGS + CFLAGS="$CFLAGS -fno-builtin" + fi cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4758: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* eval "ac_cv_prototype_$ac_safe=no" else @@ -4480,6 +4764,9 @@ else eval "ac_cv_prototype_$ac_safe=yes" fi rm -f conftest* + if test $ac_cv_gcc_fnb = yes; then + CFLAGS=$OLDCFLAGS + fi fi @@ -4498,13 +4785,17 @@ fi ac_safe=sscanf; echo $ac_n "checking if sscanf is prototyped""... $ac_c" 1>&6 -echo "configure:4502: checking if sscanf is prototyped" >&5 -if eval "test \"\${ac_cv_prototype_$ac_safe+set}\" = set"; then +echo "configure:4789: checking if sscanf is prototyped" >&5 +if eval "test \"`echo '$''{'ac_cv_prototype_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else # + if test $ac_cv_gcc_fnb = yes; then + OLDCFLAGS=$CFLAGS + CFLAGS="$CFLAGS -fno-builtin" + fi cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4815: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* eval "ac_cv_prototype_$ac_safe=no" else @@ -4530,6 +4821,9 @@ else eval "ac_cv_prototype_$ac_safe=yes" fi rm -f conftest* + if test $ac_cv_gcc_fnb = yes; then + CFLAGS=$OLDCFLAGS + fi fi @@ -4548,13 +4842,17 @@ fi ac_safe=strcasecmp; echo $ac_n "checking if strcasecmp is prototyped""... $ac_c" 1>&6 -echo "configure:4552: checking if strcasecmp is prototyped" >&5 -if eval "test \"\${ac_cv_prototype_$ac_safe+set}\" = set"; then +echo "configure:4846: checking if strcasecmp is prototyped" >&5 +if eval "test \"`echo '$''{'ac_cv_prototype_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else # + if test $ac_cv_gcc_fnb = yes; then + OLDCFLAGS=$CFLAGS + CFLAGS="$CFLAGS -fno-builtin" + fi cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4872: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* eval "ac_cv_prototype_$ac_safe=no" else @@ -4580,6 +4878,9 @@ else eval "ac_cv_prototype_$ac_safe=yes" fi rm -f conftest* + if test $ac_cv_gcc_fnb = yes; then + CFLAGS=$OLDCFLAGS + fi fi @@ -4598,13 +4899,17 @@ fi ac_safe=strdup; echo $ac_n "checking if strdup is prototyped""... $ac_c" 1>&6 -echo "configure:4602: checking if strdup is prototyped" >&5 -if eval "test \"\${ac_cv_prototype_$ac_safe+set}\" = set"; then +echo "configure:4903: checking if strdup is prototyped" >&5 +if eval "test \"`echo '$''{'ac_cv_prototype_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else # + if test $ac_cv_gcc_fnb = yes; then + OLDCFLAGS=$CFLAGS + CFLAGS="$CFLAGS -fno-builtin" + fi cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4929: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* eval "ac_cv_prototype_$ac_safe=no" else @@ -4630,6 +4935,9 @@ else eval "ac_cv_prototype_$ac_safe=yes" fi rm -f conftest* + if test $ac_cv_gcc_fnb = yes; then + CFLAGS=$OLDCFLAGS + fi fi @@ -4648,13 +4956,17 @@ fi ac_safe=strerror; echo $ac_n "checking if strerror is prototyped""... $ac_c" 1>&6 -echo "configure:4652: checking if strerror is prototyped" >&5 -if eval "test \"\${ac_cv_prototype_$ac_safe+set}\" = set"; then +echo "configure:4960: checking if strerror is prototyped" >&5 +if eval "test \"`echo '$''{'ac_cv_prototype_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else # + if test $ac_cv_gcc_fnb = yes; then + OLDCFLAGS=$CFLAGS + CFLAGS="$CFLAGS -fno-builtin" + fi cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4986: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* eval "ac_cv_prototype_$ac_safe=no" else @@ -4680,6 +4992,9 @@ else eval "ac_cv_prototype_$ac_safe=yes" fi rm -f conftest* + if test $ac_cv_gcc_fnb = yes; then + CFLAGS=$OLDCFLAGS + fi fi @@ -4698,13 +5013,17 @@ fi ac_safe=stricmp; echo $ac_n "checking if stricmp is prototyped""... $ac_c" 1>&6 -echo "configure:4702: checking if stricmp is prototyped" >&5 -if eval "test \"\${ac_cv_prototype_$ac_safe+set}\" = set"; then +echo "configure:5017: checking if stricmp is prototyped" >&5 +if eval "test \"`echo '$''{'ac_cv_prototype_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else # + if test $ac_cv_gcc_fnb = yes; then + OLDCFLAGS=$CFLAGS + CFLAGS="$CFLAGS -fno-builtin" + fi cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:5043: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* eval "ac_cv_prototype_$ac_safe=no" else @@ -4730,6 +5049,9 @@ else eval "ac_cv_prototype_$ac_safe=yes" fi rm -f conftest* + if test $ac_cv_gcc_fnb = yes; then + CFLAGS=$OLDCFLAGS + fi fi @@ -4748,13 +5070,17 @@ fi ac_safe=strlcpy; echo $ac_n "checking if strlcpy is prototyped""... $ac_c" 1>&6 -echo "configure:4752: checking if strlcpy is prototyped" >&5 -if eval "test \"\${ac_cv_prototype_$ac_safe+set}\" = set"; then +echo "configure:5074: checking if strlcpy is prototyped" >&5 +if eval "test \"`echo '$''{'ac_cv_prototype_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else # + if test $ac_cv_gcc_fnb = yes; then + OLDCFLAGS=$CFLAGS + CFLAGS="$CFLAGS -fno-builtin" + fi cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:5100: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* eval "ac_cv_prototype_$ac_safe=no" else @@ -4780,6 +5106,9 @@ else eval "ac_cv_prototype_$ac_safe=yes" fi rm -f conftest* + if test $ac_cv_gcc_fnb = yes; then + CFLAGS=$OLDCFLAGS + fi fi @@ -4798,13 +5127,17 @@ fi ac_safe=strncasecmp; echo $ac_n "checking if strncasecmp is prototyped""... $ac_c" 1>&6 -echo "configure:4802: checking if strncasecmp is prototyped" >&5 -if eval "test \"\${ac_cv_prototype_$ac_safe+set}\" = set"; then +echo "configure:5131: checking if strncasecmp is prototyped" >&5 +if eval "test \"`echo '$''{'ac_cv_prototype_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else # + if test $ac_cv_gcc_fnb = yes; then + OLDCFLAGS=$CFLAGS + CFLAGS="$CFLAGS -fno-builtin" + fi cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:5157: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* eval "ac_cv_prototype_$ac_safe=no" else @@ -4830,6 +5163,9 @@ else eval "ac_cv_prototype_$ac_safe=yes" fi rm -f conftest* + if test $ac_cv_gcc_fnb = yes; then + CFLAGS=$OLDCFLAGS + fi fi @@ -4848,13 +5184,17 @@ fi ac_safe=strnicmp; echo $ac_n "checking if strnicmp is prototyped""... $ac_c" 1>&6 -echo "configure:4852: checking if strnicmp is prototyped" >&5 -if eval "test \"\${ac_cv_prototype_$ac_safe+set}\" = set"; then +echo "configure:5188: checking if strnicmp is prototyped" >&5 +if eval "test \"`echo '$''{'ac_cv_prototype_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else # + if test $ac_cv_gcc_fnb = yes; then + OLDCFLAGS=$CFLAGS + CFLAGS="$CFLAGS -fno-builtin" + fi cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:5214: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* eval "ac_cv_prototype_$ac_safe=no" else @@ -4880,6 +5220,9 @@ else eval "ac_cv_prototype_$ac_safe=yes" fi rm -f conftest* + if test $ac_cv_gcc_fnb = yes; then + CFLAGS=$OLDCFLAGS + fi fi @@ -4898,13 +5241,17 @@ fi ac_safe=system; echo $ac_n "checking if system is prototyped""... $ac_c" 1>&6 -echo "configure:4902: checking if system is prototyped" >&5 -if eval "test \"\${ac_cv_prototype_$ac_safe+set}\" = set"; then +echo "configure:5245: checking if system is prototyped" >&5 +if eval "test \"`echo '$''{'ac_cv_prototype_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else # + if test $ac_cv_gcc_fnb = yes; then + OLDCFLAGS=$CFLAGS + CFLAGS="$CFLAGS -fno-builtin" + fi cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:5271: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* eval "ac_cv_prototype_$ac_safe=no" else @@ -4930,6 +5277,9 @@ else eval "ac_cv_prototype_$ac_safe=yes" fi rm -f conftest* + if test $ac_cv_gcc_fnb = yes; then + CFLAGS=$OLDCFLAGS + fi fi @@ -4948,13 +5298,17 @@ fi ac_safe=time; echo $ac_n "checking if time is prototyped""... $ac_c" 1>&6 -echo "configure:4952: checking if time is prototyped" >&5 -if eval "test \"\${ac_cv_prototype_$ac_safe+set}\" = set"; then +echo "configure:5302: checking if time is prototyped" >&5 +if eval "test \"`echo '$''{'ac_cv_prototype_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else # + if test $ac_cv_gcc_fnb = yes; then + OLDCFLAGS=$CFLAGS + CFLAGS="$CFLAGS -fno-builtin" + fi cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:5328: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* eval "ac_cv_prototype_$ac_safe=no" else @@ -4980,6 +5334,9 @@ else eval "ac_cv_prototype_$ac_safe=yes" fi rm -f conftest* + if test $ac_cv_gcc_fnb = yes; then + CFLAGS=$OLDCFLAGS + fi fi @@ -4998,13 +5355,17 @@ fi ac_safe=unlink; echo $ac_n "checking if unlink is prototyped""... $ac_c" 1>&6 -echo "configure:5002: checking if unlink is prototyped" >&5 -if eval "test \"\${ac_cv_prototype_$ac_safe+set}\" = set"; then +echo "configure:5359: checking if unlink is prototyped" >&5 +if eval "test \"`echo '$''{'ac_cv_prototype_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else # + if test $ac_cv_gcc_fnb = yes; then + OLDCFLAGS=$CFLAGS + CFLAGS="$CFLAGS -fno-builtin" + fi cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:5385: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* eval "ac_cv_prototype_$ac_safe=no" else @@ -5030,6 +5391,9 @@ else eval "ac_cv_prototype_$ac_safe=yes" fi rm -f conftest* + if test $ac_cv_gcc_fnb = yes; then + CFLAGS=$OLDCFLAGS + fi fi @@ -5048,13 +5412,17 @@ fi ac_safe=vsnprintf; echo $ac_n "checking if vsnprintf is prototyped""... $ac_c" 1>&6 -echo "configure:5052: checking if vsnprintf is prototyped" >&5 -if eval "test \"\${ac_cv_prototype_$ac_safe+set}\" = set"; then +echo "configure:5416: checking if vsnprintf is prototyped" >&5 +if eval "test \"`echo '$''{'ac_cv_prototype_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else # + if test $ac_cv_gcc_fnb = yes; then + OLDCFLAGS=$CFLAGS + CFLAGS="$CFLAGS -fno-builtin" + fi cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:5442: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* eval "ac_cv_prototype_$ac_safe=no" else @@ -5080,6 +5448,9 @@ else eval "ac_cv_prototype_$ac_safe=yes" fi rm -f conftest* + if test $ac_cv_gcc_fnb = yes; then + CFLAGS=$OLDCFLAGS + fi fi @@ -5098,13 +5469,17 @@ fi ac_safe=write; echo $ac_n "checking if write is prototyped""... $ac_c" 1>&6 -echo "configure:5102: checking if write is prototyped" >&5 -if eval "test \"\${ac_cv_prototype_$ac_safe+set}\" = set"; then +echo "configure:5473: checking if write is prototyped" >&5 +if eval "test \"`echo '$''{'ac_cv_prototype_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else # + if test $ac_cv_gcc_fnb = yes; then + OLDCFLAGS=$CFLAGS + CFLAGS="$CFLAGS -fno-builtin" + fi cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:5499: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* eval "ac_cv_prototype_$ac_safe=no" else @@ -5130,6 +5505,9 @@ else eval "ac_cv_prototype_$ac_safe=yes" fi rm -f conftest* + if test $ac_cv_gcc_fnb = yes; then + CFLAGS=$OLDCFLAGS + fi fi @@ -5235,7 +5613,7 @@ do echo "running \${CONFIG_SHELL-/bin/sh} $0 $ac_configure_args --no-create --no-recursion" exec \${CONFIG_SHELL-/bin/sh} $0 $ac_configure_args --no-create --no-recursion ;; -version | --version | --versio | --versi | --vers | --ver | --ve | --v) - echo "$CONFIG_STATUS generated by autoconf version 2.14.1" + echo "$CONFIG_STATUS generated by autoconf version 2.13" exit 0 ;; -help | --help | --hel | --he | --h) echo "\$ac_cs_usage"; exit 0 ;; @@ -5495,7 +5873,7 @@ exit 0 EOF chmod +x $CONFIG_STATUS rm -fr confdefs* $ac_clean_files -test "$no_create" = yes || $SHELL $CONFIG_STATUS || exit 1 +test "$no_create" = yes || ${CONFIG_SHELL-/bin/sh} $CONFIG_STATUS || exit 1 # echo "Configuration completed. To compile, type: cd src; make" Index: release_notes.3.1.txt =================================================================== RCS file: release_notes.3.1.txt diff -N release_notes.3.1.txt --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ release_notes.3.1.txt 19 Nov 2002 01:58:55 -0000 1.3 @@ -0,0 +1,58 @@ +It's here. It's been a long time coming (9 years and a day in fact[1]), +but it has finally arrived. + +CircleMUD 3.1 is now made officially available for your consumption. + +This is the final[2] release that all of the beta patchlevels over the +last several years have been building towards. + +Some brief history on the CircleMUD 3.x releases: + +After the highly successful release of CircleMUD 2.20, steps were quickly +made towards overhauling the codebase from ground up, extending what could +be done, and removing bugs and loopholes all over the place. This +culminated in an "internal" release of CircleMUD 3.0, which over the +course of a few months led to a release of Patch Level 4 on September 24, +1994, a little less than a year after the 2.20 release. A mere 8+ years +later, many additions, 20 patchlevels, many new bugs, and something called +"documentation", the beta testing period is over, and we have made a full +and proper release! + +The changes are too numerous to list[3], but some highlights of +differences from CircleMUD 2.20[4] include an entirely new world, new shop +structure, several new core members for the development team, and coherent[5] +documentation on the world and core components of the source code. + +Work will begin shortly on the CircleMUD 4.x series, with a release +expected in late 2010[6]. + +Don't run with scissors, but make your way to: + ftp://ftp.circlemud.org/pub/CircleMUD/3.x/ + +Special thanks to all of those on the CircleMUD Mailing List and everyone +who submitted bug reports over the last decade, we couldn't have done it +without you.[7] + +Best Regards, + +The CircleMUD Development Team, 2002 + + Jeremy Elson Since Jul 16, 1993 + Chris Epler Since Late , 1994 + Alex Fletcher Since Feb 23, 1995 + George Greer Since Oct 14, 1997 + Daniel A. Koepke Since Jul 11, 1999 + + +[1] CircleMUD 2.20 was released on November 17, 1993. CircleMUD 3.1 was + released November 18, 2002. +[2] We, the CircleMUD Group, reserve the right to all and any future "final" + CircleMUD releases. +[3] But they're listed in the Changelog file anyhow, just in case you're + really curious. +[4] Everyone compares to their last full version, why can't we? +[5] Well, we'd like to think so at least. +[6] We're hoping to time it with the discovery of a monolith around Jupiter. +[7] And had you not submitted so many damned bug reports, we would have had + this finished almost a decade ago! + Index: cnf/aclocal.m4 =================================================================== RCS file: /home/circledb/.cvs/circle/cnf/aclocal.m4,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -r1.6 -r1.7 --- cnf/aclocal.m4 20 Mar 2002 22:23:11 -0000 1.6 +++ cnf/aclocal.m4 13 Nov 2002 20:17:05 -0000 1.7 @@ -4,6 +4,10 @@ ac_safe=translit($1, './+-', '__p_'); AC_MSG_CHECKING([if $1 is prototyped]) AC_CACHE_VAL(ac_cv_prototype_$ac_safe, [# + if test $ac_cv_gcc_fnb = yes; then + OLDCFLAGS=$CFLAGS + CFLAGS="$CFLAGS -fno-builtin" + fi AC_TRY_COMPILE([ #define NO_LIBRARY_PROTOTYPES #define __COMM_C__ @@ -16,6 +20,9 @@ void $1(int a, char b, int c, char d, in ],dnl , eval "ac_cv_prototype_$ac_safe=no",eval "ac_cv_prototype_$ac_safe=yes") + if test $ac_cv_gcc_fnb = yes; then + CFLAGS=$OLDCFLAGS + fi ]) if eval "test \"`echo '$ac_cv_prototype_'$ac_safe`\" = yes"; then Index: cnf/configure.in =================================================================== RCS file: /home/circledb/.cvs/circle/cnf/configure.in,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -r1.16 -r1.17 --- cnf/configure.in 16 Apr 2002 02:23:06 -0000 1.16 +++ cnf/configure.in 13 Nov 2002 20:17:05 -0000 1.17 @@ -42,6 +42,15 @@ if test $ac_cv_prog_gcc = yes; then CFLAGS=$OLDCFLAGS ]) + dnl If Determine if gcc can accept -fno-builtin + AC_CACHE_CHECK(whether ${CC-cc} accepts -fno-builtin, ac_cv_gcc_fnb, + [ + OLDCFLAGS=$CFLAGS + CFLAGS="$CFLAGS -fno-builtin" + AC_TRY_COMPILE(, , ac_cv_gcc_fnb=yes, ac_cv_gcc_fnb=no) + CFLAGS=$OLDCFLAGS + ]) + dnl If gcc -Wall gives no warnings with isascii(), use "-Wall"; dnl Otherwise, if gcc -Wall gives isascii warnings: dnl If we can use -Wno-char-subscripts, use "-Wall -Wno-char-subscripts" Index: doc/FAQ.pdf =================================================================== RCS file: /home/circledb/.cvs/circle/doc/FAQ.pdf,v retrieving revision 1.1 retrieving revision 1.3 diff -u -p -r1.1 -r1.3 Binary files /tmp/cvsmyx983 and /tmp/cvsqq8djD differ Index: doc/README-NOW =================================================================== RCS file: doc/README-NOW diff -N doc/README-NOW --- doc/README-NOW 6 Feb 1996 20:24:02 -0000 1.1.1.1 +++ /dev/null 1 Jan 1970 00:00:00 -0000 @@ -1,9 +0,0 @@ -3/9/95 JE - -These files contain some of the PRELIMINARY DOCUMENTATION for CircleMUD 3.0. -They are not yet complete!! Do not write mail saying that your coding.doc -has been mysteriously truncated (believe me when I tell you I've gotten 50 -such letters already) -- it just hasn't all been written yet. - -running.doc and building.doc are both complete, however, so feel free to -send me any critiques you may have of it. Index: doc/README.AMIGA =================================================================== RCS file: /home/circledb/.cvs/circle/doc/README.AMIGA,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- doc/README.AMIGA 6 Sep 2002 12:17:52 -0000 1.3 +++ doc/README.AMIGA 18 Nov 2002 22:12:25 -0000 1.4 @@ -1,4 +1,4 @@ - Compiling CircleMUD version 3.0 on the Amiga + Compiling CircleMUD on the Amiga Written by Damian Jurzysta Compiling CircleMUD on the Amiga is basically the same as compiling it using Index: doc/README.ARC =================================================================== RCS file: /home/circledb/.cvs/circle/doc/README.ARC,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- doc/README.ARC 1 Jul 1998 01:04:27 -0000 1.2 +++ doc/README.ARC 18 Nov 2002 22:12:25 -0000 1.3 @@ -1,5 +1,4 @@ - Compiling CircleMUD Version 3.0 - under RiscOS + Compiling CircleMUD under RiscOS by Gareth Duncan (garethduncan@argonet.co.uk) You will need: Index: doc/README.BORLAND =================================================================== RCS file: /home/circledb/.cvs/circle/doc/README.BORLAND,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- doc/README.BORLAND 24 May 2001 12:37:10 -0000 1.3 +++ doc/README.BORLAND 18 Nov 2002 22:12:25 -0000 1.4 @@ -1,4 +1,4 @@ - Compiling CircleMUD Version 3.0 + Compiling CircleMUD under Microsoft Windows 95 or Windows NT using Borland C++ Index: doc/README.CYGWIN =================================================================== RCS file: /home/circledb/.cvs/circle/doc/README.CYGWIN,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -r1.7 -r1.8 --- doc/README.CYGWIN 16 Jan 2002 03:11:09 -0000 1.7 +++ doc/README.CYGWIN 18 Nov 2002 22:12:25 -0000 1.8 @@ -1,9 +1,8 @@ - Compiling CircleMUD Version 3.0 - under Microsoft Windows 95 or Windows NT + Compiling CircleMUD under Microsoft Windows 95 or Windows NT using CygWin (formerly GNU-Win32) by David Goldstein (goldstei@cs.sunysb.edu) -CircleMUD 3.0 compiles under version b19 or later of Cygnus Solutions' +CircleMUD compiles under version b19 or later of Cygnus Solutions' GNU-Win32 environment without needing any special modifications. This free pseudo-Unix environment for Windows 95 and NT includes the "bash" shell, "gcc" family of compilers, and a full set of programs and libraries for Index: doc/README.MSVC4 =================================================================== RCS file: /home/circledb/.cvs/circle/doc/README.MSVC4,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- doc/README.MSVC4 6 Sep 2002 12:17:52 -0000 1.2 +++ doc/README.MSVC4 18 Nov 2002 22:12:25 -0000 1.3 @@ -1,9 +1,8 @@ - Compiling CircleMUD Version 3.0 - using Microsoft Visual C++ v4.x + Compiling CircleMUD using Microsoft Visual C++ v4.x by Jeremy Elson (jelson@circlemud.org) For help, write to help@circlemud.org -CircleMUD 3.0 compiles relatively easily under Windows 95 and NT using +CircleMUD compiles relatively easily under Windows 95 and NT using the Microsoft Visual C++ compiler version 4.x. These instructions won't work for any compiler except for MSVC++ 4.0; if you have a different compiler, take a look at the main README.WIN file for instructions. Index: doc/README.MSVC5 =================================================================== RCS file: /home/circledb/.cvs/circle/doc/README.MSVC5,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- doc/README.MSVC5 1 Jul 1998 19:06:20 -0000 1.1 +++ doc/README.MSVC5 18 Nov 2002 22:12:25 -0000 1.2 @@ -1,5 +1,4 @@ - Compiling CircleMUD Version 3.0 - under Microsoft Windows 95 or Windows NT + Compiling CircleMUD under Microsoft Windows 95 or Windows NT using Microsoft Visual C++ v5.x Index: doc/README.MSVC6 =================================================================== RCS file: /home/circledb/.cvs/circle/doc/README.MSVC6,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- doc/README.MSVC6 12 Sep 1999 05:26:19 -0000 1.2 +++ doc/README.MSVC6 18 Nov 2002 22:12:25 -0000 1.3 @@ -1,5 +1,4 @@ - Compiling CircleMUD Version 3.0 - under Microsoft Windows 95 + Compiling CircleMUD under Microsoft Windows 95 using Microsoft Visual C++ 6.0 w/SP2 Index: doc/README.OS2 =================================================================== RCS file: /home/circledb/.cvs/circle/doc/README.OS2,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- doc/README.OS2 29 Jun 1998 14:43:09 -0000 1.1 +++ doc/README.OS2 18 Nov 2002 22:12:25 -0000 1.2 @@ -1,70 +1,70 @@ - Compiling CircleMUD Version 3.0 - under OS/2 Warp Connect v3.0 or 2.1 - by David Carver - - -To compile CircleMUD 3.0 under OS/2, you must have the following: -All needed files can be found at the hobbes.nmsu.edu FTP site. - - -* OS/2 Warp Connect Version 3.0, or OS/2 Version 2.1 with TCP/IP installed. - You should have at least 8 megs of memory. (Circle runs quite well on an - 8 meg machine). - -* An HPFS formatted drive. CircleMUD needs to be uncompressed on an HPFS - drive because it uses long filenames. - -* The EMX09b runtime and compilation systems. These are free and - can be downloaded by anonymous FTP at hobbes.nmsu.edu in os2/unix/emx09b - -* The OS/2 port of GNU's GCC compiler. This can also be found at - hobbes.nmsu.edu in os2/unix/emx09b. Please make sure you have the most - recent version of the GCC compiler for OS/2, as files needed by CircleMUD - were not included in earlier versions of GCC for OS/2. The current version - is 2.7.0 - -* GNU's TAR and GZIP programs to decompress the necessary files. Again - these can be found at hobbes.nmsu.edu in os2/unix. - **** You only need this if you plan on getting some of the various - **** addons for Circle that others have coded. - -* A MAKE program. Either the GNU Make, or IBM's NMAKE should work. You - can obtain the NMAKE from either IBM's Developers kit or from - hobbes.nmsu.edu in os2/16dev. - - -Installation: - -*** IMPORTANT -*** -*** You must have EMX and GCC installed and the directories in your -*** PATH and LIBPATH statements in your CONFIG.SYS. Please read the -*** EMX installation instructions included with that package for more -*** information on how to install both EMX and GCC. - -Download the ZIP archive of Circle and use your favorite UNZip utility -to extract it. - -After you have uncompressed the files, switch to the directory that has -the CircleMUD files in it, and then to the SRC subdirectory. Rename -the following files: - -Rename 'conf.h.os2' to 'conf.h'. -Delete the old 'makefile', and rename 'makefile.os2' to 'makefile'. - -To compile the MUD type the following at an OS/2 command line: - -NMAKE /i - -CircleMUD will be compiled and the executable will be put in your current -directory. Copy the CIRCLE.EXE file to the circle30\bin directory. Then -follow the CircleMUD instructions in README on how to start up the MUD. - -NOTE: General questions about CircleMUD can be addressed to the author, -Jeremy Elson, at jelson@circlemud.org. However, all questions which -specifically deal with the OS/2 port of Circle should go to my address, -listed below. - -David Carver -dcarver@cougar.colstate.cc.oh.us -dcarver@iwaynet.net + Compiling CircleMUD + under OS/2 Warp Connect v3.0 or 2.1 + by David Carver + + +To compile CircleMUD under OS/2, you must have the following: +All needed files can be found at the hobbes.nmsu.edu FTP site. + + +* OS/2 Warp Connect Version 3.0, or OS/2 Version 2.1 with TCP/IP installed. + You should have at least 8 megs of memory. (Circle runs quite well on an + 8 meg machine). + +* An HPFS formatted drive. CircleMUD needs to be uncompressed on an HPFS + drive because it uses long filenames. + +* The EMX09b runtime and compilation systems. These are free and + can be downloaded by anonymous FTP at hobbes.nmsu.edu in os2/unix/emx09b + +* The OS/2 port of GNU's GCC compiler. This can also be found at + hobbes.nmsu.edu in os2/unix/emx09b. Please make sure you have the most + recent version of the GCC compiler for OS/2, as files needed by CircleMUD + were not included in earlier versions of GCC for OS/2. The current version + is 2.7.0 + +* GNU's TAR and GZIP programs to decompress the necessary files. Again + these can be found at hobbes.nmsu.edu in os2/unix. + **** You only need this if you plan on getting some of the various + **** addons for Circle that others have coded. + +* A MAKE program. Either the GNU Make, or IBM's NMAKE should work. You + can obtain the NMAKE from either IBM's Developers kit or from + hobbes.nmsu.edu in os2/16dev. + + +Installation: + +*** IMPORTANT +*** +*** You must have EMX and GCC installed and the directories in your +*** PATH and LIBPATH statements in your CONFIG.SYS. Please read the +*** EMX installation instructions included with that package for more +*** information on how to install both EMX and GCC. + +Download the ZIP archive of Circle and use your favorite UNZip utility +to extract it. + +After you have uncompressed the files, switch to the directory that has +the CircleMUD files in it, and then to the SRC subdirectory. Rename +the following files: + +Rename 'conf.h.os2' to 'conf.h'. +Delete the old 'makefile', and rename 'makefile.os2' to 'makefile'. + +To compile the MUD type the following at an OS/2 command line: + +NMAKE /i + +CircleMUD will be compiled and the executable will be put in your current +directory. Copy the CIRCLE.EXE file to the circle30\bin directory. Then +follow the CircleMUD instructions in README on how to start up the MUD. + +NOTE: General questions about CircleMUD can be addressed to the author, +Jeremy Elson, at jelson@circlemud.org. However, all questions which +specifically deal with the OS/2 port of Circle should go to my address, +listed below. + +David Carver +dcarver@cougar.colstate.cc.oh.us +dcarver@iwaynet.net Index: doc/README.UNIX =================================================================== RCS file: /home/circledb/.cvs/circle/doc/README.UNIX,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -r1.3 -r1.4 --- doc/README.UNIX 6 Sep 2002 12:17:52 -0000 1.3 +++ doc/README.UNIX 18 Nov 2002 22:12:25 -0000 1.4 @@ -1,4 +1,4 @@ - Compiling CircleMUD Version 3.0 under UNIX + Compiling CircleMUD under UNIX by Jeremy Elson (jelson@circlemud.org) For help, write to help@circlemud.org Index: doc/README.VMS =================================================================== RCS file: /home/circledb/.cvs/circle/doc/README.VMS,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -r1.5 -r1.6 --- doc/README.VMS 5 Mar 2001 12:45:29 -0000 1.5 +++ doc/README.VMS 18 Nov 2002 22:12:25 -0000 1.6 @@ -19,8 +19,7 @@ To build this, you need the following: emulation I would suggest getting a copy of Multinet though the OpenVMS hobbyist program at http://www.montagar.com/hobbyist. - .3) A copy of the CircleMUD v3.00 beta patch level 16 distribution file - or later. + .3) A copy of the CircleMUD distribution file. This can be found at ftp://ftp.circlemud.org/3.x/ Index: doc/README.WATCOM =================================================================== RCS file: /home/circledb/.cvs/circle/doc/README.WATCOM,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -r1.1 -r1.2 --- doc/README.WATCOM 1 Jul 1998 19:06:20 -0000 1.1 +++ doc/README.WATCOM 18 Nov 2002 22:12:25 -0000 1.2 @@ -1,4 +1,4 @@ - Compiling CircleMUD Version 3.0 + Compiling CircleMUD under Microsoft Windows 95 or Windows NT using Watcom v.11 Index: doc/README.WIN =================================================================