===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
logtool-1.2.8/scripts/logtool_logcheck.sh-29-if [ -x `which mktemp` ] ; then
logtool-1.2.8/scripts/logtool_logcheck.sh:30:tnpfile=`mktemp -q /tmp/$0.XXXXXX`
logtool-1.2.8/scripts/logtool_logcheck.sh-31-	if [ $? -ne 0 ]; then
##############################################
logtool-1.2.8/scripts/logtool_logcheck.sh-50-# if we found anything, load it into a memory variable
logtool-1.2.8/scripts/logtool_logcheck.sh:51:found="`head $tmpfile`"
logtool-1.2.8/scripts/logtool_logcheck.sh-52-
##############################################
logtool-1.2.8/src/gethost.c-23-
logtool-1.2.8/src/gethost.c:24:/* a wrapper for gethostbyaddr() for my own sanity      */
logtool-1.2.8/src/gethost.c-25-char *get_host(char *ip_addr) {
##############################################
logtool-1.2.8/src/gethost.c-34-	h = NULL;       /* null out our global variable */
logtool-1.2.8/src/gethost.c:35:        ad = inet_addr(ip_addr); /* crunch input into network byte order        */
logtool-1.2.8/src/gethost.c-36-        /* see if we can get a hostname on it   */
logtool-1.2.8/src/gethost.c:37:        h = gethostbyaddr((char *)&ad, sizeof(ad) ,AF_INET);
logtool-1.2.8/src/gethost.c-38-        /* if we couldn't, return NULL  */
##############################################
logtool-1.2.8/src/install-sh-234-      fi
logtool-1.2.8/src/install-sh:235:      cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;;
logtool-1.2.8/src/install-sh-236-    *)
##############################################
logtool-1.2.8/src/install-sh-281-      dstdir=$dst
logtool-1.2.8/src/install-sh:282:      dst=$dstdir/`basename "$src"`
logtool-1.2.8/src/install-sh-283-      dstdir_status=0
logtool-1.2.8/src/install-sh-284-    else
logtool-1.2.8/src/install-sh:285:      dstdir=`dirname "$dst"`
logtool-1.2.8/src/install-sh-286-      test -d "$dstdir"
##############################################
logtool-1.2.8/src/install-sh-344-                   test_tmpdir="$tmpdir/a"
logtool-1.2.8/src/install-sh:345:                   ls_ld_tmpdir=`ls -ld "$test_tmpdir"`
logtool-1.2.8/src/install-sh-346-                   case $ls_ld_tmpdir in
##############################################
logtool-1.2.8/src/install-sh-351-                   $mkdirprog -m$different_mode -p -- "$test_tmpdir" && {
logtool-1.2.8/src/install-sh:352:                     ls_ld_tmpdir_1=`ls -ld "$test_tmpdir"`
logtool-1.2.8/src/install-sh-353-                     test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1"
##############################################
logtool-1.2.8/src/install-sh-409-            case $prefix in
logtool-1.2.8/src/install-sh:410:              *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;;
logtool-1.2.8/src/install-sh-411-              *) qprefix=$prefix;;
##############################################
logtool-1.2.8/src/install-sh-458-    if $copy_on_change &&
logtool-1.2.8/src/install-sh:459:       old=`LC_ALL=C ls -dlL "$dst"     2>/dev/null` &&
logtool-1.2.8/src/install-sh:460:       new=`LC_ALL=C ls -dlL "$dsttmp"  2>/dev/null` &&
logtool-1.2.8/src/install-sh-461-       set -f &&
##############################################
logtool-1.2.8/src/includes.h-35-
logtool-1.2.8/src/includes.h:36:/* includes for the gethostbyaddr() stuff        */
logtool-1.2.8/src/includes.h-37-#include <netdb.h>
##############################################
logtool-1.2.8/src/includes.h-40-#include <arpa/inet.h>
logtool-1.2.8/src/includes.h:41:/* a couple var's for gethostbyaddr() stuff      */
logtool-1.2.8/src/includes.h-42-extern int h_errno;
##############################################
logtool-1.2.8/build.distro-6-pwd=`pwd`
logtool-1.2.8/build.distro:7:builddir=`basename $pwd`
logtool-1.2.8/build.distro-8-
##############################################
logtool-1.2.8/configure-68-  case "$ac_option" in
logtool-1.2.8/configure:69:  -*=*) ac_optarg=`echo "$ac_option" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
logtool-1.2.8/configure-70-  *) ac_optarg= ;;
##############################################
logtool-1.2.8/configure-100-  -disable-* | --disable-*)
logtool-1.2.8/configure:101:    ac_feature=`echo $ac_option|sed -e 's/-*disable-//'`
logtool-1.2.8/configure-102-    # Reject names that are not valid shell variable names.
logtool-1.2.8/configure:103:    if test -n "`echo $ac_feature| sed 's/[-a-zA-Z0-9_]//g'`"; then
logtool-1.2.8/configure-104-      { echo "configure: error: $ac_feature: invalid feature name" 1>&2; exit 1; }
logtool-1.2.8/configure-105-    fi
logtool-1.2.8/configure:106:    ac_feature=`echo $ac_feature| sed 's/-/_/g'`
logtool-1.2.8/configure-107-    eval "enable_${ac_feature}=no" ;;
##############################################
logtool-1.2.8/configure-109-  -enable-* | --enable-*)
logtool-1.2.8/configure:110:    ac_feature=`echo $ac_option|sed -e 's/-*enable-//' -e 's/=.*//'`
logtool-1.2.8/configure-111-    # Reject names that are not valid shell variable names.
logtool-1.2.8/configure:112:    if test -n "`echo $ac_feature| sed 's/[-_a-zA-Z0-9]//g'`"; then
logtool-1.2.8/configure-113-      { echo "configure: error: $ac_feature: invalid feature name" 1>&2; exit 1; }
logtool-1.2.8/configure-114-    fi
logtool-1.2.8/configure:115:    ac_feature=`echo $ac_feature| sed 's/-/_/g'`
logtool-1.2.8/configure-116-    case "$ac_option" in
##############################################
logtool-1.2.8/configure-340-  -with-* | --with-*)
logtool-1.2.8/configure:341:    ac_package=`echo $ac_option|sed -e 's/-*with-//' -e 's/=.*//'`
logtool-1.2.8/configure-342-    # Reject names that are not valid shell variable names.
logtool-1.2.8/configure:343:    if test -n "`echo $ac_package| sed 's/[-_a-zA-Z0-9]//g'`"; then
logtool-1.2.8/configure-344-      { echo "configure: error: $ac_package: invalid package name" 1>&2; exit 1; }
logtool-1.2.8/configure-345-    fi
logtool-1.2.8/configure:346:    ac_package=`echo $ac_package| sed 's/-/_/g'`
logtool-1.2.8/configure-347-    case "$ac_option" in
##############################################
logtool-1.2.8/configure-353-  -without-* | --without-*)
logtool-1.2.8/configure:354:    ac_package=`echo $ac_option|sed -e 's/-*without-//'`
logtool-1.2.8/configure-355-    # Reject names that are not valid shell variable names.
logtool-1.2.8/configure:356:    if test -n "`echo $ac_package| sed 's/[-a-zA-Z0-9_]//g'`"; then
logtool-1.2.8/configure-357-      { echo "configure: error: $ac_package: invalid package name" 1>&2; exit 1; }
logtool-1.2.8/configure-358-    fi
logtool-1.2.8/configure:359:    ac_package=`echo $ac_package| sed 's/-/_/g'`
logtool-1.2.8/configure-360-    eval "with_${ac_package}=no" ;;
##############################################
logtool-1.2.8/configure-383-  *)
logtool-1.2.8/configure:384:    if test -n "`echo $ac_option| sed 's/[-a-z0-9.]//g'`"; then
logtool-1.2.8/configure-385-      echo "configure: warning: $ac_option: invalid host type" 1>&2
##############################################
logtool-1.2.8/configure-396-if test -n "$ac_prev"; then
logtool-1.2.8/configure:397:  { echo "configure: error: missing argument to --`echo $ac_prev | sed 's/_/-/g'`" 1>&2; exit 1; }
logtool-1.2.8/configure-398-fi
##############################################
logtool-1.2.8/configure-461-  ac_prog=$0
logtool-1.2.8/configure:462:  ac_confdir=`echo $ac_prog|sed 's%/[^/][^/]*$%%'`
logtool-1.2.8/configure-463-  test "x$ac_confdir" = "x$ac_prog" && ac_confdir=.
##############################################
logtool-1.2.8/configure-477-fi
logtool-1.2.8/configure:478:srcdir=`echo "${srcdir}" | sed 's%\([^/]\)/*$%\1%'`
logtool-1.2.8/configure-479-
##############################################
logtool-1.2.8/configure-528-echo "configure:529: checking for $ac_word" >&5
logtool-1.2.8/configure:529:if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
logtool-1.2.8/configure-530-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
logtool-1.2.8/configure-558-echo "configure:559: checking for $ac_word" >&5
logtool-1.2.8/configure:559:if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
logtool-1.2.8/configure-560-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
logtool-1.2.8/configure-609-echo "configure:610: checking for $ac_word" >&5
logtool-1.2.8/configure:610:if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
logtool-1.2.8/configure-611-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
logtool-1.2.8/configure-688-echo "configure:689: checking whether we are using GNU C" >&5
logtool-1.2.8/configure:689:if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then
logtool-1.2.8/configure-690-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
logtool-1.2.8/configure-716-echo "configure:717: checking whether ${CC-cc} accepts -g" >&5
logtool-1.2.8/configure:717:if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then
logtool-1.2.8/configure-718-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
logtool-1.2.8/configure-720-  echo 'void f(){}' > conftest.c
logtool-1.2.8/configure:721:if test -z "`${CC-cc} -g -c conftest.c 2>&1`"; then
logtool-1.2.8/configure-722-  ac_cv_prog_cc_g=yes
##############################################
logtool-1.2.8/configure-749-
logtool-1.2.8/configure:750:if test "`echo "$sysconfdir" | grep "prefix"`" ; then
logtool-1.2.8/configure:751:sysconfdir=`echo $sysconfdir/logtool | sed s/'${prefix}'/""/g`
logtool-1.2.8/configure-752-else
##############################################
logtool-1.2.8/configure-791-if test -z "$INSTALL"; then
logtool-1.2.8/configure:792:if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then
logtool-1.2.8/configure-793-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
logtool-1.2.8/configure-846-echo "configure:847: checking whether ln -s works" >&5
logtool-1.2.8/configure:847:if eval "test \"`echo '$''{'ac_cv_prog_LN_S'+set}'`\" = set"; then
logtool-1.2.8/configure-848-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
logtool-1.2.8/configure-867-echo "configure:868: checking whether ${MAKE-make} sets \${MAKE}" >&5
logtool-1.2.8/configure:868:set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'`
logtool-1.2.8/configure:869:if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then
logtool-1.2.8/configure-870-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
logtool-1.2.8/configure-876-# GNU make sometimes prints "make[1]: Entering...", which would confuse us.
logtool-1.2.8/configure:877:eval `${MAKE-make} -f conftestmake 2>/dev/null | grep temp=`
logtool-1.2.8/configure-878-if test -n "$ac_maketemp"; then
##############################################
logtool-1.2.8/configure-884-fi
logtool-1.2.8/configure:885:if eval "test \"`echo '$ac_cv_prog_make_'${ac_make}_set`\" = yes"; then
logtool-1.2.8/configure-886-  echo "$ac_t""yes" 1>&6
##############################################
logtool-1.2.8/configure-900-if test -z "$CPP"; then
logtool-1.2.8/configure:901:if eval "test \"`echo '$''{'ac_cv_prog_CPP'+set}'`\" = set"; then
logtool-1.2.8/configure-902-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
logtool-1.2.8/configure-916-{ (eval echo configure:917: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
logtool-1.2.8/configure:917:ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
logtool-1.2.8/configure-918-if test -z "$ac_err"; then
##############################################
logtool-1.2.8/configure-933-{ (eval echo configure:934: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
logtool-1.2.8/configure:934:ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
logtool-1.2.8/configure-935-if test -z "$ac_err"; then
##############################################
logtool-1.2.8/configure-950-{ (eval echo configure:951: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
logtool-1.2.8/configure:951:ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
logtool-1.2.8/configure-952-if test -z "$ac_err"; then
##############################################
logtool-1.2.8/configure-975-echo "configure:976: checking for ANSI C header files" >&5
logtool-1.2.8/configure:976:if eval "test \"`echo '$''{'ac_cv_header_stdc'+set}'`\" = set"; then
logtool-1.2.8/configure-977-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
logtool-1.2.8/configure-988-{ (eval echo configure:989: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
logtool-1.2.8/configure:989:ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
logtool-1.2.8/configure-990-if test -z "$ac_err"; then
##############################################
logtool-1.2.8/configure-1082-echo "configure:1083: checking for $ac_func" >&5
logtool-1.2.8/configure:1083:if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
logtool-1.2.8/configure-1084-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
logtool-1.2.8/configure-1121-
logtool-1.2.8/configure:1122:if eval "test \"`echo '$ac_cv_func_'$ac_func`\" = yes"; then
logtool-1.2.8/configure-1123-  echo "$ac_t""yes" 1>&6
logtool-1.2.8/configure:1124:    ac_tr_func=HAVE_`echo $ac_func | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`
logtool-1.2.8/configure-1125-  cat >> confdefs.h <<EOF
##############################################
logtool-1.2.8/configure-1133-ac_lib_var=`echo nsl'_'inet_addr | sed 'y%./+-%__p_%'`
logtool-1.2.8/configure:1134:if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
logtool-1.2.8/configure-1135-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
logtool-1.2.8/configure-1144-    builtin and then its argument prototype would still apply.  */
logtool-1.2.8/configure:1145:char inet_addr();
logtool-1.2.8/configure-1146-
logtool-1.2.8/configure-1147-int main() {
logtool-1.2.8/configure:1148:inet_addr()
logtool-1.2.8/configure-1149-; return 0; }
##############################################
logtool-1.2.8/configure-1163-fi
logtool-1.2.8/configure:1164:if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
logtool-1.2.8/configure-1165-  echo "$ac_t""yes" 1>&6
##############################################
logtool-1.2.8/configure-1174-ac_lib_var=`echo m'_'inet_addr | sed 'y%./+-%__p_%'`
logtool-1.2.8/configure:1175:if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
logtool-1.2.8/configure-1176-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
logtool-1.2.8/configure-1185-    builtin and then its argument prototype would still apply.  */
logtool-1.2.8/configure:1186:char inet_addr();
logtool-1.2.8/configure-1187-
logtool-1.2.8/configure-1188-int main() {
logtool-1.2.8/configure:1189:inet_addr()
logtool-1.2.8/configure-1190-; return 0; }
##############################################
logtool-1.2.8/configure-1204-fi
logtool-1.2.8/configure:1205:if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
logtool-1.2.8/configure-1206-  echo "$ac_t""yes" 1>&6
##############################################
logtool-1.2.8/configure-1233-echo "configure:1234: checking for $ac_func" >&5
logtool-1.2.8/configure:1234:if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
logtool-1.2.8/configure-1235-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
logtool-1.2.8/configure-1272-
logtool-1.2.8/configure:1273:if eval "test \"`echo '$ac_cv_func_'$ac_func`\" = yes"; then
logtool-1.2.8/configure-1274-  echo "$ac_t""yes" 1>&6
logtool-1.2.8/configure:1275:    ac_tr_func=HAVE_`echo $ac_func | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`
logtool-1.2.8/configure-1276-  cat >> confdefs.h <<EOF
##############################################
logtool-1.2.8/configure-1284-ac_lib_var=`echo nsl'_'gethostbyaddr | sed 'y%./+-%__p_%'`
logtool-1.2.8/configure:1285:if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
logtool-1.2.8/configure-1286-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
logtool-1.2.8/configure-1295-    builtin and then its argument prototype would still apply.  */
logtool-1.2.8/configure:1296:char gethostbyaddr();
logtool-1.2.8/configure-1297-
logtool-1.2.8/configure-1298-int main() {
logtool-1.2.8/configure:1299:gethostbyaddr()
logtool-1.2.8/configure-1300-; return 0; }
##############################################
logtool-1.2.8/configure-1314-fi
logtool-1.2.8/configure:1315:if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
logtool-1.2.8/configure-1316-  echo "$ac_t""yes" 1>&6
logtool-1.2.8/configure-1317-  
logtool-1.2.8/configure:1318:                tvar="`echo $LIBS | grep lnsl`"
logtool-1.2.8/configure-1319-                if test "$tavr" != "" ; then
##############################################
logtool-1.2.8/configure-1328-ac_lib_var=`echo m'_'gethostbyaddr | sed 'y%./+-%__p_%'`
logtool-1.2.8/configure:1329:if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
logtool-1.2.8/configure-1330-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
logtool-1.2.8/configure-1339-    builtin and then its argument prototype would still apply.  */
logtool-1.2.8/configure:1340:char gethostbyaddr();
logtool-1.2.8/configure-1341-
logtool-1.2.8/configure-1342-int main() {
logtool-1.2.8/configure:1343:gethostbyaddr()
logtool-1.2.8/configure-1344-; return 0; }
##############################################
logtool-1.2.8/configure-1358-fi
logtool-1.2.8/configure:1359:if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
logtool-1.2.8/configure-1360-  echo "$ac_t""yes" 1>&6
logtool-1.2.8/configure-1361-  
logtool-1.2.8/configure:1362:                        tvar="`echo $LIBS | grep lm`"
logtool-1.2.8/configure-1363-                        if test "$tavr" != "" ; then
##############################################
logtool-1.2.8/configure-1390-do
logtool-1.2.8/configure:1391:ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
logtool-1.2.8/configure-1392-echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
logtool-1.2.8/configure-1393-echo "configure:1394: checking for $ac_hdr" >&5
logtool-1.2.8/configure:1394:if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
logtool-1.2.8/configure-1395-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
logtool-1.2.8/configure-1403-{ (eval echo configure:1404: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
logtool-1.2.8/configure:1404:ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
logtool-1.2.8/configure-1405-if test -z "$ac_err"; then
##############################################
logtool-1.2.8/configure-1416-fi
logtool-1.2.8/configure:1417:if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then
logtool-1.2.8/configure-1418-  echo "$ac_t""yes" 1>&6
logtool-1.2.8/configure:1419:    ac_tr_hdr=HAVE_`echo $ac_hdr | sed 'y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%'`
logtool-1.2.8/configure-1420-  cat >> confdefs.h <<EOF
##############################################
logtool-1.2.8/configure-1434-do
logtool-1.2.8/configure:1435:ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
logtool-1.2.8/configure-1436-echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
logtool-1.2.8/configure-1437-echo "configure:1438: checking for $ac_hdr" >&5
logtool-1.2.8/configure:1438:if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
logtool-1.2.8/configure-1439-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
logtool-1.2.8/configure-1447-{ (eval echo configure:1448: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
logtool-1.2.8/configure:1448:ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
logtool-1.2.8/configure-1449-if test -z "$ac_err"; then
##############################################
logtool-1.2.8/configure-1460-fi
logtool-1.2.8/configure:1461:if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then
logtool-1.2.8/configure-1462-  echo "$ac_t""yes" 1>&6
logtool-1.2.8/configure:1463:    ac_tr_hdr=HAVE_`echo $ac_hdr | sed 'y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%'`
logtool-1.2.8/configure-1464-  cat >> confdefs.h <<EOF
##############################################
logtool-1.2.8/configure-1475-echo "configure:1476: checking for working const" >&5
logtool-1.2.8/configure:1476:if eval "test \"`echo '$''{'ac_cv_c_const'+set}'`\" = set"; then
logtool-1.2.8/configure-1477-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
logtool-1.2.8/configure-1550-echo "configure:1551: checking for size_t" >&5
logtool-1.2.8/configure:1551:if eval "test \"`echo '$''{'ac_cv_type_size_t'+set}'`\" = set"; then
logtool-1.2.8/configure-1552-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
logtool-1.2.8/configure-1586-echo "configure:1587: checking for $ac_func" >&5
logtool-1.2.8/configure:1587:if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
logtool-1.2.8/configure-1588-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
logtool-1.2.8/configure-1625-
logtool-1.2.8/configure:1626:if eval "test \"`echo '$ac_cv_func_'$ac_func`\" = yes"; then
logtool-1.2.8/configure-1627-  echo "$ac_t""yes" 1>&6
logtool-1.2.8/configure:1628:    ac_tr_func=HAVE_`echo $ac_func | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`
logtool-1.2.8/configure-1629-  cat >> confdefs.h <<EOF
##############################################
logtool-1.2.8/configure-1644-echo "configure:1645: checking for $ac_func" >&5
logtool-1.2.8/configure:1645:if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
logtool-1.2.8/configure-1646-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
logtool-1.2.8/configure-1683-
logtool-1.2.8/configure:1684:if eval "test \"`echo '$ac_cv_func_'$ac_func`\" = yes"; then
logtool-1.2.8/configure-1685-  echo "$ac_t""yes" 1>&6
logtool-1.2.8/configure:1686:    ac_tr_func=HAVE_`echo $ac_func | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`
logtool-1.2.8/configure-1687-  cat >> confdefs.h <<EOF
##############################################
logtool-1.2.8/configure-1705-echo "configure:1706: checking for $ac_func" >&5
logtool-1.2.8/configure:1706:if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
logtool-1.2.8/configure-1707-  echo $ac_n "(cached) $ac_c" 1>&6
##############################################
logtool-1.2.8/configure-1744-
logtool-1.2.8/configure:1745:if eval "test \"`echo '$ac_cv_func_'$ac_func`\" = yes"; then
logtool-1.2.8/configure-1746-  echo "$ac_t""yes" 1>&6
logtool-1.2.8/configure:1747:    ac_tr_func=HAVE_`echo $ac_func | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`
logtool-1.2.8/configure-1748-  cat >> confdefs.h <<EOF
##############################################
logtool-1.2.8/configure-1933-    fi
logtool-1.2.8/configure:1934:    ac_file=`expr $ac_file + 1`
logtool-1.2.8/configure-1935-    ac_beg=$ac_end
logtool-1.2.8/configure:1936:    ac_end=`expr $ac_end + $ac_max_sed_cmds`
logtool-1.2.8/configure-1937-  fi
##############################################
logtool-1.2.8/configure-1951-  case "$ac_file" in
logtool-1.2.8/configure:1952:  *:*) ac_file_in=`echo "$ac_file"|sed 's%[^:]*:%%'`
logtool-1.2.8/configure:1953:       ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;;
logtool-1.2.8/configure-1954-  *) ac_file_in="${ac_file}.in" ;;
##############################################
logtool-1.2.8/configure-1959-  # Remove last slash and all that follows it.  Not all systems have dirname.
logtool-1.2.8/configure:1960:  ac_dir=`echo $ac_file|sed 's%/[^/][^/]*$%%'`
logtool-1.2.8/configure-1961-  if test "$ac_dir" != "$ac_file" && test "$ac_dir" != .; then
##############################################
logtool-1.2.8/configure-1963-    test ! -d "$ac_dir" && mkdir "$ac_dir"
logtool-1.2.8/configure:1964:    ac_dir_suffix="/`echo $ac_dir|sed 's%^\./%%'`"
logtool-1.2.8/configure-1965-    # A "../" for each directory in $ac_dir_suffix.
logtool-1.2.8/configure:1966:    ac_dots=`echo $ac_dir_suffix|sed 's%/[^/]*%../%g'`
logtool-1.2.8/configure-1967-  else
##############################################
logtool-1.2.8/configure-1973-      if test -z "$ac_dots"; then top_srcdir=.
logtool-1.2.8/configure:1974:      else top_srcdir=`echo $ac_dots|sed 's%/$%%'`; fi ;;
logtool-1.2.8/configure-1975-  /*) srcdir="$ac_given_srcdir$ac_dir_suffix"; top_srcdir="$ac_given_srcdir" ;;
##############################################
logtool-1.2.8/configure-1987-  rm -f "$ac_file"
logtool-1.2.8/configure:1988:  configure_input="Generated automatically from `echo $ac_file_in|sed 's%.*/%%'` by configure."
logtool-1.2.8/configure-1989-  case "$ac_file" in
##############################################
logtool-1.2.8/configure-1994-
logtool-1.2.8/configure:1995:  ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s%:% $ac_given_srcdir/%g"`
logtool-1.2.8/configure-1996-  sed -e "$ac_comsub
##############################################
logtool-1.2.8/configure-2033-  case "$ac_file" in
logtool-1.2.8/configure:2034:  *:*) ac_file_in=`echo "$ac_file"|sed 's%[^:]*:%%'`
logtool-1.2.8/configure:2035:       ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;;
logtool-1.2.8/configure-2036-  *) ac_file_in="${ac_file}.in" ;;
##############################################
logtool-1.2.8/configure-2041-  rm -f conftest.frag conftest.in conftest.out
logtool-1.2.8/configure:2042:  ac_file_inputs=`echo $ac_file_in|sed -e "s%^%$ac_given_srcdir/%" -e "s%:% $ac_given_srcdir/%g"`
logtool-1.2.8/configure-2043-  cat $ac_file_inputs > conftest.in
##############################################
logtool-1.2.8/configure-2101-    # Remove last slash and all that follows it.  Not all systems have dirname.
logtool-1.2.8/configure:2102:      ac_dir=`echo $ac_file|sed 's%/[^/][^/]*$%%'`
logtool-1.2.8/configure-2103-      if test "$ac_dir" != "$ac_file" && test "$ac_dir" != .; then
##############################################
logtool-1.2.8/missing-89-    else
logtool-1.2.8/missing:90:      files=`echo "$files" | sed -e 's/:/ /g'`
logtool-1.2.8/missing-91-    fi
##############################################
logtool-1.2.8/missing-117-	*.y)
logtool-1.2.8/missing:118:	    SRCFILE=`echo "$LASTARG" | sed 's/y$/c/'`
logtool-1.2.8/missing-119-	    if [ -f "$SRCFILE" ]; then
##############################################
logtool-1.2.8/missing-121-	    fi
logtool-1.2.8/missing:122:	    SRCFILE=`echo "$LASTARG" | sed 's/y$/h/'`
logtool-1.2.8/missing-123-	    if [ -f "$SRCFILE" ]; then
##############################################
logtool-1.2.8/missing-147-	*.l)
logtool-1.2.8/missing:148:	    SRCFILE=`echo "$LASTARG" | sed 's/l$/c/'`
logtool-1.2.8/missing-149-	    if [ -f "$SRCFILE" ]; then
##############################################
logtool-1.2.8/missing-167-         the \`GNU make' package.  Grab either from any GNU archive site."
logtool-1.2.8/missing:168:    file=`echo "$*" | sed -n 's/.*-o \([^ ]*\).*/\1/p'`
logtool-1.2.8/missing-169-    if test -z "$file"; then
logtool-1.2.8/missing:170:      file=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'`
logtool-1.2.8/missing:171:      file=`sed -n '/^@setfilename/ { s/.* \([^ ]*\) *$/\1/; p; q; }' $file`
logtool-1.2.8/missing-172-    fi
##############################################
logtool-1.2.8/configure.in-10-AC_SUBST(sysconfdir)
logtool-1.2.8/configure.in:11:if test "`echo "$sysconfdir" | grep "prefix"`" ; then
logtool-1.2.8/configure.in:12:sysconfdir=`echo $sysconfdir/logtool | sed s/'${prefix}'/""/g`
logtool-1.2.8/configure.in-13-else
##############################################
logtool-1.2.8/configure.in-54-        [
logtool-1.2.8/configure.in:55:                tvar="`echo $LIBS | grep lnsl`"
logtool-1.2.8/configure.in-56-                if test "$tavr" != "" ; then
##############################################
logtool-1.2.8/configure.in-62-                [
logtool-1.2.8/configure.in:63:                        tvar="`echo $LIBS | grep lm`"
logtool-1.2.8/configure.in-64-                        if test "$tavr" != "" ; then
##############################################
logtool-1.2.8/install-sh-234-      fi
logtool-1.2.8/install-sh:235:      cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;;
logtool-1.2.8/install-sh-236-    *)
##############################################
logtool-1.2.8/install-sh-281-      dstdir=$dst
logtool-1.2.8/install-sh:282:      dst=$dstdir/`basename "$src"`
logtool-1.2.8/install-sh-283-      dstdir_status=0
logtool-1.2.8/install-sh-284-    else
logtool-1.2.8/install-sh:285:      dstdir=`dirname "$dst"`
logtool-1.2.8/install-sh-286-      test -d "$dstdir"
##############################################
logtool-1.2.8/install-sh-344-                   test_tmpdir="$tmpdir/a"
logtool-1.2.8/install-sh:345:                   ls_ld_tmpdir=`ls -ld "$test_tmpdir"`
logtool-1.2.8/install-sh-346-                   case $ls_ld_tmpdir in
##############################################
logtool-1.2.8/install-sh-351-                   $mkdirprog -m$different_mode -p -- "$test_tmpdir" && {
logtool-1.2.8/install-sh:352:                     ls_ld_tmpdir_1=`ls -ld "$test_tmpdir"`
logtool-1.2.8/install-sh-353-                     test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1"
##############################################
logtool-1.2.8/install-sh-409-            case $prefix in
logtool-1.2.8/install-sh:410:              *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;;
logtool-1.2.8/install-sh-411-              *) qprefix=$prefix;;
##############################################
logtool-1.2.8/install-sh-458-    if $copy_on_change &&
logtool-1.2.8/install-sh:459:       old=`LC_ALL=C ls -dlL "$dst"     2>/dev/null` &&
logtool-1.2.8/install-sh:460:       new=`LC_ALL=C ls -dlL "$dsttmp"  2>/dev/null` &&
logtool-1.2.8/install-sh-461-       set -f &&