===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
epic5-2.0.1/source/dcc.c-1007-	/* inet_vhostsockaddr doesn't usually return an error */
epic5-2.0.1/source/dcc.c:1008:	if (inet_vhostsockaddr(FAMILY(dcc->offer), -1, NULL, 
epic5-2.0.1/source/dcc.c-1009-				&local, &locallen) < 0)
##############################################
epic5-2.0.1/source/dcc.c-1189-	if (get_int_var(DCC_USE_GATEWAY_ADDR_VAR))
epic5-2.0.1/source/dcc.c:1190:		my_sockaddr = get_server_uh_addr(server);
epic5-2.0.1/source/dcc.c:1191:	else if (family == AF_INET && V4ADDR(dcc->local_sockaddr).s_addr == 
epic5-2.0.1/source/dcc.c-1192-						htonl(INADDR_ANY))
epic5-2.0.1/source/dcc.c:1193:		my_sockaddr = get_server_local_addr(server);
epic5-2.0.1/source/dcc.c-1194-#ifdef INET6
epic5-2.0.1/source/dcc.c:1195:	else if (family == AF_INET6 && memcmp(&V6ADDR(dcc->local_sockaddr), 
epic5-2.0.1/source/dcc.c-1196-						&in6addr_any, 
epic5-2.0.1/source/dcc.c-1197-						sizeof(in6addr_any)) == 0)
epic5-2.0.1/source/dcc.c:1198:		my_sockaddr = get_server_local_addr(server);
epic5-2.0.1/source/dcc.c-1199-#endif
##############################################
epic5-2.0.1/source/dcc.c-2612-	{
epic5-2.0.1/source/dcc.c:2613:	    if (V4ADDR(offer).s_addr == 0)
epic5-2.0.1/source/dcc.c-2614-	    {
##############################################
epic5-2.0.1/source/dcc.c-2658-		{
epic5-2.0.1/source/dcc.c:2659:		   if (V4ADDR(irc_addr).s_addr != V4ADDR(offer).s_addr)
epic5-2.0.1/source/dcc.c-2660-		   {
epic5-2.0.1/source/dcc.c-2661-			say("WARNING: Fake dcc handshake detected! [%x]", 
epic5-2.0.1/source/dcc.c:2662:				V4ADDR(offer).s_addr);
epic5-2.0.1/source/dcc.c-2663-			say("Unless you know where this dcc request is "
##############################################
epic5-2.0.1/source/dcc.c-2962- * accepts our dcc chat offer.  unix_accept sends us the file descriptor
epic5-2.0.1/source/dcc.c:2963: * (from accept(2)) and the getpeeraddr() from that socket.
epic5-2.0.1/source/dcc.c-2964- *
##############################################
epic5-2.0.1/source/server.c-176- *
epic5-2.0.1/source/server.c:177: * 'host'     is a hostname, or an ipv4 p-addr ("192.168.0.1")
epic5-2.0.1/source/server.c-178- *            or an ipv6 p-addr in square brackets ("[01::01]")
##############################################
epic5-2.0.1/source/server.c-2089-
epic5-2.0.1/source/server.c:2090:	    if ((err = inet_vhostsockaddr(ai->ai_family, -1, s->info->vhost,
epic5-2.0.1/source/server.c-2091-						&localaddr, &locallen)) < 0)
##############################################
epic5-2.0.1/source/server.c-2103-					server, s->info->vhost);
epic5-2.0.1/source/server.c:2104:	        if ((err = inet_vhostsockaddr(ai->ai_family, -1, NULL,
epic5-2.0.1/source/server.c-2105-						&localaddr, &locallen)) < 0)
##############################################
epic5-2.0.1/source/server.c-2904-
epic5-2.0.1/source/server.c:2905:static SS	get_server_remote_addr (int refnum)
epic5-2.0.1/source/server.c-2906-{
##############################################
epic5-2.0.1/source/server.c-2914-
epic5-2.0.1/source/server.c:2915:SS	get_server_local_addr (int refnum)
epic5-2.0.1/source/server.c-2916-{
##############################################
epic5-2.0.1/source/server.c-2924-
epic5-2.0.1/source/server.c:2925:SS	get_server_uh_addr (int refnum)
epic5-2.0.1/source/server.c-2926-{
##############################################
epic5-2.0.1/source/server.c-4371-
epic5-2.0.1/source/server.c:4372:			a = get_server_remote_addr(refnum);
epic5-2.0.1/source/server.c-4373-			x = (SA *)&a;
##############################################
epic5-2.0.1/source/gailib.c-71-static int get_name (const char *, struct afd *, AI **, char *, AI *, int);
epic5-2.0.1/source/gailib.c:72:static int get_addr (const char *, int, AI **, AI *, int);
epic5-2.0.1/source/gailib.c-73-static int str_isnumber (const char *);
##############################################
epic5-2.0.1/source/gailib.c-314-	 * hostname == NULL.
epic5-2.0.1/source/gailib.c:315:	 * passive socket -> anyaddr (0.0.0.0 or ::)
epic5-2.0.1/source/gailib.c-316-	 * non-passive socket -> localhost (127.0.0.1 or ::1)
##############################################
epic5-2.0.1/source/gailib.c-399-	/* hostname as alphabetical name */
epic5-2.0.1/source/gailib.c:400:	error = get_addr(hostname, pai->ai_family, &top, pai, port);
epic5-2.0.1/source/gailib.c-401-	if (error == 0) {
##############################################
epic5-2.0.1/source/gailib.c-423-
epic5-2.0.1/source/gailib.c:424:	hp = gethostbyaddr(addr, afd->a_addrlen, AF_INET);
epic5-2.0.1/source/gailib.c-425-	if (hp && hp->h_name && hp->h_name[0] && hp->h_addr_list[0]) {
##############################################
epic5-2.0.1/source/gailib.c-440-
epic5-2.0.1/source/gailib.c:441:static int get_addr (const char *hostname, int af, AI **res, AI *pai, int port0)
epic5-2.0.1/source/gailib.c-442-{
##############################################
epic5-2.0.1/source/gailib.c-593-	} else {
epic5-2.0.1/source/gailib.c:594:		hp = gethostbyaddr(addr, afd->a_addrlen, afd->a_af);
epic5-2.0.1/source/gailib.c-595-
##############################################
epic5-2.0.1/source/network.c-180-
epic5-2.0.1/source/network.c:181:	if (inet_vhostsockaddr(family, port, NULL, storage, &len))
epic5-2.0.1/source/network.c-182-	{
epic5-2.0.1/source/network.c:183:		syserr(-1, "ip_bindery: inet_vhostsockaddr(%d,%d) failed.", 
epic5-2.0.1/source/network.c-184-							family, port);
##############################################
epic5-2.0.1/source/network.c-189-	{
epic5-2.0.1/source/network.c:190:		syserr(-1, "ip_bindery: inet_vhostsockaddr(%d,%d) didn't "
epic5-2.0.1/source/network.c-191-			"return an address I could bind", family, port);
##############################################
epic5-2.0.1/source/network.c-292- */
epic5-2.0.1/source/network.c:293:int	inet_vhostsockaddr (int family, int port, const char *wanthost, SS *storage, socklen_t *len)
epic5-2.0.1/source/network.c-294-{
##############################################
epic5-2.0.1/source/network.c-418- * ARGS: name - The socket address, possibly returned by getpeername().
epic5-2.0.1/source/network.c:419: *       retval - A string to store the hostname/paddr (RETURN VALUE)
epic5-2.0.1/source/network.c-420- *       size - The length of 'retval' in bytes
##############################################
epic5-2.0.1/source/network.c-451- *	 host - The hostname to convert
epic5-2.0.1/source/network.c:452: *       retval - A string to store the p-addr (RETURN VALUE)
epic5-2.0.1/source/network.c-453- *       size - The length of 'retval' in bytes
##############################################
epic5-2.0.1/script/epic-crypt-gpg-30-decrypt) decrypt "$@" ;;
epic5-2.0.1/script/epic-crypt-gpg:31:*)	echo `basename $0` "{encrypt|decrypt} < text" 1>&2 ;;
epic5-2.0.1/script/epic-crypt-gpg-32-esac
##############################################
epic5-2.0.1/script/history.rb-300-		EPIC.eval("^bind ^] shove_to_history")
epic5-2.0.1/script/history.rb:301:		EPIC.eval("^on #-input 2 * {history.add $*}")
epic5-2.0.1/script/history.rb-302-		EPIC.eval("^on #-input 2 /!* #")
##############################################
epic5-2.0.1/script/history.rb-308-		when 'on'
epic5-2.0.1/script/history.rb:309:			EPIC.eval("on #-exit 2 * {@ historyctl(save $history_save_file)}")
epic5-2.0.1/script/history.rb-310-		when 'off'
##############################################
epic5-2.0.1/script/epic-crypt-gpg-aa-45-decrypt) decrypt "$@" ;;
epic5-2.0.1/script/epic-crypt-gpg-aa:46:*)	echo `basename $0` "{encrypt|decrypt} < text" 1>&2 ;;
epic5-2.0.1/script/epic-crypt-gpg-aa-47-esac
##############################################
epic5-2.0.1/script/tabkey.jm-288-		(/exec %) {
epic5-2.0.1/script/tabkey.jm:289:			@:matches = match_exec($fragment);
epic5-2.0.1/script/tabkey.jm-290-
##############################################
epic5-2.0.1/script/functions-54-	fe ret foo {
epic5-2.0.1/script/functions:55:		@ foo = ${cond}regexec($reg $foo) ? [] : foo=~[* *] ? ["\$foo"] : foo;
epic5-2.0.1/script/functions-56-	};
##############################################
epic5-2.0.1/script/xmsglog-180-				@ :text = xform("-B64 -AESSHA" $xmsglog_password $data);
epic5-2.0.1/script/xmsglog:181:				if (regexec($rex $text) == 0) {
epic5-2.0.1/script/xmsglog-182-					if (print_last > 0) {
##############################################
epic5-2.0.1/script/files-51-        {       
epic5-2.0.1/script/files:52:                if (regexec($reg $line)) {
epic5-2.0.1/script/files-53-                        @ write($wd $line);
##############################################
epic5-2.0.1/script/grep-50-		@ l = line($i $win);
epic5-2.0.1/script/grep:51:                if (!regexec($re $l)) {
epic5-2.0.1/script/grep-52-                        @ s[$x] = l;
##############################################
epic5-2.0.1/include/server.h-285-	int	get_server_local_port		(int);
epic5-2.0.1/include/server.h:286:	SS	get_server_local_addr		(int);
epic5-2.0.1/include/server.h:287:	SS	get_server_uh_addr		(int);
epic5-2.0.1/include/server.h-288-
##############################################
epic5-2.0.1/include/network.h-43-#define V4FAM(x) (V4(x)->sin_family)
epic5-2.0.1/include/network.h:44:#define V4ADDR(x) (V4(x)->sin_addr)
epic5-2.0.1/include/network.h-45-#define V4PORT(x) (V4(x)->sin_port)
##############################################
epic5-2.0.1/include/network.h-48-#define V6FAM(x) (V6(x)->sin6_family)
epic5-2.0.1/include/network.h:49:#define V6ADDR(x) (V6(x)->sin6_addr)
epic5-2.0.1/include/network.h-50-#define V6PORT(x) (V6(x)->sin6_port)
##############################################
epic5-2.0.1/include/network.h-61-int     client_connect          (SA *, socklen_t, SA *, socklen_t);
epic5-2.0.1/include/network.h:62:int     inet_vhostsockaddr 	(int, int, const char *, SS *, socklen_t *);
epic5-2.0.1/include/network.h-63-int	my_getaddrinfo		(const char *, const char *, const AI *, AI **);
##############################################
epic5-2.0.1/configure-102-  case "$ac_option" in
epic5-2.0.1/configure:103:  -*=*) ac_optarg=`echo "$ac_option" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
epic5-2.0.1/configure-104-  *) ac_optarg= ;;
##############################################
epic5-2.0.1/configure-134-  -disable-* | --disable-*)
epic5-2.0.1/configure:135:    ac_feature=`echo $ac_option|sed -e 's/-*disable-//'`
epic5-2.0.1/configure-136-    # Reject names that are not valid shell variable names.
epic5-2.0.1/configure:137:    if test -n "`echo $ac_feature| sed 's/[-a-zA-Z0-9_]//g'`"; then
epic5-2.0.1/configure-138-      { echo "configure: error: $ac_feature: invalid feature name" 1>&2; exit 1; }
epic5-2.0.1/configure-139-    fi
epic5-2.0.1/configure:140:    ac_feature=`echo $ac_feature| sed 's/-/_/g'`
epic5-2.0.1/configure-141-    eval "enable_${ac_feature}=no" ;;
##############################################
epic5-2.0.1/configure-143-  -enable-* | --enable-*)
epic5-2.0.1/configure:144:    ac_feature=`echo $ac_option|sed -e 's/-*enable-//' -e 's/=.*//'`
epic5-2.0.1/configure-145-    # Reject names that are not valid shell variable names.
epic5-2.0.1/configure:146:    if test -n "`echo $ac_feature| sed 's/[-_a-zA-Z0-9]//g'`"; then
epic5-2.0.1/configure-147-      { echo "configure: error: $ac_feature: invalid feature name" 1>&2; exit 1; }
epic5-2.0.1/configure-148-    fi
epic5-2.0.1/configure:149:    ac_feature=`echo $ac_feature| sed 's/-/_/g'`
epic5-2.0.1/configure-150-    case "$ac_option" in
##############################################
epic5-2.0.1/configure-380-  -with-* | --with-*)
epic5-2.0.1/configure:381:    ac_package=`echo $ac_option|sed -e 's/-*with-//' -e 's/=.*//'`
epic5-2.0.1/configure-382-    # Reject names that are not valid shell variable names.
epic5-2.0.1/configure:383:    if test -n "`echo $ac_package| sed 's/[-_a-zA-Z0-9]//g'`"; then
epic5-2.0.1/configure-384-      { echo "configure: error: $ac_package: invalid package name" 1>&2; exit 1; }
epic5-2.0.1/configure-385-    fi
epic5-2.0.1/configure:386:    ac_package=`echo $ac_package| sed 's/-/_/g'`
epic5-2.0.1/configure-387-    case "$ac_option" in
##############################################
epic5-2.0.1/configure-393-  -without-* | --without-*)
epic5-2.0.1/configure:394:    ac_package=`echo $ac_option|sed -e 's/-*without-//'`
epic5-2.0.1/configure-395-    # Reject names that are not valid shell variable names.
epic5-2.0.1/configure:396:    if test -n "`echo $ac_package| sed 's/[-a-zA-Z0-9_]//g'`"; then
epic5-2.0.1/configure-397-      { echo "configure: error: $ac_package: invalid package name" 1>&2; exit 1; }
epic5-2.0.1/configure-398-    fi
epic5-2.0.1/configure:399:    ac_package=`echo $ac_package| sed 's/-/_/g'`
epic5-2.0.1/configure-400-    eval "with_${ac_package}=no" ;;
##############################################
epic5-2.0.1/configure-423-  *)
epic5-2.0.1/configure:424:    if test -n "`echo $ac_option| sed 's/[-a-z0-9.]//g'`"; then
epic5-2.0.1/configure-425-      echo "configure: warning: $ac_option: invalid host type" 1>&2
##############################################
epic5-2.0.1/configure-436-if test -n "$ac_prev"; then
epic5-2.0.1/configure:437:  { echo "configure: error: missing argument to --`echo $ac_prev | sed 's/_/-/g'`" 1>&2; exit 1; }
epic5-2.0.1/configure-438-fi
##############################################
epic5-2.0.1/configure-501-  ac_prog=$0
epic5-2.0.1/configure:502:  ac_confdir=`echo $ac_prog|sed 's%/[^/][^/]*$%%'`
epic5-2.0.1/configure-503-  test "x$ac_confdir" = "x$ac_prog" && ac_confdir=.
##############################################
epic5-2.0.1/configure-517-fi
epic5-2.0.1/configure:518:srcdir=`echo "${srcdir}" | sed 's%\([^/]\)/*$%\1%'`
epic5-2.0.1/configure-519-
##############################################
epic5-2.0.1/configure-573-
epic5-2.0.1/configure:574:VERSION=`sed -n -e 's/";$//' -e '/const char irc_version.. = .EPIC.-/s///p' -e '/const char irc_version/q' < $srcdir/source/irc.c` 
epic5-2.0.1/configure-575-echo this is EPIC5 version $VERSION
##############################################
epic5-2.0.1/configure-583-echo "configure:584: checking for $ac_word" >&5
epic5-2.0.1/configure:584:if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
epic5-2.0.1/configure-585-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-613-echo "configure:614: checking for $ac_word" >&5
epic5-2.0.1/configure:614:if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
epic5-2.0.1/configure-615-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-664-echo "configure:665: checking for $ac_word" >&5
epic5-2.0.1/configure:665:if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
epic5-2.0.1/configure-666-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-743-echo "configure:744: checking whether we are using GNU C" >&5
epic5-2.0.1/configure:744:if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then
epic5-2.0.1/configure-745-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-771-echo "configure:772: checking whether ${CC-cc} accepts -g" >&5
epic5-2.0.1/configure:772:if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then
epic5-2.0.1/configure-773-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-775-  echo 'void f(){}' > conftest.c
epic5-2.0.1/configure:776:if test -z "`${CC-cc} -g -c conftest.c 2>&1`"; then
epic5-2.0.1/configure-777-  ac_cv_prog_cc_g=yes
##############################################
epic5-2.0.1/configure-808-if test -z "$CPP"; then
epic5-2.0.1/configure:809:if eval "test \"`echo '$''{'ac_cv_prog_CPP'+set}'`\" = set"; then
epic5-2.0.1/configure-810-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-824-{ (eval echo configure:825: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
epic5-2.0.1/configure:825:ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
epic5-2.0.1/configure-826-if test -z "$ac_err"; then
##############################################
epic5-2.0.1/configure-841-{ (eval echo configure:842: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
epic5-2.0.1/configure:842:ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
epic5-2.0.1/configure-843-if test -z "$ac_err"; then
##############################################
epic5-2.0.1/configure-858-{ (eval echo configure:859: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
epic5-2.0.1/configure:859:ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
epic5-2.0.1/configure-860-if test -z "$ac_err"; then
##############################################
epic5-2.0.1/configure-1000-ac_lib_var=`echo cext'_'setenv | sed 'y%./+-%__p_%'`
epic5-2.0.1/configure:1001:if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
epic5-2.0.1/configure-1002-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-1030-fi
epic5-2.0.1/configure:1031:if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
epic5-2.0.1/configure-1032-  echo "$ac_t""yes" 1>&6
##############################################
epic5-2.0.1/configure-1140-echo "configure:1141: checking for $with_multiplex" >&5
epic5-2.0.1/configure:1141:if eval "test \"`echo '$''{'ac_cv_func_$with_multiplex'+set}'`\" = set"; then
epic5-2.0.1/configure-1142-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-1179-
epic5-2.0.1/configure:1180:if eval "test \"`echo '$ac_cv_func_'$with_multiplex`\" = yes"; then
epic5-2.0.1/configure-1181-  echo "$ac_t""yes" 1>&6
##############################################
epic5-2.0.1/configure-1232-ac_lib_var=`echo socket'_'socket | sed 'y%./+-%__p_%'`
epic5-2.0.1/configure:1233:if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
epic5-2.0.1/configure-1234-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-1262-fi
epic5-2.0.1/configure:1263:if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
epic5-2.0.1/configure-1264-  echo "$ac_t""yes" 1>&6
##############################################
epic5-2.0.1/configure-1285-ac_lib_var=`echo archive'_'archive_read_new | sed 'y%./+-%__p_%'`
epic5-2.0.1/configure:1286:if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
epic5-2.0.1/configure-1287-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-1315-fi
epic5-2.0.1/configure:1316:if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
epic5-2.0.1/configure-1317-  echo "$ac_t""yes" 1>&6
##############################################
epic5-2.0.1/configure-1531-ac_lib_var=`echo inet'_'socket | sed 'y%./+-%__p_%'`
epic5-2.0.1/configure:1532:if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
epic5-2.0.1/configure-1533-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-1561-fi
epic5-2.0.1/configure:1562:if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
epic5-2.0.1/configure-1563-  echo "$ac_t""yes" 1>&6
##############################################
epic5-2.0.1/configure-1574-ac_lib_var=`echo nsl'_'gethostname | sed 'y%./+-%__p_%'`
epic5-2.0.1/configure:1575:if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
epic5-2.0.1/configure-1576-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-1604-fi
epic5-2.0.1/configure:1605:if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
epic5-2.0.1/configure-1606-  echo "$ac_t""yes" 1>&6
##############################################
epic5-2.0.1/configure-1616-ac_lib_var=`echo sun'_'getpwnam | sed 'y%./+-%__p_%'`
epic5-2.0.1/configure:1617:if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
epic5-2.0.1/configure-1618-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-1646-fi
epic5-2.0.1/configure:1647:if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
epic5-2.0.1/configure-1648-  echo "$ac_t""yes" 1>&6
##############################################
epic5-2.0.1/configure-1656-ac_lib_var=`echo dgc'_'inet_addr | sed 'y%./+-%__p_%'`
epic5-2.0.1/configure:1657:if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
epic5-2.0.1/configure-1658-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-1667-    builtin and then its argument prototype would still apply.  */
epic5-2.0.1/configure:1668:char inet_addr();
epic5-2.0.1/configure-1669-
epic5-2.0.1/configure-1670-int main() {
epic5-2.0.1/configure:1671:inet_addr()
epic5-2.0.1/configure-1672-; return 0; }
##############################################
epic5-2.0.1/configure-1686-fi
epic5-2.0.1/configure:1687:if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
epic5-2.0.1/configure-1688-  echo "$ac_t""yes" 1>&6
##############################################
epic5-2.0.1/configure-1696-ac_lib_var=`echo resolv'_'gethostbyname | sed 'y%./+-%__p_%'`
epic5-2.0.1/configure:1697:if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
epic5-2.0.1/configure-1698-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-1726-fi
epic5-2.0.1/configure:1727:if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
epic5-2.0.1/configure-1728-  echo "$ac_t""yes" 1>&6
##############################################
epic5-2.0.1/configure-1736-ac_lib_var=`echo crypt'_'crypt | sed 'y%./+-%__p_%'`
epic5-2.0.1/configure:1737:if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
epic5-2.0.1/configure-1738-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-1766-fi
epic5-2.0.1/configure:1767:if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
epic5-2.0.1/configure-1768-  echo "$ac_t""yes" 1>&6
##############################################
epic5-2.0.1/configure-1776-ac_lib_var=`echo m'_'pow | sed 'y%./+-%__p_%'`
epic5-2.0.1/configure:1777:if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
epic5-2.0.1/configure-1778-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-1806-fi
epic5-2.0.1/configure:1807:if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
epic5-2.0.1/configure-1808-  echo "$ac_t""yes" 1>&6
##############################################
epic5-2.0.1/configure-1816-ac_lib_var=`echo rt'_'clock_gettime | sed 'y%./+-%__p_%'`
epic5-2.0.1/configure:1817:if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
epic5-2.0.1/configure-1818-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-1846-fi
epic5-2.0.1/configure:1847:if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
epic5-2.0.1/configure-1848-  echo "$ac_t""yes" 1>&6
##############################################
epic5-2.0.1/configure-1865-ac_lib_var=`echo termcap'_'tgetent | sed 'y%./+-%__p_%'`
epic5-2.0.1/configure:1866:if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
epic5-2.0.1/configure-1867-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-1895-fi
epic5-2.0.1/configure:1896:if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
epic5-2.0.1/configure-1897-  echo "$ac_t""yes" 1>&6
##############################################
epic5-2.0.1/configure-1903-ac_lib_var=`echo termlib'_'tgetent | sed 'y%./+-%__p_%'`
epic5-2.0.1/configure:1904:if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
epic5-2.0.1/configure-1905-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-1933-fi
epic5-2.0.1/configure:1934:if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
epic5-2.0.1/configure-1935-  echo "$ac_t""yes" 1>&6
##############################################
epic5-2.0.1/configure-1941-ac_lib_var=`echo curses'_'tgetent | sed 'y%./+-%__p_%'`
epic5-2.0.1/configure:1942:if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
epic5-2.0.1/configure-1943-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-1971-fi
epic5-2.0.1/configure:1972:if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
epic5-2.0.1/configure-1973-  echo "$ac_t""yes" 1>&6
##############################################
epic5-2.0.1/configure-1988-ac_lib_var=`echo ncurses'_'setupterm | sed 'y%./+-%__p_%'`
epic5-2.0.1/configure:1989:if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
epic5-2.0.1/configure-1990-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-2018-fi
epic5-2.0.1/configure:2019:if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
epic5-2.0.1/configure-2020-  echo "$ac_t""yes" 1>&6
##############################################
epic5-2.0.1/configure-2026-ac_lib_var=`echo tinfo'_'setupterm | sed 'y%./+-%__p_%'`
epic5-2.0.1/configure:2027:if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
epic5-2.0.1/configure-2028-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-2056-fi
epic5-2.0.1/configure:2057:if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
epic5-2.0.1/configure-2058-  echo "$ac_t""yes" 1>&6
##############################################
epic5-2.0.1/configure-2064-ac_lib_var=`echo curses'_'setupterm | sed 'y%./+-%__p_%'`
epic5-2.0.1/configure:2065:if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
epic5-2.0.1/configure-2066-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-2094-fi
epic5-2.0.1/configure:2095:if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
epic5-2.0.1/configure-2096-  echo "$ac_t""yes" 1>&6
##############################################
epic5-2.0.1/configure-2102-ac_lib_var=`echo curses'_'tgetent | sed 'y%./+-%__p_%'`
epic5-2.0.1/configure:2103:if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
epic5-2.0.1/configure-2104-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-2132-fi
epic5-2.0.1/configure:2133:if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
epic5-2.0.1/configure-2134-  echo "$ac_t""yes" 1>&6
##############################################
epic5-2.0.1/configure-2140-ac_lib_var=`echo termlib'_'tgetent | sed 'y%./+-%__p_%'`
epic5-2.0.1/configure:2141:if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
epic5-2.0.1/configure-2142-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-2170-fi
epic5-2.0.1/configure:2171:if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
epic5-2.0.1/configure-2172-  echo "$ac_t""yes" 1>&6
##############################################
epic5-2.0.1/configure-2178-ac_lib_var=`echo termcap'_'tgetent | sed 'y%./+-%__p_%'`
epic5-2.0.1/configure:2179:if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
epic5-2.0.1/configure-2180-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-2208-fi
epic5-2.0.1/configure:2209:if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
epic5-2.0.1/configure-2210-  echo "$ac_t""yes" 1>&6
##############################################
epic5-2.0.1/configure-2233-do
epic5-2.0.1/configure:2234:ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
epic5-2.0.1/configure-2235-echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
epic5-2.0.1/configure-2236-echo "configure:2237: checking for $ac_hdr" >&5
epic5-2.0.1/configure:2237:if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
epic5-2.0.1/configure-2238-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-2246-{ (eval echo configure:2247: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
epic5-2.0.1/configure:2247:ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
epic5-2.0.1/configure-2248-if test -z "$ac_err"; then
##############################################
epic5-2.0.1/configure-2259-fi
epic5-2.0.1/configure:2260:if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then
epic5-2.0.1/configure-2261-  echo "$ac_t""yes" 1>&6
epic5-2.0.1/configure:2262:    ac_tr_hdr=HAVE_`echo $ac_hdr | sed 'y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%'`
epic5-2.0.1/configure-2263-  cat >> confdefs.h <<EOF
##############################################
epic5-2.0.1/configure-2274-do
epic5-2.0.1/configure:2275:ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
epic5-2.0.1/configure-2276-echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
epic5-2.0.1/configure-2277-echo "configure:2278: checking for $ac_hdr" >&5
epic5-2.0.1/configure:2278:if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
epic5-2.0.1/configure-2279-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-2287-{ (eval echo configure:2288: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
epic5-2.0.1/configure:2288:ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
epic5-2.0.1/configure-2289-if test -z "$ac_err"; then
##############################################
epic5-2.0.1/configure-2300-fi
epic5-2.0.1/configure:2301:if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then
epic5-2.0.1/configure-2302-  echo "$ac_t""yes" 1>&6
epic5-2.0.1/configure:2303:    ac_tr_hdr=HAVE_`echo $ac_hdr | sed 'y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%'`
epic5-2.0.1/configure-2304-  cat >> confdefs.h <<EOF
##############################################
epic5-2.0.1/configure-2315-do
epic5-2.0.1/configure:2316:ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
epic5-2.0.1/configure-2317-echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
epic5-2.0.1/configure-2318-echo "configure:2319: checking for $ac_hdr" >&5
epic5-2.0.1/configure:2319:if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
epic5-2.0.1/configure-2320-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-2328-{ (eval echo configure:2329: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
epic5-2.0.1/configure:2329:ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
epic5-2.0.1/configure-2330-if test -z "$ac_err"; then
##############################################
epic5-2.0.1/configure-2341-fi
epic5-2.0.1/configure:2342:if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then
epic5-2.0.1/configure-2343-  echo "$ac_t""yes" 1>&6
epic5-2.0.1/configure:2344:    ac_tr_hdr=HAVE_`echo $ac_hdr | sed 'y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%'`
epic5-2.0.1/configure-2345-  cat >> confdefs.h <<EOF
##############################################
epic5-2.0.1/configure-2357-echo "configure:2358: checking for arc4random" >&5
epic5-2.0.1/configure:2358:if eval "test \"`echo '$''{'ac_cv_func_arc4random'+set}'`\" = set"; then
epic5-2.0.1/configure-2359-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-2396-
epic5-2.0.1/configure:2397:if eval "test \"`echo '$ac_cv_func_'arc4random`\" = yes"; then
epic5-2.0.1/configure-2398-  echo "$ac_t""yes" 1>&6
##############################################
epic5-2.0.1/configure-2408-echo "configure:2409: checking for clock_gettime" >&5
epic5-2.0.1/configure:2409:if eval "test \"`echo '$''{'ac_cv_func_clock_gettime'+set}'`\" = set"; then
epic5-2.0.1/configure-2410-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-2447-
epic5-2.0.1/configure:2448:if eval "test \"`echo '$ac_cv_func_'clock_gettime`\" = yes"; then
epic5-2.0.1/configure-2449-  echo "$ac_t""yes" 1>&6
##############################################
epic5-2.0.1/configure-2459-echo "configure:2460: checking for fchdir" >&5
epic5-2.0.1/configure:2460:if eval "test \"`echo '$''{'ac_cv_func_fchdir'+set}'`\" = set"; then
epic5-2.0.1/configure-2461-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-2498-
epic5-2.0.1/configure:2499:if eval "test \"`echo '$ac_cv_func_'fchdir`\" = yes"; then
epic5-2.0.1/configure-2500-  echo "$ac_t""yes" 1>&6
##############################################
epic5-2.0.1/configure-2510-echo "configure:2511: checking for fpathconf" >&5
epic5-2.0.1/configure:2511:if eval "test \"`echo '$''{'ac_cv_func_fpathconf'+set}'`\" = set"; then
epic5-2.0.1/configure-2512-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-2549-
epic5-2.0.1/configure:2550:if eval "test \"`echo '$ac_cv_func_'fpathconf`\" = yes"; then
epic5-2.0.1/configure-2551-  echo "$ac_t""yes" 1>&6
##############################################
epic5-2.0.1/configure-2561-echo "configure:2562: checking for getlogin" >&5
epic5-2.0.1/configure:2562:if eval "test \"`echo '$''{'ac_cv_func_getlogin'+set}'`\" = set"; then
epic5-2.0.1/configure-2563-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-2600-
epic5-2.0.1/configure:2601:if eval "test \"`echo '$ac_cv_func_'getlogin`\" = yes"; then
epic5-2.0.1/configure-2602-  echo "$ac_t""yes" 1>&6
##############################################
epic5-2.0.1/configure-2612-echo "configure:2613: checking for getaddrinfo" >&5
epic5-2.0.1/configure:2613:if eval "test \"`echo '$''{'ac_cv_func_getaddrinfo'+set}'`\" = set"; then
epic5-2.0.1/configure-2614-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-2651-
epic5-2.0.1/configure:2652:if eval "test \"`echo '$ac_cv_func_'getaddrinfo`\" = yes"; then
epic5-2.0.1/configure-2653-  echo "$ac_t""yes" 1>&6
##############################################
epic5-2.0.1/configure-2663-echo "configure:2664: checking for getnameinfo" >&5
epic5-2.0.1/configure:2664:if eval "test \"`echo '$''{'ac_cv_func_getnameinfo'+set}'`\" = set"; then
epic5-2.0.1/configure-2665-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-2702-
epic5-2.0.1/configure:2703:if eval "test \"`echo '$ac_cv_func_'getnameinfo`\" = yes"; then
epic5-2.0.1/configure-2704-  echo "$ac_t""yes" 1>&6
##############################################
epic5-2.0.1/configure-2714-echo "configure:2715: checking for getpass" >&5
epic5-2.0.1/configure:2715:if eval "test \"`echo '$''{'ac_cv_func_getpass'+set}'`\" = set"; then
epic5-2.0.1/configure-2716-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-2753-
epic5-2.0.1/configure:2754:if eval "test \"`echo '$ac_cv_func_'getpass`\" = yes"; then
epic5-2.0.1/configure-2755-  echo "$ac_t""yes" 1>&6
##############################################
epic5-2.0.1/configure-2765-echo "configure:2766: checking for getpgid" >&5
epic5-2.0.1/configure:2766:if eval "test \"`echo '$''{'ac_cv_func_getpgid'+set}'`\" = set"; then
epic5-2.0.1/configure-2767-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-2804-
epic5-2.0.1/configure:2805:if eval "test \"`echo '$ac_cv_func_'getpgid`\" = yes"; then
epic5-2.0.1/configure-2806-  echo "$ac_t""yes" 1>&6
##############################################
epic5-2.0.1/configure-2816-echo "configure:2817: checking for getpgrp" >&5
epic5-2.0.1/configure:2817:if eval "test \"`echo '$''{'ac_cv_func_getpgrp'+set}'`\" = set"; then
epic5-2.0.1/configure-2818-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-2855-
epic5-2.0.1/configure:2856:if eval "test \"`echo '$ac_cv_func_'getpgrp`\" = yes"; then
epic5-2.0.1/configure-2857-  echo "$ac_t""yes" 1>&6
##############################################
epic5-2.0.1/configure-2859-echo "configure:2860: checking whether getpgrp takes no argument" >&5
epic5-2.0.1/configure:2860:if eval "test \"`echo '$''{'ac_cv_func_getpgrp_void'+set}'`\" = set"; then
epic5-2.0.1/configure-2861-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-2950-echo "configure:2951: checking for getservbyport" >&5
epic5-2.0.1/configure:2951:if eval "test \"`echo '$''{'ac_cv_func_getservbyport'+set}'`\" = set"; then
epic5-2.0.1/configure-2952-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-2989-
epic5-2.0.1/configure:2990:if eval "test \"`echo '$ac_cv_func_'getservbyport`\" = yes"; then
epic5-2.0.1/configure-2991-  echo "$ac_t""yes" 1>&6
##############################################
epic5-2.0.1/configure-3001-echo "configure:3002: checking for gettimeofday" >&5
epic5-2.0.1/configure:3002:if eval "test \"`echo '$''{'ac_cv_func_gettimeofday'+set}'`\" = set"; then
epic5-2.0.1/configure-3003-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-3040-
epic5-2.0.1/configure:3041:if eval "test \"`echo '$ac_cv_func_'gettimeofday`\" = yes"; then
epic5-2.0.1/configure-3042-  echo "$ac_t""yes" 1>&6
##############################################
epic5-2.0.1/configure-3052-echo "configure:3053: checking for killpg" >&5
epic5-2.0.1/configure:3053:if eval "test \"`echo '$''{'ac_cv_func_killpg'+set}'`\" = set"; then
epic5-2.0.1/configure-3054-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-3091-
epic5-2.0.1/configure:3092:if eval "test \"`echo '$ac_cv_func_'killpg`\" = yes"; then
epic5-2.0.1/configure-3093-  echo "$ac_t""yes" 1>&6
##############################################
epic5-2.0.1/configure-3103-echo "configure:3104: checking for memmove" >&5
epic5-2.0.1/configure:3104:if eval "test \"`echo '$''{'ac_cv_func_memmove'+set}'`\" = set"; then
epic5-2.0.1/configure-3105-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-3142-
epic5-2.0.1/configure:3143:if eval "test \"`echo '$ac_cv_func_'memmove`\" = yes"; then
epic5-2.0.1/configure-3144-  echo "$ac_t""yes" 1>&6
##############################################
epic5-2.0.1/configure-3154-echo "configure:3155: checking for nanosleep" >&5
epic5-2.0.1/configure:3155:if eval "test \"`echo '$''{'ac_cv_func_nanosleep'+set}'`\" = set"; then
epic5-2.0.1/configure-3156-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-3193-
epic5-2.0.1/configure:3194:if eval "test \"`echo '$ac_cv_func_'nanosleep`\" = yes"; then
epic5-2.0.1/configure-3195-  echo "$ac_t""yes" 1>&6
##############################################
epic5-2.0.1/configure-3205-echo "configure:3206: checking for uname" >&5
epic5-2.0.1/configure:3206:if eval "test \"`echo '$''{'ac_cv_func_uname'+set}'`\" = set"; then
epic5-2.0.1/configure-3207-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-3244-
epic5-2.0.1/configure:3245:if eval "test \"`echo '$ac_cv_func_'uname`\" = yes"; then
epic5-2.0.1/configure-3246-  echo "$ac_t""yes" 1>&6
##############################################
epic5-2.0.1/configure-3256-echo "configure:3257: checking for realpath" >&5
epic5-2.0.1/configure:3257:if eval "test \"`echo '$''{'ac_cv_func_realpath'+set}'`\" = set"; then
epic5-2.0.1/configure-3258-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-3295-
epic5-2.0.1/configure:3296:if eval "test \"`echo '$ac_cv_func_'realpath`\" = yes"; then
epic5-2.0.1/configure-3297-  echo "$ac_t""yes" 1>&6
##############################################
epic5-2.0.1/configure-3307-echo "configure:3308: checking for setenv" >&5
epic5-2.0.1/configure:3308:if eval "test \"`echo '$''{'ac_cv_func_setenv'+set}'`\" = set"; then
epic5-2.0.1/configure-3309-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-3346-
epic5-2.0.1/configure:3347:if eval "test \"`echo '$ac_cv_func_'setenv`\" = yes"; then
epic5-2.0.1/configure-3348-  echo "$ac_t""yes" 1>&6
##############################################
epic5-2.0.1/configure-3358-echo "configure:3359: checking for setsid" >&5
epic5-2.0.1/configure:3359:if eval "test \"`echo '$''{'ac_cv_func_setsid'+set}'`\" = set"; then
epic5-2.0.1/configure-3360-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-3397-
epic5-2.0.1/configure:3398:if eval "test \"`echo '$ac_cv_func_'setsid`\" = yes"; then
epic5-2.0.1/configure-3399-  echo "$ac_t""yes" 1>&6
##############################################
epic5-2.0.1/configure-3409-echo "configure:3410: checking for tcsetpgrp" >&5
epic5-2.0.1/configure:3410:if eval "test \"`echo '$''{'ac_cv_func_tcsetpgrp'+set}'`\" = set"; then
epic5-2.0.1/configure-3411-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-3448-
epic5-2.0.1/configure:3449:if eval "test \"`echo '$ac_cv_func_'tcsetpgrp`\" = yes"; then
epic5-2.0.1/configure-3450-  echo "$ac_t""yes" 1>&6
##############################################
epic5-2.0.1/configure-3461-echo "configure:3462: checking for setupterm" >&5
epic5-2.0.1/configure:3462:if eval "test \"`echo '$''{'ac_cv_func_setupterm'+set}'`\" = set"; then
epic5-2.0.1/configure-3463-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-3500-
epic5-2.0.1/configure:3501:if eval "test \"`echo '$ac_cv_func_'setupterm`\" = yes"; then
epic5-2.0.1/configure-3502-  echo "$ac_t""yes" 1>&6
##############################################
epic5-2.0.1/configure-3513-echo "configure:3514: checking for snprintf" >&5
epic5-2.0.1/configure:3514:if eval "test \"`echo '$''{'ac_cv_func_snprintf'+set}'`\" = set"; then
epic5-2.0.1/configure-3515-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-3552-
epic5-2.0.1/configure:3553:if eval "test \"`echo '$ac_cv_func_'snprintf`\" = yes"; then
epic5-2.0.1/configure-3554-  echo "$ac_t""yes" 1>&6
##############################################
epic5-2.0.1/configure-3564-echo "configure:3565: checking for strerror" >&5
epic5-2.0.1/configure:3565:if eval "test \"`echo '$''{'ac_cv_func_strerror'+set}'`\" = set"; then
epic5-2.0.1/configure-3566-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-3603-
epic5-2.0.1/configure:3604:if eval "test \"`echo '$ac_cv_func_'strerror`\" = yes"; then
epic5-2.0.1/configure-3605-  echo "$ac_t""yes" 1>&6
##############################################
epic5-2.0.1/configure-3615-echo "configure:3616: checking for strlcat" >&5
epic5-2.0.1/configure:3616:if eval "test \"`echo '$''{'ac_cv_func_strlcat'+set}'`\" = set"; then
epic5-2.0.1/configure-3617-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-3654-
epic5-2.0.1/configure:3655:if eval "test \"`echo '$ac_cv_func_'strlcat`\" = yes"; then
epic5-2.0.1/configure-3656-  echo "$ac_t""yes" 1>&6
##############################################
epic5-2.0.1/configure-3666-echo "configure:3667: checking for strlcpy" >&5
epic5-2.0.1/configure:3667:if eval "test \"`echo '$''{'ac_cv_func_strlcpy'+set}'`\" = set"; then
epic5-2.0.1/configure-3668-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-3705-
epic5-2.0.1/configure:3706:if eval "test \"`echo '$ac_cv_func_'strlcpy`\" = yes"; then
epic5-2.0.1/configure-3707-  echo "$ac_t""yes" 1>&6
##############################################
epic5-2.0.1/configure-3717-echo "configure:3718: checking for strptime" >&5
epic5-2.0.1/configure:3718:if eval "test \"`echo '$''{'ac_cv_func_strptime'+set}'`\" = set"; then
epic5-2.0.1/configure-3719-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-3756-
epic5-2.0.1/configure:3757:if eval "test \"`echo '$ac_cv_func_'strptime`\" = yes"; then
epic5-2.0.1/configure-3758-  echo "$ac_t""yes" 1>&6
##############################################
epic5-2.0.1/configure-3768-echo "configure:3769: checking for strtoul" >&5
epic5-2.0.1/configure:3769:if eval "test \"`echo '$''{'ac_cv_func_strtoul'+set}'`\" = set"; then
epic5-2.0.1/configure-3770-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-3807-
epic5-2.0.1/configure:3808:if eval "test \"`echo '$ac_cv_func_'strtoul`\" = yes"; then
epic5-2.0.1/configure-3809-  echo "$ac_t""yes" 1>&6
##############################################
epic5-2.0.1/configure-3819-echo "configure:3820: checking for sysconf" >&5
epic5-2.0.1/configure:3820:if eval "test \"`echo '$''{'ac_cv_func_sysconf'+set}'`\" = set"; then
epic5-2.0.1/configure-3821-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-3858-
epic5-2.0.1/configure:3859:if eval "test \"`echo '$ac_cv_func_'sysconf`\" = yes"; then
epic5-2.0.1/configure-3860-  echo "$ac_t""yes" 1>&6
##############################################
epic5-2.0.1/configure-3870-echo "configure:3871: checking for sysctlbyname" >&5
epic5-2.0.1/configure:3871:if eval "test \"`echo '$''{'ac_cv_func_sysctlbyname'+set}'`\" = set"; then
epic5-2.0.1/configure-3872-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-3909-
epic5-2.0.1/configure:3910:if eval "test \"`echo '$ac_cv_func_'sysctlbyname`\" = yes"; then
epic5-2.0.1/configure-3911-  echo "$ac_t""yes" 1>&6
##############################################
epic5-2.0.1/configure-3921-echo "configure:3922: checking for unsetenv" >&5
epic5-2.0.1/configure:3922:if eval "test \"`echo '$''{'ac_cv_func_unsetenv'+set}'`\" = set"; then
epic5-2.0.1/configure-3923-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-3960-
epic5-2.0.1/configure:3961:if eval "test \"`echo '$ac_cv_func_'unsetenv`\" = yes"; then
epic5-2.0.1/configure-3962-  echo "$ac_t""yes" 1>&6
##############################################
epic5-2.0.1/configure-3972-echo "configure:3973: checking for vsnprintf" >&5
epic5-2.0.1/configure:3973:if eval "test \"`echo '$''{'ac_cv_func_vsnprintf'+set}'`\" = set"; then
epic5-2.0.1/configure-3974-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-4011-
epic5-2.0.1/configure:4012:if eval "test \"`echo '$ac_cv_func_'vsnprintf`\" = yes"; then
epic5-2.0.1/configure-4013-  echo "$ac_t""yes" 1>&6
##############################################
epic5-2.0.1/configure-4023-echo "configure:4024: checking for finite" >&5
epic5-2.0.1/configure:4024:if eval "test \"`echo '$''{'ac_cv_func_finite'+set}'`\" = set"; then
epic5-2.0.1/configure-4025-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-4062-
epic5-2.0.1/configure:4063:if eval "test \"`echo '$ac_cv_func_'finite`\" = yes"; then
epic5-2.0.1/configure-4064-  echo "$ac_t""yes" 1>&6
##############################################
epic5-2.0.1/configure-4094-echo "configure:4095: checking for tparm" >&5
epic5-2.0.1/configure:4095:if eval "test \"`echo '$''{'ac_cv_func_tparm'+set}'`\" = set"; then
epic5-2.0.1/configure-4096-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-4133-
epic5-2.0.1/configure:4134:if eval "test \"`echo '$ac_cv_func_'tparm`\" = yes"; then
epic5-2.0.1/configure-4135-  echo "$ac_t""yes" 1>&6
##############################################
epic5-2.0.1/configure-4145-echo "configure:4146: checking for newlocale" >&5
epic5-2.0.1/configure:4146:if eval "test \"`echo '$''{'ac_cv_func_newlocale'+set}'`\" = set"; then
epic5-2.0.1/configure-4147-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-4184-
epic5-2.0.1/configure:4185:if eval "test \"`echo '$ac_cv_func_'newlocale`\" = yes"; then
epic5-2.0.1/configure-4186-  echo "$ac_t""yes" 1>&6
##############################################
epic5-2.0.1/configure-4267-echo "configure:4268: checking for ANSI C header files" >&5
epic5-2.0.1/configure:4268:if eval "test \"`echo '$''{'ac_cv_header_stdc'+set}'`\" = set"; then
epic5-2.0.1/configure-4269-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-4280-{ (eval echo configure:4281: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
epic5-2.0.1/configure:4281:ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
epic5-2.0.1/configure-4282-if test -z "$ac_err"; then
##############################################
epic5-2.0.1/configure-4371-echo "configure:4372: checking whether time.h and sys/time.h may both be included" >&5
epic5-2.0.1/configure:4372:if eval "test \"`echo '$''{'ac_cv_header_time'+set}'`\" = set"; then
epic5-2.0.1/configure-4373-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-4407-do
epic5-2.0.1/configure:4408:ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
epic5-2.0.1/configure-4409-echo $ac_n "checking for $ac_hdr that defines DIR""... $ac_c" 1>&6
epic5-2.0.1/configure-4410-echo "configure:4411: checking for $ac_hdr that defines DIR" >&5
epic5-2.0.1/configure:4411:if eval "test \"`echo '$''{'ac_cv_header_dirent_$ac_safe'+set}'`\" = set"; then
epic5-2.0.1/configure-4412-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-4433-fi
epic5-2.0.1/configure:4434:if eval "test \"`echo '$ac_cv_header_dirent_'$ac_safe`\" = yes"; then
epic5-2.0.1/configure-4435-  echo "$ac_t""yes" 1>&6
epic5-2.0.1/configure:4436:    ac_tr_hdr=HAVE_`echo $ac_hdr | sed 'y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%'`
epic5-2.0.1/configure-4437-  cat >> confdefs.h <<EOF
##############################################
epic5-2.0.1/configure-4449-ac_lib_var=`echo dir'_'opendir | sed 'y%./+-%__p_%'`
epic5-2.0.1/configure:4450:if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
epic5-2.0.1/configure-4451-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-4479-fi
epic5-2.0.1/configure:4480:if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
epic5-2.0.1/configure-4481-  echo "$ac_t""yes" 1>&6
##############################################
epic5-2.0.1/configure-4490-ac_lib_var=`echo x'_'opendir | sed 'y%./+-%__p_%'`
epic5-2.0.1/configure:4491:if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
epic5-2.0.1/configure-4492-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-4520-fi
epic5-2.0.1/configure:4521:if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
epic5-2.0.1/configure-4522-  echo "$ac_t""yes" 1>&6
##############################################
epic5-2.0.1/configure-4531-echo "configure:4532: checking return type of signal handlers" >&5
epic5-2.0.1/configure:4532:if eval "test \"`echo '$''{'ac_cv_type_signal'+set}'`\" = set"; then
epic5-2.0.1/configure-4533-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-4572-echo "configure:4573: checking for mode_t" >&5
epic5-2.0.1/configure:4573:if eval "test \"`echo '$''{'ac_cv_type_mode_t'+set}'`\" = set"; then
epic5-2.0.1/configure-4574-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-4605-echo "configure:4606: checking for pid_t" >&5
epic5-2.0.1/configure:4606:if eval "test \"`echo '$''{'ac_cv_type_pid_t'+set}'`\" = set"; then
epic5-2.0.1/configure-4607-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-4638-echo "configure:4639: checking for size_t" >&5
epic5-2.0.1/configure:4639:if eval "test \"`echo '$''{'ac_cv_type_size_t'+set}'`\" = set"; then
epic5-2.0.1/configure-4640-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-4671-echo "configure:4672: checking for uid_t in sys/types.h" >&5
epic5-2.0.1/configure:4672:if eval "test \"`echo '$''{'ac_cv_type_uid_t'+set}'`\" = set"; then
epic5-2.0.1/configure-4673-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-4707-echo "configure:4708: checking for working alloca.h" >&5
epic5-2.0.1/configure:4708:if eval "test \"`echo '$''{'ac_cv_header_alloca_h'+set}'`\" = set"; then
epic5-2.0.1/configure-4709-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-4740-echo "configure:4741: checking for alloca" >&5
epic5-2.0.1/configure:4741:if eval "test \"`echo '$''{'ac_cv_func_alloca_works'+set}'`\" = set"; then
epic5-2.0.1/configure-4742-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-4805-echo "configure:4806: checking whether alloca needs Cray hooks" >&5
epic5-2.0.1/configure:4806:if eval "test \"`echo '$''{'ac_cv_os_cray'+set}'`\" = set"; then
epic5-2.0.1/configure-4807-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-4835-echo "configure:4836: checking for $ac_func" >&5
epic5-2.0.1/configure:4836:if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
epic5-2.0.1/configure-4837-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-4874-
epic5-2.0.1/configure:4875:if eval "test \"`echo '$ac_cv_func_'$ac_func`\" = yes"; then
epic5-2.0.1/configure-4876-  echo "$ac_t""yes" 1>&6
##############################################
epic5-2.0.1/configure-4890-echo "configure:4891: checking stack direction for C alloca" >&5
epic5-2.0.1/configure:4891:if eval "test \"`echo '$''{'ac_cv_c_stack_direction'+set}'`\" = set"; then
epic5-2.0.1/configure-4892-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-5296-echo "configure:5297: checking size of long long" >&5
epic5-2.0.1/configure:5297:if eval "test \"`echo '$''{'ac_cv_sizeof_long_long'+set}'`\" = set"; then
epic5-2.0.1/configure-5298-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-5340-echo "configure:5341: checking for strtoll" >&5
epic5-2.0.1/configure:5341:if eval "test \"`echo '$''{'ac_cv_func_strtoll'+set}'`\" = set"; then
epic5-2.0.1/configure-5342-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-5379-
epic5-2.0.1/configure:5380:if eval "test \"`echo '$ac_cv_func_'strtoll`\" = yes"; then
epic5-2.0.1/configure-5381-  echo "$ac_t""yes" 1>&6
##############################################
epic5-2.0.1/configure-5397-echo "configure:5398: checking size of quad_t" >&5
epic5-2.0.1/configure:5398:if eval "test \"`echo '$''{'ac_cv_sizeof_quad_t'+set}'`\" = set"; then
epic5-2.0.1/configure-5399-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-5437-echo "configure:5438: checking for strtoq" >&5
epic5-2.0.1/configure:5438:if eval "test \"`echo '$''{'ac_cv_func_strtoq'+set}'`\" = set"; then
epic5-2.0.1/configure-5439-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-5476-
epic5-2.0.1/configure:5477:if eval "test \"`echo '$ac_cv_func_'strtoq`\" = yes"; then
epic5-2.0.1/configure-5478-  echo "$ac_t""yes" 1>&6
##############################################
epic5-2.0.1/configure-5500-echo "configure:5501: checking size of unsigned int" >&5
epic5-2.0.1/configure:5501:if eval "test \"`echo '$''{'ac_cv_sizeof_unsigned_int'+set}'`\" = set"; then
epic5-2.0.1/configure-5502-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-5545-echo "configure:5546: checking size of unsigned long" >&5
epic5-2.0.1/configure:5546:if eval "test \"`echo '$''{'ac_cv_sizeof_unsigned_long'+set}'`\" = set"; then
epic5-2.0.1/configure-5547-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-6033-do
epic5-2.0.1/configure:6034:ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
epic5-2.0.1/configure-6035-echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
epic5-2.0.1/configure-6036-echo "configure:6037: checking for $ac_hdr" >&5
epic5-2.0.1/configure:6037:if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
epic5-2.0.1/configure-6038-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-6046-{ (eval echo configure:6047: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
epic5-2.0.1/configure:6047:ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
epic5-2.0.1/configure-6048-if test -z "$ac_err"; then
##############################################
epic5-2.0.1/configure-6059-fi
epic5-2.0.1/configure:6060:if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then
epic5-2.0.1/configure-6061-  echo "$ac_t""yes" 1>&6
epic5-2.0.1/configure:6062:    ac_tr_hdr=HAVE_`echo $ac_hdr | sed 'y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%'`
epic5-2.0.1/configure-6063-  cat >> confdefs.h <<EOF
##############################################
epic5-2.0.1/configure-6102-echo "configure:6103: checking for $ac_word" >&5
epic5-2.0.1/configure:6103:if eval "test \"`echo '$''{'ac_cv_prog_PERLPROG'+set}'`\" = set"; then
epic5-2.0.1/configure-6104-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-6138-		echo "$ac_t""yes" 1>&6
epic5-2.0.1/configure:6139:		PERLCFLAGS=`$perlexe -MExtUtils::Embed -e ccopts`
epic5-2.0.1/configure:6140:		PERLLIBS=`$perlexe -MExtUtils::Embed -e ldopts`
epic5-2.0.1/configure-6141-
##############################################
epic5-2.0.1/configure-6263-		echo "$ac_t""yes" 1>&6
epic5-2.0.1/configure:6264:		TCLCFLAGS=`(. "$tclconfig" && echo $TCL_INCLUDE_SPEC)`
epic5-2.0.1/configure:6265:		TCLLIBS=`(. "$tclconfig" && echo $TCL_LIB_SPEC $TCL_LIBS)`
epic5-2.0.1/configure-6266-		TCLDOTOH="tcl.o"
##############################################
epic5-2.0.1/configure-6359-echo "configure:6360: checking for $ac_word" >&5
epic5-2.0.1/configure:6360:if eval "test \"`echo '$''{'ac_cv_prog_RUBYPROG'+set}'`\" = set"; then
epic5-2.0.1/configure-6361-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
epic5-2.0.1/configure-6391-	else
epic5-2.0.1/configure:6392:	    	    	    incdir=`$rubyexe -rrbconfig -e 'puts RbConfig::CONFIG["rubyhdrdir"]'`
epic5-2.0.1/configure-6393-	    	    if test "x$incdir" = "xnil" ; then
epic5-2.0.1/configure:6394:	       incdir=`$rubyexe -rrbconfig -e 'puts RbConfig::CONFIG["archdir"]'`
epic5-2.0.1/configure-6395-	       RUBYCFLAGS="-I$incdir"
epic5-2.0.1/configure-6396-	    	    else
epic5-2.0.1/configure:6397:	       arch=`$rubyexe -rrbconfig -e 'puts RbConfig::CONFIG["arch"]'`
epic5-2.0.1/configure-6398-	       RUBYCFLAGS="-I$incdir -I$incdir/$arch/"
##############################################
epic5-2.0.1/configure-6400-
epic5-2.0.1/configure:6401:	    rubylibs=`$rubyexe -rrbconfig -e 'puts RbConfig::CONFIG["LIBRUBYARG"]'`
epic5-2.0.1/configure:6402:	    extralibs=`$rubyexe -rrbconfig -e 'puts RbConfig::CONFIG["LIBS"]'`
epic5-2.0.1/configure-6403-	    RUBYLIBS="$rubylibs $extralibs"
##############################################
epic5-2.0.1/configure-6537-
epic5-2.0.1/configure:6538:epic5=`echo "epic5" | sed -e "$program_transform_name"`
epic5-2.0.1/configure-6539-if test "$program_prefix" = "NONE" ; then
##############################################
epic5-2.0.1/configure-6846-    fi
epic5-2.0.1/configure:6847:    ac_file=`expr $ac_file + 1`
epic5-2.0.1/configure-6848-    ac_beg=$ac_end
epic5-2.0.1/configure:6849:    ac_end=`expr $ac_end + $ac_max_sed_cmds`
epic5-2.0.1/configure-6850-  fi
##############################################
epic5-2.0.1/configure-6864-  case "$ac_file" in
epic5-2.0.1/configure:6865:  *:*) ac_file_in=`echo "$ac_file"|sed 's%[^:]*:%%'`
epic5-2.0.1/configure:6866:       ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;;
epic5-2.0.1/configure-6867-  *) ac_file_in="${ac_file}.in" ;;
##############################################
epic5-2.0.1/configure-6872-  # Remove last slash and all that follows it.  Not all systems have dirname.
epic5-2.0.1/configure:6873:  ac_dir=`echo $ac_file|sed 's%/[^/][^/]*$%%'`
epic5-2.0.1/configure-6874-  if test "$ac_dir" != "$ac_file" && test "$ac_dir" != .; then
##############################################
epic5-2.0.1/configure-6876-    test ! -d "$ac_dir" && mkdir "$ac_dir"
epic5-2.0.1/configure:6877:    ac_dir_suffix="/`echo $ac_dir|sed 's%^\./%%'`"
epic5-2.0.1/configure-6878-    # A "../" for each directory in $ac_dir_suffix.
epic5-2.0.1/configure:6879:    ac_dots=`echo $ac_dir_suffix|sed 's%/[^/]*%../%g'`
epic5-2.0.1/configure-6880-  else
##############################################
epic5-2.0.1/configure-6886-      if test -z "$ac_dots"; then top_srcdir=.
epic5-2.0.1/configure:6887:      else top_srcdir=`echo $ac_dots|sed 's%/$%%'`; fi ;;
epic5-2.0.1/configure-6888-  /*) srcdir="$ac_given_srcdir$ac_dir_suffix"; top_srcdir="$ac_given_srcdir" ;;
##############################################
epic5-2.0.1/configure-6896-  rm -f "$ac_file"
epic5-2.0.1/configure:6897:  configure_input="Generated automatically from `echo $ac_file_in|sed 's%.*/%%'` by configure."
epic5-2.0.1/configure-6898-  case "$ac_file" in
##############################################
epic5-2.0.1/configure-6903-
epic5-2.0.1/configure:6904:  ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s%:% $ac_given_srcdir/%g"`
epic5-2.0.1/configure-6905-  sed -e "$ac_comsub
##############################################
epic5-2.0.1/configure-6941-  case "$ac_file" in
epic5-2.0.1/configure:6942:  *:*) ac_file_in=`echo "$ac_file"|sed 's%[^:]*:%%'`
epic5-2.0.1/configure:6943:       ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;;
epic5-2.0.1/configure-6944-  *) ac_file_in="${ac_file}.in" ;;
##############################################
epic5-2.0.1/configure-6949-  rm -f conftest.frag conftest.in conftest.out
epic5-2.0.1/configure:6950:  ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s%:% $ac_given_srcdir/%g"`
epic5-2.0.1/configure-6951-  cat $ac_file_inputs > conftest.in
##############################################
epic5-2.0.1/configure-7009-    # Remove last slash and all that follows it.  Not all systems have dirname.
epic5-2.0.1/configure:7010:      ac_dir=`echo $ac_file|sed 's%/[^/][^/]*$%%'`
epic5-2.0.1/configure-7011-      if test "$ac_dir" != "$ac_file" && test "$ac_dir" != .; then
##############################################
epic5-2.0.1/doc/IPV6-112-sockaddr_in	connect_to_server.remaddr
epic5-2.0.1/doc/IPV6:113:in_addr		get_server_local_addr (servnum)
epic5-2.0.1/doc/IPV6:114:in_addr		get_server_uh_addr (servnum)
epic5-2.0.1/doc/IPV6-115-
##############################################
epic5-2.0.1/mkinstalldirs-11-for file in ${1+"$@"} ; do 
epic5-2.0.1/mkinstalldirs:12:   set fnord `echo ":$file" | sed -ne 's/^:\//#/;s/^://;s/\// /g;s/^#/\//;p'`
epic5-2.0.1/mkinstalldirs-13-   shift
##############################################
epic5-2.0.1/configure.in-19-
epic5-2.0.1/configure.in:20:VERSION=`sed -n -e 's/";$//' -e '/const char irc_version.. = .EPIC.-/s///p' -e '/const char irc_version/q' < $srcdir/source/irc.c` 
epic5-2.0.1/configure.in-21-echo this is EPIC5 version $VERSION
##############################################
epic5-2.0.1/configure.in-1032-		AC_MSG_RESULT(yes)
epic5-2.0.1/configure.in:1033:		PERLCFLAGS=`$perlexe -MExtUtils::Embed -e ccopts`
epic5-2.0.1/configure.in:1034:		PERLLIBS=`$perlexe -MExtUtils::Embed -e ldopts`
epic5-2.0.1/configure.in-1035-
##############################################
epic5-2.0.1/configure.in-1129-		AC_MSG_RESULT(yes)
epic5-2.0.1/configure.in:1130:		TCLCFLAGS=`(. "$tclconfig" && echo $TCL_INCLUDE_SPEC)`
epic5-2.0.1/configure.in:1131:		TCLLIBS=`(. "$tclconfig" && echo $TCL_LIB_SPEC $TCL_LIBS)`
epic5-2.0.1/configure.in-1132-		TCLDOTOH="tcl.o"
##############################################
epic5-2.0.1/configure.in-1203-	    dnl Look first for Ruby 1.9
epic5-2.0.1/configure.in:1204:	    incdir=`$rubyexe -rrbconfig -e 'puts RbConfig::CONFIG[["rubyhdrdir"]]'`
epic5-2.0.1/configure.in-1205-	    dnl -- Ruby 1.8
epic5-2.0.1/configure.in-1206-	    if test "x$incdir" = "xnil" ; then
epic5-2.0.1/configure.in:1207:	       incdir=`$rubyexe -rrbconfig -e 'puts RbConfig::CONFIG[["archdir"]]'`
epic5-2.0.1/configure.in-1208-	       RUBYCFLAGS="-I$incdir"
##############################################
epic5-2.0.1/configure.in-1210-	    else
epic5-2.0.1/configure.in:1211:	       arch=`$rubyexe -rrbconfig -e 'puts RbConfig::CONFIG[["arch"]]'`
epic5-2.0.1/configure.in-1212-	       RUBYCFLAGS="-I$incdir -I$incdir/$arch/"
##############################################
epic5-2.0.1/configure.in-1214-
epic5-2.0.1/configure.in:1215:	    rubylibs=`$rubyexe -rrbconfig -e 'puts RbConfig::CONFIG[["LIBRUBYARG"]]'`
epic5-2.0.1/configure.in:1216:	    extralibs=`$rubyexe -rrbconfig -e 'puts RbConfig::CONFIG[["LIBS"]]'`
epic5-2.0.1/configure.in-1217-	    RUBYLIBS="$rubylibs $extralibs"
##############################################
epic5-2.0.1/configure.in-1321-
epic5-2.0.1/configure.in:1322:epic5=`echo "epic5" | sed -e "$program_transform_name"`
epic5-2.0.1/configure.in-1323-if test "$program_prefix" = "NONE" ; then
##############################################
epic5-2.0.1/.pc/path.patch/Makefile.in-163-		if ./my_test -f $$i; then \
epic5-2.0.1/.pc/path.patch/Makefile.in:164:			target=$(IP)$(DESTDIR)$(scriptdir)/`basename $$i`; \
epic5-2.0.1/.pc/path.patch/Makefile.in-165-			if ./my_test -f $$target; then \
##############################################
epic5-2.0.1/Makefile.in-155-		if ./my_test -f $$i; then \
epic5-2.0.1/Makefile.in:156:			target=$(IP)$(DESTDIR)$(scriptdir)/`basename $$i`; \
epic5-2.0.1/Makefile.in-157-			if ./my_test -f $$target; then \