===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
nagios4-4.4.6/autoconf-macros/add_group_user-27-	case $dist in
nagios4-4.4.6/autoconf-macros/add_group_user:28:		osx)	rc=`dscl . -read /Groups/$gid >/dev/null 2>&1; echo $?`	;;
nagios4-4.4.6/autoconf-macros/add_group_user:29:		hpux)	rc=`grget -n $gid >/dev/null 2>&1; echo $?`	;;
nagios4-4.4.6/autoconf-macros/add_group_user:30:		aix)	rc=`lsgroup -a $gid >/dev/null 2>&1; echo $?`	;;
nagios4-4.4.6/autoconf-macros/add_group_user:31:		*)		rc=`getent group $gid > /dev/null 2>&1; echo $?`	;;
nagios4-4.4.6/autoconf-macros/add_group_user-32-	esac
##############################################
nagios4-4.4.6/autoconf-macros/add_group_user-40-add_user(){
nagios4-4.4.6/autoconf-macros/add_group_user:41:	rc=`id "$uid" > /dev/null 2>&1; echo $?`
nagios4-4.4.6/autoconf-macros/add_group_user-42-	if test $rc -eq 0; then
##############################################
nagios4-4.4.6/autoconf-macros/add_group_user-50-			echo useradd -g $gid $uid > /dev/stderr
nagios4-4.4.6/autoconf-macros/add_group_user:51:			rc=`useradd -g $gid $uid; echo $?`
nagios4-4.4.6/autoconf-macros/add_group_user-52-			;;
##############################################
nagios4-4.4.6/autoconf-macros/add_group_user-55-			echo useradd -m -g $gid $uid > /dev/stderr
nagios4-4.4.6/autoconf-macros/add_group_user:56:			rc=`useradd -m -g $gid $uid; echo $?`
nagios4-4.4.6/autoconf-macros/add_group_user-57-			;;
##############################################
nagios4-4.4.6/autoconf-macros/add_group_user-60-			echo useradd -m -d /export/home/$uid -g $gid $uid > /dev/stderr
nagios4-4.4.6/autoconf-macros/add_group_user:61:			rc=`useradd -m -d /export/home/$uid -g $gid $uid; echo $?`
nagios4-4.4.6/autoconf-macros/add_group_user-62-			;;
##############################################
nagios4-4.4.6/autoconf-macros/add_group_user-65-			newid=`dscl . -list /Users UniqueID | tr -s ' ' | cut -d' ' -f2 | sort -n | tail -1`
nagios4-4.4.6/autoconf-macros/add_group_user:66:			newid=`expr 1 + $newid`
nagios4-4.4.6/autoconf-macros/add_group_user-67-			echo dscl . -create /Users/$uid > /dev/stderr
##############################################
nagios4-4.4.6/autoconf-macros/add_group_user-77-			echo dscl . -append /Groups/$gid GroupMembership $uid > /dev/stderr
nagios4-4.4.6/autoconf-macros/add_group_user:78:			rc=`dscl . -append /Groups/$gid GroupMembership $uid; echo $?`
nagios4-4.4.6/autoconf-macros/add_group_user-79-			;;
##############################################
nagios4-4.4.6/autoconf-macros/add_group_user-83-				echo pw add user $uid -g $gid -s /usr/bin/false > /dev/stderr
nagios4-4.4.6/autoconf-macros/add_group_user:84:				rc=`pw add user $uid -g $gid -s /usr/bin/false; echo $?`
nagios4-4.4.6/autoconf-macros/add_group_user-85-			else
nagios4-4.4.6/autoconf-macros/add_group_user-86-				echo pw add user $uid -g $gid > /dev/stderr
nagios4-4.4.6/autoconf-macros/add_group_user:87:				rc=`pw add user $uid -g $gid; echo $?`
nagios4-4.4.6/autoconf-macros/add_group_user-88-			fi
##############################################
nagios4-4.4.6/autoconf-macros/add_group_user-92-			echo useradd -g $gid $uid > /dev/stderr
nagios4-4.4.6/autoconf-macros/add_group_user:93:			rc=`useradd -g $gid $uid; echo $?`
nagios4-4.4.6/autoconf-macros/add_group_user-94-			;;
##############################################
nagios4-4.4.6/autoconf-macros/add_group_user-98-				echo useradd -r -g $gid $uid > /dev/stderr
nagios4-4.4.6/autoconf-macros/add_group_user:99:				rc=`useradd -r -g $gid $uid; echo $?`
nagios4-4.4.6/autoconf-macros/add_group_user-100-			else
nagios4-4.4.6/autoconf-macros/add_group_user-101-				echo useradd -g $gid $uid > /dev/stderr
nagios4-4.4.6/autoconf-macros/add_group_user:102:				rc=`useradd -g $gid $uid; echo $?`
nagios4-4.4.6/autoconf-macros/add_group_user-103-			fi
##############################################
nagios4-4.4.6/autoconf-macros/add_group_user-123-			echo mkgroup $gid > /dev/stderr
nagios4-4.4.6/autoconf-macros/add_group_user:124:			rc=`mkgroup "$gid"; echo $?`
nagios4-4.4.6/autoconf-macros/add_group_user-125-			;;
##############################################
nagios4-4.4.6/autoconf-macros/add_group_user-128-			echo groupadd $gid > /dev/stderr
nagios4-4.4.6/autoconf-macros/add_group_user:129:			rc=`groupadd "$gid"; echo $?`
nagios4-4.4.6/autoconf-macros/add_group_user-130-			;;
##############################################
nagios4-4.4.6/autoconf-macros/add_group_user-133-			newid=`dscl . -list /Groups gid | tr -s ' ' | cut -d' ' -f2 | sort -n | tail -1`
nagios4-4.4.6/autoconf-macros/add_group_user:134:			newid=`expr 1 + $newid`
nagios4-4.4.6/autoconf-macros/add_group_user-135-			echo dscl . -create /Groups/$gid gid $newid > /dev/stderr
nagios4-4.4.6/autoconf-macros/add_group_user:136:			rc=`dscl . -create /Groups/$gid gid $newid; echo $?`
nagios4-4.4.6/autoconf-macros/add_group_user-137-			;;
##############################################
nagios4-4.4.6/autoconf-macros/add_group_user-140-			echo pw add group $gid > /dev/stderr
nagios4-4.4.6/autoconf-macros/add_group_user:141:			rc=`pw add group $gid; echo $?`
nagios4-4.4.6/autoconf-macros/add_group_user-142-			;;
##############################################
nagios4-4.4.6/autoconf-macros/add_group_user-145-			echo groupadd $gid > /dev/stderr
nagios4-4.4.6/autoconf-macros/add_group_user:146:			rc=`groupadd $gid; echo $?`
nagios4-4.4.6/autoconf-macros/add_group_user-147-			;;
##############################################
nagios4-4.4.6/autoconf-macros/add_group_user-150-			echo groupadd -r $gid > /dev/stderr
nagios4-4.4.6/autoconf-macros/add_group_user:151:			rc=`groupadd -r $gid; echo $?`
nagios4-4.4.6/autoconf-macros/add_group_user-152-			;;
##############################################
nagios4-4.4.6/autoconf-macros/ax_nagios_get_distrib-117-					if test x"$ID_LIKE" != x; then
nagios4-4.4.6/autoconf-macros/ax_nagios_get_distrib:118:						dist_type=`echo $ID_LIKE | cut -d' ' -f1 | tr ["[A-Z]" "[a-z]"]`
nagios4-4.4.6/autoconf-macros/ax_nagios_get_distrib-119-					elif test x"$ID" = xol; then
##############################################
nagios4-4.4.6/autoconf-macros/ax_nagios_get_distrib-121-					else
nagios4-4.4.6/autoconf-macros/ax_nagios_get_distrib:122:						dist_type=`echo $ID | tr ["[A-Z]" "[a-z]"]`
nagios4-4.4.6/autoconf-macros/ax_nagios_get_distrib-123-					fi
##############################################
nagios4-4.4.6/autoconf-macros/ax_nagios_get_distrib-129-					elif test x"$VERSION" != x; then
nagios4-4.4.6/autoconf-macros/ax_nagios_get_distrib:130:						dist_ver=`echo $VERSION | cut -d'.' -f1 | tr -d [:alpha:][:blank:][:punct:]`
nagios4-4.4.6/autoconf-macros/ax_nagios_get_distrib-131-					fi
##############################################
nagios4-4.4.6/autoconf-macros/ax_nagios_get_distrib-140-						. /etc/lsb-release
nagios4-4.4.6/autoconf-macros/ax_nagios_get_distrib:141:						dist_ver=`echo "$DISTRIB_RELEASE"`
nagios4-4.4.6/autoconf-macros/ax_nagios_get_distrib-142-					else
##############################################
nagios4-4.4.6/autoconf-macros/ax_nagios_get_distrib-154-			if test "$dist_ver" != "unknown"; then
nagios4-4.4.6/autoconf-macros/ax_nagios_get_distrib:155:				dist_ver=`echo "$dist_ver" | cut -d'.' -f1 | tr -d [:alpha:][:blank:][:punct:]`
nagios4-4.4.6/autoconf-macros/ax_nagios_get_distrib-156-			fi
##############################################
nagios4-4.4.6/autoconf-macros/ax_nagios_get_init-136-		if test "$init_type_wanted" = yes; then
nagios4-4.4.6/autoconf-macros/ax_nagios_get_init:137:			pid1=`$PSCMD | grep -vi COMMAND | cut -d' ' -f1`
nagios4-4.4.6/autoconf-macros/ax_nagios_get_init-138-			if test x"$pid1" = "x"; then
##############################################
nagios4-4.4.6/autoconf-macros/ax_nagios_get_init-141-			fi
nagios4-4.4.6/autoconf-macros/ax_nagios_get_init:142:			if `echo $pid1 | grep "systemd" > /dev/null`; then
nagios4-4.4.6/autoconf-macros/ax_nagios_get_init-143-				init_type="systemd"
##############################################
nagios4-4.4.6/autoconf-macros/ax_nagios_get_init-158-				if test -L "$pid1"; then
nagios4-4.4.6/autoconf-macros/ax_nagios_get_init:159:					pid1=`readlink "$pid1"`
nagios4-4.4.6/autoconf-macros/ax_nagios_get_init-160-				fi
##############################################
nagios4-4.4.6/autoconf-macros/ax_nagios_get_init-163-			if test "$init_type_wanted" = yes; then
nagios4-4.4.6/autoconf-macros/ax_nagios_get_init:164:				if `echo $pid1 | grep "systemd" > /dev/null`; then
nagios4-4.4.6/autoconf-macros/ax_nagios_get_init-165-					init_type="systemd"
##############################################
nagios4-4.4.6/autoconf-macros/ax_nagios_get_init-180-				if test "$pid1" = "/sbin/init" -o "$pid1" = "/usr/sbin/init"; then
nagios4-4.4.6/autoconf-macros/ax_nagios_get_init:181:					if `$pid1 --version 2>/dev/null | grep "upstart" >/dev/null`; then
nagios4-4.4.6/autoconf-macros/ax_nagios_get_init-182-						init_type="upstart"
##############################################
nagios4-4.4.6/autoconf-macros/ax_nagios_get_ssl-119-	[yes|openssl],
nagios4-4.4.6/autoconf-macros/ax_nagios_get_ssl:120:		[ssl_hdr_dirs=`echo "$dflt_hdrs" | sed -e 's/{AAA}/ssl/g' | sed -e 's/{BBB}/openssl/g'`
nagios4-4.4.6/autoconf-macros/ax_nagios_get_ssl:121:		 ssl_lib_dirs=`echo "$dflt_libs" | sed -e 's/{AAA}/ssl/g' | sed -e 's/{BBB}/openssl/g'`
nagios4-4.4.6/autoconf-macros/ax_nagios_get_ssl-122-		 SSL_INC_PREFIX=openssl
##############################################
nagios4-4.4.6/autoconf-macros/ax_nagios_get_ssl-125-	[gnutls],
nagios4-4.4.6/autoconf-macros/ax_nagios_get_ssl:126:		[ssl_hdr_dirs=`echo "$dflt_hdrs" | sed -e 's/{AAA}/gnutls/g' | sed -e 's/{BBB}/gnutls/g'`
nagios4-4.4.6/autoconf-macros/ax_nagios_get_ssl:127:		 ssl_lib_dirs=`echo "$dflt_libs" | sed -e 's/{AAA}/gnutls/g' | sed -e 's/{BBB}/gnutls/g'`
nagios4-4.4.6/autoconf-macros/ax_nagios_get_ssl-128-		 SSL_INC_PREFIX=gnutls
##############################################
nagios4-4.4.6/autoconf-macros/ax_nagios_get_ssl-132-	[nss],
nagios4-4.4.6/autoconf-macros/ax_nagios_get_ssl:133:		[ssl_hdr_dirs=`echo "$dflt_hdrs" | sed -e 's/{AAA}/nss_compat_ossl/g' | sed -e 's/{BBB}/nss_compat_ossl/g'`
nagios4-4.4.6/autoconf-macros/ax_nagios_get_ssl:134:		 ssl_lib_dirs=`echo "$dflt_libs" | sed -e 's/{AAA}/nss_compat_ossl/g' | sed -e 's/{BBB}/nss_compat_ossl/g'`
nagios4-4.4.6/autoconf-macros/ax_nagios_get_ssl-135-		 SSL_HDR=nss_compat_ossl.h
##############################################
nagios4-4.4.6/autoconf-macros/ax_nagios_get_ssl-171-	if test x"$PKG_CONFIG" != x -a $try_pkg_config -ne 0 ; then
nagios4-4.4.6/autoconf-macros/ax_nagios_get_ssl:172:		cflags=`$PKG_CONFIG $SSL_TYPE --cflags-only-I 2>/dev/null`
nagios4-4.4.6/autoconf-macros/ax_nagios_get_ssl-173-		if test $? -eq 0; then
nagios4-4.4.6/autoconf-macros/ax_nagios_get_ssl-174-			CFLAGS="$CFLAGS $cflags"
nagios4-4.4.6/autoconf-macros/ax_nagios_get_ssl:175:			LDFLAGS="$LDFLAGS `$PKG_CONFIG $SSL_TYPE --libs-only-L 2>/dev/null`"
nagios4-4.4.6/autoconf-macros/ax_nagios_get_ssl:176:			LIBS="$LIBS `$PKG_CONFIG $SSL_TYPE --libs-only-l 2>/dev/null`"
nagios4-4.4.6/autoconf-macros/ax_nagios_get_ssl-177-			found_ssl=yes
##############################################
nagios4-4.4.6/autoconf-macros/ax_nagios_get_ssl-230-			found_ssl=no
nagios4-4.4.6/autoconf-macros/ax_nagios_get_ssl:231:			ssl_lib_dirs=`echo "$ssl_lib_dirs" | sed -e "s|{ssldir}|$ssldir|g"`
nagios4-4.4.6/autoconf-macros/ax_nagios_get_ssl-232-
##############################################
nagios4-4.4.6/autoconf-macros/ax_nagios_get_ssl-260-				LDFLAGS="$LDFLAGS -L$SSL_LIB_DIR";
nagios4-4.4.6/autoconf-macros/ax_nagios_get_ssl:261:				LIBS="$LIBS -l`echo $ssl_lib | sed -e 's/^lib//'` -lcrypto";
nagios4-4.4.6/autoconf-macros/ax_nagios_get_ssl-262-				AC_DEFINE_UNQUOTED(HAVE_SSL,[1],[Have SSL support])
##############################################
nagios4-4.4.6/config.guess-34-
nagios4-4.4.6/config.guess:35:me=`echo "$0" | sed -e 's,.*/,,'`
nagios4-4.4.6/config.guess-36-
##############################################
nagios4-4.4.6/config.guess-102-: ${TMPDIR=/tmp} ;
nagios4-4.4.6/config.guess:103: { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } ||
nagios4-4.4.6/config.guess-104- { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } ||
##############################################
nagios4-4.4.6/config.guess-151-	EOF
nagios4-4.4.6/config.guess:152:	eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC' | sed 's, ,,g'`
nagios4-4.4.6/config.guess-153-	;;
##############################################
nagios4-4.4.6/config.guess-181-	    earmv*)
nagios4-4.4.6/config.guess:182:		arch=`echo ${UNAME_MACHINE_ARCH} | sed -e 's,^e\(armv[0-9]\).*$,\1,'`
nagios4-4.4.6/config.guess:183:		endian=`echo ${UNAME_MACHINE_ARCH} | sed -ne 's,^.*\(eb\)$,\1,p'`
nagios4-4.4.6/config.guess-184-		machine=${arch}${endian}-unknown
##############################################
nagios4-4.4.6/config.guess-213-		expr='s/^earmv[0-9]/-eabi/;s/eb$//'
nagios4-4.4.6/config.guess:214:		abi=`echo ${UNAME_MACHINE_ARCH} | sed -e "$expr"`
nagios4-4.4.6/config.guess-215-		;;
##############################################
nagios4-4.4.6/config.guess-226-	    *)
nagios4-4.4.6/config.guess:227:		release=`echo ${UNAME_RELEASE} | sed -e 's/[-_].*//' | cut -d. -f1,2`
nagios4-4.4.6/config.guess-228-		;;
##############################################
nagios4-4.4.6/config.guess-264-	*4.0)
nagios4-4.4.6/config.guess:265:		UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'`
nagios4-4.4.6/config.guess-266-		;;
nagios4-4.4.6/config.guess-267-	*5.*)
nagios4-4.4.6/config.guess:268:		UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'`
nagios4-4.4.6/config.guess-269-		;;
##############################################
nagios4-4.4.6/config.guess-274-	# types through head -n 1, so we only detect the type of CPU 0.
nagios4-4.4.6/config.guess:275:	ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^  The alpha \(.*\) processor.*$/\1/p' | head -n 1`
nagios4-4.4.6/config.guess-276-	case "$ALPHA_CPU_TYPE" in
##############################################
nagios4-4.4.6/config.guess-312-	# 1.2 uses "1.2" for uname -r.
nagios4-4.4.6/config.guess:313:	echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz`
nagios4-4.4.6/config.guess-314-	# Reset EXIT trap before exiting to avoid spurious non-zero exit code.
##############################################
nagios4-4.4.6/config.guess-372-    s390x:SunOS:*:*)
nagios4-4.4.6/config.guess:373:	echo ${UNAME_MACHINE}-ibm-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
nagios4-4.4.6/config.guess-374-	exit ;;
nagios4-4.4.6/config.guess-375-    sun4H:SunOS:5.*:*)
nagios4-4.4.6/config.guess:376:	echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
nagios4-4.4.6/config.guess-377-	exit ;;
nagios4-4.4.6/config.guess-378-    sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*)
nagios4-4.4.6/config.guess:379:	echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
nagios4-4.4.6/config.guess-380-	exit ;;
##############################################
nagios4-4.4.6/config.guess-397-	fi
nagios4-4.4.6/config.guess:398:	echo ${SUN_ARCH}-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
nagios4-4.4.6/config.guess-399-	exit ;;
##############################################
nagios4-4.4.6/config.guess-403-	# it's likely to be more like Solaris than SunOS4.
nagios4-4.4.6/config.guess:404:	echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
nagios4-4.4.6/config.guess-405-	exit ;;
##############################################
nagios4-4.4.6/config.guess-412-	# Japanese Language versions have a version number like `4.1.3-JL'.
nagios4-4.4.6/config.guess:413:	echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'`
nagios4-4.4.6/config.guess-414-	exit ;;
##############################################
nagios4-4.4.6/config.guess-418-    sun*:*:4.2BSD:*)
nagios4-4.4.6/config.guess:419:	UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null`
nagios4-4.4.6/config.guess-420-	test "x${UNAME_RELEASE}" = x && UNAME_RELEASE=3
##############################################
nagios4-4.4.6/config.guess-500-	$CC_FOR_BUILD -o $dummy $dummy.c &&
nagios4-4.4.6/config.guess:501:	  dummyarg=`echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` &&
nagios4-4.4.6/config.guess:502:	  SYSTEM_NAME=`$dummy $dummyarg` &&
nagios4-4.4.6/config.guess-503-	    { echo "$SYSTEM_NAME"; exit; }
##############################################
nagios4-4.4.6/config.guess-556-    *:IRIX*:*:*)
nagios4-4.4.6/config.guess:557:	echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'`
nagios4-4.4.6/config.guess-558-	exit ;;
##############################################
nagios4-4.4.6/config.guess-586-EOF
nagios4-4.4.6/config.guess:587:		if $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy`
nagios4-4.4.6/config.guess-588-		then
##############################################
nagios4-4.4.6/config.guess-599-    *:AIX:*:[4567])
nagios4-4.4.6/config.guess:600:	IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'`
nagios4-4.4.6/config.guess-601-	if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then
##############################################
nagios4-4.4.6/config.guess-635-    9000/[34678]??:HP-UX:*:*)
nagios4-4.4.6/config.guess:636:	HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'`
nagios4-4.4.6/config.guess-637-	case "${UNAME_MACHINE}" in
##############################################
nagios4-4.4.6/config.guess-689-EOF
nagios4-4.4.6/config.guess:690:		    (CCOPTS="" $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy`
nagios4-4.4.6/config.guess-691-		    test -z "$HP_ARCH" && HP_ARCH=hppa
##############################################
nagios4-4.4.6/config.guess-717-    ia64:HP-UX:*:*)
nagios4-4.4.6/config.guess:718:	HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'`
nagios4-4.4.6/config.guess-719-	echo ia64-hp-hpux${HPUX_REV}
##############################################
nagios4-4.4.6/config.guess-747-EOF
nagios4-4.4.6/config.guess:748:	$CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` &&
nagios4-4.4.6/config.guess-749-		{ echo "$SYSTEM_NAME"; exit; }
##############################################
nagios4-4.4.6/config.guess-818-	FUJITSU_SYS=`uname -p | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/\///'`
nagios4-4.4.6/config.guess:819:	FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'`
nagios4-4.4.6/config.guess-820-	echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}"
##############################################
nagios4-4.4.6/config.guess-823-	FUJITSU_SYS=`uname -p | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/\///'`
nagios4-4.4.6/config.guess:824:	FUJITSU_REL=`echo ${UNAME_RELEASE} | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/ /_/'`
nagios4-4.4.6/config.guess-825-	echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}"
##############################################
nagios4-4.4.6/config.guess-839-	    amd64)
nagios4-4.4.6/config.guess:840:		echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;;
nagios4-4.4.6/config.guess-841-	    *)
nagios4-4.4.6/config.guess:842:		echo ${UNAME_PROCESSOR}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;;
nagios4-4.4.6/config.guess-843-	esac
##############################################
nagios4-4.4.6/config.guess-897-    prep*:SunOS:5.*:*)
nagios4-4.4.6/config.guess:898:	echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
nagios4-4.4.6/config.guess-899-	exit ;;
##############################################
nagios4-4.4.6/config.guess-901-	# the GNU system
nagios4-4.4.6/config.guess:902:	echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-${LIBC}`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'`
nagios4-4.4.6/config.guess-903-	exit ;;
##############################################
nagios4-4.4.6/config.guess-905-	# other systems with GNU libc and userland
nagios4-4.4.6/config.guess:906:	echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr "[:upper:]" "[:lower:]"``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-${LIBC}
nagios4-4.4.6/config.guess-907-	exit ;;
##############################################
nagios4-4.4.6/config.guess-999-EOF
nagios4-4.4.6/config.guess:1000:	eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'`
nagios4-4.4.6/config.guess-1001-	test x"${CPU}" != x && { echo "${CPU}-unknown-linux-${LIBC}"; exit; }
##############################################
nagios4-4.4.6/config.guess-1093-    i*86:*:4.*:* | i*86:SYSTEM_V:4.*:*)
nagios4-4.4.6/config.guess:1094:	UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'`
nagios4-4.4.6/config.guess-1095-	if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then
##############################################
nagios4-4.4.6/config.guess-1296-	fi
nagios4-4.4.6/config.guess:1297:	if test `echo "$UNAME_RELEASE" | sed -e 's/\..*//'` -le 10 ; then
nagios4-4.4.6/config.guess-1298-	    if [ "$CC_FOR_BUILD" != no_compiler_found ]; then
##############################################
nagios4-4.4.6/config.guess-1381-    *:DragonFly:*:*)
nagios4-4.4.6/config.guess:1382:	echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`
nagios4-4.4.6/config.guess-1383-	exit ;;
##############################################
nagios4-4.4.6/config.guess-1394-    i*86:skyos:*:*)
nagios4-4.4.6/config.guess:1395:	echo ${UNAME_MACHINE}-pc-skyos`echo ${UNAME_RELEASE} | sed -e 's/ .*$//'`
nagios4-4.4.6/config.guess-1396-	exit ;;
##############################################
nagios4-4.4.6/config.sub-52-
nagios4-4.4.6/config.sub:53:me=`echo "$0" | sed -e 's,.*/,,'`
nagios4-4.4.6/config.sub-54-
##############################################
nagios4-4.4.6/config.sub-114-# Here we must recognize all the valid KERNEL-OS combinations.
nagios4-4.4.6/config.sub:115:maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'`
nagios4-4.4.6/config.sub-116-case $maybe_os in
##############################################
nagios4-4.4.6/config.sub-122-    os=-$maybe_os
nagios4-4.4.6/config.sub:123:    basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`
nagios4-4.4.6/config.sub-124-    ;;
##############################################
nagios4-4.4.6/config.sub-126-    os=-linux-android
nagios4-4.4.6/config.sub:127:    basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`-unknown
nagios4-4.4.6/config.sub-128-    ;;
nagios4-4.4.6/config.sub-129-  *)
nagios4-4.4.6/config.sub:130:    basic_machine=`echo $1 | sed 's/-[^-]*$//'`
nagios4-4.4.6/config.sub-131-    if [ $basic_machine != $1 ]
nagios4-4.4.6/config.sub:132:    then os=`echo $1 | sed 's/.*-/-/'`
nagios4-4.4.6/config.sub-133-    else os=; fi
##############################################
nagios4-4.4.6/config.sub-180-		os=-sco5v6
nagios4-4.4.6/config.sub:181:		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
nagios4-4.4.6/config.sub-182-		;;
##############################################
nagios4-4.4.6/config.sub-184-		os=-sco3.2v5
nagios4-4.4.6/config.sub:185:		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
nagios4-4.4.6/config.sub-186-		;;
##############################################
nagios4-4.4.6/config.sub-188-		os=-sco3.2v4
nagios4-4.4.6/config.sub:189:		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
nagios4-4.4.6/config.sub-190-		;;
nagios4-4.4.6/config.sub-191-	-sco3.2.[4-9]*)
nagios4-4.4.6/config.sub:192:		os=`echo $os | sed -e 's/sco3.2./sco3.2v/'`
nagios4-4.4.6/config.sub:193:		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
nagios4-4.4.6/config.sub-194-		;;
##############################################
nagios4-4.4.6/config.sub-196-		# Don't forget version if it is 3.2v4 or newer.
nagios4-4.4.6/config.sub:197:		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
nagios4-4.4.6/config.sub-198-		;;
##############################################
nagios4-4.4.6/config.sub-200-		# Don't forget version if it is 3.2v4 or newer.
nagios4-4.4.6/config.sub:201:		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
nagios4-4.4.6/config.sub-202-		;;
##############################################
nagios4-4.4.6/config.sub-204-		os=-sco3.2v2
nagios4-4.4.6/config.sub:205:		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
nagios4-4.4.6/config.sub-206-		;;
nagios4-4.4.6/config.sub-207-	-udk*)
nagios4-4.4.6/config.sub:208:		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
nagios4-4.4.6/config.sub-209-		;;
##############################################
nagios4-4.4.6/config.sub-211-		os=-isc2.2
nagios4-4.4.6/config.sub:212:		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
nagios4-4.4.6/config.sub-213-		;;
##############################################
nagios4-4.4.6/config.sub-217-	-isc*)
nagios4-4.4.6/config.sub:218:		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
nagios4-4.4.6/config.sub-219-		;;
##############################################
nagios4-4.4.6/config.sub-229-	-ptx*)
nagios4-4.4.6/config.sub:230:		basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'`
nagios4-4.4.6/config.sub-231-		;;
nagios4-4.4.6/config.sub-232-	-windowsnt*)
nagios4-4.4.6/config.sub:233:		os=`echo $os | sed -e 's/windowsnt/winnt/'`
nagios4-4.4.6/config.sub-234-		;;
##############################################
nagios4-4.4.6/config.sub-366-	*-*-*)
nagios4-4.4.6/config.sub:367:		echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2
nagios4-4.4.6/config.sub-368-		exit 1
##############################################
nagios4-4.4.6/config.sub-493-	amd64-*)
nagios4-4.4.6/config.sub:494:		basic_machine=x86_64-`echo $basic_machine | sed 's/^[^-]*-//'`
nagios4-4.4.6/config.sub-495-		;;
##############################################
nagios4-4.4.6/config.sub-538-	blackfin-*)
nagios4-4.4.6/config.sub:539:		basic_machine=bfin-`echo $basic_machine | sed 's/^[^-]*-//'`
nagios4-4.4.6/config.sub-540-		os=-linux
##############################################
nagios4-4.4.6/config.sub-546-	c54x-*)
nagios4-4.4.6/config.sub:547:		basic_machine=tic54x-`echo $basic_machine | sed 's/^[^-]*-//'`
nagios4-4.4.6/config.sub-548-		;;
nagios4-4.4.6/config.sub-549-	c55x-*)
nagios4-4.4.6/config.sub:550:		basic_machine=tic55x-`echo $basic_machine | sed 's/^[^-]*-//'`
nagios4-4.4.6/config.sub-551-		;;
nagios4-4.4.6/config.sub-552-	c6x-*)
nagios4-4.4.6/config.sub:553:		basic_machine=tic6x-`echo $basic_machine | sed 's/^[^-]*-//'`
nagios4-4.4.6/config.sub-554-		;;
##############################################
nagios4-4.4.6/config.sub-650-	e500v[12]-*)
nagios4-4.4.6/config.sub:651:		basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'`
nagios4-4.4.6/config.sub-652-		os=$os"spe"
##############################################
nagios4-4.4.6/config.sub-757-	i*86v32)
nagios4-4.4.6/config.sub:758:		basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
nagios4-4.4.6/config.sub-759-		os=-sysv32
##############################################
nagios4-4.4.6/config.sub-761-	i*86v4*)
nagios4-4.4.6/config.sub:762:		basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
nagios4-4.4.6/config.sub-763-		os=-sysv4
##############################################
nagios4-4.4.6/config.sub-765-	i*86v)
nagios4-4.4.6/config.sub:766:		basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
nagios4-4.4.6/config.sub-767-		os=-sysv
##############################################
nagios4-4.4.6/config.sub-769-	i*86sol2)
nagios4-4.4.6/config.sub:770:		basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
nagios4-4.4.6/config.sub-771-		os=-solaris2
##############################################
nagios4-4.4.6/config.sub-795-	leon-*|leon[3-9]-*)
nagios4-4.4.6/config.sub:796:		basic_machine=sparc-`echo $basic_machine | sed 's/-.*//'`
nagios4-4.4.6/config.sub-797-		;;
##############################################
nagios4-4.4.6/config.sub-802-	m68knommu-*)
nagios4-4.4.6/config.sub:803:		basic_machine=m68k-`echo $basic_machine | sed 's/^[^-]*-//'`
nagios4-4.4.6/config.sub-804-		os=-linux
##############################################
nagios4-4.4.6/config.sub-839-	mips3*-*)
nagios4-4.4.6/config.sub:840:		basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`
nagios4-4.4.6/config.sub-841-		;;
nagios4-4.4.6/config.sub-842-	mips3*)
nagios4-4.4.6/config.sub:843:		basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown
nagios4-4.4.6/config.sub-844-		;;
##############################################
nagios4-4.4.6/config.sub-861-	ms1-*)
nagios4-4.4.6/config.sub:862:		basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'`
nagios4-4.4.6/config.sub-863-		;;
##############################################
nagios4-4.4.6/config.sub-980-	parisc-*)
nagios4-4.4.6/config.sub:981:		basic_machine=hppa-`echo $basic_machine | sed 's/^[^-]*-//'`
nagios4-4.4.6/config.sub-982-		os=-linux
##############################################
nagios4-4.4.6/config.sub-996-	pc98-*)
nagios4-4.4.6/config.sub:997:		basic_machine=i386-`echo $basic_machine | sed 's/^[^-]*-//'`
nagios4-4.4.6/config.sub-998-		;;
##############################################
nagios4-4.4.6/config.sub-1011-	pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*)
nagios4-4.4.6/config.sub:1012:		basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'`
nagios4-4.4.6/config.sub-1013-		;;
nagios4-4.4.6/config.sub-1014-	pentiumpro-* | p6-* | 6x86-* | athlon-*)
nagios4-4.4.6/config.sub:1015:		basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'`
nagios4-4.4.6/config.sub-1016-		;;
nagios4-4.4.6/config.sub-1017-	pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*)
nagios4-4.4.6/config.sub:1018:		basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'`
nagios4-4.4.6/config.sub-1019-		;;
nagios4-4.4.6/config.sub-1020-	pentium4-*)
nagios4-4.4.6/config.sub:1021:		basic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'`
nagios4-4.4.6/config.sub-1022-		;;
##############################################
nagios4-4.4.6/config.sub-1030-	ppc-* | ppcbe-*)
nagios4-4.4.6/config.sub:1031:		basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'`
nagios4-4.4.6/config.sub-1032-		;;
##############################################
nagios4-4.4.6/config.sub-1036-	ppcle-* | powerpclittle-*)
nagios4-4.4.6/config.sub:1037:		basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'`
nagios4-4.4.6/config.sub-1038-		;;
##############################################
nagios4-4.4.6/config.sub-1040-		;;
nagios4-4.4.6/config.sub:1041:	ppc64-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'`
nagios4-4.4.6/config.sub-1042-		;;
##############################################
nagios4-4.4.6/config.sub-1046-	ppc64le-* | powerpc64little-*)
nagios4-4.4.6/config.sub:1047:		basic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-//'`
nagios4-4.4.6/config.sub-1048-		;;
##############################################
nagios4-4.4.6/config.sub-1129-	strongarm-* | thumb-*)
nagios4-4.4.6/config.sub:1130:		basic_machine=arm-`echo $basic_machine | sed 's/^[^-]*-//'`
nagios4-4.4.6/config.sub-1131-		;;
##############################################
nagios4-4.4.6/config.sub-1259-	xscale-* | xscalee[bl]-*)
nagios4-4.4.6/config.sub:1260:		basic_machine=`echo $basic_machine | sed 's/^xscale/arm/'`
nagios4-4.4.6/config.sub-1261-		;;
##############################################
nagios4-4.4.6/config.sub-1336-	*)
nagios4-4.4.6/config.sub:1337:		echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2
nagios4-4.4.6/config.sub-1338-		exit 1
##############################################
nagios4-4.4.6/config.sub-1344-	*-digital*)
nagios4-4.4.6/config.sub:1345:		basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'`
nagios4-4.4.6/config.sub-1346-		;;
nagios4-4.4.6/config.sub-1347-	*-commodore*)
nagios4-4.4.6/config.sub:1348:		basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'`
nagios4-4.4.6/config.sub-1349-		;;
##############################################
nagios4-4.4.6/config.sub-1365-	-solaris1 | -solaris1.*)
nagios4-4.4.6/config.sub:1366:		os=`echo $os | sed -e 's|solaris1|sunos4|'`
nagios4-4.4.6/config.sub-1367-		;;
##############################################
nagios4-4.4.6/config.sub-1377-	-gnu/linux*)
nagios4-4.4.6/config.sub:1378:		os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'`
nagios4-4.4.6/config.sub-1379-		;;
##############################################
nagios4-4.4.6/config.sub-1424-	-nto*)
nagios4-4.4.6/config.sub:1425:		os=`echo $os | sed -e 's|nto|nto-qnx|'`
nagios4-4.4.6/config.sub-1426-		;;
##############################################
nagios4-4.4.6/config.sub-1431-	-mac*)
nagios4-4.4.6/config.sub:1432:		os=`echo $os | sed -e 's|mac|macos|'`
nagios4-4.4.6/config.sub-1433-		;;
##############################################
nagios4-4.4.6/config.sub-1437-	-linux*)
nagios4-4.4.6/config.sub:1438:		os=`echo $os | sed -e 's|linux|linux-gnu|'`
nagios4-4.4.6/config.sub-1439-		;;
nagios4-4.4.6/config.sub-1440-	-sunos5*)
nagios4-4.4.6/config.sub:1441:		os=`echo $os | sed -e 's|sunos5|solaris2|'`
nagios4-4.4.6/config.sub-1442-		;;
nagios4-4.4.6/config.sub-1443-	-sunos6*)
nagios4-4.4.6/config.sub:1444:		os=`echo $os | sed -e 's|sunos6|solaris3|'`
nagios4-4.4.6/config.sub-1445-		;;
##############################################
nagios4-4.4.6/config.sub-1492-	-sinix5.*)
nagios4-4.4.6/config.sub:1493:		os=`echo $os | sed -e 's|sinix|sysv|'`
nagios4-4.4.6/config.sub-1494-		;;
##############################################
nagios4-4.4.6/config.sub-1547-		# Get rid of the `-' at the beginning of $os.
nagios4-4.4.6/config.sub:1548:		os=`echo $os | sed 's/[^-]*-//'`
nagios4-4.4.6/config.sub:1549:		echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2
nagios4-4.4.6/config.sub-1550-		exit 1
##############################################
nagios4-4.4.6/config.sub-1810-		esac
nagios4-4.4.6/config.sub:1811:		basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"`
nagios4-4.4.6/config.sub-1812-		;;
##############################################
nagios4-4.4.6/configure-43-if test -z "$BASH_VERSION$ZSH_VERSION" \
nagios4-4.4.6/configure:44:    && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
nagios4-4.4.6/configure-45-  as_echo='print -r --'
nagios4-4.4.6/configure-46-  as_echo_n='print -rn --'
nagios4-4.4.6/configure:47:elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
nagios4-4.4.6/configure-48-  as_echo='printf %s\n'
##############################################
nagios4-4.4.6/configure-50-else
nagios4-4.4.6/configure:51:  if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
nagios4-4.4.6/configure-52-    as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
##############################################
nagios4-4.4.6/configure-60-	expr "X$arg" : "X\\(.*\\)$as_nl";
nagios4-4.4.6/configure:61:	arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
nagios4-4.4.6/configure-62-      esac;
##############################################
nagios4-4.4.6/configure-197-  eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" &&
nagios4-4.4.6/configure:198:  test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1
nagios4-4.4.6/configure-199-test \$(( 1 + 1 )) = 2 || exit 1"
##############################################
nagios4-4.4.6/configure-324-      case $as_dir in #(
nagios4-4.4.6/configure:325:      *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
nagios4-4.4.6/configure-326-      *) as_qdir=$as_dir;;
##############################################
nagios4-4.4.6/configure-397-  {
nagios4-4.4.6/configure:398:    as_val=`expr "$@" || test $? -eq 1`
nagios4-4.4.6/configure-399-  }
##############################################
nagios4-4.4.6/configure-404-# ----------------------------------------
nagios4-4.4.6/configure:405:# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
nagios4-4.4.6/configure-406-# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
##############################################
nagios4-4.4.6/configure-467-  eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" &&
nagios4-4.4.6/configure:468:  test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || {
nagios4-4.4.6/configure-469-  # Blame Lee E. McMahon (1931-1989) for sed's syntax.  :-)
##############################################
nagios4-4.4.6/configure-879-  case $ac_option in
nagios4-4.4.6/configure:880:  *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
nagios4-4.4.6/configure-881-  *=)   ac_optarg= ;;
##############################################
nagios4-4.4.6/configure-923-  -disable-* | --disable-*)
nagios4-4.4.6/configure:924:    ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
nagios4-4.4.6/configure-925-    # Reject names that are not valid shell variable names.
##############################################
nagios4-4.4.6/configure-928-    ac_useropt_orig=$ac_useropt
nagios4-4.4.6/configure:929:    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
nagios4-4.4.6/configure-930-    case $ac_user_opts in
##############################################
nagios4-4.4.6/configure-949-  -enable-* | --enable-*)
nagios4-4.4.6/configure:950:    ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
nagios4-4.4.6/configure-951-    # Reject names that are not valid shell variable names.
##############################################
nagios4-4.4.6/configure-954-    ac_useropt_orig=$ac_useropt
nagios4-4.4.6/configure:955:    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
nagios4-4.4.6/configure-956-    case $ac_user_opts in
##############################################
nagios4-4.4.6/configure-1153-  -with-* | --with-*)
nagios4-4.4.6/configure:1154:    ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
nagios4-4.4.6/configure-1155-    # Reject names that are not valid shell variable names.
##############################################
nagios4-4.4.6/configure-1158-    ac_useropt_orig=$ac_useropt
nagios4-4.4.6/configure:1159:    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
nagios4-4.4.6/configure-1160-    case $ac_user_opts in
##############################################
nagios4-4.4.6/configure-1169-  -without-* | --without-*)
nagios4-4.4.6/configure:1170:    ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'`
nagios4-4.4.6/configure-1171-    # Reject names that are not valid shell variable names.
##############################################
nagios4-4.4.6/configure-1174-    ac_useropt_orig=$ac_useropt
nagios4-4.4.6/configure:1175:    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
nagios4-4.4.6/configure-1176-    case $ac_user_opts in
##############################################
nagios4-4.4.6/configure-1207-  *=*)
nagios4-4.4.6/configure:1208:    ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='`
nagios4-4.4.6/configure-1209-    # Reject names that are not valid shell variable names.
##############################################
nagios4-4.4.6/configure-1228-if test -n "$ac_prev"; then
nagios4-4.4.6/configure:1229:  ac_option=--`echo $ac_prev | sed 's/_/-/g'`
nagios4-4.4.6/configure-1230-  as_fn_error $? "missing argument to $ac_option"
##############################################
nagios4-4.4.6/configure-1250-    */ )
nagios4-4.4.6/configure:1251:      ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'`
nagios4-4.4.6/configure-1252-      eval $ac_var=\$ac_val;;
##############################################
nagios4-4.4.6/configure-1285-ac_ls_di=`ls -di .` &&
nagios4-4.4.6/configure:1286:ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` ||
nagios4-4.4.6/configure-1287-  as_fn_error $? "working directory cannot be determined"
##############################################
nagios4-4.4.6/configure-1341-case $srcdir in
nagios4-4.4.6/configure:1342:*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;;
nagios4-4.4.6/configure-1343-esac
##############################################
nagios4-4.4.6/configure-1384-By default, \`make install' will install all the files in
nagios4-4.4.6/configure:1385:\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc.  You can specify
nagios4-4.4.6/configure:1386:an installation prefix other than \`$ac_default_prefix' using \`--prefix',
nagios4-4.4.6/configure-1387-for instance \`--prefix=\$HOME'.
##############################################
nagios4-4.4.6/configure-1539-*)
nagios4-4.4.6/configure:1540:  ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
nagios4-4.4.6/configure-1541-  # A ".." for each directory in $ac_dir_suffix.
nagios4-4.4.6/configure:1542:  ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
nagios4-4.4.6/configure-1543-  case $ac_top_builddir_sub in
##############################################
nagios4-4.4.6/configure-1899-  as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
nagios4-4.4.6/configure:1900:  as_decl_name=`echo $2|sed 's/ *(.*//'`
nagios4-4.4.6/configure:1901:  as_decl_use=`echo $2|sed -e 's/(/((/' -e 's/)/) 0&/' -e 's/,/) 0& (/g'`
nagios4-4.4.6/configure-1902-  { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $as_decl_name is declared" >&5
##############################################
nagios4-4.4.6/configure-2180-    *\'*)
nagios4-4.4.6/configure:2181:      ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
nagios4-4.4.6/configure-2182-    esac
##############################################
nagios4-4.4.6/configure-2263-      case $ac_val in
nagios4-4.4.6/configure:2264:      *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
nagios4-4.4.6/configure-2265-      esac
##############################################
nagios4-4.4.6/configure-2278-	case $ac_val in
nagios4-4.4.6/configure:2279:	*\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
nagios4-4.4.6/configure-2280-	esac
##############################################
nagios4-4.4.6/configure-2382-    set,)
nagios4-4.4.6/configure:2383:      { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
nagios4-4.4.6/configure:2384:$as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
nagios4-4.4.6/configure-2385-      ac_cache_corrupted=: ;;
##############################################
nagios4-4.4.6/configure-2393-	# differences in whitespace do not lead to failure.
nagios4-4.4.6/configure:2394:	ac_old_val_w=`echo x $ac_old_val`
nagios4-4.4.6/configure:2395:	ac_new_val_w=`echo x $ac_new_val`
nagios4-4.4.6/configure-2396-	if test "$ac_old_val_w" != "$ac_new_val_w"; then
##############################################
nagios4-4.4.6/configure-2413-    case $ac_new_val in
nagios4-4.4.6/configure:2414:    *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
nagios4-4.4.6/configure-2415-    *) ac_arg=$ac_var=$ac_new_val ;;
##############################################
nagios4-4.4.6/configure-2585-test "x$ac_build_alias" = x &&
nagios4-4.4.6/configure:2586:  ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"`
nagios4-4.4.6/configure-2587-test "x$ac_build_alias" = x &&
nagios4-4.4.6/configure-2588-  as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5
nagios4-4.4.6/configure:2589:ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` ||
nagios4-4.4.6/configure-2590-  as_fn_error $? "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5
##############################################
nagios4-4.4.6/configure-2609-IFS=$ac_save_IFS
nagios4-4.4.6/configure:2610:case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac
nagios4-4.4.6/configure-2611-
##############################################
nagios4-4.4.6/configure-2620-else
nagios4-4.4.6/configure:2621:  ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` ||
nagios4-4.4.6/configure-2622-    as_fn_error $? "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5
##############################################
nagios4-4.4.6/configure-2642-IFS=$ac_save_IFS
nagios4-4.4.6/configure:2643:case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac
nagios4-4.4.6/configure-2644-
##############################################
nagios4-4.4.6/configure-2995-$as_echo_n "checking whether the C compiler works... " >&6; }
nagios4-4.4.6/configure:2996:ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'`
nagios4-4.4.6/configure-2997-
##############################################
nagios4-4.4.6/configure-3039-	then :; else
nagios4-4.4.6/configure:3040:	   ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
nagios4-4.4.6/configure-3041-	fi
##############################################
nagios4-4.4.6/configure-3099-    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;;
nagios4-4.4.6/configure:3100:    *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
nagios4-4.4.6/configure-3101-	  break;;
##############################################
nagios4-4.4.6/configure-3208-    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;;
nagios4-4.4.6/configure:3209:    *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'`
nagios4-4.4.6/configure-3210-       break;;
##############################################
nagios4-4.4.6/configure-3441-set x ${MAKE-make}
nagios4-4.4.6/configure:3442:ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'`
nagios4-4.4.6/configure-3443-if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then :
##############################################
nagios4-4.4.6/configure-3451-# GNU make sometimes prints "make[1]: Entering ...", which would confuse us.
nagios4-4.4.6/configure:3452:case `${MAKE-make} -f conftest.make 2>/dev/null` in
nagios4-4.4.6/configure-3453-  *@@@%%%=?*=@@@%%%*)
##############################################
nagios4-4.4.6/configure-3680-  # Check for GNU $ac_path_GREP
nagios4-4.4.6/configure:3681:case `"$ac_path_GREP" --version 2>&1` in
nagios4-4.4.6/configure-3682-*GNU*)
##############################################
nagios4-4.4.6/configure-3746-  # Check for GNU $ac_path_EGREP
nagios4-4.4.6/configure:3747:case `"$ac_path_EGREP" --version 2>&1` in
nagios4-4.4.6/configure-3748-*GNU*)
##############################################
nagios4-4.4.6/configure-3983-do :
nagios4-4.4.6/configure:3984:  as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
nagios4-4.4.6/configure-3985-ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default
##############################################
nagios4-4.4.6/configure-3988-  cat >>confdefs.h <<_ACEOF
nagios4-4.4.6/configure:3989:#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
nagios4-4.4.6/configure-3990-_ACEOF
##############################################
nagios4-4.4.6/configure-3998-do :
nagios4-4.4.6/configure:3999:  as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
nagios4-4.4.6/configure-4000-ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default"
##############################################
nagios4-4.4.6/configure-4002-  cat >>confdefs.h <<_ACEOF
nagios4-4.4.6/configure:4003:#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
nagios4-4.4.6/configure-4004-_ACEOF
##############################################
nagios4-4.4.6/configure-4011-do :
nagios4-4.4.6/configure:4012:  as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
nagios4-4.4.6/configure-4013-ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default"
##############################################
nagios4-4.4.6/configure-4015-  cat >>confdefs.h <<_ACEOF
nagios4-4.4.6/configure:4016:#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
nagios4-4.4.6/configure-4017-_ACEOF
##############################################
nagios4-4.4.6/configure-4024-do :
nagios4-4.4.6/configure:4025:  as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
nagios4-4.4.6/configure-4026-ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default"
##############################################
nagios4-4.4.6/configure-4028-  cat >>confdefs.h <<_ACEOF
nagios4-4.4.6/configure:4029:#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
nagios4-4.4.6/configure-4030-_ACEOF
##############################################
nagios4-4.4.6/configure-4037-do :
nagios4-4.4.6/configure:4038:  as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
nagios4-4.4.6/configure-4039-ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default"
##############################################
nagios4-4.4.6/configure-4041-  cat >>confdefs.h <<_ACEOF
nagios4-4.4.6/configure:4042:#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
nagios4-4.4.6/configure-4043-_ACEOF
##############################################
nagios4-4.4.6/configure-4050-do :
nagios4-4.4.6/configure:4051:  as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
nagios4-4.4.6/configure-4052-ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default"
##############################################
nagios4-4.4.6/configure-4054-  cat >>confdefs.h <<_ACEOF
nagios4-4.4.6/configure:4055:#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
nagios4-4.4.6/configure-4056-_ACEOF
##############################################
nagios4-4.4.6/configure-4063-do :
nagios4-4.4.6/configure:4064:  as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
nagios4-4.4.6/configure-4065-ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default"
##############################################
nagios4-4.4.6/configure-4067-  cat >>confdefs.h <<_ACEOF
nagios4-4.4.6/configure:4068:#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
nagios4-4.4.6/configure-4069-_ACEOF
##############################################
nagios4-4.4.6/configure-4591-					if test x"$ID_LIKE" != x; then
nagios4-4.4.6/configure:4592:						dist_type=`echo $ID_LIKE | cut -d' ' -f1 | tr "[A-Z]" "[a-z]"`
nagios4-4.4.6/configure-4593-					elif test x"$ID" = xol; then
##############################################
nagios4-4.4.6/configure-4595-					else
nagios4-4.4.6/configure:4596:						dist_type=`echo $ID | tr "[A-Z]" "[a-z]"`
nagios4-4.4.6/configure-4597-					fi
##############################################
nagios4-4.4.6/configure-4603-					elif test x"$VERSION" != x; then
nagios4-4.4.6/configure:4604:						dist_ver=`echo $VERSION | cut -d'.' -f1 | tr -d :alpha::blank::punct:`
nagios4-4.4.6/configure-4605-					fi
##############################################
nagios4-4.4.6/configure-4614-						. /etc/lsb-release
nagios4-4.4.6/configure:4615:						dist_ver=`echo "$DISTRIB_RELEASE"`
nagios4-4.4.6/configure-4616-					else
##############################################
nagios4-4.4.6/configure-4628-			if test "$dist_ver" != "unknown"; then
nagios4-4.4.6/configure:4629:				dist_ver=`echo "$dist_ver" | cut -d'.' -f1 | tr -d :alpha::blank::punct:`
nagios4-4.4.6/configure-4630-			fi
##############################################
nagios4-4.4.6/configure-4723-		if test "$init_type_wanted" = yes; then
nagios4-4.4.6/configure:4724:			pid1=`$PSCMD | grep -vi COMMAND | cut -d' ' -f1`
nagios4-4.4.6/configure-4725-			if test x"$pid1" = "x"; then
##############################################
nagios4-4.4.6/configure-4728-			fi
nagios4-4.4.6/configure:4729:			if `echo $pid1 | grep "systemd" > /dev/null`; then
nagios4-4.4.6/configure-4730-				init_type="systemd"
##############################################
nagios4-4.4.6/configure-4745-				if test -L "$pid1"; then
nagios4-4.4.6/configure:4746:					pid1=`readlink "$pid1"`
nagios4-4.4.6/configure-4747-				fi
##############################################
nagios4-4.4.6/configure-4750-			if test "$init_type_wanted" = yes; then
nagios4-4.4.6/configure:4751:				if `echo $pid1 | grep "systemd" > /dev/null`; then
nagios4-4.4.6/configure-4752-					init_type="systemd"
##############################################
nagios4-4.4.6/configure-4767-				if test "$pid1" = "/sbin/init" -o "$pid1" = "/usr/sbin/init"; then
nagios4-4.4.6/configure:4768:					if `$pid1 --version 2>/dev/null | grep "upstart" >/dev/null`; then
nagios4-4.4.6/configure-4769-						init_type="upstart"
##############################################
nagios4-4.4.6/configure-6066-do :
nagios4-4.4.6/configure:6067:  as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
nagios4-4.4.6/configure-6068-ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
##############################################
nagios4-4.4.6/configure-6070-  cat >>confdefs.h <<_ACEOF
nagios4-4.4.6/configure:6071:#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
nagios4-4.4.6/configure-6072-_ACEOF
##############################################
nagios4-4.4.6/configure-6699-fi
nagios4-4.4.6/configure:6700:	if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
nagios4-4.4.6/configure-6701-	  { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
##############################################
nagios4-4.4.6/configure-6747-fi
nagios4-4.4.6/configure:6748:	if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
nagios4-4.4.6/configure-6749-	  { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
##############################################
nagios4-4.4.6/configure-6796-fi
nagios4-4.4.6/configure:6797:	if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
nagios4-4.4.6/configure-6798-	  { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
##############################################
nagios4-4.4.6/configure-6845-fi
nagios4-4.4.6/configure:6846:	if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
nagios4-4.4.6/configure-6847-	  { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
##############################################
nagios4-4.4.6/configure-7519-  ac_script='s/\$U\././;s/\.o$//;s/\.obj$//'
nagios4-4.4.6/configure:7520:  ac_i=`$as_echo "$ac_i" | sed "$ac_script"`
nagios4-4.4.6/configure-7521-  # 2. Prepend LIBOBJDIR.  When used with automake>=1.10 LIBOBJDIR
##############################################
nagios4-4.4.6/configure-7586-if test -z "$BASH_VERSION$ZSH_VERSION" \
nagios4-4.4.6/configure:7587:    && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
nagios4-4.4.6/configure-7588-  as_echo='print -r --'
nagios4-4.4.6/configure-7589-  as_echo_n='print -rn --'
nagios4-4.4.6/configure:7590:elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
nagios4-4.4.6/configure-7591-  as_echo='printf %s\n'
##############################################
nagios4-4.4.6/configure-7593-else
nagios4-4.4.6/configure:7594:  if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
nagios4-4.4.6/configure-7595-    as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
##############################################
nagios4-4.4.6/configure-7603-	expr "X$arg" : "X\\(.*\\)$as_nl";
nagios4-4.4.6/configure:7604:	arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
nagios4-4.4.6/configure-7605-      esac;
##############################################
nagios4-4.4.6/configure-7680-# ----------------------------------------
nagios4-4.4.6/configure:7681:# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
nagios4-4.4.6/configure-7682-# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
##############################################
nagios4-4.4.6/configure-7752-  {
nagios4-4.4.6/configure:7753:    as_val=`expr "$@" || test $? -eq 1`
nagios4-4.4.6/configure-7754-  }
##############################################
nagios4-4.4.6/configure-7856-      case $as_dir in #(
nagios4-4.4.6/configure:7857:      *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
nagios4-4.4.6/configure-7858-      *) as_qdir=$as_dir;;
##############################################
nagios4-4.4.6/configure-7987-cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
nagios4-4.4.6/configure:7988:ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
nagios4-4.4.6/configure-7989-ac_cs_version="\\
##############################################
nagios4-4.4.6/configure-8010-  --*=?*)
nagios4-4.4.6/configure:8011:    ac_option=`expr "X$1" : 'X\([^=]*\)='`
nagios4-4.4.6/configure:8012:    ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
nagios4-4.4.6/configure-8013-    ac_shift=:
##############################################
nagios4-4.4.6/configure-8015-  --*=)
nagios4-4.4.6/configure:8016:    ac_option=`expr "X$1" : 'X\([^=]*\)='`
nagios4-4.4.6/configure-8017-    ac_optarg=
##############################################
nagios4-4.4.6/configure-8039-    case $ac_optarg in
nagios4-4.4.6/configure:8040:    *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
nagios4-4.4.6/configure-8041-    '') as_fn_error $? "missing file argument" ;;
##############################################
nagios4-4.4.6/configure-8047-    case $ac_optarg in
nagios4-4.4.6/configure:8048:    *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
nagios4-4.4.6/configure-8049-    esac
##############################################
nagios4-4.4.6/configure-8189-fi
nagios4-4.4.6/configure:8190:ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
nagios4-4.4.6/configure-8191-if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
##############################################
nagios4-4.4.6/configure-8206-  as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
nagios4-4.4.6/configure:8207:ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'`
nagios4-4.4.6/configure-8208-ac_delim='%!_!# '
##############################################
nagios4-4.4.6/configure-8212-
nagios4-4.4.6/configure:8213:  ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X`
nagios4-4.4.6/configure-8214-  if test $ac_delim_n = $ac_delim_num; then
##############################################
nagios4-4.4.6/configure-8350-for ac_last_try in false false :; do
nagios4-4.4.6/configure:8351:  ac_tt=`sed -n "/$ac_delim/p" confdefs.h`
nagios4-4.4.6/configure-8352-  if test -z "$ac_tt"; then
##############################################
nagios4-4.4.6/configure-8482-      esac
nagios4-4.4.6/configure:8483:      case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
nagios4-4.4.6/configure-8484-      as_fn_append ac_file_inputs " '$ac_f'"
##############################################
nagios4-4.4.6/configure-8541-*)
nagios4-4.4.6/configure:8542:  ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
nagios4-4.4.6/configure-8543-  # A ".." for each directory in $ac_dir_suffix.
nagios4-4.4.6/configure:8544:  ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
nagios4-4.4.6/configure-8545-  case $ac_top_builddir_sub in
##############################################
nagios4-4.4.6/configure-8597-/@mandir@/p'
nagios4-4.4.6/configure:8598:case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in
nagios4-4.4.6/configure-8599-*datarootdir*) ac_datarootdir_seen=yes;;
##############################################
nagios4-4.4.6/configure-8614-
nagios4-4.4.6/configure:8615:# Neutralize VPATH when `$srcdir' = `.'.
nagios4-4.4.6/configure-8616-# Shell code in configure.ac might set extrasub.
##############################################
nagios4-4.4.6/configure-8641-test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
nagios4-4.4.6/configure:8642:  { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } &&
nagios4-4.4.6/configure-8643-  { ac_out=`sed -n '/^[	 ]*datarootdir[	 ]*:*=/p' \
##############################################
nagios4-4.4.6/configure-8755-      case $ac_arg in
nagios4-4.4.6/configure:8756:      *\'*) ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
nagios4-4.4.6/configure-8757-      esac
##############################################
nagios4-4.4.6/configure-8765-  case $ac_arg in
nagios4-4.4.6/configure:8766:  *\'*) ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
nagios4-4.4.6/configure-8767-  esac
##############################################
nagios4-4.4.6/configure-8794-*)
nagios4-4.4.6/configure:8795:  ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
nagios4-4.4.6/configure-8796-  # A ".." for each directory in $ac_dir_suffix.
nagios4-4.4.6/configure:8797:  ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
nagios4-4.4.6/configure-8798-  case $ac_top_builddir_sub in
##############################################
nagios4-4.4.6/configure-8893-
nagios4-4.4.6/configure:8894:incdir=`eval echo $includedir`
nagios4-4.4.6/configure-8895-if test "x$incdir" = "x$prefix/include"; then
##############################################
nagios4-4.4.6/configure.ac-506-	dnl may have different results.
nagios4-4.4.6/configure.ac:507:	ac_lib_var=`echo $1['_']$2['_']$3 | sed 'y%./+-%__p_%'`
nagios4-4.4.6/configure.ac-508-	AC_CACHE_VAL(ac_cv_lib_$ac_lib_var,
##############################################
nagios4-4.4.6/configure.ac-527-	])dnl
nagios4-4.4.6/configure.ac:528:	if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
nagios4-4.4.6/configure.ac-529-	  AC_MSG_RESULT(yes)
##############################################
nagios4-4.4.6/configure.ac-951-
nagios4-4.4.6/configure.ac:952:incdir=`eval echo $includedir`
nagios4-4.4.6/configure.ac-953-if test "x$incdir" = "x$prefix/include"; then
##############################################
nagios4-4.4.6/contrib/epel-patches/nagios-0001-default-init.patch-34- 	$NagiosBin -vp $NagiosCfgFile > "$TMPFILE"
nagios4-4.4.6/contrib/epel-patches/nagios-0001-default-init.patch:35: 	WARN=`grep ^"Total Warnings:" "$TMPFILE" |awk -F: '{print \$2}' |sed s/' '//g`
nagios4-4.4.6/contrib/epel-patches/nagios-0001-default-init.patch:36: 	ERR=`grep ^"Total Errors:" "$TMPFILE" |awk -F: '{print \$2}' |sed s/' '//g`
nagios4-4.4.6/contrib/epel-patches/nagios-0001-default-init.patch-37-@@ -139,10 +142,14 @@ status_nagios ()
##############################################
nagios4-4.4.6/contrib/epel-patches/nagios-0001-default-init.patch-55- 
nagios4-4.4.6/contrib/epel-patches/nagios-0001-default-init.patch:56:-	NagiosPID=`head -n 1 $NagiosRunFile`
nagios4-4.4.6/contrib/epel-patches/nagios-0001-default-init.patch:57:+	export NagiosPID=`head -n 1 $NagiosRunFile`
nagios4-4.4.6/contrib/epel-patches/nagios-0001-default-init.patch-58-+	if [[ -z "$NagiosPID" ]]; then
##############################################
nagios4-4.4.6/contrib/epel-patches/nagios-0010-remove-information-leak.patch-102- 	$(document).ready(function() {
nagios4-4.4.6/contrib/epel-patches/nagios-0010-remove-information-leak.patch:103:-		var user = "<?php echo $_SERVER['REMOTE_USER']; ?>";
nagios4-4.4.6/contrib/epel-patches/nagios-0010-remove-information-leak.patch-104--
##############################################
nagios4-4.4.6/contrib/epel-patches/nagios-0010-remove-information-leak.patch-154--				$(document).ready(function() {
nagios4-4.4.6/contrib/epel-patches/nagios-0010-remove-information-leak.patch:155:-					var user = "<?php echo $_SERVER['REMOTE_USER']; ?>";
nagios4-4.4.6/contrib/epel-patches/nagios-0010-remove-information-leak.patch-156--
##############################################
nagios4-4.4.6/contrib/epel-patches/nagios.upgrade_to_v4.sh-25-# check the diff
nagios4-4.4.6/contrib/epel-patches/nagios.upgrade_to_v4.sh:26:diff_output=`diff -u $nagios_cfg $tmp1`
nagios4-4.4.6/contrib/epel-patches/nagios.upgrade_to_v4.sh-27-diff_exit=$?
##############################################
nagios4-4.4.6/contrib/eventhandlers/disable_active_service_checks-24-# pipe the command to the command file
nagios4-4.4.6/contrib/eventhandlers/disable_active_service_checks:25:`$printfcmd "[%i] STOP_EXECUTING_SVC_CHECKS\n" $datetime >> $CommandFile`
nagios4-4.4.6/contrib/eventhandlers/disable_active_service_checks-26-
##############################################
nagios4-4.4.6/contrib/eventhandlers/disable_notifications-22-# pipe the command to the command file
nagios4-4.4.6/contrib/eventhandlers/disable_notifications:23:`$printfcmd "[%i] DISABLE_NOTIFICATIONS;%i\n" $datetime $datetime >> $CommandFile`
nagios4-4.4.6/contrib/eventhandlers/disable_notifications-24-
##############################################
nagios4-4.4.6/contrib/eventhandlers/enable_active_service_checks-24-# pipe the command to the command file
nagios4-4.4.6/contrib/eventhandlers/enable_active_service_checks:25:`$printfcmd "[%i] START_EXECUTING_SVC_CHECKS\n" $datetime >> $CommandFile`
nagios4-4.4.6/contrib/eventhandlers/enable_active_service_checks-26-
##############################################
nagios4-4.4.6/contrib/eventhandlers/enable_notifications-22-# pipe the command to the command file
nagios4-4.4.6/contrib/eventhandlers/enable_notifications:23:`$printfcmd "[%i] ENABLE_NOTIFICATIONS;%i\n" $datetime $datetime >> $CommandFile`
nagios4-4.4.6/contrib/eventhandlers/enable_notifications-24-
##############################################
nagios4-4.4.6/contrib/eventhandlers/redundancy-scenario1/handle-master-host-event-29-
nagios4-4.4.6/contrib/eventhandlers/redundancy-scenario1/handle-master-host-event:30:		`$eventhandlerdir/enable_notifications`
nagios4-4.4.6/contrib/eventhandlers/redundancy-scenario1/handle-master-host-event-31-
##############################################
nagios4-4.4.6/contrib/eventhandlers/redundancy-scenario1/handle-master-host-event-38-
nagios4-4.4.6/contrib/eventhandlers/redundancy-scenario1/handle-master-host-event:39:		#`$echocmd "Master Nagios host is down!" | /bin/mail -s "Master Nagios Host Is Down" root@localhost`
nagios4-4.4.6/contrib/eventhandlers/redundancy-scenario1/handle-master-host-event:40:		#`$echocmd "Slave Nagios host has entered ACTIVE mode and taken over network monitoring responsibilities!" | $mailcmd -s "Slave Nagios Host Has Entered ACTIVE Mode" root@localhost`
nagios4-4.4.6/contrib/eventhandlers/redundancy-scenario1/handle-master-host-event-41-
##############################################
nagios4-4.4.6/contrib/eventhandlers/redundancy-scenario1/handle-master-host-event-49-
nagios4-4.4.6/contrib/eventhandlers/redundancy-scenario1/handle-master-host-event:50:		`$eventhandlerdir/disable_notifications`
nagios4-4.4.6/contrib/eventhandlers/redundancy-scenario1/handle-master-host-event-51-
##############################################
nagios4-4.4.6/contrib/eventhandlers/redundancy-scenario1/handle-master-host-event-58-
nagios4-4.4.6/contrib/eventhandlers/redundancy-scenario1/handle-master-host-event:59:		#`$echocmd "The master Nagios host has recovered, so the slave Nagios host has returned to standby mode..." | $mailcmd -s "Slave Nagios Host Has Returned To STANDBY Mode" root@localhost`
nagios4-4.4.6/contrib/eventhandlers/redundancy-scenario1/handle-master-host-event-60-
##############################################
nagios4-4.4.6/contrib/eventhandlers/redundancy-scenario1/handle-master-proc-event-30-
nagios4-4.4.6/contrib/eventhandlers/redundancy-scenario1/handle-master-proc-event:31:		`$eventhandlerdir/enable_active_service_checks`
nagios4-4.4.6/contrib/eventhandlers/redundancy-scenario1/handle-master-proc-event-32-		;;
##############################################
nagios4-4.4.6/contrib/eventhandlers/submit_check_result-35-# append the command to the end of the command file
nagios4-4.4.6/contrib/eventhandlers/submit_check_result:36:`$echocmd $cmdline >> $CommandFile`
##############################################
nagios4-4.4.6/functions-74-        # Save basename.
nagios4-4.4.6/functions:75:        [ -z $gotbase ] && base=`basename $1`
nagios4-4.4.6/functions-76-
nagios4-4.4.6/functions-77-        # See if it's already running.
nagios4-4.4.6/functions:78:	pid=`pidofproc $base`
nagios4-4.4.6/functions-79-	[ -n "$pid" ] && ps -p $pid >/dev/null 2>&1 && return
##############################################
nagios4-4.4.6/functions-109-        # Save basename.
nagios4-4.4.6/functions:110:        base=`basename $1`
nagios4-4.4.6/functions-111-
nagios4-4.4.6/functions-112-        # Find pid.
nagios4-4.4.6/functions:113:        pid=`pidofproc $base`
nagios4-4.4.6/functions-114-
##############################################
nagios4-4.4.6/functions-159-	if [ -f /var/run/$1.pid ] ; then
nagios4-4.4.6/functions:160:	        pid=`head -1 /var/run/$1.pid`
nagios4-4.4.6/functions-161-	        if [ "$pid" != "" ] ; then
##############################################
nagios4-4.4.6/functions-168-#	if which pidof | egrep -v "^no pidof" >/dev/null 2>&1; then
nagios4-4.4.6/functions:169:#		pid=`pidof $1`
nagios4-4.4.6/functions-170-#		if [ "$pid" != "" ] ; then
##############################################
nagios4-4.4.6/functions-176-	# Finally try to extract it from ps
nagios4-4.4.6/functions:177:	pid=`ps -eo pid,ppid,fname | egrep -v $$ | awk 'BEGIN { prog=ARGV[1]; ARGC=1 } { if ((prog == $3) || (("(" prog ")") == $3) || (("[" prog "]") == $3) || ((prog ":") == $3)) { print $1 ; exit 0 } }' $1`
nagios4-4.4.6/functions-178-	if [ "$pid" != "" ] ; then
##############################################
nagios4-4.4.6/functions-192-
nagios4-4.4.6/functions:193:	base=`basename $1`
nagios4-4.4.6/functions:194:	pid=`pidofproc $base`
nagios4-4.4.6/functions-195-	if [ "$pid" != "" ] ; then
##############################################
nagios4-4.4.6/functions-201-	if [ -f /var/run/$1.pid ] ; then
nagios4-4.4.6/functions:202:	        pid=`head -1 /var/run/$1.pid`
nagios4-4.4.6/functions-203-	        if [ "$pid" != "" ] ; then
##############################################
nagios4-4.4.6/html/angularjs/ui-bootstrap-tpls-0.14.3.min.js-7- */
nagios4-4.4.6/html/angularjs/ui-bootstrap-tpls-0.14.3.min.js:8:angular.module("ui.bootstrap",["ui.bootstrap.tpls","ui.bootstrap.collapse","ui.bootstrap.accordion","ui.bootstrap.alert","ui.bootstrap.buttons","ui.bootstrap.carousel","ui.bootstrap.dateparser","ui.bootstrap.position","ui.bootstrap.datepicker","ui.bootstrap.dropdown","ui.bootstrap.stackedMap","ui.bootstrap.modal","ui.bootstrap.pagination","ui.bootstrap.tooltip","ui.bootstrap.popover","ui.bootstrap.progressbar","ui.bootstrap.rating","ui.bootstrap.tabs","ui.bootstrap.timepicker","ui.bootstrap.typeahead"]),angular.module("ui.bootstrap.tpls",["template/accordion/accordion-group.html","template/accordion/accordion.html","template/alert/alert.html","template/carousel/carousel.html","template/carousel/slide.html","template/datepicker/datepicker.html","template/datepicker/day.html","template/datepicker/month.html","template/datepicker/popup.html","template/datepicker/year.html","template/modal/backdrop.html","template/modal/window.html","template/pagination/pager.html","template/pagination/pagination.html","template/tooltip/tooltip-html-popup.html","template/tooltip/tooltip-popup.html","template/tooltip/tooltip-template-popup.html","template/popover/popover-html.html","template/popover/popover-template.html","template/popover/popover.html","template/progressbar/bar.html","template/progressbar/progress.html","template/progressbar/progressbar.html","template/rating/rating.html","template/tabs/tab.html","template/tabs/tabset.html","template/timepicker/timepicker.html","template/typeahead/typeahead-match.html","template/typeahead/typeahead-popup.html"]),angular.module("ui.bootstrap.collapse",[]).directive("uibCollapse",["$animate","$injector",function(a,b){var c=b.has("$animateCss")?b.get("$animateCss"):null;return{link:function(b,d,e){function f(){d.removeClass("collapse").addClass("collapsing").attr("aria-expanded",!0).attr("aria-hidden",!1),c?c(d,{addClass:"in",easing:"ease",to:{height:d[0].scrollHeight+"px"}}).start()["finally"](g):a.addClass(d,"in",{to:{height:d[0].scrollHeight+"px"}}).then(g)}function g(){d.removeClass("collapsing").addClass("collapse").css({height:"auto"})}function h(){return d.hasClass("collapse")||d.hasClass("in")?(d.css({height:d[0].scrollHeight+"px"}).removeClass("collapse").addClass("collapsing").attr("aria-expanded",!1).attr("aria-hidden",!0),void(c?c(d,{removeClass:"in",to:{height:"0"}}).start()["finally"](i):a.removeClass(d,"in",{to:{height:"0"}}).then(i))):i()}function i(){d.css({height:"0"}),d.removeClass("collapsing").addClass("collapse")}b.$watch(e.uibCollapse,function(a){a?h():f()})}}}]),angular.module("ui.bootstrap.collapse").value("$collapseSuppressWarning",!1).directive("collapse",["$animate","$injector","$log","$collapseSuppressWarning",function(a,b,c,d){var e=b.has("$animateCss")?b.get("$animateCss"):null;return{link:function(b,f,g){function h(){f.removeClass("collapse").addClass("collapsing").attr("aria-expanded",!0).attr("aria-hidden",!1),e?e(f,{easing:"ease",to:{height:f[0].scrollHeight+"px"}}).start().done(i):a.animate(f,{},{height:f[0].scrollHeight+"px"}).then(i)}function i(){f.removeClass("collapsing").addClass("collapse in").css({height:"auto"})}function j(){return f.hasClass("collapse")||f.hasClass("in")?(f.css({height:f[0].scrollHeight+"px"}).removeClass("collapse in").addClass("collapsing").attr("aria-expanded",!1).attr("aria-hidden",!0),void(e?e(f,{to:{height:"0"}}).start().done(k):a.animate(f,{},{height:"0"}).then(k))):k()}function k(){f.css({height:"0"}),f.removeClass("collapsing").addClass("collapse")}d||c.warn("collapse is now deprecated. Use uib-collapse instead."),b.$watch(g.collapse,function(a){a?j():h()})}}}]),angular.module("ui.bootstrap.accordion",["ui.bootstrap.collapse"]).constant("uibAccordionConfig",{closeOthers:!0}).controller("UibAccordionController",["$scope","$attrs","uibAccordionConfig",function(a,b,c){this.groups=[],this.closeOthers=function(d){var e=angular.isDefined(b.closeOthers)?a.$eval(b.closeOthers):c.closeOthers;e&&angular.forEach(this.groups,function(a){a!==d&&(a.isOpen=!1)})},this.addGroup=function(a){var b=this;this.groups.push(a),a.$on("$destroy",function(c){b.removeGroup(a)})},this.removeGroup=function(a){var b=this.groups.indexOf(a);-1!==b&&this.groups.splice(b,1)}}]).directive("uibAccordion",function(){return{controller:"UibAccordionController",controllerAs:"accordion",transclude:!0,templateUrl:function(a,b){return b.templateUrl||"template/accordion/accordion.html"}}}).directive("uibAccordionGroup",function(){return{require:"^uibAccordion",transclude:!0,replace:!0,templateUrl:function(a,b){return b.templateUrl||"template/accordion/accordion-group.html"},scope:{heading:"@",isOpen:"=?",isDisabled:"=?"},controller:function(){this.setHeading=function(a){this.heading=a}},link:function(a,b,c,d){d.addGroup(a),a.openClass=c.openClass||"panel-open",a.panelClass=c.panelClass,a.$watch("isOpen",function(c){b.toggleClass(a.openClass,!!c),c&&d.closeOthers(a)}),a.toggleOpen=function(b){a.isDisabled||b&&32!==b.which||(a.isOpen=!a.isOpen)}}}}).directive("uibAccordionHeading",function(){return{transclude:!0,template:"",replace:!0,require:"^uibAccordionGroup",link:function(a,b,c,d,e){d.setHeading(e(a,angular.noop))}}}).directive("uibAccordionTransclude",function(){return{require:["?^uibAccordionGroup","?^accordionGroup"],link:function(a,b,c,d){d=d[0]?d[0]:d[1],a.$watch(function(){return d[c.uibAccordionTransclude]},function(a){a&&(b.find("span").html(""),b.find("span").append(a))})}}}),angular.module("ui.bootstrap.accordion").value("$accordionSuppressWarning",!1).controller("AccordionController",["$scope","$attrs","$controller","$log","$accordionSuppressWarning",function(a,b,c,d,e){e||d.warn("AccordionController is now deprecated. Use UibAccordionController instead."),angular.extend(this,c("UibAccordionController",{$scope:a,$attrs:b}))}]).directive("accordion",["$log","$accordionSuppressWarning",function(a,b){return{restrict:"EA",controller:"AccordionController",controllerAs:"accordion",transclude:!0,replace:!1,templateUrl:function(a,b){return b.templateUrl||"template/accordion/accordion.html"},link:function(){b||a.warn("accordion is now deprecated. Use uib-accordion instead.")}}}]).directive("accordionGroup",["$log","$accordionSuppressWarning",function(a,b){return{require:"^accordion",restrict:"EA",transclude:!0,replace:!0,templateUrl:function(a,b){return b.templateUrl||"template/accordion/accordion-group.html"},scope:{heading:"@",isOpen:"=?",isDisabled:"=?"},controller:function(){this.setHeading=function(a){this.heading=a}},link:function(c,d,e,f){b||a.warn("accordion-group is now deprecated. Use uib-accordion-group instead."),f.addGroup(c),c.openClass=e.openClass||"panel-open",c.panelClass=e.panelClass,c.$watch("isOpen",function(a){d.toggleClass(c.openClass,!!a),a&&f.closeOthers(c)}),c.toggleOpen=function(a){c.isDisabled||a&&32!==a.which||(c.isOpen=!c.isOpen)}}}}]).directive("accordionHeading",["$log","$accordionSuppressWarning",function(a,b){return{restrict:"EA",transclude:!0,template:"",replace:!0,require:"^accordionGroup",link:function(c,d,e,f,g){b||a.warn("accordion-heading is now deprecated. Use uib-accordion-heading instead."),f.setHeading(g(c,angular.noop))}}}]).directive("accordionTransclude",["$log","$accordionSuppressWarning",function(a,b){return{require:"^accordionGroup",link:function(c,d,e,f){b||a.warn("accordion-transclude is now deprecated. Use uib-accordion-transclude instead."),c.$watch(function(){return f[e.accordionTransclude]},function(a){a&&(d.find("span").html(""),d.find("span").append(a))})}}}]),angular.module("ui.bootstrap.alert",[]).controller("UibAlertController",["$scope","$attrs","$interpolate","$timeout",function(a,b,c,d){a.closeable=!!b.close;var e=angular.isDefined(b.dismissOnTimeout)?c(b.dismissOnTimeout)(a.$parent):null;e&&d(function(){a.close()},parseInt(e,10))}]).directive("uibAlert",function(){return{controller:"UibAlertController",controllerAs:"alert",templateUrl:function(a,b){return b.templateUrl||"template/alert/alert.html"},transclude:!0,replace:!0,scope:{type:"@",close:"&"}}}),angular.module("ui.bootstrap.alert").value("$alertSuppressWarning",!1).controller("AlertController",["$scope","$attrs","$controller","$log","$alertSuppressWarning",function(a,b,c,d,e){e||d.warn("AlertController is now deprecated. Use UibAlertController instead."),angular.extend(this,c("UibAlertController",{$scope:a,$attrs:b}))}]).directive("alert",["$log","$alertSuppressWarning",function(a,b){return{controller:"AlertController",controllerAs:"alert",templateUrl:function(a,b){return b.templateUrl||"template/alert/alert.html"},transclude:!0,replace:!0,scope:{type:"@",close:"&"},link:function(){b||a.warn("alert is now deprecated. Use uib-alert instead.")}}}]),angular.module("ui.bootstrap.buttons",[]).constant("uibButtonConfig",{activeClass:"active",toggleEvent:"click"}).controller("UibButtonsController",["uibButtonConfig",function(a){this.activeClass=a.activeClass||"active",this.toggleEvent=a.toggleEvent||"click"}]).directive("uibBtnRadio",function(){return{require:["uibBtnRadio","ngModel"],controller:"UibButtonsController",controllerAs:"buttons",link:function(a,b,c,d){var e=d[0],f=d[1];b.find("input").css({display:"none"}),f.$render=function(){b.toggleClass(e.activeClass,angular.equals(f.$modelValue,a.$eval(c.uibBtnRadio)))},b.on(e.toggleEvent,function(){if(!c.disabled){var d=b.hasClass(e.activeClass);(!d||angular.isDefined(c.uncheckable))&&a.$apply(function(){f.$setViewValue(d?null:a.$eval(c.uibBtnRadio)),f.$render()})}})}}}).directive("uibBtnCheckbox",function(){return{require:["uibBtnCheckbox","ngModel"],controller:"UibButtonsController",controllerAs:"button",link:function(a,b,c,d){function e(){return g(c.btnCheckboxTrue,!0)}function f(){return g(c.btnCheckboxFalse,!1)}function g(b,c){return angular.isDefined(b)?a.$eval(b):c}var h=d[0],i=d[1];b.find("input").css({display:"none"}),i.$render=function(){b.toggleClass(h.activeClass,angular.equals(i.$modelValue,e()))},b.on(h.toggleEvent,function(){c.disabled||a.$apply(function(){i.$setViewValue(b.hasClass(h.activeClass)?f():e()),i.$render()})})}}}),angular.module("ui.bootstrap.buttons").value("$buttonsSuppressWarning",!1).controller("ButtonsController",["$controller","$log","$buttonsSuppressWarning",function(a,b,c){c||b.warn("ButtonsController is now deprecated. Use UibButtonsController instead."),angular.extend(this,a("UibButtonsController"))}]).directive("btnRadio",["$log","$buttonsSuppressWarning",function(a,b){return{require:["btnRadio","ngModel"],controller:"ButtonsController",controllerAs:"buttons",link:function(c,d,e,f){b||a.warn("btn-radio is now deprecated. Use uib-btn-radio instead.");var g=f[0],h=f[1];d.find("input").css({display:"none"}),h.$render=function(){d.toggleClass(g.activeClass,angular.equals(h.$modelValue,c.$eval(e.btnRadio)))},d.bind(g.toggleEvent,function(){if(!e.disabled){var a=d.hasClass(g.activeClass);(!a||angular.isDefined(e.uncheckable))&&c.$apply(function(){h.$setViewValue(a?null:c.$eval(e.btnRadio)),h.$render()})}})}}}]).directive("btnCheckbox",["$document","$log","$buttonsSuppressWarning",function(a,b,c){return{require:["btnCheckbox","ngModel"],controller:"ButtonsController",controllerAs:"button",link:function(d,e,f,g){function h(){return j(f.btnCheckboxTrue,!0)}function i(){return j(f.btnCheckboxFalse,!1)}function j(a,b){var c=d.$eval(a);return angular.isDefined(c)?c:b}c||b.warn("btn-checkbox is now deprecated. Use uib-btn-checkbox instead.");var k=g[0],l=g[1];e.find("input").css({display:"none"}),l.$render=function(){e.toggleClass(k.activeClass,angular.equals(l.$modelValue,h()))},e.bind(k.toggleEvent,function(){f.disabled||d.$apply(function(){l.$setViewValue(e.hasClass(k.activeClass)?i():h()),l.$render()})}),e.on("keypress",function(b){f.disabled||32!==b.which||a[0].activeElement!==e[0]||d.$apply(function(){l.$setViewValue(e.hasClass(k.activeClass)?i():h()),l.$render()})})}}}]),angular.module("ui.bootstrap.carousel",[]).controller("UibCarouselController",["$scope","$element","$interval","$animate",function(a,b,c,d){function e(b,c,e){s||(angular.extend(b,{direction:e,active:!0}),angular.extend(m.currentSlide||{},{direction:e,active:!1}),d.enabled()&&!a.noTransition&&!a.$currentTransition&&b.$element&&m.slides.length>1&&(b.$element.data(q,b.direction),m.currentSlide&&m.currentSlide.$element&&m.currentSlide.$element.data(q,b.direction),a.$currentTransition=!0,o?d.on("addClass",b.$element,function(b,c){"close"===c&&(a.$currentTransition=null,d.off("addClass",b))}):b.$element.one("$animate:close",function(){a.$currentTransition=null})),m.currentSlide=b,r=c,g())}function f(a){if(angular.isUndefined(n[a].index))return n[a];var b;n.length;for(b=0;b<n.length;++b)if(n[b].index==a)return n[b]}function g(){h();var b=+a.interval;!isNaN(b)&&b>0&&(k=c(i,b))}function h(){k&&(c.cancel(k),k=null)}function i(){var b=+a.interval;l&&!isNaN(b)&&b>0&&n.length?a.next():a.pause()}function j(b){b.length||(a.$currentTransition=null)}var k,l,m=this,n=m.slides=a.slides=[],o=angular.version.minor>=4,p="uib-noTransition",q="uib-slideDirection",r=-1;m.currentSlide=null;var s=!1;m.select=a.select=function(b,c){var d=a.indexOfSlide(b);void 0===c&&(c=d>m.getCurrentIndex()?"next":"prev"),b&&b!==m.currentSlide&&!a.$currentTransition&&e(b,d,c)},a.$on("$destroy",function(){s=!0}),m.getCurrentIndex=function(){return m.currentSlide&&angular.isDefined(m.currentSlide.index)?+m.currentSlide.index:r},a.indexOfSlide=function(a){return angular.isDefined(a.index)?+a.index:n.indexOf(a)},a.next=function(){var b=(m.getCurrentIndex()+1)%n.length;return 0===b&&a.noWrap()?void a.pause():m.select(f(b),"next")},a.prev=function(){var b=m.getCurrentIndex()-1<0?n.length-1:m.getCurrentIndex()-1;return a.noWrap()&&b===n.length-1?void a.pause():m.select(f(b),"prev")},a.isActive=function(a){return m.currentSlide===a},a.$watch("interval",g),a.$watchCollection("slides",j),a.$on("$destroy",h),a.play=function(){l||(l=!0,g())},a.pause=function(){a.noPause||(l=!1,h())},m.addSlide=function(b,c){b.$element=c,n.push(b),1===n.length||b.active?(m.select(n[n.length-1]),1===n.length&&a.play()):b.active=!1},m.removeSlide=function(a){angular.isDefined(a.index)&&n.sort(function(a,b){return+a.index>+b.index});var b=n.indexOf(a);n.splice(b,1),n.length>0&&a.active?b>=n.length?m.select(n[b-1]):m.select(n[b]):r>b&&r--,0===n.length&&(m.currentSlide=null)},a.$watch("noTransition",function(a){b.data(p,a)})}]).directive("uibCarousel",[function(){return{transclude:!0,replace:!0,controller:"UibCarouselController",controllerAs:"carousel",require:"carousel",templateUrl:function(a,b){return b.templateUrl||"template/carousel/carousel.html"},scope:{interval:"=",noTransition:"=",noPause:"=",noWrap:"&"}}}]).directive("uibSlide",function(){return{require:"^uibCarousel",restrict:"EA",transclude:!0,replace:!0,templateUrl:function(a,b){return b.templateUrl||"template/carousel/slide.html"},scope:{active:"=?",actual:"=?",index:"=?"},link:function(a,b,c,d){d.addSlide(a,b),a.$on("$destroy",function(){d.removeSlide(a)}),a.$watch("active",function(b){b&&d.select(a)})}}}).animation(".item",["$injector","$animate",function(a,b){function c(a,b,c){a.removeClass(b),c&&c()}var d="uib-noTransition",e="uib-slideDirection",f=null;return a.has("$animateCss")&&(f=a.get("$animateCss")),{beforeAddClass:function(a,g,h){if("active"==g&&a.parent()&&a.parent().parent()&&!a.parent().parent().data(d)){var i=!1,j=a.data(e),k="next"==j?"left":"right",l=c.bind(this,a,k+" "+j,h);return a.addClass(j),f?f(a,{addClass:k}).start().done(l):b.addClass(a,k).then(function(){i||l(),h()}),function(){i=!0}}h()},beforeRemoveClass:function(a,g,h){if("active"===g&&a.parent()&&a.parent().parent()&&!a.parent().parent().data(d)){var i=!1,j=a.data(e),k="next"==j?"left":"right",l=c.bind(this,a,k,h);return f?f(a,{addClass:k}).start().done(l):b.addClass(a,k).then(function(){i||l(),h()}),function(){i=!0}}h()}}}]),angular.module("ui.bootstrap.carousel").value("$carouselSuppressWarning",!1).controller("CarouselController",["$scope","$element","$controller","$log","$carouselSuppressWarning",function(a,b,c,d,e){e||d.warn("CarouselController is now deprecated. Use UibCarouselController instead."),angular.extend(this,c("UibCarouselController",{$scope:a,$element:b}))}]).directive("carousel",["$log","$carouselSuppressWarning",function(a,b){return{transclude:!0,replace:!0,controller:"CarouselController",controllerAs:"carousel",require:"carousel",templateUrl:function(a,b){return b.templateUrl||"template/carousel/carousel.html"},scope:{interval:"=",noTransition:"=",noPause:"=",noWrap:"&"},link:function(){b||a.warn("carousel is now deprecated. Use uib-carousel instead.")}}}]).directive("slide",["$log","$carouselSuppressWarning",function(a,b){return{require:"^carousel",transclude:!0,replace:!0,templateUrl:function(a,b){return b.templateUrl||"template/carousel/slide.html"},scope:{active:"=?",actual:"=?",index:"=?"},link:function(c,d,e,f){b||a.warn("slide is now deprecated. Use uib-slide instead."),f.addSlide(c,d),c.$on("$destroy",function(){f.removeSlide(c)}),c.$watch("active",function(a){a&&f.select(c)})}}}]),angular.module("ui.bootstrap.dateparser",[]).service("uibDateParser",["$log","$locale","orderByFilter",function(a,b,c){function d(a){var b=[],d=a.split("");return angular.forEach(g,function(c,e){var f=a.indexOf(e);if(f>-1){a=a.split(""),d[f]="("+c.regex+")",a[f]="$";for(var g=f+1,h=f+e.length;h>g;g++)d[g]="",a[g]="$";a=a.join(""),b.push({index:f,apply:c.apply})}}),{regex:new RegExp("^"+d.join("")+"$"),map:c(b,"index")}}function e(a,b,c){return 1>c?!1:1===b&&c>28?29===c&&(a%4===0&&a%100!==0||a%400===0):3===b||5===b||8===b||10===b?31>c:!0}var f,g,h=/[\\\^\$\*\+\?\|\[\]\(\)\.\{\}]/g;this.init=function(){f=b.id,this.parsers={},g={yyyy:{regex:"\\d{4}",apply:function(a){this.year=+a}},yy:{regex:"\\d{2}",apply:function(a){this.year=+a+2e3}},y:{regex:"\\d{1,4}",apply:function(a){this.year=+a}},MMMM:{regex:b.DATETIME_FORMATS.MONTH.join("|"),apply:function(a){this.month=b.DATETIME_FORMATS.MONTH.indexOf(a)}},MMM:{regex:b.DATETIME_FORMATS.SHORTMONTH.join("|"),apply:function(a){this.month=b.DATETIME_FORMATS.SHORTMONTH.indexOf(a)}},MM:{regex:"0[1-9]|1[0-2]",apply:function(a){this.month=a-1}},M:{regex:"[1-9]|1[0-2]",apply:function(a){this.month=a-1}},dd:{regex:"[0-2][0-9]{1}|3[0-1]{1}",apply:function(a){this.date=+a}},d:{regex:"[1-2]?[0-9]{1}|3[0-1]{1}",apply:function(a){this.date=+a}},EEEE:{regex:b.DATETIME_FORMATS.DAY.join("|")},EEE:{regex:b.DATETIME_FORMATS.SHORTDAY.join("|")},HH:{regex:"(?:0|1)[0-9]|2[0-3]",apply:function(a){this.hours=+a}},hh:{regex:"0[0-9]|1[0-2]",apply:function(a){this.hours=+a}},H:{regex:"1?[0-9]|2[0-3]",apply:function(a){this.hours=+a}},h:{regex:"[0-9]|1[0-2]",apply:function(a){this.hours=+a}},mm:{regex:"[0-5][0-9]",apply:function(a){this.minutes=+a}},m:{regex:"[0-9]|[1-5][0-9]",apply:function(a){this.minutes=+a}},sss:{regex:"[0-9][0-9][0-9]",apply:function(a){this.milliseconds=+a}},ss:{regex:"[0-5][0-9]",apply:function(a){this.seconds=+a}},s:{regex:"[0-9]|[1-5][0-9]",apply:function(a){this.seconds=+a}},a:{regex:b.DATETIME_FORMATS.AMPMS.join("|"),apply:function(a){12===this.hours&&(this.hours=0),"PM"===a&&(this.hours+=12)}}}},this.init(),this.parse=function(c,g,i){if(!angular.isString(c)||!g)return c;g=b.DATETIME_FORMATS[g]||g,g=g.replace(h,"\\$&"),b.id!==f&&this.init(),this.parsers[g]||(this.parsers[g]=d(g));var j=this.parsers[g],k=j.regex,l=j.map,m=c.match(k);if(m&&m.length){var n,o;angular.isDate(i)&&!isNaN(i.getTime())?n={year:i.getFullYear(),month:i.getMonth(),date:i.getDate(),hours:i.getHours(),minutes:i.getMinutes(),seconds:i.getSeconds(),milliseconds:i.getMilliseconds()}:(i&&a.warn("dateparser:","baseDate is not a valid date"),n={year:1900,month:0,date:1,hours:0,minutes:0,seconds:0,milliseconds:0});for(var p=1,q=m.length;q>p;p++){var r=l[p-1];r.apply&&r.apply.call(n,m[p])}return e(n.year,n.month,n.date)&&(angular.isDate(i)&&!isNaN(i.getTime())?(o=new Date(i),o.setFullYear(n.year,n.month,n.date,n.hours,n.minutes,n.seconds,n.milliseconds||0)):o=new Date(n.year,n.month,n.date,n.hours,n.minutes,n.seconds,n.milliseconds||0)),o}}}]),angular.module("ui.bootstrap.dateparser").value("$dateParserSuppressWarning",!1).service("dateParser",["$log","$dateParserSuppressWarning","uibDateParser",function(a,b,c){b||a.warn("dateParser is now deprecated. Use uibDateParser instead."),angular.extend(this,c)}]),angular.module("ui.bootstrap.position",[]).factory("$uibPosition",["$document","$window",function(a,b){function c(a,c){return a.currentStyle?a.currentStyle[c]:b.getComputedStyle?b.getComputedStyle(a)[c]:a.style[c]}function d(a){return"static"===(c(a,"position")||"static")}var e=function(b){for(var c=a[0],e=b.offsetParent||c;e&&e!==c&&d(e);)e=e.offsetParent;return e||c};return{position:function(b){var c=this.offset(b),d={top:0,left:0},f=e(b[0]);f!=a[0]&&(d=this.offset(angular.element(f)),d.top+=f.clientTop-f.scrollTop,d.left+=f.clientLeft-f.scrollLeft);var g=b[0].getBoundingClientRect();return{width:g.width||b.prop("offsetWidth"),height:g.height||b.prop("offsetHeight"),top:c.top-d.top,left:c.left-d.left}},offset:function(c){var d=c[0].getBoundingClientRect();return{width:d.width||c.prop("offsetWidth"),height:d.height||c.prop("offsetHeight"),top:d.top+(b.pageYOffset||a[0].documentElement.scrollTop),left:d.left+(b.pageXOffset||a[0].documentElement.scrollLeft)}},positionElements:function(a,b,c,d){var e,f,g,h,i=c.split("-"),j=i[0],k=i[1]||"center";e=d?this.offset(a):this.position(a),f=b.prop("offsetWidth"),g=b.prop("offsetHeight");var l={center:function(){return e.left+e.width/2-f/2},left:function(){return e.left},right:function(){return e.left+e.width}},m={center:function(){return e.top+e.height/2-g/2},top:function(){return e.top},bottom:function(){return e.top+e.height}};switch(j){case"right":h={top:m[k](),left:l[j]()};break;case"left":h={top:m[k](),left:e.left-f};break;case"bottom":h={top:m[j](),left:l[k]()};break;default:h={top:e.top-g,left:l[k]()}}return h}}}]),angular.module("ui.bootstrap.position").value("$positionSuppressWarning",!1).service("$position",["$log","$positionSuppressWarning","$uibPosition",function(a,b,c){b||a.warn("$position is now deprecated. Use $uibPosition instead."),angular.extend(this,c)}]),angular.module("ui.bootstrap.datepicker",["ui.bootstrap.dateparser","ui.bootstrap.position"]).value("$datepickerSuppressError",!1).constant("uibDatepickerConfig",{formatDay:"dd",formatMonth:"MMMM",formatYear:"yyyy",formatDayHeader:"EEE",formatDayTitle:"MMMM yyyy",formatMonthTitle:"yyyy",datepickerMode:"day",minMode:"day",maxMode:"year",showWeeks:!0,startingDay:0,yearRange:20,minDate:null,maxDate:null,shortcutPropagation:!1}).controller("UibDatepickerController",["$scope","$attrs","$parse","$interpolate","$log","dateFilter","uibDatepickerConfig","$datepickerSuppressError",function(a,b,c,d,e,f,g,h){var i=this,j={$setViewValue:angular.noop};this.modes=["day","month","year"],angular.forEach(["formatDay","formatMonth","formatYear","formatDayHeader","formatDayTitle","formatMonthTitle","showWeeks","startingDay","yearRange","shortcutPropagation"],function(c,e){i[c]=angular.isDefined(b[c])?6>e?d(b[c])(a.$parent):a.$parent.$eval(b[c]):g[c]}),angular.forEach(["minDate","maxDate"],function(d){b[d]?a.$parent.$watch(c(b[d]),function(a){i[d]=a?new Date(a):null,i.refreshView()}):i[d]=g[d]?new Date(g[d]):null}),angular.forEach(["minMode","maxMode"],function(d){b[d]?a.$parent.$watch(c(b[d]),function(c){i[d]=angular.isDefined(c)?c:b[d],a[d]=i[d],("minMode"==d&&i.modes.indexOf(a.datepickerMode)<i.modes.indexOf(i[d])||"maxMode"==d&&i.modes.indexOf(a.datepickerMode)>i.modes.indexOf(i[d]))&&(a.datepickerMode=i[d])}):(i[d]=g[d]||null,a[d]=i[d])}),a.datepickerMode=a.datepickerMode||g.datepickerMode,a.uniqueId="datepicker-"+a.$id+"-"+Math.floor(1e4*Math.random()),angular.isDefined(b.initDate)?(this.activeDate=a.$parent.$eval(b.initDate)||new Date,a.$parent.$watch(b.initDate,function(a){a&&(j.$isEmpty(j.$modelValue)||j.$invalid)&&(i.activeDate=a,i.refreshView())})):this.activeDate=new Date,a.isActive=function(b){return 0===i.compare(b.date,i.activeDate)?(a.activeDateId=b.uid,!0):!1},this.init=function(a){j=a,j.$render=function(){i.render()}},this.render=function(){if(j.$viewValue){var a=new Date(j.$viewValue),b=!isNaN(a);b?this.activeDate=a:h||e.error('Datepicker directive: "ng-model" value must be a Date object, a number of milliseconds since 01.01.1970 or a string representing an RFC2822 or ISO 8601 date.')}this.refreshView()},this.refreshView=function(){if(this.element){this._refreshView();var a=j.$viewValue?new Date(j.$viewValue):null;j.$setValidity("dateDisabled",!a||this.element&&!this.isDisabled(a))}},this.createDateObject=function(a,b){var c=j.$viewValue?new Date(j.$viewValue):null;return{date:a,label:f(a,b),selected:c&&0===this.compare(a,c),disabled:this.isDisabled(a),current:0===this.compare(a,new Date),customClass:this.customClass(a)}},this.isDisabled=function(c){return this.minDate&&this.compare(c,this.minDate)<0||this.maxDate&&this.compare(c,this.maxDate)>0||b.dateDisabled&&a.dateDisabled({date:c,mode:a.datepickerMode})},this.customClass=function(b){return a.customClass({date:b,mode:a.datepickerMode})},this.split=function(a,b){for(var c=[];a.length>0;)c.push(a.splice(0,b));return c},a.select=function(b){if(a.datepickerMode===i.minMode){var c=j.$viewValue?new Date(j.$viewValue):new Date(0,0,0,0,0,0,0);c.setFullYear(b.getFullYear(),b.getMonth(),b.getDate()),j.$setViewValue(c),j.$render()}else i.activeDate=b,a.datepickerMode=i.modes[i.modes.indexOf(a.datepickerMode)-1]},a.move=function(a){var b=i.activeDate.getFullYear()+a*(i.step.years||0),c=i.activeDate.getMonth()+a*(i.step.months||0);i.activeDate.setFullYear(b,c,1),i.refreshView()},a.toggleMode=function(b){b=b||1,a.datepickerMode===i.maxMode&&1===b||a.datepickerMode===i.minMode&&-1===b||(a.datepickerMode=i.modes[i.modes.indexOf(a.datepickerMode)+b])},a.keys={13:"enter",32:"space",33:"pageup",34:"pagedown",35:"end",36:"home",37:"left",38:"up",39:"right",40:"down"};var k=function(){i.element[0].focus()};a.$on("uib:datepicker.focus",k),a.keydown=function(b){var c=a.keys[b.which];if(c&&!b.shiftKey&&!b.altKey)if(b.preventDefault(),i.shortcutPropagation||b.stopPropagation(),"enter"===c||"space"===c){if(i.isDisabled(i.activeDate))return;a.select(i.activeDate)}else!b.ctrlKey||"up"!==c&&"down"!==c?(i.handleKeyDown(c,b),i.refreshView()):a.toggleMode("up"===c?1:-1)}}]).controller("UibDaypickerController",["$scope","$element","dateFilter",function(a,b,c){function d(a,b){return 1!==b||a%4!==0||a%100===0&&a%400!==0?f[b]:29}function e(a){var b=new Date(a);b.setDate(b.getDate()+4-(b.getDay()||7));var c=b.getTime();return b.setMonth(0),b.setDate(1),Math.floor(Math.round((c-b)/864e5)/7)+1}var f=[31,28,31,30,31,30,31,31,30,31,30,31];this.step={months:1},this.element=b,this.init=function(b){angular.extend(b,this),a.showWeeks=b.showWeeks,b.refreshView()},this.getDates=function(a,b){for(var c,d=new Array(b),e=new Date(a),f=0;b>f;)c=new Date(e),d[f++]=c,e.setDate(e.getDate()+1);return d},this._refreshView=function(){var b=this.activeDate.getFullYear(),d=this.activeDate.getMonth(),f=new Date(this.activeDate);f.setFullYear(b,d,1);var g=this.startingDay-f.getDay(),h=g>0?7-g:-g,i=new Date(f);h>0&&i.setDate(-h+1);for(var j=this.getDates(i,42),k=0;42>k;k++)j[k]=angular.extend(this.createDateObject(j[k],this.formatDay),{secondary:j[k].getMonth()!==d,uid:a.uniqueId+"-"+k});a.labels=new Array(7);for(var l=0;7>l;l++)a.labels[l]={abbr:c(j[l].date,this.formatDayHeader),full:c(j[l].date,"EEEE")};if(a.title=c(this.activeDate,this.formatDayTitle),a.rows=this.split(j,7),a.showWeeks){a.weekNumbers=[];for(var m=(11-this.startingDay)%7,n=a.rows.length,o=0;n>o;o++)a.weekNumbers.push(e(a.rows[o][m].date))}},this.compare=function(a,b){return new Date(a.getFullYear(),a.getMonth(),a.getDate())-new Date(b.getFullYear(),b.getMonth(),b.getDate())},this.handleKeyDown=function(a,b){var c=this.activeDate.getDate();if("left"===a)c-=1;else if("up"===a)c-=7;else if("right"===a)c+=1;else if("down"===a)c+=7;else if("pageup"===a||"pagedown"===a){var e=this.activeDate.getMonth()+("pageup"===a?-1:1);this.activeDate.setMonth(e,1),c=Math.min(d(this.activeDate.getFullYear(),this.activeDate.getMonth()),c)}else"home"===a?c=1:"end"===a&&(c=d(this.activeDate.getFullYear(),this.activeDate.getMonth()));this.activeDate.setDate(c)}}]).controller("UibMonthpickerController",["$scope","$element","dateFilter",function(a,b,c){this.step={years:1},this.element=b,this.init=function(a){angular.extend(a,this),a.refreshView()},this._refreshView=function(){for(var b,d=new Array(12),e=this.activeDate.getFullYear(),f=0;12>f;f++)b=new Date(this.activeDate),b.setFullYear(e,f,1),d[f]=angular.extend(this.createDateObject(b,this.formatMonth),{uid:a.uniqueId+"-"+f});a.title=c(this.activeDate,this.formatMonthTitle),a.rows=this.split(d,3)},this.compare=function(a,b){return new Date(a.getFullYear(),a.getMonth())-new Date(b.getFullYear(),b.getMonth())},this.handleKeyDown=function(a,b){var c=this.activeDate.getMonth();if("left"===a)c-=1;else if("up"===a)c-=3;else if("right"===a)c+=1;else if("down"===a)c+=3;else if("pageup"===a||"pagedown"===a){var d=this.activeDate.getFullYear()+("pageup"===a?-1:1);this.activeDate.setFullYear(d)}else"home"===a?c=0:"end"===a&&(c=11);this.activeDate.setMonth(c)}}]).controller("UibYearpickerController",["$scope","$element","dateFilter",function(a,b,c){function d(a){return parseInt((a-1)/e,10)*e+1}var e;this.element=b,this.yearpickerInit=function(){e=this.yearRange,this.step={years:e}},this._refreshView=function(){for(var b,c=new Array(e),f=0,g=d(this.activeDate.getFullYear());e>f;f++)b=new Date(this.activeDate),b.setFullYear(g+f,0,1),c[f]=angular.extend(this.createDateObject(b,this.formatYear),{uid:a.uniqueId+"-"+f});a.title=[c[0].label,c[e-1].label].join(" - "),a.rows=this.split(c,5)},this.compare=function(a,b){return a.getFullYear()-b.getFullYear()},this.handleKeyDown=function(a,b){var c=this.activeDate.getFullYear();"left"===a?c-=1:"up"===a?c-=5:"right"===a?c+=1:"down"===a?c+=5:"pageup"===a||"pagedown"===a?c+=("pageup"===a?-1:1)*this.step.years:"home"===a?c=d(this.activeDate.getFullYear()):"end"===a&&(c=d(this.activeDate.getFullYear())+e-1),this.activeDate.setFullYear(c)}}]).directive("uibDatepicker",function(){return{replace:!0,templateUrl:function(a,b){return b.templateUrl||"template/datepicker/datepicker.html"},scope:{datepickerMode:"=?",dateDisabled:"&",customClass:"&",shortcutPropagation:"&?"},require:["uibDatepicker","^ngModel"],controller:"UibDatepickerController",controllerAs:"datepicker",link:function(a,b,c,d){var e=d[0],f=d[1];e.init(f)}}}).directive("uibDaypicker",function(){return{replace:!0,templateUrl:function(a,b){return b.templateUrl||"template/datepicker/day.html"},require:["^?uibDatepicker","uibDaypicker","^?datepicker"],controller:"UibDaypickerController",link:function(a,b,c,d){var e=d[0]||d[2],f=d[1];f.init(e)}}}).directive("uibMonthpicker",function(){return{replace:!0,templateUrl:function(a,b){return b.templateUrl||"template/datepicker/month.html"},require:["^?uibDatepicker","uibMonthpicker","^?datepicker"],controller:"UibMonthpickerController",link:function(a,b,c,d){var e=d[0]||d[2],f=d[1];f.init(e)}}}).directive("uibYearpicker",function(){return{replace:!0,templateUrl:function(a,b){return b.templateUrl||"template/datepicker/year.html"},require:["^?uibDatepicker","uibYearpicker","^?datepicker"],controller:"UibYearpickerController",link:function(a,b,c,d){var e=d[0]||d[2];angular.extend(e,d[1]),e.yearpickerInit(),e.refreshView()}}}).constant("uibDatepickerPopupConfig",{datepickerPopup:"yyyy-MM-dd",datepickerPopupTemplateUrl:"template/datepicker/popup.html",datepickerTemplateUrl:"template/datepicker/datepicker.html",html5Types:{date:"yyyy-MM-dd","datetime-local":"yyyy-MM-ddTHH:mm:ss.sss",month:"yyyy-MM"},currentText:"Today",clearText:"Clear",closeText:"Done",closeOnDateSelection:!0,appendToBody:!1,showButtonBar:!0,onOpenFocus:!0}).controller("UibDatepickerPopupController",["$scope","$element","$attrs","$compile","$parse","$document","$rootScope","$uibPosition","dateFilter","uibDateParser","uibDatepickerPopupConfig","$timeout",function(a,b,c,d,e,f,g,h,i,j,k,l){
nagios4-4.4.6/html/angularjs/ui-bootstrap-tpls-0.14.3.min.js:9:function m(a){return a.replace(/([A-Z])/g,function(a){return"-"+a.toLowerCase()})}function n(b){if(angular.isNumber(b)&&(b=new Date(b)),b){if(angular.isDate(b)&&!isNaN(b))return b;if(angular.isString(b)){var c=j.parse(b,r,a.date);return isNaN(c)?void 0:c}return void 0}return null}function o(a,b){var d=a||b;if(!c.ngRequired&&!d)return!0;if(angular.isNumber(d)&&(d=new Date(d)),d){if(angular.isDate(d)&&!isNaN(d))return!0;if(angular.isString(d)){var e=j.parse(d,r);return!isNaN(e)}return!1}return!0}function p(c){var d=A[0],e=b[0].contains(c.target),f=void 0!==d.contains&&d.contains(c.target);!a.isOpen||e||f||a.$apply(function(){a.isOpen=!1})}function q(c){27===c.which&&a.isOpen?(c.preventDefault(),c.stopPropagation(),a.$apply(function(){a.isOpen=!1}),b[0].focus()):40!==c.which||a.isOpen||(c.preventDefault(),c.stopPropagation(),a.$apply(function(){a.isOpen=!0}))}var r,s,t,u,v,w,x,y,z,A,B={},C=!1;a.watchData={},this.init=function(h){if(z=h,s=angular.isDefined(c.closeOnDateSelection)?a.$parent.$eval(c.closeOnDateSelection):k.closeOnDateSelection,t=angular.isDefined(c.datepickerAppendToBody)?a.$parent.$eval(c.datepickerAppendToBody):k.appendToBody,u=angular.isDefined(c.onOpenFocus)?a.$parent.$eval(c.onOpenFocus):k.onOpenFocus,v=angular.isDefined(c.datepickerPopupTemplateUrl)?c.datepickerPopupTemplateUrl:k.datepickerPopupTemplateUrl,w=angular.isDefined(c.datepickerTemplateUrl)?c.datepickerTemplateUrl:k.datepickerTemplateUrl,a.showButtonBar=angular.isDefined(c.showButtonBar)?a.$parent.$eval(c.showButtonBar):k.showButtonBar,k.html5Types[c.type]?(r=k.html5Types[c.type],C=!0):(r=c.datepickerPopup||c.uibDatepickerPopup||k.datepickerPopup,c.$observe("uibDatepickerPopup",function(a,b){var c=a||k.datepickerPopup;if(c!==r&&(r=c,z.$modelValue=null,!r))throw new Error("uibDatepickerPopup must have a date format specified.")})),!r)throw new Error("uibDatepickerPopup must have a date format specified.");if(C&&c.datepickerPopup)throw new Error("HTML5 date input types do not support custom formats.");if(x=angular.element("<div uib-datepicker-popup-wrap><div uib-datepicker></div></div>"),x.attr({"ng-model":"date","ng-change":"dateSelection(date)","template-url":v}),y=angular.element(x.children()[0]),y.attr("template-url",w),C&&"month"===c.type&&(y.attr("datepicker-mode",'"month"'),y.attr("min-mode","month")),c.datepickerOptions){var l=a.$parent.$eval(c.datepickerOptions);l&&l.initDate&&(a.initDate=l.initDate,y.attr("init-date","initDate"),delete l.initDate),angular.forEach(l,function(a,b){y.attr(m(b),a)})}angular.forEach(["minMode","maxMode","minDate","maxDate","datepickerMode","initDate","shortcutPropagation"],function(b){if(c[b]){var d=e(c[b]);if(a.$parent.$watch(d,function(c){a.watchData[b]=c,("minDate"===b||"maxDate"===b)&&(B[b]=new Date(c))}),y.attr(m(b),"watchData."+b),"datepickerMode"===b){var f=d.assign;a.$watch("watchData."+b,function(b,c){angular.isFunction(f)&&b!==c&&f(a.$parent,b)})}}}),c.dateDisabled&&y.attr("date-disabled","dateDisabled({ date: date, mode: mode })"),c.showWeeks&&y.attr("show-weeks",c.showWeeks),c.customClass&&y.attr("custom-class","customClass({ date: date, mode: mode })"),C?z.$formatters.push(function(b){return a.date=b,b}):(z.$$parserName="date",z.$validators.date=o,z.$parsers.unshift(n),z.$formatters.push(function(b){return a.date=b,z.$isEmpty(b)?b:i(b,r)})),z.$viewChangeListeners.push(function(){a.date=j.parse(z.$viewValue,r,a.date)}),b.bind("keydown",q),A=d(x)(a),x.remove(),t?f.find("body").append(A):b.after(A),a.$on("$destroy",function(){a.isOpen===!0&&(g.$$phase||a.$apply(function(){a.isOpen=!1})),A.remove(),b.unbind("keydown",q),f.unbind("click",p)})},a.getText=function(b){return a[b+"Text"]||k[b+"Text"]},a.isDisabled=function(b){return"today"===b&&(b=new Date),a.watchData.minDate&&a.compare(b,B.minDate)<0||a.watchData.maxDate&&a.compare(b,B.maxDate)>0},a.compare=function(a,b){return new Date(a.getFullYear(),a.getMonth(),a.getDate())-new Date(b.getFullYear(),b.getMonth(),b.getDate())},a.dateSelection=function(c){angular.isDefined(c)&&(a.date=c);var d=a.date?i(a.date,r):null;b.val(d),z.$setViewValue(d),s&&(a.isOpen=!1,b[0].focus())},a.keydown=function(c){27===c.which&&(a.isOpen=!1,b[0].focus())},a.select=function(b){if("today"===b){var c=new Date;angular.isDate(a.date)?(b=new Date(a.date),b.setFullYear(c.getFullYear(),c.getMonth(),c.getDate())):b=new Date(c.setHours(0,0,0,0))}a.dateSelection(b)},a.close=function(){a.isOpen=!1,b[0].focus()},a.$watch("isOpen",function(c){c?(a.position=t?h.offset(b):h.position(b),a.position.top=a.position.top+b.prop("offsetHeight"),l(function(){u&&a.$broadcast("uib:datepicker.focus"),f.bind("click",p)},0,!1)):f.unbind("click",p)})}]).directive("uibDatepickerPopup",function(){return{require:["ngModel","uibDatepickerPopup"],controller:"UibDatepickerPopupController",scope:{isOpen:"=?",currentText:"@",clearText:"@",closeText:"@",dateDisabled:"&",customClass:"&"},link:function(a,b,c,d){var e=d[0],f=d[1];f.init(e)}}}).directive("uibDatepickerPopupWrap",function(){return{replace:!0,transclude:!0,templateUrl:function(a,b){return b.templateUrl||"template/datepicker/popup.html"}}}),angular.module("ui.bootstrap.datepicker").value("$datepickerSuppressWarning",!1).controller("DatepickerController",["$scope","$attrs","$parse","$interpolate","$log","dateFilter","uibDatepickerConfig","$datepickerSuppressError","$datepickerSuppressWarning",function(a,b,c,d,e,f,g,h,i){i||e.warn("DatepickerController is now deprecated. Use UibDatepickerController instead.");var j=this,k={$setViewValue:angular.noop};this.modes=["day","month","year"],angular.forEach(["formatDay","formatMonth","formatYear","formatDayHeader","formatDayTitle","formatMonthTitle","showWeeks","startingDay","yearRange","shortcutPropagation"],function(c,e){j[c]=angular.isDefined(b[c])?6>e?d(b[c])(a.$parent):a.$parent.$eval(b[c]):g[c]}),angular.forEach(["minDate","maxDate"],function(d){b[d]?a.$parent.$watch(c(b[d]),function(a){j[d]=a?new Date(a):null,j.refreshView()}):j[d]=g[d]?new Date(g[d]):null}),angular.forEach(["minMode","maxMode"],function(d){b[d]?a.$parent.$watch(c(b[d]),function(c){j[d]=angular.isDefined(c)?c:b[d],a[d]=j[d],("minMode"==d&&j.modes.indexOf(a.datepickerMode)<j.modes.indexOf(j[d])||"maxMode"==d&&j.modes.indexOf(a.datepickerMode)>j.modes.indexOf(j[d]))&&(a.datepickerMode=j[d])}):(j[d]=g[d]||null,a[d]=j[d])}),a.datepickerMode=a.datepickerMode||g.datepickerMode,a.uniqueId="datepicker-"+a.$id+"-"+Math.floor(1e4*Math.random()),angular.isDefined(b.initDate)?(this.activeDate=a.$parent.$eval(b.initDate)||new Date,a.$parent.$watch(b.initDate,function(a){a&&(k.$isEmpty(k.$modelValue)||k.$invalid)&&(j.activeDate=a,j.refreshView())})):this.activeDate=new Date,a.isActive=function(b){return 0===j.compare(b.date,j.activeDate)?(a.activeDateId=b.uid,!0):!1},this.init=function(a){k=a,k.$render=function(){j.render()}},this.render=function(){if(k.$viewValue){var a=new Date(k.$viewValue),b=!isNaN(a);b?this.activeDate=a:h||e.error('Datepicker directive: "ng-model" value must be a Date object, a number of milliseconds since 01.01.1970 or a string representing an RFC2822 or ISO 8601 date.')}this.refreshView()},this.refreshView=function(){if(this.element){this._refreshView();var a=k.$viewValue?new Date(k.$viewValue):null;k.$setValidity("dateDisabled",!a||this.element&&!this.isDisabled(a))}},this.createDateObject=function(a,b){var c=k.$viewValue?new Date(k.$viewValue):null;return{date:a,label:f(a,b),selected:c&&0===this.compare(a,c),disabled:this.isDisabled(a),current:0===this.compare(a,new Date),customClass:this.customClass(a)}},this.isDisabled=function(c){return this.minDate&&this.compare(c,this.minDate)<0||this.maxDate&&this.compare(c,this.maxDate)>0||b.dateDisabled&&a.dateDisabled({date:c,mode:a.datepickerMode})},this.customClass=function(b){return a.customClass({date:b,mode:a.datepickerMode})},this.split=function(a,b){for(var c=[];a.length>0;)c.push(a.splice(0,b));return c},this.fixTimeZone=function(a){var b=a.getHours();a.setHours(23===b?b+2:0)},a.select=function(b){if(a.datepickerMode===j.minMode){var c=k.$viewValue?new Date(k.$viewValue):new Date(0,0,0,0,0,0,0);c.setFullYear(b.getFullYear(),b.getMonth(),b.getDate()),k.$setViewValue(c),k.$render()}else j.activeDate=b,a.datepickerMode=j.modes[j.modes.indexOf(a.datepickerMode)-1]},a.move=function(a){var b=j.activeDate.getFullYear()+a*(j.step.years||0),c=j.activeDate.getMonth()+a*(j.step.months||0);j.activeDate.setFullYear(b,c,1),j.refreshView()},a.toggleMode=function(b){b=b||1,a.datepickerMode===j.maxMode&&1===b||a.datepickerMode===j.minMode&&-1===b||(a.datepickerMode=j.modes[j.modes.indexOf(a.datepickerMode)+b])},a.keys={13:"enter",32:"space",33:"pageup",34:"pagedown",35:"end",36:"home",37:"left",38:"up",39:"right",40:"down"};var l=function(){j.element[0].focus()};a.$on("uib:datepicker.focus",l),a.keydown=function(b){var c=a.keys[b.which];if(c&&!b.shiftKey&&!b.altKey)if(b.preventDefault(),j.shortcutPropagation||b.stopPropagation(),"enter"===c||"space"===c){if(j.isDisabled(j.activeDate))return;a.select(j.activeDate)}else!b.ctrlKey||"up"!==c&&"down"!==c?(j.handleKeyDown(c,b),j.refreshView()):a.toggleMode("up"===c?1:-1)}}]).directive("datepicker",["$log","$datepickerSuppressWarning",function(a,b){return{replace:!0,templateUrl:function(a,b){return b.templateUrl||"template/datepicker/datepicker.html"},scope:{datepickerMode:"=?",dateDisabled:"&",customClass:"&",shortcutPropagation:"&?"},require:["datepicker","^ngModel"],controller:"DatepickerController",controllerAs:"datepicker",link:function(c,d,e,f){b||a.warn("datepicker is now deprecated. Use uib-datepicker instead.");var g=f[0],h=f[1];g.init(h)}}}]).directive("daypicker",["$log","$datepickerSuppressWarning",function(a,b){return{replace:!0,templateUrl:"template/datepicker/day.html",require:["^datepicker","daypicker"],controller:"UibDaypickerController",link:function(c,d,e,f){b||a.warn("daypicker is now deprecated. Use uib-daypicker instead.");var g=f[0],h=f[1];h.init(g)}}}]).directive("monthpicker",["$log","$datepickerSuppressWarning",function(a,b){return{replace:!0,templateUrl:"template/datepicker/month.html",require:["^datepicker","monthpicker"],controller:"UibMonthpickerController",link:function(c,d,e,f){b||a.warn("monthpicker is now deprecated. Use uib-monthpicker instead.");var g=f[0],h=f[1];h.init(g)}}}]).directive("yearpicker",["$log","$datepickerSuppressWarning",function(a,b){return{replace:!0,templateUrl:"template/datepicker/year.html",require:["^datepicker","yearpicker"],controller:"UibYearpickerController",link:function(c,d,e,f){b||a.warn("yearpicker is now deprecated. Use uib-yearpicker instead.");var g=f[0];angular.extend(g,f[1]),g.yearpickerInit(),g.refreshView()}}}]).directive("datepickerPopup",["$log","$datepickerSuppressWarning",function(a,b){return{require:["ngModel","datepickerPopup"],controller:"UibDatepickerPopupController",scope:{isOpen:"=?",currentText:"@",clearText:"@",closeText:"@",dateDisabled:"&",customClass:"&"},link:function(c,d,e,f){b||a.warn("datepicker-popup is now deprecated. Use uib-datepicker-popup instead.");var g=f[0],h=f[1];h.init(g)}}}]).directive("datepickerPopupWrap",["$log","$datepickerSuppressWarning",function(a,b){return{replace:!0,transclude:!0,templateUrl:function(a,b){return b.templateUrl||"template/datepicker/popup.html"},link:function(){b||a.warn("datepicker-popup-wrap is now deprecated. Use uib-datepicker-popup-wrap instead.")}}}]),angular.module("ui.bootstrap.dropdown",["ui.bootstrap.position"]).constant("uibDropdownConfig",{openClass:"open"}).service("uibDropdownService",["$document","$rootScope",function(a,b){var c=null;this.open=function(b){c||(a.bind("click",d),a.bind("keydown",e)),c&&c!==b&&(c.isOpen=!1),c=b},this.close=function(b){c===b&&(c=null,a.unbind("click",d),a.unbind("keydown",e))};var d=function(a){if(c&&(!a||"disabled"!==c.getAutoClose())){var d=c.getToggleElement();if(!(a&&d&&d[0].contains(a.target))){var e=c.getDropdownElement();a&&"outsideClick"===c.getAutoClose()&&e&&e[0].contains(a.target)||(c.isOpen=!1,b.$$phase||c.$apply())}}},e=function(a){27===a.which?(c.focusToggleElement(),d()):c.isKeynavEnabled()&&/(38|40)/.test(a.which)&&c.isOpen&&(a.preventDefault(),a.stopPropagation(),c.focusDropdownEntry(a.which))}}]).controller("UibDropdownController",["$scope","$element","$attrs","$parse","uibDropdownConfig","uibDropdownService","$animate","$uibPosition","$document","$compile","$templateRequest",function(a,b,c,d,e,f,g,h,i,j,k){var l,m,n=this,o=a.$new(),p=e.openClass,q=angular.noop,r=c.onToggle?d(c.onToggle):angular.noop,s=!1,t=!1;b.addClass("dropdown"),this.init=function(){c.isOpen&&(m=d(c.isOpen),q=m.assign,a.$watch(m,function(a){o.isOpen=!!a})),s=angular.isDefined(c.dropdownAppendToBody),t=angular.isDefined(c.uibKeyboardNav),s&&n.dropdownMenu&&(i.find("body").append(n.dropdownMenu),b.on("$destroy",function(){n.dropdownMenu.remove()}))},this.toggle=function(a){return o.isOpen=arguments.length?!!a:!o.isOpen},this.isOpen=function(){return o.isOpen},o.getToggleElement=function(){return n.toggleElement},o.getAutoClose=function(){return c.autoClose||"always"},o.getElement=function(){return b},o.isKeynavEnabled=function(){return t},o.focusDropdownEntry=function(a){var c=n.dropdownMenu?angular.element(n.dropdownMenu).find("a"):angular.element(b).find("ul").eq(0).find("a");switch(a){case 40:angular.isNumber(n.selectedOption)?n.selectedOption=n.selectedOption===c.length-1?n.selectedOption:n.selectedOption+1:n.selectedOption=0;break;case 38:angular.isNumber(n.selectedOption)?n.selectedOption=0===n.selectedOption?0:n.selectedOption-1:n.selectedOption=c.length-1}c[n.selectedOption].focus()},o.getDropdownElement=function(){return n.dropdownMenu},o.focusToggleElement=function(){n.toggleElement&&n.toggleElement[0].focus()},o.$watch("isOpen",function(c,d){if(s&&n.dropdownMenu){var e=h.positionElements(b,n.dropdownMenu,"bottom-left",!0),i={top:e.top+"px",display:c?"block":"none"},m=n.dropdownMenu.hasClass("dropdown-menu-right");m?(i.left="auto",i.right=window.innerWidth-(e.left+b.prop("offsetWidth"))+"px"):(i.left=e.left+"px",i.right="auto"),n.dropdownMenu.css(i)}if(g[c?"addClass":"removeClass"](b,p).then(function(){angular.isDefined(c)&&c!==d&&r(a,{open:!!c})}),c)n.dropdownMenuTemplateUrl&&k(n.dropdownMenuTemplateUrl).then(function(a){l=o.$new(),j(a.trim())(l,function(a){var b=a;n.dropdownMenu.replaceWith(b),n.dropdownMenu=b})}),o.focusToggleElement(),f.open(o);else{if(n.dropdownMenuTemplateUrl){l&&l.$destroy();var t=angular.element('<ul class="dropdown-menu"></ul>');n.dropdownMenu.replaceWith(t),n.dropdownMenu=t}f.close(o),n.selectedOption=null}angular.isFunction(q)&&q(a,c)}),a.$on("$locationChangeSuccess",function(){"disabled"!==o.getAutoClose()&&(o.isOpen=!1)});var u=a.$on("$destroy",function(){o.$destroy()});o.$on("$destroy",u)}]).directive("uibDropdown",function(){return{controller:"UibDropdownController",link:function(a,b,c,d){d.init()}}}).directive("uibDropdownMenu",function(){return{restrict:"AC",require:"?^uibDropdown",link:function(a,b,c,d){if(d&&!angular.isDefined(c.dropdownNested)){b.addClass("dropdown-menu");var e=c.templateUrl;e&&(d.dropdownMenuTemplateUrl=e),d.dropdownMenu||(d.dropdownMenu=b)}}}}).directive("uibKeyboardNav",function(){return{restrict:"A",require:"?^uibDropdown",link:function(a,b,c,d){b.bind("keydown",function(a){if(-1!==[38,40].indexOf(a.which)){a.preventDefault(),a.stopPropagation();var b=d.dropdownMenu.find("a");switch(a.which){case 40:angular.isNumber(d.selectedOption)?d.selectedOption=d.selectedOption===b.length-1?d.selectedOption:d.selectedOption+1:d.selectedOption=0;break;case 38:angular.isNumber(d.selectedOption)?d.selectedOption=0===d.selectedOption?0:d.selectedOption-1:d.selectedOption=b.length-1}b[d.selectedOption].focus()}})}}}).directive("uibDropdownToggle",function(){return{require:"?^uibDropdown",link:function(a,b,c,d){if(d){b.addClass("dropdown-toggle"),d.toggleElement=b;var e=function(e){e.preventDefault(),b.hasClass("disabled")||c.disabled||a.$apply(function(){d.toggle()})};b.bind("click",e),b.attr({"aria-haspopup":!0,"aria-expanded":!1}),a.$watch(d.isOpen,function(a){b.attr("aria-expanded",!!a)}),a.$on("$destroy",function(){b.unbind("click",e)})}}}}),angular.module("ui.bootstrap.dropdown").value("$dropdownSuppressWarning",!1).service("dropdownService",["$log","$dropdownSuppressWarning","uibDropdownService",function(a,b,c){b||a.warn("dropdownService is now deprecated. Use uibDropdownService instead."),angular.extend(this,c)}]).controller("DropdownController",["$scope","$element","$attrs","$parse","uibDropdownConfig","uibDropdownService","$animate","$uibPosition","$document","$compile","$templateRequest","$log","$dropdownSuppressWarning",function(a,b,c,d,e,f,g,h,i,j,k,l,m){m||l.warn("DropdownController is now deprecated. Use UibDropdownController instead.");var n,o,p=this,q=a.$new(),r=e.openClass,s=angular.noop,t=c.onToggle?d(c.onToggle):angular.noop,u=!1,v=!1;b.addClass("dropdown"),this.init=function(){c.isOpen&&(o=d(c.isOpen),s=o.assign,a.$watch(o,function(a){q.isOpen=!!a})),u=angular.isDefined(c.dropdownAppendToBody),v=angular.isDefined(c.uibKeyboardNav),u&&p.dropdownMenu&&(i.find("body").append(p.dropdownMenu),b.on("$destroy",function(){p.dropdownMenu.remove()}))},this.toggle=function(a){return q.isOpen=arguments.length?!!a:!q.isOpen},this.isOpen=function(){return q.isOpen},q.getToggleElement=function(){return p.toggleElement},q.getAutoClose=function(){return c.autoClose||"always"},q.getElement=function(){return b},q.isKeynavEnabled=function(){return v},q.focusDropdownEntry=function(a){var c=p.dropdownMenu?angular.element(p.dropdownMenu).find("a"):angular.element(b).find("ul").eq(0).find("a");switch(a){case 40:angular.isNumber(p.selectedOption)?p.selectedOption=p.selectedOption===c.length-1?p.selectedOption:p.selectedOption+1:p.selectedOption=0;break;case 38:angular.isNumber(p.selectedOption)?p.selectedOption=0===p.selectedOption?0:p.selectedOption-1:p.selectedOption=c.length-1}c[p.selectedOption].focus()},q.getDropdownElement=function(){return p.dropdownMenu},q.focusToggleElement=function(){p.toggleElement&&p.toggleElement[0].focus()},q.$watch("isOpen",function(c,d){if(u&&p.dropdownMenu){var e=h.positionElements(b,p.dropdownMenu,"bottom-left",!0),i={top:e.top+"px",display:c?"block":"none"},l=p.dropdownMenu.hasClass("dropdown-menu-right");l?(i.left="auto",i.right=window.innerWidth-(e.left+b.prop("offsetWidth"))+"px"):(i.left=e.left+"px",i.right="auto"),p.dropdownMenu.css(i)}if(g[c?"addClass":"removeClass"](b,r).then(function(){angular.isDefined(c)&&c!==d&&t(a,{open:!!c})}),c)p.dropdownMenuTemplateUrl&&k(p.dropdownMenuTemplateUrl).then(function(a){n=q.$new(),j(a.trim())(n,function(a){var b=a;p.dropdownMenu.replaceWith(b),p.dropdownMenu=b})}),q.focusToggleElement(),f.open(q);else{if(p.dropdownMenuTemplateUrl){n&&n.$destroy();var m=angular.element('<ul class="dropdown-menu"></ul>');p.dropdownMenu.replaceWith(m),p.dropdownMenu=m}f.close(q),p.selectedOption=null}angular.isFunction(s)&&s(a,c)}),a.$on("$locationChangeSuccess",function(){"disabled"!==q.getAutoClose()&&(q.isOpen=!1)});var w=a.$on("$destroy",function(){q.$destroy()});q.$on("$destroy",w)}]).directive("dropdown",["$log","$dropdownSuppressWarning",function(a,b){return{controller:"DropdownController",link:function(c,d,e,f){b||a.warn("dropdown is now deprecated. Use uib-dropdown instead."),f.init()}}}]).directive("dropdownMenu",["$log","$dropdownSuppressWarning",function(a,b){return{restrict:"AC",require:"?^dropdown",link:function(c,d,e,f){if(f&&!angular.isDefined(e.dropdownNested)){b||a.warn("dropdown-menu is now deprecated. Use uib-dropdown-menu instead."),d.addClass("dropdown-menu");var g=e.templateUrl;g&&(f.dropdownMenuTemplateUrl=g),f.dropdownMenu||(f.dropdownMenu=d)}}}}]).directive("keyboardNav",["$log","$dropdownSuppressWarning",function(a,b){return{restrict:"A",require:"?^dropdown",link:function(c,d,e,f){b||a.warn("keyboard-nav is now deprecated. Use uib-keyboard-nav instead."),d.bind("keydown",function(a){if(-1!==[38,40].indexOf(a.which)){a.preventDefault(),a.stopPropagation();var b=f.dropdownMenu.find("a");switch(a.which){case 40:angular.isNumber(f.selectedOption)?f.selectedOption=f.selectedOption===b.length-1?f.selectedOption:f.selectedOption+1:f.selectedOption=0;break;case 38:angular.isNumber(f.selectedOption)?f.selectedOption=0===f.selectedOption?0:f.selectedOption-1:f.selectedOption=b.length-1}b[f.selectedOption].focus()}})}}}]).directive("dropdownToggle",["$log","$dropdownSuppressWarning",function(a,b){return{require:"?^dropdown",link:function(c,d,e,f){if(b||a.warn("dropdown-toggle is now deprecated. Use uib-dropdown-toggle instead."),f){d.addClass("dropdown-toggle"),f.toggleElement=d;var g=function(a){a.preventDefault(),d.hasClass("disabled")||e.disabled||c.$apply(function(){f.toggle()})};d.bind("click",g),d.attr({"aria-haspopup":!0,"aria-expanded":!1}),c.$watch(f.isOpen,function(a){d.attr("aria-expanded",!!a)}),c.$on("$destroy",function(){d.unbind("click",g)})}}}}]),angular.module("ui.bootstrap.stackedMap",[]).factory("$$stackedMap",function(){return{createNew:function(){var a=[];return{add:function(b,c){a.push({key:b,value:c})},get:function(b){for(var c=0;c<a.length;c++)if(b==a[c].key)return a[c]},keys:function(){for(var b=[],c=0;c<a.length;c++)b.push(a[c].key);return b},top:function(){return a[a.length-1]},remove:function(b){for(var c=-1,d=0;d<a.length;d++)if(b==a[d].key){c=d;break}return a.splice(c,1)[0]},removeTop:function(){return a.splice(a.length-1,1)[0]},length:function(){return a.length}}}}}),angular.module("ui.bootstrap.modal",["ui.bootstrap.stackedMap"]).factory("$$multiMap",function(){return{createNew:function(){var a={};return{entries:function(){return Object.keys(a).map(function(b){return{key:b,value:a[b]}})},get:function(b){return a[b]},hasKey:function(b){return!!a[b]},keys:function(){return Object.keys(a)},put:function(b,c){a[b]||(a[b]=[]),a[b].push(c)},remove:function(b,c){var d=a[b];if(d){var e=d.indexOf(c);-1!==e&&d.splice(e,1),d.length||delete a[b]}}}}}}).directive("uibModalBackdrop",["$animate","$injector","$uibModalStack",function(a,b,c){function d(b,d,f){d.addClass("modal-backdrop"),f.modalInClass&&(e?e(d,{addClass:f.modalInClass}).start():a.addClass(d,f.modalInClass),b.$on(c.NOW_CLOSING_EVENT,function(b,c){var g=c();e?e(d,{removeClass:f.modalInClass}).start().then(g):a.removeClass(d,f.modalInClass).then(g)}))}var e=null;return b.has("$animateCss")&&(e=b.get("$animateCss")),{replace:!0,templateUrl:"template/modal/backdrop.html",compile:function(a,b){return a.addClass(b.backdropClass),d}}}]).directive("uibModalWindow",["$uibModalStack","$q","$animate","$injector",function(a,b,c,d){var e=null;return d.has("$animateCss")&&(e=d.get("$animateCss")),{scope:{index:"@"},replace:!0,transclude:!0,templateUrl:function(a,b){return b.templateUrl||"template/modal/window.html"},link:function(d,f,g){f.addClass(g.windowClass||""),f.addClass(g.windowTopClass||""),d.size=g.size,d.close=function(b){var c=a.getTop();c&&c.value.backdrop&&"static"!==c.value.backdrop&&b.target===b.currentTarget&&(b.preventDefault(),b.stopPropagation(),a.dismiss(c.key,"backdrop click"))},f.on("click",d.close),d.$isRendered=!0;var h=b.defer();g.$observe("modalRender",function(a){"true"==a&&h.resolve()}),h.promise.then(function(){var h=null;g.modalInClass&&(h=e?e(f,{addClass:g.modalInClass}).start():c.addClass(f,g.modalInClass),d.$on(a.NOW_CLOSING_EVENT,function(a,b){var d=b();e?e(f,{removeClass:g.modalInClass}).start().then(d):c.removeClass(f,g.modalInClass).then(d)})),b.when(h).then(function(){var a=f[0].querySelector("[autofocus]");a?a.focus():f[0].focus()});var i=a.getTop();i&&a.modalRendered(i.key)})}}}]).directive("uibModalAnimationClass",function(){return{compile:function(a,b){b.modalAnimation&&a.addClass(b.uibModalAnimationClass)}}}).directive("uibModalTransclude",function(){return{link:function(a,b,c,d,e){e(a.$parent,function(a){b.empty(),b.append(a)})}}}).factory("$uibModalStack",["$animate","$timeout","$document","$compile","$rootScope","$q","$injector","$$multiMap","$$stackedMap",function(a,b,c,d,e,f,g,h,i){function j(){for(var a=-1,b=u.keys(),c=0;c<b.length;c++)u.get(b[c]).value.backdrop&&(a=c);return a}function k(a,b){var d=c.find("body").eq(0),e=u.get(a).value;u.remove(a),n(e.modalDomEl,e.modalScope,function(){var b=e.openedClass||t;v.remove(b,a),d.toggleClass(b,v.hasKey(b)),l(!0)}),m(),b&&b.focus?b.focus():d.focus()}function l(a){var b;u.length()>0&&(b=u.top().value,b.modalDomEl.toggleClass(b.windowTopClass||"",a))}function m(){if(q&&-1==j()){var a=r;n(q,r,function(){a=null}),q=void 0,r=void 0}}function n(b,c,d){function e(){e.done||(e.done=!0,p?p(b,{event:"leave"}).start().then(function(){b.remove()}):a.leave(b),c.$destroy(),d&&d())}var g,h=null,i=function(){return g||(g=f.defer(),h=g.promise),function(){g.resolve()}};return c.$broadcast(w.NOW_CLOSING_EVENT,i),f.when(h).then(e)}function o(a,b,c){return!a.value.modalScope.$broadcast("modal.closing",b,c).defaultPrevented}var p=null;g.has("$animateCss")&&(p=g.get("$animateCss"));var q,r,s,t="modal-open",u=i.createNew(),v=h.createNew(),w={NOW_CLOSING_EVENT:"modal.stack.now-closing"},x=0,y="a[href], area[href], input:not([disabled]), button:not([disabled]),select:not([disabled]), textarea:not([disabled]), iframe, object, embed, *[tabindex], *[contenteditable=true]";return e.$watch(j,function(a){r&&(r.index=a)}),c.bind("keydown",function(a){if(a.isDefaultPrevented())return a;var b=u.top();if(b&&b.value.keyboard)switch(a.which){case 27:a.preventDefault(),e.$apply(function(){w.dismiss(b.key,"escape key press")});break;case 9:w.loadFocusElementList(b);var c=!1;a.shiftKey?w.isFocusInFirstItem(a)&&(c=w.focusLastFocusableElement()):w.isFocusInLastItem(a)&&(c=w.focusFirstFocusableElement()),c&&(a.preventDefault(),a.stopPropagation())}}),w.open=function(a,b){var f=c[0].activeElement,g=b.openedClass||t;l(!1),u.add(a,{deferred:b.deferred,renderDeferred:b.renderDeferred,modalScope:b.scope,backdrop:b.backdrop,keyboard:b.keyboard,openedClass:b.openedClass,windowTopClass:b.windowTopClass}),v.put(g,a);var h=c.find("body").eq(0),i=j();if(i>=0&&!q){r=e.$new(!0),r.index=i;var k=angular.element('<div uib-modal-backdrop="modal-backdrop"></div>');k.attr("backdrop-class",b.backdropClass),b.animation&&k.attr("modal-animation","true"),q=d(k)(r),h.append(q)}var m=angular.element('<div uib-modal-window="modal-window"></div>');m.attr({"template-url":b.windowTemplateUrl,"window-class":b.windowClass,"window-top-class":b.windowTopClass,size:b.size,index:u.length()-1,animate:"animate"}).html(b.content),b.animation&&m.attr("modal-animation","true");var n=d(m)(b.scope);u.top().value.modalDomEl=n,u.top().value.modalOpener=f,h.append(n),h.addClass(g),w.clearFocusListCache()},w.close=function(a,b){var c=u.get(a);return c&&o(c,b,!0)?(c.value.modalScope.$$uibDestructionScheduled=!0,c.value.deferred.resolve(b),k(a,c.value.modalOpener),!0):!c},w.dismiss=function(a,b){var c=u.get(a);return c&&o(c,b,!1)?(c.value.modalScope.$$uibDestructionScheduled=!0,c.value.deferred.reject(b),k(a,c.value.modalOpener),!0):!c},w.dismissAll=function(a){for(var b=this.getTop();b&&this.dismiss(b.key,a);)b=this.getTop()},w.getTop=function(){return u.top()},w.modalRendered=function(a){var b=u.get(a);b&&b.value.renderDeferred.resolve()},w.focusFirstFocusableElement=function(){return s.length>0?(s[0].focus(),!0):!1},w.focusLastFocusableElement=function(){return s.length>0?(s[s.length-1].focus(),!0):!1},w.isFocusInFirstItem=function(a){return s.length>0?(a.target||a.srcElement)==s[0]:!1},w.isFocusInLastItem=function(a){return s.length>0?(a.target||a.srcElement)==s[s.length-1]:!1},w.clearFocusListCache=function(){s=[],x=0},w.loadFocusElementList=function(a){if((void 0===s||!s.length)&&a){var b=a.value.modalDomEl;b&&b.length&&(s=b[0].querySelectorAll(y))}},w}]).provider("$uibModal",function(){var a={options:{animation:!0,backdrop:!0,keyboard:!0},$get:["$injector","$rootScope","$q","$templateRequest","$controller","$uibModalStack","$modalSuppressWarning","$log",function(b,c,d,e,f,g,h,i){function j(a){return a.template?d.when(a.template):e(angular.isFunction(a.templateUrl)?a.templateUrl():a.templateUrl)}function k(a){var c=[];return angular.forEach(a,function(a){angular.isFunction(a)||angular.isArray(a)?c.push(d.when(b.invoke(a))):angular.isString(a)?c.push(d.when(b.get(a))):c.push(d.when(a))}),c}var l={},m=null;return l.getPromiseChain=function(){return m},l.open=function(b){function e(){return r}var l=d.defer(),n=d.defer(),o=d.defer(),p={result:l.promise,opened:n.promise,rendered:o.promise,close:function(a){return g.close(p,a)},dismiss:function(a){return g.dismiss(p,a)}};if(b=angular.extend({},a.options,b),b.resolve=b.resolve||{},!b.template&&!b.templateUrl)throw new Error("One of template or templateUrl options is required.");var q,r=d.all([j(b)].concat(k(b.resolve)));return q=m=d.all([m]).then(e,e).then(function(a){var d=(b.scope||c).$new();d.$close=p.close,d.$dismiss=p.dismiss,d.$on("$destroy",function(){d.$$uibDestructionScheduled||d.$dismiss("$uibUnscheduledDestruction")});var e,j={},k=1;b.controller&&(j.$scope=d,j.$uibModalInstance=p,Object.defineProperty(j,"$modalInstance",{get:function(){return h||i.warn("$modalInstance is now deprecated. Use $uibModalInstance instead."),p}}),angular.forEach(b.resolve,function(b,c){j[c]=a[k++]}),e=f(b.controller,j),b.controllerAs&&(b.bindToController&&angular.extend(e,d),d[b.controllerAs]=e)),g.open(p,{scope:d,deferred:l,renderDeferred:o,content:a[0],animation:b.animation,backdrop:b.backdrop,keyboard:b.keyboard,backdropClass:b.backdropClass,windowTopClass:b.windowTopClass,windowClass:b.windowClass,windowTemplateUrl:b.windowTemplateUrl,size:b.size,openedClass:b.openedClass}),n.resolve(!0)},function(a){n.reject(a),l.reject(a)})["finally"](function(){m===q&&(m=null)}),p},l}]};return a}),angular.module("ui.bootstrap.modal").value("$modalSuppressWarning",!1).directive("modalBackdrop",["$animate","$injector","$modalStack","$log","$modalSuppressWarning",function(a,b,c,d,e){function f(b,f,h){e||d.warn("modal-backdrop is now deprecated. Use uib-modal-backdrop instead."),f.addClass("modal-backdrop"),h.modalInClass&&(g?g(f,{addClass:h.modalInClass}).start():a.addClass(f,h.modalInClass),b.$on(c.NOW_CLOSING_EVENT,function(b,c){var d=c();g?g(f,{removeClass:h.modalInClass}).start().then(d):a.removeClass(f,h.modalInClass).then(d)}))}var g=null;return b.has("$animateCss")&&(g=b.get("$animateCss")),{replace:!0,templateUrl:"template/modal/backdrop.html",compile:function(a,b){return a.addClass(b.backdropClass),f}}}]).directive("modalWindow",["$modalStack","$q","$animate","$injector","$log","$modalSuppressWarning",function(a,b,c,d,e,f){var g=null;return d.has("$animateCss")&&(g=d.get("$animateCss")),{scope:{index:"@"},replace:!0,transclude:!0,templateUrl:function(a,b){return b.templateUrl||"template/modal/window.html"},link:function(d,h,i){f||e.warn("modal-window is now deprecated. Use uib-modal-window instead."),h.addClass(i.windowClass||""),h.addClass(i.windowTopClass||""),d.size=i.size,d.close=function(b){var c=a.getTop();c&&c.value.backdrop&&"static"!==c.value.backdrop&&b.target===b.currentTarget&&(b.preventDefault(),b.stopPropagation(),a.dismiss(c.key,"backdrop click"))},h.on("click",d.close),d.$isRendered=!0;var j=b.defer();i.$observe("modalRender",function(a){"true"==a&&j.resolve()}),j.promise.then(function(){var e=null;i.modalInClass&&(e=g?g(h,{addClass:i.modalInClass}).start():c.addClass(h,i.modalInClass),d.$on(a.NOW_CLOSING_EVENT,function(a,b){var d=b();g?g(h,{removeClass:i.modalInClass}).start().then(d):c.removeClass(h,i.modalInClass).then(d)})),b.when(e).then(function(){var a=h[0].querySelector("[autofocus]");a?a.focus():h[0].focus()});var f=a.getTop();f&&a.modalRendered(f.key)})}}}]).directive("modalAnimationClass",["$log","$modalSuppressWarning",function(a,b){return{compile:function(c,d){b||a.warn("modal-animation-class is now deprecated. Use uib-modal-animation-class instead."),d.modalAnimation&&c.addClass(d.modalAnimationClass)}}}]).directive("modalTransclude",["$log","$modalSuppressWarning",function(a,b){return{link:function(c,d,e,f,g){
nagios4-4.4.6/html/angularjs/ui-bootstrap-tpls-0.14.3.min.js:10:b||a.warn("modal-transclude is now deprecated. Use uib-modal-transclude instead."),g(c.$parent,function(a){d.empty(),d.append(a)})}}}]).service("$modalStack",["$animate","$timeout","$document","$compile","$rootScope","$q","$injector","$$multiMap","$$stackedMap","$uibModalStack","$log","$modalSuppressWarning",function(a,b,c,d,e,f,g,h,i,j,k,l){l||k.warn("$modalStack is now deprecated. Use $uibModalStack instead."),angular.extend(this,j)}]).provider("$modal",["$uibModalProvider",function(a){angular.extend(this,a),this.$get=["$injector","$log","$modalSuppressWarning",function(b,c,d){return d||c.warn("$modal is now deprecated. Use $uibModal instead."),b.invoke(a.$get)}]}]),angular.module("ui.bootstrap.pagination",[]).controller("UibPaginationController",["$scope","$attrs","$parse",function(a,b,c){var d=this,e={$setViewValue:angular.noop},f=b.numPages?c(b.numPages).assign:angular.noop;this.init=function(g,h){e=g,this.config=h,e.$render=function(){d.render()},b.itemsPerPage?a.$parent.$watch(c(b.itemsPerPage),function(b){d.itemsPerPage=parseInt(b,10),a.totalPages=d.calculateTotalPages()}):this.itemsPerPage=h.itemsPerPage,a.$watch("totalItems",function(){a.totalPages=d.calculateTotalPages()}),a.$watch("totalPages",function(b){f(a.$parent,b),a.page>b?a.selectPage(b):e.$render()})},this.calculateTotalPages=function(){var b=this.itemsPerPage<1?1:Math.ceil(a.totalItems/this.itemsPerPage);return Math.max(b||0,1)},this.render=function(){a.page=parseInt(e.$viewValue,10)||1},a.selectPage=function(b,c){c&&c.preventDefault();var d=!a.ngDisabled||!c;d&&a.page!==b&&b>0&&b<=a.totalPages&&(c&&c.target&&c.target.blur(),e.$setViewValue(b),e.$render())},a.getText=function(b){return a[b+"Text"]||d.config[b+"Text"]},a.noPrevious=function(){return 1===a.page},a.noNext=function(){return a.page===a.totalPages}}]).constant("uibPaginationConfig",{itemsPerPage:10,boundaryLinks:!1,directionLinks:!0,firstText:"First",previousText:"Previous",nextText:"Next",lastText:"Last",rotate:!0}).directive("uibPagination",["$parse","uibPaginationConfig",function(a,b){return{restrict:"EA",scope:{totalItems:"=",firstText:"@",previousText:"@",nextText:"@",lastText:"@",ngDisabled:"="},require:["uibPagination","?ngModel"],controller:"UibPaginationController",controllerAs:"pagination",templateUrl:function(a,b){return b.templateUrl||"template/pagination/pagination.html"},replace:!0,link:function(c,d,e,f){function g(a,b,c){return{number:a,text:b,active:c}}function h(a,b){var c=[],d=1,e=b,f=angular.isDefined(k)&&b>k;f&&(l?(d=Math.max(a-Math.floor(k/2),1),e=d+k-1,e>b&&(e=b,d=e-k+1)):(d=(Math.ceil(a/k)-1)*k+1,e=Math.min(d+k-1,b)));for(var h=d;e>=h;h++){var i=g(h,h,h===a);c.push(i)}if(f&&!l){if(d>1){var j=g(d-1,"...",!1);c.unshift(j)}if(b>e){var m=g(e+1,"...",!1);c.push(m)}}return c}var i=f[0],j=f[1];if(j){var k=angular.isDefined(e.maxSize)?c.$parent.$eval(e.maxSize):b.maxSize,l=angular.isDefined(e.rotate)?c.$parent.$eval(e.rotate):b.rotate;c.boundaryLinks=angular.isDefined(e.boundaryLinks)?c.$parent.$eval(e.boundaryLinks):b.boundaryLinks,c.directionLinks=angular.isDefined(e.directionLinks)?c.$parent.$eval(e.directionLinks):b.directionLinks,i.init(j,b),e.maxSize&&c.$parent.$watch(a(e.maxSize),function(a){k=parseInt(a,10),i.render()});var m=i.render;i.render=function(){m(),c.page>0&&c.page<=c.totalPages&&(c.pages=h(c.page,c.totalPages))}}}}}]).constant("uibPagerConfig",{itemsPerPage:10,previousText:"« Previous",nextText:"Next »",align:!0}).directive("uibPager",["uibPagerConfig",function(a){return{restrict:"EA",scope:{totalItems:"=",previousText:"@",nextText:"@",ngDisabled:"="},require:["uibPager","?ngModel"],controller:"UibPaginationController",controllerAs:"pagination",templateUrl:function(a,b){return b.templateUrl||"template/pagination/pager.html"},replace:!0,link:function(b,c,d,e){var f=e[0],g=e[1];g&&(b.align=angular.isDefined(d.align)?b.$parent.$eval(d.align):a.align,f.init(g,a))}}}]),angular.module("ui.bootstrap.pagination").value("$paginationSuppressWarning",!1).controller("PaginationController",["$scope","$attrs","$parse","$log","$paginationSuppressWarning",function(a,b,c,d,e){e||d.warn("PaginationController is now deprecated. Use UibPaginationController instead.");var f=this,g={$setViewValue:angular.noop},h=b.numPages?c(b.numPages).assign:angular.noop;this.init=function(d,e){g=d,this.config=e,g.$render=function(){f.render()},b.itemsPerPage?a.$parent.$watch(c(b.itemsPerPage),function(b){f.itemsPerPage=parseInt(b,10),a.totalPages=f.calculateTotalPages()}):this.itemsPerPage=e.itemsPerPage,a.$watch("totalItems",function(){a.totalPages=f.calculateTotalPages()}),a.$watch("totalPages",function(b){h(a.$parent,b),a.page>b?a.selectPage(b):g.$render()})},this.calculateTotalPages=function(){var b=this.itemsPerPage<1?1:Math.ceil(a.totalItems/this.itemsPerPage);return Math.max(b||0,1)},this.render=function(){a.page=parseInt(g.$viewValue,10)||1},a.selectPage=function(b,c){c&&c.preventDefault();var d=!a.ngDisabled||!c;d&&a.page!==b&&b>0&&b<=a.totalPages&&(c&&c.target&&c.target.blur(),g.$setViewValue(b),g.$render())},a.getText=function(b){return a[b+"Text"]||f.config[b+"Text"]},a.noPrevious=function(){return 1===a.page},a.noNext=function(){return a.page===a.totalPages}}]).directive("pagination",["$parse","uibPaginationConfig","$log","$paginationSuppressWarning",function(a,b,c,d){return{restrict:"EA",scope:{totalItems:"=",firstText:"@",previousText:"@",nextText:"@",lastText:"@",ngDisabled:"="},require:["pagination","?ngModel"],controller:"PaginationController",controllerAs:"pagination",templateUrl:function(a,b){return b.templateUrl||"template/pagination/pagination.html"},replace:!0,link:function(e,f,g,h){function i(a,b,c){return{number:a,text:b,active:c}}function j(a,b){var c=[],d=1,e=b,f=angular.isDefined(m)&&b>m;f&&(n?(d=Math.max(a-Math.floor(m/2),1),e=d+m-1,e>b&&(e=b,d=e-m+1)):(d=(Math.ceil(a/m)-1)*m+1,e=Math.min(d+m-1,b)));for(var g=d;e>=g;g++){var h=i(g,g,g===a);c.push(h)}if(f&&!n){if(d>1){var j=i(d-1,"...",!1);c.unshift(j)}if(b>e){var k=i(e+1,"...",!1);c.push(k)}}return c}d||c.warn("pagination is now deprecated. Use uib-pagination instead.");var k=h[0],l=h[1];if(l){var m=angular.isDefined(g.maxSize)?e.$parent.$eval(g.maxSize):b.maxSize,n=angular.isDefined(g.rotate)?e.$parent.$eval(g.rotate):b.rotate;e.boundaryLinks=angular.isDefined(g.boundaryLinks)?e.$parent.$eval(g.boundaryLinks):b.boundaryLinks,e.directionLinks=angular.isDefined(g.directionLinks)?e.$parent.$eval(g.directionLinks):b.directionLinks,k.init(l,b),g.maxSize&&e.$parent.$watch(a(g.maxSize),function(a){m=parseInt(a,10),k.render()});var o=k.render;k.render=function(){o(),e.page>0&&e.page<=e.totalPages&&(e.pages=j(e.page,e.totalPages))}}}}}]).directive("pager",["uibPagerConfig","$log","$paginationSuppressWarning",function(a,b,c){return{restrict:"EA",scope:{totalItems:"=",previousText:"@",nextText:"@",ngDisabled:"="},require:["pager","?ngModel"],controller:"PaginationController",controllerAs:"pagination",templateUrl:function(a,b){return b.templateUrl||"template/pagination/pager.html"},replace:!0,link:function(d,e,f,g){c||b.warn("pager is now deprecated. Use uib-pager instead.");var h=g[0],i=g[1];i&&(d.align=angular.isDefined(f.align)?d.$parent.$eval(f.align):a.align,h.init(i,a))}}}]),angular.module("ui.bootstrap.tooltip",["ui.bootstrap.position","ui.bootstrap.stackedMap"]).provider("$uibTooltip",function(){function a(a){var b=/[A-Z]/g,c="-";return a.replace(b,function(a,b){return(b?c:"")+a.toLowerCase()})}var b={placement:"top",animation:!0,popupDelay:0,popupCloseDelay:0,useContentExp:!1},c={mouseenter:"mouseleave",click:"click",focus:"blur",none:""},d={};this.options=function(a){angular.extend(d,a)},this.setTriggers=function(a){angular.extend(c,a)},this.$get=["$window","$compile","$timeout","$document","$uibPosition","$interpolate","$rootScope","$parse","$$stackedMap",function(e,f,g,h,i,j,k,l,m){var n=m.createNew();return h.on("keypress",function(a){if(27===a.which){var b=n.top();b&&(b.value.close(),n.removeTop(),b=null)}}),function(e,k,m,o){function p(a){var b=(a||o.trigger||m).split(" "),d=b.map(function(a){return c[a]||a});return{show:b,hide:d}}o=angular.extend({},b,d,o);var q=a(e),r=j.startSymbol(),s=j.endSymbol(),t="<div "+q+'-popup title="'+r+"title"+s+'" '+(o.useContentExp?'content-exp="contentExp()" ':'content="'+r+"content"+s+'" ')+'placement="'+r+"placement"+s+'" popup-class="'+r+"popupClass"+s+'" animation="animation" is-open="isOpen"origin-scope="origScope" style="visibility: hidden; display: block; top: -9999px; left: -9999px;"></div>';return{compile:function(a,b){var c=f(t);return function(a,b,d,f){function j(){L.isOpen?q():m()}function m(){(!K||a.$eval(d[k+"Enable"]))&&(u(),x(),L.popupDelay?F||(F=g(r,L.popupDelay,!1)):r())}function q(){s(),L.popupCloseDelay?G||(G=g(t,L.popupCloseDelay,!1)):t()}function r(){return s(),u(),L.content?(v(),void L.$evalAsync(function(){L.isOpen=!0,y(!0),Q()})):angular.noop}function s(){F&&(g.cancel(F),F=null),H&&(g.cancel(H),H=null)}function t(){s(),u(),L&&L.$evalAsync(function(){L.isOpen=!1,y(!1),L.animation?E||(E=g(w,150,!1)):w()})}function u(){G&&(g.cancel(G),G=null),E&&(g.cancel(E),E=null)}function v(){C||(D=L.$new(),C=c(D,function(a){I?h.find("body").append(a):b.after(a)}),z())}function w(){A(),E=null,C&&(C.remove(),C=null),D&&(D.$destroy(),D=null)}function x(){L.title=d[k+"Title"],O?L.content=O(a):L.content=d[e],L.popupClass=d[k+"Class"],L.placement=angular.isDefined(d[k+"Placement"])?d[k+"Placement"]:o.placement;var b=parseInt(d[k+"PopupDelay"],10),c=parseInt(d[k+"PopupCloseDelay"],10);L.popupDelay=isNaN(b)?o.popupDelay:b,L.popupCloseDelay=isNaN(c)?o.popupCloseDelay:c}function y(b){N&&angular.isFunction(N.assign)&&N.assign(a,b)}function z(){P.length=0,O?(P.push(a.$watch(O,function(a){L.content=a,!a&&L.isOpen&&t()})),P.push(D.$watch(function(){M||(M=!0,D.$$postDigest(function(){M=!1,L&&L.isOpen&&Q()}))}))):P.push(d.$observe(e,function(a){L.content=a,!a&&L.isOpen?t():Q()})),P.push(d.$observe(k+"Title",function(a){L.title=a,L.isOpen&&Q()})),P.push(d.$observe(k+"Placement",function(a){L.placement=a?a:o.placement,L.isOpen&&Q()}))}function A(){P.length&&(angular.forEach(P,function(a){a()}),P.length=0)}function B(){var a=d[k+"Trigger"];R(),J=p(a),"none"!==J.show&&J.show.forEach(function(a,c){a===J.hide[c]?b[0].addEventListener(a,j):a&&(b[0].addEventListener(a,m),J.hide[c].split(" ").forEach(function(a){b[0].addEventListener(a,q)})),b.on("keypress",function(a){27===a.which&&q()})})}var C,D,E,F,G,H,I=angular.isDefined(o.appendToBody)?o.appendToBody:!1,J=p(void 0),K=angular.isDefined(d[k+"Enable"]),L=a.$new(!0),M=!1,N=angular.isDefined(d[k+"IsOpen"])?l(d[k+"IsOpen"]):!1,O=o.useContentExp?l(d[e]):!1,P=[],Q=function(){C&&C.html()&&(H||(H=g(function(){C.css({top:0,left:0});var a=i.positionElements(b,C,L.placement,I);a.top+="px",a.left+="px",a.visibility="visible",C.css(a),H=null},0,!1)))};L.origScope=a,L.isOpen=!1,n.add(L,{close:t}),L.contentExp=function(){return L.content},d.$observe("disabled",function(a){a&&s(),a&&L.isOpen&&t()}),N&&a.$watch(N,function(a){L&&!a===L.isOpen&&j()});var R=function(){J.show.forEach(function(a){b.unbind(a,m)}),J.hide.forEach(function(a){a.split(" ").forEach(function(a){b[0].removeEventListener(a,q)})})};B();var S=a.$eval(d[k+"Animation"]);L.animation=angular.isDefined(S)?!!S:o.animation;var T=a.$eval(d[k+"AppendToBody"]);I=angular.isDefined(T)?T:I,I&&a.$on("$locationChangeSuccess",function(){L.isOpen&&t()}),a.$on("$destroy",function(){s(),u(),R(),w(),n.remove(L),L=null})}}}}}]}).directive("uibTooltipTemplateTransclude",["$animate","$sce","$compile","$templateRequest",function(a,b,c,d){return{link:function(e,f,g){var h,i,j,k=e.$eval(g.tooltipTemplateTranscludeScope),l=0,m=function(){i&&(i.remove(),i=null),h&&(h.$destroy(),h=null),j&&(a.leave(j).then(function(){i=null}),i=j,j=null)};e.$watch(b.parseAsResourceUrl(g.uibTooltipTemplateTransclude),function(b){var g=++l;b?(d(b,!0).then(function(d){if(g===l){var e=k.$new(),i=d,n=c(i)(e,function(b){m(),a.enter(b,f)});h=e,j=n,h.$emit("$includeContentLoaded",b)}},function(){g===l&&(m(),e.$emit("$includeContentError",b))}),e.$emit("$includeContentRequested",b)):m()}),e.$on("$destroy",m)}}}]).directive("uibTooltipClasses",function(){return{restrict:"A",link:function(a,b,c){a.placement&&b.addClass(a.placement),a.popupClass&&b.addClass(a.popupClass),a.animation()&&b.addClass(c.tooltipAnimationClass)}}}).directive("uibTooltipPopup",function(){return{replace:!0,scope:{content:"@",placement:"@",popupClass:"@",animation:"&",isOpen:"&"},templateUrl:"template/tooltip/tooltip-popup.html",link:function(a,b){b.addClass("tooltip")}}}).directive("uibTooltip",["$uibTooltip",function(a){return a("uibTooltip","tooltip","mouseenter")}]).directive("uibTooltipTemplatePopup",function(){return{replace:!0,scope:{contentExp:"&",placement:"@",popupClass:"@",animation:"&",isOpen:"&",originScope:"&"},templateUrl:"template/tooltip/tooltip-template-popup.html",link:function(a,b){b.addClass("tooltip")}}}).directive("uibTooltipTemplate",["$uibTooltip",function(a){return a("uibTooltipTemplate","tooltip","mouseenter",{useContentExp:!0})}]).directive("uibTooltipHtmlPopup",function(){return{replace:!0,scope:{contentExp:"&",placement:"@",popupClass:"@",animation:"&",isOpen:"&"},templateUrl:"template/tooltip/tooltip-html-popup.html",link:function(a,b){b.addClass("tooltip")}}}).directive("uibTooltipHtml",["$uibTooltip",function(a){return a("uibTooltipHtml","tooltip","mouseenter",{useContentExp:!0})}]),angular.module("ui.bootstrap.tooltip").value("$tooltipSuppressWarning",!1).provider("$tooltip",["$uibTooltipProvider",function(a){angular.extend(this,a),this.$get=["$log","$tooltipSuppressWarning","$injector",function(b,c,d){return c||b.warn("$tooltip is now deprecated. Use $uibTooltip instead."),d.invoke(a.$get)}]}]).directive("tooltipTemplateTransclude",["$animate","$sce","$compile","$templateRequest","$log","$tooltipSuppressWarning",function(a,b,c,d,e,f){return{link:function(g,h,i){f||e.warn("tooltip-template-transclude is now deprecated. Use uib-tooltip-template-transclude instead.");var j,k,l,m=g.$eval(i.tooltipTemplateTranscludeScope),n=0,o=function(){k&&(k.remove(),k=null),j&&(j.$destroy(),j=null),l&&(a.leave(l).then(function(){k=null}),k=l,l=null)};g.$watch(b.parseAsResourceUrl(i.tooltipTemplateTransclude),function(b){var e=++n;b?(d(b,!0).then(function(d){if(e===n){var f=m.$new(),g=d,i=c(g)(f,function(b){o(),a.enter(b,h)});j=f,l=i,j.$emit("$includeContentLoaded",b)}},function(){e===n&&(o(),g.$emit("$includeContentError",b))}),g.$emit("$includeContentRequested",b)):o()}),g.$on("$destroy",o)}}}]).directive("tooltipClasses",["$log","$tooltipSuppressWarning",function(a,b){return{restrict:"A",link:function(c,d,e){b||a.warn("tooltip-classes is now deprecated. Use uib-tooltip-classes instead."),c.placement&&d.addClass(c.placement),c.popupClass&&d.addClass(c.popupClass),c.animation()&&d.addClass(e.tooltipAnimationClass)}}}]).directive("tooltipPopup",["$log","$tooltipSuppressWarning",function(a,b){return{replace:!0,scope:{content:"@",placement:"@",popupClass:"@",animation:"&",isOpen:"&"},templateUrl:"template/tooltip/tooltip-popup.html",link:function(c,d){b||a.warn("tooltip-popup is now deprecated. Use uib-tooltip-popup instead."),d.addClass("tooltip")}}}]).directive("tooltip",["$tooltip",function(a){return a("tooltip","tooltip","mouseenter")}]).directive("tooltipTemplatePopup",["$log","$tooltipSuppressWarning",function(a,b){return{replace:!0,scope:{contentExp:"&",placement:"@",popupClass:"@",animation:"&",isOpen:"&",originScope:"&"},templateUrl:"template/tooltip/tooltip-template-popup.html",link:function(c,d){b||a.warn("tooltip-template-popup is now deprecated. Use uib-tooltip-template-popup instead."),d.addClass("tooltip")}}}]).directive("tooltipTemplate",["$tooltip",function(a){return a("tooltipTemplate","tooltip","mouseenter",{useContentExp:!0})}]).directive("tooltipHtmlPopup",["$log","$tooltipSuppressWarning",function(a,b){return{replace:!0,scope:{contentExp:"&",placement:"@",popupClass:"@",animation:"&",isOpen:"&"},templateUrl:"template/tooltip/tooltip-html-popup.html",link:function(c,d){b||a.warn("tooltip-html-popup is now deprecated. Use uib-tooltip-html-popup instead."),d.addClass("tooltip")}}}]).directive("tooltipHtml",["$tooltip",function(a){return a("tooltipHtml","tooltip","mouseenter",{useContentExp:!0})}]),angular.module("ui.bootstrap.popover",["ui.bootstrap.tooltip"]).directive("uibPopoverTemplatePopup",function(){return{replace:!0,scope:{title:"@",contentExp:"&",placement:"@",popupClass:"@",animation:"&",isOpen:"&",originScope:"&"},templateUrl:"template/popover/popover-template.html",link:function(a,b){b.addClass("popover")}}}).directive("uibPopoverTemplate",["$uibTooltip",function(a){return a("uibPopoverTemplate","popover","click",{useContentExp:!0})}]).directive("uibPopoverHtmlPopup",function(){return{replace:!0,scope:{contentExp:"&",title:"@",placement:"@",popupClass:"@",animation:"&",isOpen:"&"},templateUrl:"template/popover/popover-html.html",link:function(a,b){b.addClass("popover")}}}).directive("uibPopoverHtml",["$uibTooltip",function(a){return a("uibPopoverHtml","popover","click",{useContentExp:!0})}]).directive("uibPopoverPopup",function(){return{replace:!0,scope:{title:"@",content:"@",placement:"@",popupClass:"@",animation:"&",isOpen:"&"},templateUrl:"template/popover/popover.html",link:function(a,b){b.addClass("popover")}}}).directive("uibPopover",["$uibTooltip",function(a){return a("uibPopover","popover","click")}]),angular.module("ui.bootstrap.popover").value("$popoverSuppressWarning",!1).directive("popoverTemplatePopup",["$log","$popoverSuppressWarning",function(a,b){return{replace:!0,scope:{title:"@",contentExp:"&",placement:"@",popupClass:"@",animation:"&",isOpen:"&",originScope:"&"},templateUrl:"template/popover/popover-template.html",link:function(c,d){b||a.warn("popover-template-popup is now deprecated. Use uib-popover-template-popup instead."),d.addClass("popover")}}}]).directive("popoverTemplate",["$tooltip",function(a){return a("popoverTemplate","popover","click",{useContentExp:!0})}]).directive("popoverHtmlPopup",["$log","$popoverSuppressWarning",function(a,b){return{replace:!0,scope:{contentExp:"&",title:"@",placement:"@",popupClass:"@",animation:"&",isOpen:"&"},templateUrl:"template/popover/popover-html.html",link:function(c,d){b||a.warn("popover-html-popup is now deprecated. Use uib-popover-html-popup instead."),d.addClass("popover")}}}]).directive("popoverHtml",["$tooltip",function(a){return a("popoverHtml","popover","click",{useContentExp:!0})}]).directive("popoverPopup",["$log","$popoverSuppressWarning",function(a,b){return{replace:!0,scope:{title:"@",content:"@",placement:"@",popupClass:"@",animation:"&",isOpen:"&"},templateUrl:"template/popover/popover.html",link:function(c,d){b||a.warn("popover-popup is now deprecated. Use uib-popover-popup instead."),d.addClass("popover")}}}]).directive("popover",["$tooltip",function(a){return a("popover","popover","click")}]),angular.module("ui.bootstrap.progressbar",[]).constant("uibProgressConfig",{animate:!0,max:100}).controller("UibProgressController",["$scope","$attrs","uibProgressConfig",function(a,b,c){var d=this,e=angular.isDefined(b.animate)?a.$parent.$eval(b.animate):c.animate;this.bars=[],a.max=angular.isDefined(a.max)?a.max:c.max,this.addBar=function(b,c,f){e||c.css({transition:"none"}),this.bars.push(b),b.max=a.max,b.title=f&&angular.isDefined(f.title)?f.title:"progressbar",b.$watch("value",function(a){b.recalculatePercentage()}),b.recalculatePercentage=function(){var a=d.bars.reduce(function(a,b){return b.percent=+(100*b.value/b.max).toFixed(2),a+b.percent},0);a>100&&(b.percent-=a-100)},b.$on("$destroy",function(){c=null,d.removeBar(b)})},this.removeBar=function(a){this.bars.splice(this.bars.indexOf(a),1),this.bars.forEach(function(a){a.recalculatePercentage()})},a.$watch("max",function(b){d.bars.forEach(function(b){b.max=a.max,b.recalculatePercentage()})})}]).directive("uibProgress",function(){return{replace:!0,transclude:!0,controller:"UibProgressController",require:"uibProgress",scope:{max:"=?"},templateUrl:"template/progressbar/progress.html"}}).directive("uibBar",function(){return{replace:!0,transclude:!0,require:"^uibProgress",scope:{value:"=",type:"@"},templateUrl:"template/progressbar/bar.html",link:function(a,b,c,d){d.addBar(a,b,c)}}}).directive("uibProgressbar",function(){return{replace:!0,transclude:!0,controller:"UibProgressController",scope:{value:"=",max:"=?",type:"@"},templateUrl:"template/progressbar/progressbar.html",link:function(a,b,c,d){d.addBar(a,angular.element(b.children()[0]),{title:c.title})}}}),angular.module("ui.bootstrap.progressbar").value("$progressSuppressWarning",!1).controller("ProgressController",["$scope","$attrs","uibProgressConfig","$log","$progressSuppressWarning",function(a,b,c,d,e){e||d.warn("ProgressController is now deprecated. Use UibProgressController instead.");var f=this,g=angular.isDefined(b.animate)?a.$parent.$eval(b.animate):c.animate;this.bars=[],a.max=angular.isDefined(a.max)?a.max:c.max,this.addBar=function(b,c,d){g||c.css({transition:"none"}),this.bars.push(b),b.max=a.max,b.title=d&&angular.isDefined(d.title)?d.title:"progressbar",b.$watch("value",function(a){b.recalculatePercentage()}),b.recalculatePercentage=function(){b.percent=+(100*b.value/b.max).toFixed(2);var a=f.bars.reduce(function(a,b){return a+b.percent},0);a>100&&(b.percent-=a-100)},b.$on("$destroy",function(){c=null,f.removeBar(b)})},this.removeBar=function(a){this.bars.splice(this.bars.indexOf(a),1)},a.$watch("max",function(b){f.bars.forEach(function(b){b.max=a.max,b.recalculatePercentage()})})}]).directive("progress",["$log","$progressSuppressWarning",function(a,b){return{replace:!0,transclude:!0,controller:"ProgressController",require:"progress",scope:{max:"=?",title:"@?"},templateUrl:"template/progressbar/progress.html",link:function(){b||a.warn("progress is now deprecated. Use uib-progress instead.")}}}]).directive("bar",["$log","$progressSuppressWarning",function(a,b){return{replace:!0,transclude:!0,require:"^progress",scope:{value:"=",type:"@"},templateUrl:"template/progressbar/bar.html",link:function(c,d,e,f){b||a.warn("bar is now deprecated. Use uib-bar instead."),f.addBar(c,d)}}}]).directive("progressbar",["$log","$progressSuppressWarning",function(a,b){return{replace:!0,transclude:!0,controller:"ProgressController",scope:{value:"=",max:"=?",type:"@"},templateUrl:"template/progressbar/progressbar.html",link:function(c,d,e,f){b||a.warn("progressbar is now deprecated. Use uib-progressbar instead."),f.addBar(c,angular.element(d.children()[0]),{title:e.title})}}}]),angular.module("ui.bootstrap.rating",[]).constant("uibRatingConfig",{max:5,stateOn:null,stateOff:null,titles:["one","two","three","four","five"]}).controller("UibRatingController",["$scope","$attrs","uibRatingConfig",function(a,b,c){var d={$setViewValue:angular.noop};this.init=function(e){d=e,d.$render=this.render,d.$formatters.push(function(a){return angular.isNumber(a)&&a<<0!==a&&(a=Math.round(a)),a}),this.stateOn=angular.isDefined(b.stateOn)?a.$parent.$eval(b.stateOn):c.stateOn,this.stateOff=angular.isDefined(b.stateOff)?a.$parent.$eval(b.stateOff):c.stateOff;var f=angular.isDefined(b.titles)?a.$parent.$eval(b.titles):c.titles;this.titles=angular.isArray(f)&&f.length>0?f:c.titles;var g=angular.isDefined(b.ratingStates)?a.$parent.$eval(b.ratingStates):new Array(angular.isDefined(b.max)?a.$parent.$eval(b.max):c.max);a.range=this.buildTemplateObjects(g)},this.buildTemplateObjects=function(a){for(var b=0,c=a.length;c>b;b++)a[b]=angular.extend({index:b},{stateOn:this.stateOn,stateOff:this.stateOff,title:this.getTitle(b)},a[b]);return a},this.getTitle=function(a){return a>=this.titles.length?a+1:this.titles[a]},a.rate=function(b){!a.readonly&&b>=0&&b<=a.range.length&&(d.$setViewValue(d.$viewValue===b?0:b),d.$render())},a.enter=function(b){a.readonly||(a.value=b),a.onHover({value:b})},a.reset=function(){a.value=d.$viewValue,a.onLeave()},a.onKeydown=function(b){/(37|38|39|40)/.test(b.which)&&(b.preventDefault(),b.stopPropagation(),a.rate(a.value+(38===b.which||39===b.which?1:-1)))},this.render=function(){a.value=d.$viewValue}}]).directive("uibRating",function(){return{require:["uibRating","ngModel"],scope:{readonly:"=?",onHover:"&",onLeave:"&"},controller:"UibRatingController",templateUrl:"template/rating/rating.html",replace:!0,link:function(a,b,c,d){var e=d[0],f=d[1];e.init(f)}}}),angular.module("ui.bootstrap.rating").value("$ratingSuppressWarning",!1).controller("RatingController",["$scope","$attrs","$controller","$log","$ratingSuppressWarning",function(a,b,c,d,e){e||d.warn("RatingController is now deprecated. Use UibRatingController instead."),angular.extend(this,c("UibRatingController",{$scope:a,$attrs:b}))}]).directive("rating",["$log","$ratingSuppressWarning",function(a,b){return{require:["rating","ngModel"],scope:{readonly:"=?",onHover:"&",onLeave:"&"},controller:"RatingController",templateUrl:"template/rating/rating.html",replace:!0,link:function(c,d,e,f){b||a.warn("rating is now deprecated. Use uib-rating instead.");var g=f[0],h=f[1];g.init(h)}}}]),angular.module("ui.bootstrap.tabs",[]).controller("UibTabsetController",["$scope",function(a){var b=this,c=b.tabs=a.tabs=[];b.select=function(a){angular.forEach(c,function(b){b.active&&b!==a&&(b.active=!1,b.onDeselect(),a.selectCalled=!1)}),a.active=!0,a.selectCalled||(a.onSelect(),a.selectCalled=!0)},b.addTab=function(a){c.push(a),1===c.length&&a.active!==!1?a.active=!0:a.active?b.select(a):a.active=!1},b.removeTab=function(a){var e=c.indexOf(a);if(a.active&&c.length>1&&!d){var f=e==c.length-1?e-1:e+1;b.select(c[f])}c.splice(e,1)};var d;a.$on("$destroy",function(){d=!0})}]).directive("uibTabset",function(){return{restrict:"EA",transclude:!0,replace:!0,scope:{type:"@"},controller:"UibTabsetController",templateUrl:"template/tabs/tabset.html",link:function(a,b,c){a.vertical=angular.isDefined(c.vertical)?a.$parent.$eval(c.vertical):!1,a.justified=angular.isDefined(c.justified)?a.$parent.$eval(c.justified):!1}}}).directive("uibTab",["$parse",function(a){return{require:"^uibTabset",restrict:"EA",replace:!0,templateUrl:"template/tabs/tab.html",transclude:!0,scope:{active:"=?",heading:"@",onSelect:"&select",onDeselect:"&deselect"},controller:function(){},link:function(b,c,d,e,f){b.$watch("active",function(a){a&&e.select(b)}),b.disabled=!1,d.disable&&b.$parent.$watch(a(d.disable),function(a){b.disabled=!!a}),b.select=function(){b.disabled||(b.active=!0)},e.addTab(b),b.$on("$destroy",function(){e.removeTab(b)}),b.$transcludeFn=f}}}]).directive("uibTabHeadingTransclude",function(){return{restrict:"A",require:["?^uibTab","?^tab"],link:function(a,b){a.$watch("headingElement",function(a){a&&(b.html(""),b.append(a))})}}}).directive("uibTabContentTransclude",function(){function a(a){return a.tagName&&(a.hasAttribute("tab-heading")||a.hasAttribute("data-tab-heading")||a.hasAttribute("x-tab-heading")||a.hasAttribute("uib-tab-heading")||a.hasAttribute("data-uib-tab-heading")||a.hasAttribute("x-uib-tab-heading")||"tab-heading"===a.tagName.toLowerCase()||"data-tab-heading"===a.tagName.toLowerCase()||"x-tab-heading"===a.tagName.toLowerCase()||"uib-tab-heading"===a.tagName.toLowerCase()||"data-uib-tab-heading"===a.tagName.toLowerCase()||"x-uib-tab-heading"===a.tagName.toLowerCase())}return{restrict:"A",require:["?^uibTabset","?^tabset"],link:function(b,c,d){var e=b.$eval(d.uibTabContentTransclude);e.$transcludeFn(e.$parent,function(b){angular.forEach(b,function(b){a(b)?e.headingElement=b:c.append(b)})})}}}),angular.module("ui.bootstrap.tabs").value("$tabsSuppressWarning",!1).controller("TabsetController",["$scope","$controller","$log","$tabsSuppressWarning",function(a,b,c,d){d||c.warn("TabsetController is now deprecated. Use UibTabsetController instead."),angular.extend(this,b("UibTabsetController",{$scope:a}))}]).directive("tabset",["$log","$tabsSuppressWarning",function(a,b){return{restrict:"EA",transclude:!0,replace:!0,scope:{type:"@"},controller:"TabsetController",templateUrl:"template/tabs/tabset.html",link:function(c,d,e){b||a.warn("tabset is now deprecated. Use uib-tabset instead."),c.vertical=angular.isDefined(e.vertical)?c.$parent.$eval(e.vertical):!1,c.justified=angular.isDefined(e.justified)?c.$parent.$eval(e.justified):!1}}}]).directive("tab",["$parse","$log","$tabsSuppressWarning",function(a,b,c){return{require:"^tabset",restrict:"EA",replace:!0,templateUrl:"template/tabs/tab.html",transclude:!0,scope:{active:"=?",heading:"@",onSelect:"&select",onDeselect:"&deselect"},controller:function(){},link:function(d,e,f,g,h){c||b.warn("tab is now deprecated. Use uib-tab instead."),d.$watch("active",function(a){a&&g.select(d)}),d.disabled=!1,f.disable&&d.$parent.$watch(a(f.disable),function(a){d.disabled=!!a}),d.select=function(){d.disabled||(d.active=!0)},g.addTab(d),d.$on("$destroy",function(){g.removeTab(d)}),d.$transcludeFn=h}}}]).directive("tabHeadingTransclude",["$log","$tabsSuppressWarning",function(a,b){return{restrict:"A",require:"^tab",link:function(c,d){b||a.warn("tab-heading-transclude is now deprecated. Use uib-tab-heading-transclude instead."),c.$watch("headingElement",function(a){a&&(d.html(""),d.append(a))})}}}]).directive("tabContentTransclude",["$log","$tabsSuppressWarning",function(a,b){function c(a){return a.tagName&&(a.hasAttribute("tab-heading")||a.hasAttribute("data-tab-heading")||a.hasAttribute("x-tab-heading")||"tab-heading"===a.tagName.toLowerCase()||"data-tab-heading"===a.tagName.toLowerCase()||"x-tab-heading"===a.tagName.toLowerCase())}return{restrict:"A",require:"^tabset",link:function(d,e,f){b||a.warn("tab-content-transclude is now deprecated. Use uib-tab-content-transclude instead.");var g=d.$eval(f.tabContentTransclude);g.$transcludeFn(g.$parent,function(a){angular.forEach(a,function(a){c(a)?g.headingElement=a:e.append(a)})})}}}]),angular.module("ui.bootstrap.timepicker",[]).constant("uibTimepickerConfig",{hourStep:1,minuteStep:1,showMeridian:!0,meridians:null,readonlyInput:!1,mousewheel:!0,arrowkeys:!0,showSpinners:!0}).controller("UibTimepickerController",["$scope","$element","$attrs","$parse","$log","$locale","uibTimepickerConfig",function(a,b,c,d,e,f,g){function h(){var b=parseInt(a.hours,10),c=a.showMeridian?b>0&&13>b:b>=0&&24>b;return c?(a.showMeridian&&(12===b&&(b=0),a.meridian===r[1]&&(b+=12)),b):void 0}function i(){var b=parseInt(a.minutes,10);return b>=0&&60>b?b:void 0}function j(a){return angular.isDefined(a)&&a.toString().length<2?"0"+a:a.toString()}function k(a){l(),q.$setViewValue(new Date(p)),m(a)}function l(){q.$setValidity("time",!0),a.invalidHours=!1,a.invalidMinutes=!1}function m(b){var c=p.getHours(),d=p.getMinutes();a.showMeridian&&(c=0===c||12===c?12:c%12),a.hours="h"===b?c:j(c),"m"!==b&&(a.minutes=j(d)),a.meridian=p.getHours()<12?r[0]:r[1]}function n(a,b){var c=new Date(a.getTime()+6e4*b),d=new Date(a);return d.setHours(c.getHours(),c.getMinutes()),d}function o(a){p=n(p,a),k()}var p=new Date,q={$setViewValue:angular.noop},r=angular.isDefined(c.meridians)?a.$parent.$eval(c.meridians):g.meridians||f.DATETIME_FORMATS.AMPMS;a.tabindex=angular.isDefined(c.tabindex)?c.tabindex:0,b.removeAttr("tabindex"),this.init=function(b,d){q=b,q.$render=this.render,q.$formatters.unshift(function(a){return a?new Date(a):null});var e=d.eq(0),f=d.eq(1),h=angular.isDefined(c.mousewheel)?a.$parent.$eval(c.mousewheel):g.mousewheel;h&&this.setupMousewheelEvents(e,f);var i=angular.isDefined(c.arrowkeys)?a.$parent.$eval(c.arrowkeys):g.arrowkeys;i&&this.setupArrowkeyEvents(e,f),a.readonlyInput=angular.isDefined(c.readonlyInput)?a.$parent.$eval(c.readonlyInput):g.readonlyInput,this.setupInputEvents(e,f)};var s=g.hourStep;c.hourStep&&a.$parent.$watch(d(c.hourStep),function(a){s=parseInt(a,10)});var t=g.minuteStep;c.minuteStep&&a.$parent.$watch(d(c.minuteStep),function(a){t=parseInt(a,10)});var u;a.$parent.$watch(d(c.min),function(a){var b=new Date(a);u=isNaN(b)?void 0:b});var v;a.$parent.$watch(d(c.max),function(a){var b=new Date(a);v=isNaN(b)?void 0:b}),a.noIncrementHours=function(){var a=n(p,60*s);
nagios4-4.4.6/html/angularjs/ui-bootstrap-tpls-0.14.3.min.js:11:return a>v||p>a&&u>a},a.noDecrementHours=function(){var a=n(p,60*-s);return u>a||a>p&&a>v},a.noIncrementMinutes=function(){var a=n(p,t);return a>v||p>a&&u>a},a.noDecrementMinutes=function(){var a=n(p,-t);return u>a||a>p&&a>v},a.noToggleMeridian=function(){return p.getHours()<13?n(p,720)>v:n(p,-720)<u},a.showMeridian=g.showMeridian,c.showMeridian&&a.$parent.$watch(d(c.showMeridian),function(b){if(a.showMeridian=!!b,q.$error.time){var c=h(),d=i();angular.isDefined(c)&&angular.isDefined(d)&&(p.setHours(c),k())}else m()}),this.setupMousewheelEvents=function(b,c){var d=function(a){a.originalEvent&&(a=a.originalEvent);var b=a.wheelDelta?a.wheelDelta:-a.deltaY;return a.detail||b>0};b.bind("mousewheel wheel",function(b){a.$apply(d(b)?a.incrementHours():a.decrementHours()),b.preventDefault()}),c.bind("mousewheel wheel",function(b){a.$apply(d(b)?a.incrementMinutes():a.decrementMinutes()),b.preventDefault()})},this.setupArrowkeyEvents=function(b,c){b.bind("keydown",function(b){38===b.which?(b.preventDefault(),a.incrementHours(),a.$apply()):40===b.which&&(b.preventDefault(),a.decrementHours(),a.$apply())}),c.bind("keydown",function(b){38===b.which?(b.preventDefault(),a.incrementMinutes(),a.$apply()):40===b.which&&(b.preventDefault(),a.decrementMinutes(),a.$apply())})},this.setupInputEvents=function(b,c){if(a.readonlyInput)return a.updateHours=angular.noop,void(a.updateMinutes=angular.noop);var d=function(b,c){q.$setViewValue(null),q.$setValidity("time",!1),angular.isDefined(b)&&(a.invalidHours=b),angular.isDefined(c)&&(a.invalidMinutes=c)};a.updateHours=function(){var a=h(),b=i();angular.isDefined(a)&&angular.isDefined(b)?(p.setHours(a),u>p||p>v?d(!0):k("h")):d(!0)},b.bind("blur",function(b){!a.invalidHours&&a.hours<10&&a.$apply(function(){a.hours=j(a.hours)})}),a.updateMinutes=function(){var a=i(),b=h();angular.isDefined(a)&&angular.isDefined(b)?(p.setMinutes(a),u>p||p>v?d(void 0,!0):k("m")):d(void 0,!0)},c.bind("blur",function(b){!a.invalidMinutes&&a.minutes<10&&a.$apply(function(){a.minutes=j(a.minutes)})})},this.render=function(){var b=q.$viewValue;isNaN(b)?(q.$setValidity("time",!1),e.error('Timepicker directive: "ng-model" value must be a Date object, a number of milliseconds since 01.01.1970 or a string representing an RFC2822 or ISO 8601 date.')):(b&&(p=b),u>p||p>v?(q.$setValidity("time",!1),a.invalidHours=!0,a.invalidMinutes=!0):l(),m())},a.showSpinners=angular.isDefined(c.showSpinners)?a.$parent.$eval(c.showSpinners):g.showSpinners,a.incrementHours=function(){a.noIncrementHours()||o(60*s)},a.decrementHours=function(){a.noDecrementHours()||o(60*-s)},a.incrementMinutes=function(){a.noIncrementMinutes()||o(t)},a.decrementMinutes=function(){a.noDecrementMinutes()||o(-t)},a.toggleMeridian=function(){a.noToggleMeridian()||o(720*(p.getHours()<12?1:-1))}}]).directive("uibTimepicker",function(){return{restrict:"EA",require:["uibTimepicker","?^ngModel"],controller:"UibTimepickerController",controllerAs:"timepicker",replace:!0,scope:{},templateUrl:function(a,b){return b.templateUrl||"template/timepicker/timepicker.html"},link:function(a,b,c,d){var e=d[0],f=d[1];f&&e.init(f,b.find("input"))}}}),angular.module("ui.bootstrap.timepicker").value("$timepickerSuppressWarning",!1).controller("TimepickerController",["$scope","$element","$attrs","$controller","$log","$timepickerSuppressWarning",function(a,b,c,d,e,f){f||e.warn("TimepickerController is now deprecated. Use UibTimepickerController instead."),angular.extend(this,d("UibTimepickerController",{$scope:a,$element:b,$attrs:c}))}]).directive("timepicker",["$log","$timepickerSuppressWarning",function(a,b){return{restrict:"EA",require:["timepicker","?^ngModel"],controller:"TimepickerController",controllerAs:"timepicker",replace:!0,scope:{},templateUrl:function(a,b){return b.templateUrl||"template/timepicker/timepicker.html"},link:function(c,d,e,f){b||a.warn("timepicker is now deprecated. Use uib-timepicker instead.");var g=f[0],h=f[1];h&&g.init(h,d.find("input"))}}}]),angular.module("ui.bootstrap.typeahead",["ui.bootstrap.position"]).factory("uibTypeaheadParser",["$parse",function(a){var b=/^\s*([\s\S]+?)(?:\s+as\s+([\s\S]+?))?\s+for\s+(?:([\$\w][\$\w\d]*))\s+in\s+([\s\S]+?)$/;return{parse:function(c){var d=c.match(b);if(!d)throw new Error('Expected typeahead specification in form of "_modelValue_ (as _label_)? for _item_ in _collection_" but got "'+c+'".');return{itemName:d[3],source:a(d[4]),viewMapper:a(d[2]||d[1]),modelMapper:a(d[1])}}}}]).controller("UibTypeaheadController",["$scope","$element","$attrs","$compile","$parse","$q","$timeout","$document","$window","$rootScope","$uibPosition","uibTypeaheadParser",function(a,b,c,d,e,f,g,h,i,j,k,l){function m(){K.moveInProgress||(K.moveInProgress=!0,K.$digest()),S&&g.cancel(S),S=g(function(){K.matches.length&&n(),K.moveInProgress=!1},r)}function n(){K.position=C?k.offset(b):k.position(b),K.position.top+=b.prop("offsetHeight")}var o,p,q=[9,13,27,38,40],r=200,s=a.$eval(c.typeaheadMinLength);s||0===s||(s=1);var t,u,v=a.$eval(c.typeaheadWaitMs)||0,w=a.$eval(c.typeaheadEditable)!==!1,x=e(c.typeaheadLoading).assign||angular.noop,y=e(c.typeaheadOnSelect),z=angular.isDefined(c.typeaheadSelectOnBlur)?a.$eval(c.typeaheadSelectOnBlur):!1,A=e(c.typeaheadNoResults).assign||angular.noop,B=c.typeaheadInputFormatter?e(c.typeaheadInputFormatter):void 0,C=c.typeaheadAppendToBody?a.$eval(c.typeaheadAppendToBody):!1,D=c.typeaheadAppendToElementId||!1,E=a.$eval(c.typeaheadFocusFirst)!==!1,F=c.typeaheadSelectOnExact?a.$eval(c.typeaheadSelectOnExact):!1,G=e(c.ngModel),H=e(c.ngModel+"($$$p)"),I=function(b,c){return angular.isFunction(G(a))&&p&&p.$options&&p.$options.getterSetter?H(b,{$$$p:c}):G.assign(b,c)},J=l.parse(c.uibTypeahead),K=a.$new(),L=a.$on("$destroy",function(){K.$destroy()});K.$on("$destroy",L);var M="typeahead-"+K.$id+"-"+Math.floor(1e4*Math.random());b.attr({"aria-autocomplete":"list","aria-expanded":!1,"aria-owns":M});var N=angular.element("<div uib-typeahead-popup></div>");N.attr({id:M,matches:"matches",active:"activeIdx",select:"select(activeIdx)","move-in-progress":"moveInProgress",query:"query",position:"position"}),angular.isDefined(c.typeaheadTemplateUrl)&&N.attr("template-url",c.typeaheadTemplateUrl),angular.isDefined(c.typeaheadPopupTemplateUrl)&&N.attr("popup-template-url",c.typeaheadPopupTemplateUrl);var O=function(){K.matches=[],K.activeIdx=-1,b.attr("aria-expanded",!1)},P=function(a){return M+"-option-"+a};K.$watch("activeIdx",function(a){0>a?b.removeAttr("aria-activedescendant"):b.attr("aria-activedescendant",P(a))});var Q=function(a,b){return K.matches.length>b&&a?a.toUpperCase()===K.matches[b].label.toUpperCase():!1},R=function(c){var d={$viewValue:c};x(a,!0),A(a,!1),f.when(J.source(a,d)).then(function(e){var f=c===o.$viewValue;if(f&&t)if(e&&e.length>0){K.activeIdx=E?0:-1,A(a,!1),K.matches.length=0;for(var g=0;g<e.length;g++)d[J.itemName]=e[g],K.matches.push({id:P(g),label:J.viewMapper(K,d),model:e[g]});K.query=c,n(),b.attr("aria-expanded",!0),F&&1===K.matches.length&&Q(c,0)&&K.select(0)}else O(),A(a,!0);f&&x(a,!1)},function(){O(),x(a,!1),A(a,!0)})};C&&(angular.element(i).bind("resize",m),h.find("body").bind("scroll",m));var S;K.moveInProgress=!1,K.query=void 0;var T,U=function(a){T=g(function(){R(a)},v)},V=function(){T&&g.cancel(T)};O(),K.select=function(d){var e,f,h={};u=!0,h[J.itemName]=f=K.matches[d].model,e=J.modelMapper(a,h),I(a,e),o.$setValidity("editable",!0),o.$setValidity("parse",!0),y(a,{$item:f,$model:e,$label:J.viewMapper(a,h)}),O(),K.$eval(c.typeaheadFocusOnSelect)!==!1&&g(function(){b[0].focus()},0,!1)},b.bind("keydown",function(a){if(0!==K.matches.length&&-1!==q.indexOf(a.which)){if(-1===K.activeIdx&&(9===a.which||13===a.which))return O(),void K.$digest();a.preventDefault(),40===a.which?(K.activeIdx=(K.activeIdx+1)%K.matches.length,K.$digest()):38===a.which?(K.activeIdx=(K.activeIdx>0?K.activeIdx:K.matches.length)-1,K.$digest()):13===a.which||9===a.which?K.$apply(function(){K.select(K.activeIdx)}):27===a.which&&(a.stopPropagation(),O(),K.$digest())}}),b.bind("blur",function(){z&&K.matches.length&&-1!==K.activeIdx&&!u&&(u=!0,K.$apply(function(){K.select(K.activeIdx)})),t=!1,u=!1});var W=function(a){b[0]!==a.target&&3!==a.which&&0!==K.matches.length&&(O(),j.$$phase||K.$digest())};h.bind("click",W),a.$on("$destroy",function(){h.unbind("click",W),(C||D)&&X.remove(),C&&(angular.element(i).unbind("resize",m),h.find("body").unbind("scroll",m)),N.remove()});var X=d(N)(K);C?h.find("body").append(X):D!==!1?angular.element(h[0].getElementById(D)).append(X):b.after(X),this.init=function(b,c){o=b,p=c,o.$parsers.unshift(function(b){return t=!0,0===s||b&&b.length>=s?v>0?(V(),U(b)):R(b):(x(a,!1),V(),O()),w?b:b?void o.$setValidity("editable",!1):(o.$setValidity("editable",!0),null)}),o.$formatters.push(function(b){var c,d,e={};return w||o.$setValidity("editable",!0),B?(e.$model=b,B(a,e)):(e[J.itemName]=b,c=J.viewMapper(a,e),e[J.itemName]=void 0,d=J.viewMapper(a,e),c!==d?c:b)})}}]).directive("uibTypeahead",function(){return{controller:"UibTypeaheadController",require:["ngModel","^?ngModelOptions","uibTypeahead"],link:function(a,b,c,d){d[2].init(d[0],d[1])}}}).directive("uibTypeaheadPopup",function(){return{scope:{matches:"=",query:"=",active:"=",position:"&",moveInProgress:"=",select:"&"},replace:!0,templateUrl:function(a,b){return b.popupTemplateUrl||"template/typeahead/typeahead-popup.html"},link:function(a,b,c){a.templateUrl=c.templateUrl,a.isOpen=function(){return a.matches.length>0},a.isActive=function(b){return a.active==b},a.selectActive=function(b){a.active=b},a.selectMatch=function(b){a.select({activeIdx:b})}}}}).directive("uibTypeaheadMatch",["$templateRequest","$compile","$parse",function(a,b,c){return{scope:{index:"=",match:"=",query:"="},link:function(d,e,f){var g=c(f.templateUrl)(d.$parent)||"template/typeahead/typeahead-match.html";a(g).then(function(a){b(a.trim())(d,function(a){e.replaceWith(a)})})}}}]).filter("uibTypeaheadHighlight",["$sce","$injector","$log",function(a,b,c){function d(a){return a.replace(/([.?*+^$[\]\\(){}|-])/g,"\\$1")}function e(a){return/<.*>/g.test(a)}var f;return f=b.has("$sanitize"),function(b,g){return!f&&e(b)&&c.warn("Unsafe use of typeahead please use ngSanitize"),b=g?(""+b).replace(new RegExp(d(g),"gi"),"<strong>$&</strong>"):b,f||(b=a.trustAsHtml(b)),b}}]),angular.module("ui.bootstrap.typeahead").value("$typeaheadSuppressWarning",!1).service("typeaheadParser",["$parse","uibTypeaheadParser","$log","$typeaheadSuppressWarning",function(a,b,c,d){return d||c.warn("typeaheadParser is now deprecated. Use uibTypeaheadParser instead."),b}]).directive("typeahead",["$compile","$parse","$q","$timeout","$document","$window","$rootScope","$uibPosition","typeaheadParser","$log","$typeaheadSuppressWarning",function(a,b,c,d,e,f,g,h,i,j,k){var l=[9,13,27,38,40],m=200;return{require:["ngModel","^?ngModelOptions"],link:function(n,o,p,q){function r(){N.moveInProgress||(N.moveInProgress=!0,N.$digest()),V&&d.cancel(V),V=d(function(){N.matches.length&&s(),N.moveInProgress=!1},m)}function s(){N.position=F?h.offset(o):h.position(o),N.position.top+=o.prop("offsetHeight")}k||j.warn("typeahead is now deprecated. Use uib-typeahead instead.");var t=q[0],u=q[1],v=n.$eval(p.typeaheadMinLength);v||0===v||(v=1);var w,x,y=n.$eval(p.typeaheadWaitMs)||0,z=n.$eval(p.typeaheadEditable)!==!1,A=b(p.typeaheadLoading).assign||angular.noop,B=b(p.typeaheadOnSelect),C=angular.isDefined(p.typeaheadSelectOnBlur)?n.$eval(p.typeaheadSelectOnBlur):!1,D=b(p.typeaheadNoResults).assign||angular.noop,E=p.typeaheadInputFormatter?b(p.typeaheadInputFormatter):void 0,F=p.typeaheadAppendToBody?n.$eval(p.typeaheadAppendToBody):!1,G=p.typeaheadAppendToElementId||!1,H=n.$eval(p.typeaheadFocusFirst)!==!1,I=p.typeaheadSelectOnExact?n.$eval(p.typeaheadSelectOnExact):!1,J=b(p.ngModel),K=b(p.ngModel+"($$$p)"),L=function(a,b){return angular.isFunction(J(n))&&u&&u.$options&&u.$options.getterSetter?K(a,{$$$p:b}):J.assign(a,b)},M=i.parse(p.typeahead),N=n.$new(),O=n.$on("$destroy",function(){N.$destroy()});N.$on("$destroy",O);var P="typeahead-"+N.$id+"-"+Math.floor(1e4*Math.random());o.attr({"aria-autocomplete":"list","aria-expanded":!1,"aria-owns":P});var Q=angular.element("<div typeahead-popup></div>");Q.attr({id:P,matches:"matches",active:"activeIdx",select:"select(activeIdx)","move-in-progress":"moveInProgress",query:"query",position:"position"}),angular.isDefined(p.typeaheadTemplateUrl)&&Q.attr("template-url",p.typeaheadTemplateUrl),angular.isDefined(p.typeaheadPopupTemplateUrl)&&Q.attr("popup-template-url",p.typeaheadPopupTemplateUrl);var R=function(){N.matches=[],N.activeIdx=-1,o.attr("aria-expanded",!1)},S=function(a){return P+"-option-"+a};N.$watch("activeIdx",function(a){0>a?o.removeAttr("aria-activedescendant"):o.attr("aria-activedescendant",S(a))});var T=function(a,b){return N.matches.length>b&&a?a.toUpperCase()===N.matches[b].label.toUpperCase():!1},U=function(a){var b={$viewValue:a};A(n,!0),D(n,!1),c.when(M.source(n,b)).then(function(c){var d=a===t.$viewValue;if(d&&w)if(c&&c.length>0){N.activeIdx=H?0:-1,D(n,!1),N.matches.length=0;for(var e=0;e<c.length;e++)b[M.itemName]=c[e],N.matches.push({id:S(e),label:M.viewMapper(N,b),model:c[e]});N.query=a,s(),o.attr("aria-expanded",!0),I&&1===N.matches.length&&T(a,0)&&N.select(0)}else R(),D(n,!0);d&&A(n,!1)},function(){R(),A(n,!1),D(n,!0)})};F&&(angular.element(f).bind("resize",r),e.find("body").bind("scroll",r));var V;N.moveInProgress=!1,R(),N.query=void 0;var W,X=function(a){W=d(function(){U(a)},y)},Y=function(){W&&d.cancel(W)};t.$parsers.unshift(function(a){return w=!0,0===v||a&&a.length>=v?y>0?(Y(),X(a)):U(a):(A(n,!1),Y(),R()),z?a:a?void t.$setValidity("editable",!1):(t.$setValidity("editable",!0),null)}),t.$formatters.push(function(a){var b,c,d={};return z||t.$setValidity("editable",!0),E?(d.$model=a,E(n,d)):(d[M.itemName]=a,b=M.viewMapper(n,d),d[M.itemName]=void 0,c=M.viewMapper(n,d),b!==c?b:a)}),N.select=function(a){var b,c,e={};x=!0,e[M.itemName]=c=N.matches[a].model,b=M.modelMapper(n,e),L(n,b),t.$setValidity("editable",!0),t.$setValidity("parse",!0),B(n,{$item:c,$model:b,$label:M.viewMapper(n,e)}),R(),N.$eval(p.typeaheadFocusOnSelect)!==!1&&d(function(){o[0].focus()},0,!1)},o.bind("keydown",function(a){if(0!==N.matches.length&&-1!==l.indexOf(a.which)){if(-1===N.activeIdx&&(9===a.which||13===a.which))return R(),void N.$digest();a.preventDefault(),40===a.which?(N.activeIdx=(N.activeIdx+1)%N.matches.length,N.$digest()):38===a.which?(N.activeIdx=(N.activeIdx>0?N.activeIdx:N.matches.length)-1,N.$digest()):13===a.which||9===a.which?N.$apply(function(){N.select(N.activeIdx)}):27===a.which&&(a.stopPropagation(),R(),N.$digest())}}),o.bind("blur",function(){C&&N.matches.length&&-1!==N.activeIdx&&!x&&(x=!0,N.$apply(function(){N.select(N.activeIdx)})),w=!1,x=!1});var Z=function(a){o[0]!==a.target&&3!==a.which&&0!==N.matches.length&&(R(),g.$$phase||N.$digest())};e.bind("click",Z),n.$on("$destroy",function(){e.unbind("click",Z),(F||G)&&$.remove(),F&&(angular.element(f).unbind("resize",r),e.find("body").unbind("scroll",r)),Q.remove()});var $=a(Q)(N);F?e.find("body").append($):G!==!1?angular.element(e[0].getElementById(G)).append($):o.after($)}}}]).directive("typeaheadPopup",["$typeaheadSuppressWarning","$log",function(a,b){return{scope:{matches:"=",query:"=",active:"=",position:"&",moveInProgress:"=",select:"&"},replace:!0,templateUrl:function(a,b){return b.popupTemplateUrl||"template/typeahead/typeahead-popup.html"},link:function(c,d,e){a||b.warn("typeahead-popup is now deprecated. Use uib-typeahead-popup instead."),c.templateUrl=e.templateUrl,c.isOpen=function(){return c.matches.length>0},c.isActive=function(a){return c.active==a},c.selectActive=function(a){c.active=a},c.selectMatch=function(a){c.select({activeIdx:a})}}}}]).directive("typeaheadMatch",["$templateRequest","$compile","$parse","$typeaheadSuppressWarning","$log",function(a,b,c,d,e){return{restrict:"EA",scope:{index:"=",match:"=",query:"="},link:function(f,g,h){d||e.warn("typeahead-match is now deprecated. Use uib-typeahead-match instead.");var i=c(h.templateUrl)(f.$parent)||"template/typeahead/typeahead-match.html";a(i).then(function(a){b(a.trim())(f,function(a){g.replaceWith(a)})})}}}]).filter("typeaheadHighlight",["$sce","$injector","$log","$typeaheadSuppressWarning",function(a,b,c,d){function e(a){return a.replace(/([.?*+^$[\]\\(){}|-])/g,"\\$1")}function f(a){return/<.*>/g.test(a)}var g;return g=b.has("$sanitize"),function(b,h){return d||c.warn("typeaheadHighlight is now deprecated. Use uibTypeaheadHighlight instead."),!g&&f(b)&&c.warn("Unsafe use of typeahead please use ngSanitize"),b=h?(""+b).replace(new RegExp(e(h),"gi"),"<strong>$&</strong>"):b,g||(b=a.trustAsHtml(b)),b}}]),angular.module("template/accordion/accordion-group.html",[]).run(["$templateCache",function(a){a.put("template/accordion/accordion-group.html",'<div class="panel {{panelClass || \'panel-default\'}}">\n  <div class="panel-heading" ng-keypress="toggleOpen($event)">\n    <h4 class="panel-title">\n      <a href tabindex="0" class="accordion-toggle" ng-click="toggleOpen()" uib-accordion-transclude="heading"><span ng-class="{\'text-muted\': isDisabled}">{{heading}}</span></a>\n    </h4>\n  </div>\n  <div class="panel-collapse collapse" uib-collapse="!isOpen">\n	  <div class="panel-body" ng-transclude></div>\n  </div>\n</div>\n')}]),angular.module("template/accordion/accordion.html",[]).run(["$templateCache",function(a){a.put("template/accordion/accordion.html",'<div class="panel-group" ng-transclude></div>')}]),angular.module("template/alert/alert.html",[]).run(["$templateCache",function(a){a.put("template/alert/alert.html",'<div class="alert" ng-class="[\'alert-\' + (type || \'warning\'), closeable ? \'alert-dismissible\' : null]" role="alert">\n    <button ng-show="closeable" type="button" class="close" ng-click="close({$event: $event})">\n        <span aria-hidden="true">&times;</span>\n        <span class="sr-only">Close</span>\n    </button>\n    <div ng-transclude></div>\n</div>\n')}]),angular.module("template/carousel/carousel.html",[]).run(["$templateCache",function(a){a.put("template/carousel/carousel.html",'<div ng-mouseenter="pause()" ng-mouseleave="play()" class="carousel" ng-swipe-right="prev()" ng-swipe-left="next()">\n  <div class="carousel-inner" ng-transclude></div>\n  <a role="button" href class="left carousel-control" ng-click="prev()" ng-show="slides.length > 1">\n    <span aria-hidden="true" class="glyphicon glyphicon-chevron-left"></span>\n    <span class="sr-only">previous</span>\n  </a>\n  <a role="button" href class="right carousel-control" ng-click="next()" ng-show="slides.length > 1">\n    <span aria-hidden="true" class="glyphicon glyphicon-chevron-right"></span>\n    <span class="sr-only">next</span>\n  </a>\n  <ol class="carousel-indicators" ng-show="slides.length > 1">\n    <li ng-repeat="slide in slides | orderBy:indexOfSlide track by $index" ng-class="{ active: isActive(slide) }" ng-click="select(slide)">\n      <span class="sr-only">slide {{ $index + 1 }} of {{ slides.length }}<span ng-if="isActive(slide)">, currently active</span></span>\n    </li>\n  </ol>\n</div>')}]),angular.module("template/carousel/slide.html",[]).run(["$templateCache",function(a){a.put("template/carousel/slide.html",'<div ng-class="{\n    \'active\': active\n  }" class="item text-center" ng-transclude></div>\n')}]),angular.module("template/datepicker/datepicker.html",[]).run(["$templateCache",function(a){a.put("template/datepicker/datepicker.html",'<div ng-switch="datepickerMode" role="application" ng-keydown="keydown($event)">\n  <uib-daypicker ng-switch-when="day" tabindex="0"></uib-daypicker>\n  <uib-monthpicker ng-switch-when="month" tabindex="0"></uib-monthpicker>\n  <uib-yearpicker ng-switch-when="year" tabindex="0"></uib-yearpicker>\n</div>')}]),angular.module("template/datepicker/day.html",[]).run(["$templateCache",function(a){a.put("template/datepicker/day.html",'<table role="grid" aria-labelledby="{{::uniqueId}}-title" aria-activedescendant="{{activeDateId}}">\n  <thead>\n    <tr>\n      <th><button type="button" class="btn btn-default btn-sm pull-left" ng-click="move(-1)" tabindex="-1"><i class="glyphicon glyphicon-chevron-left"></i></button></th>\n      <th colspan="{{::5 + showWeeks}}"><button id="{{::uniqueId}}-title" role="heading" aria-live="assertive" aria-atomic="true" type="button" class="btn btn-default btn-sm" ng-click="toggleMode()" ng-disabled="datepickerMode === maxMode" tabindex="-1" style="width:100%;"><strong>{{title}}</strong></button></th>\n      <th><button type="button" class="btn btn-default btn-sm pull-right" ng-click="move(1)" tabindex="-1"><i class="glyphicon glyphicon-chevron-right"></i></button></th>\n    </tr>\n    <tr>\n      <th ng-if="showWeeks" class="text-center"></th>\n      <th ng-repeat="label in ::labels track by $index" class="text-center"><small aria-label="{{::label.full}}">{{::label.abbr}}</small></th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr ng-repeat="row in rows track by $index">\n      <td ng-if="showWeeks" class="text-center h6"><em>{{ weekNumbers[$index] }}</em></td>\n      <td ng-repeat="dt in row track by dt.date" class="text-center" role="gridcell" id="{{::dt.uid}}" ng-class="::dt.customClass">\n        <button type="button" style="min-width:100%;" class="btn btn-default btn-sm" ng-class="{\'btn-info\': dt.selected, active: isActive(dt)}" ng-click="select(dt.date)" ng-disabled="dt.disabled" tabindex="-1"><span ng-class="::{\'text-muted\': dt.secondary, \'text-info\': dt.current}">{{::dt.label}}</span></button>\n      </td>\n    </tr>\n  </tbody>\n</table>\n')}]),angular.module("template/datepicker/month.html",[]).run(["$templateCache",function(a){a.put("template/datepicker/month.html",'<table role="grid" aria-labelledby="{{::uniqueId}}-title" aria-activedescendant="{{activeDateId}}">\n  <thead>\n    <tr>\n      <th><button type="button" class="btn btn-default btn-sm pull-left" ng-click="move(-1)" tabindex="-1"><i class="glyphicon glyphicon-chevron-left"></i></button></th>\n      <th><button id="{{::uniqueId}}-title" role="heading" aria-live="assertive" aria-atomic="true" type="button" class="btn btn-default btn-sm" ng-click="toggleMode()" ng-disabled="datepickerMode === maxMode" tabindex="-1" style="width:100%;"><strong>{{title}}</strong></button></th>\n      <th><button type="button" class="btn btn-default btn-sm pull-right" ng-click="move(1)" tabindex="-1"><i class="glyphicon glyphicon-chevron-right"></i></button></th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr ng-repeat="row in rows track by $index">\n      <td ng-repeat="dt in row track by dt.date" class="text-center" role="gridcell" id="{{::dt.uid}}" ng-class="::dt.customClass">\n        <button type="button" style="min-width:100%;" class="btn btn-default" ng-class="{\'btn-info\': dt.selected, active: isActive(dt)}" ng-click="select(dt.date)" ng-disabled="dt.disabled" tabindex="-1"><span ng-class="::{\'text-info\': dt.current}">{{::dt.label}}</span></button>\n      </td>\n    </tr>\n  </tbody>\n</table>\n')}]),angular.module("template/datepicker/popup.html",[]).run(["$templateCache",function(a){a.put("template/datepicker/popup.html",'<ul class="dropdown-menu" dropdown-nested ng-if="isOpen" style="display: block" ng-style="{top: position.top+\'px\', left: position.left+\'px\'}" ng-keydown="keydown($event)" ng-click="$event.stopPropagation()">\n	<li ng-transclude></li>\n	<li ng-if="showButtonBar" style="padding:10px 9px 2px">\n		<span class="btn-group pull-left">\n			<button type="button" class="btn btn-sm btn-info" ng-click="select(\'today\')" ng-disabled="isDisabled(\'today\')">{{ getText(\'current\') }}</button>\n			<button type="button" class="btn btn-sm btn-danger" ng-click="select(null)">{{ getText(\'clear\') }}</button>\n		</span>\n		<button type="button" class="btn btn-sm btn-success pull-right" ng-click="close()">{{ getText(\'close\') }}</button>\n	</li>\n</ul>\n')}]),angular.module("template/datepicker/year.html",[]).run(["$templateCache",function(a){a.put("template/datepicker/year.html",'<table role="grid" aria-labelledby="{{::uniqueId}}-title" aria-activedescendant="{{activeDateId}}">\n  <thead>\n    <tr>\n      <th><button type="button" class="btn btn-default btn-sm pull-left" ng-click="move(-1)" tabindex="-1"><i class="glyphicon glyphicon-chevron-left"></i></button></th>\n      <th colspan="3"><button id="{{::uniqueId}}-title" role="heading" aria-live="assertive" aria-atomic="true" type="button" class="btn btn-default btn-sm" ng-click="toggleMode()" ng-disabled="datepickerMode === maxMode" tabindex="-1" style="width:100%;"><strong>{{title}}</strong></button></th>\n      <th><button type="button" class="btn btn-default btn-sm pull-right" ng-click="move(1)" tabindex="-1"><i class="glyphicon glyphicon-chevron-right"></i></button></th>\n    </tr>\n  </thead>\n  <tbody>\n    <tr ng-repeat="row in rows track by $index">\n      <td ng-repeat="dt in row track by dt.date" class="text-center" role="gridcell" id="{{::dt.uid}}" ng-class="::dt.customClass">\n        <button type="button" style="min-width:100%;" class="btn btn-default" ng-class="{\'btn-info\': dt.selected, active: isActive(dt)}" ng-click="select(dt.date)" ng-disabled="dt.disabled" tabindex="-1"><span ng-class="::{\'text-info\': dt.current}">{{::dt.label}}</span></button>\n      </td>\n    </tr>\n  </tbody>\n</table>\n')}]),angular.module("template/modal/backdrop.html",[]).run(["$templateCache",function(a){a.put("template/modal/backdrop.html",'<div uib-modal-animation-class="fade"\n     modal-in-class="in"\n     ng-style="{\'z-index\': 1040 + (index && 1 || 0) + index*10}"\n></div>\n')}]),angular.module("template/modal/window.html",[]).run(["$templateCache",function(a){a.put("template/modal/window.html",'<div modal-render="{{$isRendered}}" tabindex="-1" role="dialog" class="modal"\n    uib-modal-animation-class="fade"\n    modal-in-class="in"\n    ng-style="{\'z-index\': 1050 + index*10, display: \'block\'}">\n    <div class="modal-dialog" ng-class="size ? \'modal-\' + size : \'\'"><div class="modal-content" uib-modal-transclude></div></div>\n</div>\n')}]),angular.module("template/pagination/pager.html",[]).run(["$templateCache",function(a){a.put("template/pagination/pager.html",'<ul class="pager">\n  <li ng-class="{disabled: noPrevious()||ngDisabled, previous: align}"><a href ng-click="selectPage(page - 1, $event)">{{::getText(\'previous\')}}</a></li>\n  <li ng-class="{disabled: noNext()||ngDisabled, next: align}"><a href ng-click="selectPage(page + 1, $event)">{{::getText(\'next\')}}</a></li>\n</ul>\n')}]),angular.module("template/pagination/pagination.html",[]).run(["$templateCache",function(a){a.put("template/pagination/pagination.html",'<ul class="pagination">\n  <li ng-if="::boundaryLinks" ng-class="{disabled: noPrevious()||ngDisabled}" class="pagination-first"><a href ng-click="selectPage(1, $event)">{{::getText(\'first\')}}</a></li>\n  <li ng-if="::directionLinks" ng-class="{disabled: noPrevious()||ngDisabled}" class="pagination-prev"><a href ng-click="selectPage(page - 1, $event)">{{::getText(\'previous\')}}</a></li>\n  <li ng-repeat="page in pages track by $index" ng-class="{active: page.active,disabled: ngDisabled&&!page.active}" class="pagination-page"><a href ng-click="selectPage(page.number, $event)">{{page.text}}</a></li>\n  <li ng-if="::directionLinks" ng-class="{disabled: noNext()||ngDisabled}" class="pagination-next"><a href ng-click="selectPage(page + 1, $event)">{{::getText(\'next\')}}</a></li>\n  <li ng-if="::boundaryLinks" ng-class="{disabled: noNext()||ngDisabled}" class="pagination-last"><a href ng-click="selectPage(totalPages, $event)">{{::getText(\'last\')}}</a></li>\n</ul>\n')}]),angular.module("template/tooltip/tooltip-html-popup.html",[]).run(["$templateCache",function(a){a.put("template/tooltip/tooltip-html-popup.html",'<div\n  tooltip-animation-class="fade"\n  uib-tooltip-classes\n  ng-class="{ in: isOpen() }">\n  <div class="tooltip-arrow"></div>\n  <div class="tooltip-inner" ng-bind-html="contentExp()"></div>\n</div>\n')}]),angular.module("template/tooltip/tooltip-popup.html",[]).run(["$templateCache",function(a){a.put("template/tooltip/tooltip-popup.html",'<div\n  tooltip-animation-class="fade"\n  uib-tooltip-classes\n  ng-class="{ in: isOpen() }">\n  <div class="tooltip-arrow"></div>\n  <div class="tooltip-inner" ng-bind="content"></div>\n</div>\n')}]),angular.module("template/tooltip/tooltip-template-popup.html",[]).run(["$templateCache",function(a){a.put("template/tooltip/tooltip-template-popup.html",'<div\n  tooltip-animation-class="fade"\n  uib-tooltip-classes\n  ng-class="{ in: isOpen() }">\n  <div class="tooltip-arrow"></div>\n  <div class="tooltip-inner"\n    uib-tooltip-template-transclude="contentExp()"\n    tooltip-template-transclude-scope="originScope()"></div>\n</div>\n')}]),angular.module("template/popover/popover-html.html",[]).run(["$templateCache",function(a){a.put("template/popover/popover-html.html",'<div tooltip-animation-class="fade"\n  uib-tooltip-classes\n  ng-class="{ in: isOpen() }">\n  <div class="arrow"></div>\n\n  <div class="popover-inner">\n      <h3 class="popover-title" ng-bind="title" ng-if="title"></h3>\n      <div class="popover-content" ng-bind-html="contentExp()"></div>\n  </div>\n</div>\n')}]),angular.module("template/popover/popover-template.html",[]).run(["$templateCache",function(a){a.put("template/popover/popover-template.html",'<div tooltip-animation-class="fade"\n  uib-tooltip-classes\n  ng-class="{ in: isOpen() }">\n  <div class="arrow"></div>\n\n  <div class="popover-inner">\n      <h3 class="popover-title" ng-bind="title" ng-if="title"></h3>\n      <div class="popover-content"\n        uib-tooltip-template-transclude="contentExp()"\n        tooltip-template-transclude-scope="originScope()"></div>\n  </div>\n</div>\n')}]),angular.module("template/popover/popover.html",[]).run(["$templateCache",function(a){a.put("template/popover/popover.html",'<div tooltip-animation-class="fade"\n  uib-tooltip-classes\n  ng-class="{ in: isOpen() }">\n  <div class="arrow"></div>\n\n  <div class="popover-inner">\n      <h3 class="popover-title" ng-bind="title" ng-if="title"></h3>\n      <div class="popover-content" ng-bind="content"></div>\n  </div>\n</div>\n')}]),angular.module("template/progressbar/bar.html",[]).run(["$templateCache",function(a){a.put("template/progressbar/bar.html",'<div class="progress-bar" ng-class="type && \'progress-bar-\' + type" role="progressbar" aria-valuenow="{{value}}" aria-valuemin="0" aria-valuemax="{{max}}" ng-style="{width: (percent < 100 ? percent : 100) + \'%\'}" aria-valuetext="{{percent | number:0}}%" aria-labelledby="{{::title}}" style="min-width: 0;" ng-transclude></div>\n')}]),angular.module("template/progressbar/progress.html",[]).run(["$templateCache",function(a){a.put("template/progressbar/progress.html",'<div class="progress" ng-transclude aria-labelledby="{{::title}}"></div>')}]),angular.module("template/progressbar/progressbar.html",[]).run(["$templateCache",function(a){a.put("template/progressbar/progressbar.html",'<div class="progress">\n  <div class="progress-bar" ng-class="type && \'progress-bar-\' + type" role="progressbar" aria-valuenow="{{value}}" aria-valuemin="0" aria-valuemax="{{max}}" ng-style="{width: (percent < 100 ? percent : 100) + \'%\'}" aria-valuetext="{{percent | number:0}}%" aria-labelledby="{{::title}}" style="min-width: 0;" ng-transclude></div>\n</div>\n')}]),angular.module("template/rating/rating.html",[]).run(["$templateCache",function(a){a.put("template/rating/rating.html",'<span ng-mouseleave="reset()" ng-keydown="onKeydown($event)" tabindex="0" role="slider" aria-valuemin="0" aria-valuemax="{{range.length}}" aria-valuenow="{{value}}">\n    <span ng-repeat-start="r in range track by $index" class="sr-only">({{ $index < value ? \'*\' : \' \' }})</span>\n    <i ng-repeat-end ng-mouseenter="enter($index + 1)" ng-click="rate($index + 1)" class="glyphicon" ng-class="$index < value && (r.stateOn || \'glyphicon-star\') || (r.stateOff || \'glyphicon-star-empty\')" ng-attr-title="{{r.title}}" aria-valuetext="{{r.title}}"></i>\n</span>\n');
nagios4-4.4.6/html/angularjs/ui-bootstrap-tpls-0.14.3.min.js-12-}]),angular.module("template/tabs/tab.html",[]).run(["$templateCache",function(a){a.put("template/tabs/tab.html",'<li ng-class="{active: active, disabled: disabled}">\n  <a href ng-click="select()" uib-tab-heading-transclude>{{heading}}</a>\n</li>\n')}]),angular.module("template/tabs/tabset.html",[]).run(["$templateCache",function(a){a.put("template/tabs/tabset.html",'<div>\n  <ul class="nav nav-{{type || \'tabs\'}}" ng-class="{\'nav-stacked\': vertical, \'nav-justified\': justified}" ng-transclude></ul>\n  <div class="tab-content">\n    <div class="tab-pane" \n         ng-repeat="tab in tabs" \n         ng-class="{active: tab.active}"\n         uib-tab-content-transclude="tab">\n    </div>\n  </div>\n</div>\n')}]),angular.module("template/timepicker/timepicker.html",[]).run(["$templateCache",function(a){a.put("template/timepicker/timepicker.html",'<table>\n  <tbody>\n    <tr class="text-center" ng-show="::showSpinners">\n      <td><a ng-click="incrementHours()" ng-class="{disabled: noIncrementHours()}" class="btn btn-link" ng-disabled="noIncrementHours()" tabindex="{{::tabindex}}"><span class="glyphicon glyphicon-chevron-up"></span></a></td>\n      <td>&nbsp;</td>\n      <td><a ng-click="incrementMinutes()" ng-class="{disabled: noIncrementMinutes()}" class="btn btn-link" ng-disabled="noIncrementMinutes()" tabindex="{{::tabindex}}"><span class="glyphicon glyphicon-chevron-up"></span></a></td>\n      <td ng-show="showMeridian"></td>\n    </tr>\n    <tr>\n      <td class="form-group" ng-class="{\'has-error\': invalidHours}">\n        <input style="width:50px;" type="text" ng-model="hours" ng-change="updateHours()" class="form-control text-center" ng-readonly="::readonlyInput" maxlength="2" tabindex="{{::tabindex}}">\n      </td>\n      <td>:</td>\n      <td class="form-group" ng-class="{\'has-error\': invalidMinutes}">\n        <input style="width:50px;" type="text" ng-model="minutes" ng-change="updateMinutes()" class="form-control text-center" ng-readonly="::readonlyInput" maxlength="2" tabindex="{{::tabindex}}">\n      </td>\n      <td ng-show="showMeridian"><button type="button" ng-class="{disabled: noToggleMeridian()}" class="btn btn-default text-center" ng-click="toggleMeridian()" ng-disabled="noToggleMeridian()" tabindex="{{::tabindex}}">{{meridian}}</button></td>\n    </tr>\n    <tr class="text-center" ng-show="::showSpinners">\n      <td><a ng-click="decrementHours()" ng-class="{disabled: noDecrementHours()}" class="btn btn-link" ng-disabled="noDecrementHours()" tabindex="{{::tabindex}}"><span class="glyphicon glyphicon-chevron-down"></span></a></td>\n      <td>&nbsp;</td>\n      <td><a ng-click="decrementMinutes()" ng-class="{disabled: noDecrementMinutes()}" class="btn btn-link" ng-disabled="noDecrementMinutes()" tabindex="{{::tabindex}}"><span class="glyphicon glyphicon-chevron-down"></span></a></td>\n      <td ng-show="showMeridian"></td>\n    </tr>\n  </tbody>\n</table>\n')}]),angular.module("template/typeahead/typeahead-match.html",[]).run(["$templateCache",function(a){a.put("template/typeahead/typeahead-match.html",'<a href tabindex="-1" ng-bind-html="match.label | uibTypeaheadHighlight:query"></a>\n')}]),angular.module("template/typeahead/typeahead-popup.html",[]).run(["$templateCache",function(a){a.put("template/typeahead/typeahead-popup.html",'<ul class="dropdown-menu" ng-show="isOpen() && !moveInProgress" ng-style="{top: position().top+\'px\', left: position().left+\'px\'}" style="display: block;" role="listbox" aria-hidden="{{!isOpen()}}">\n    <li ng-repeat="match in matches track by $index" ng-class="{active: isActive($index) }" ng-mouseenter="selectActive($index)" ng-click="selectMatch($index)" role="option" id="{{::match.id}}">\n        <div uib-typeahead-match index="$index" match="match" query="query" template-url="templateUrl"></div>\n    </li>\n</ul>\n')}]),!angular.$$csp()&&angular.element(document).find("head").prepend('<style type="text/css">.ng-animate.item:not(.left):not(.right){-webkit-transition:0s ease-in-out left;transition:0s ease-in-out left}</style>');
##############################################
nagios4-4.4.6/html/index.php.in-35-	<meta name="ROBOTS" content="NOINDEX, NOFOLLOW">
nagios4-4.4.6/html/index.php.in:36:	<title>Nagios: <?php echo $_SERVER['SERVER_NAME']; ?></title>
nagios4-4.4.6/html/index.php.in-37-	<link rel="shortcut icon" href="images/favicon.ico" type="image/ico">
##############################################
nagios4-4.4.6/html/js/jquery-1.12.4.min.js-1-/*! jQuery v1.12.4 | (c) jQuery Foundation | jquery.org/license */
nagios4-4.4.6/html/js/jquery-1.12.4.min.js:2:!function(a,b){"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){var c=[],d=a.document,e=c.slice,f=c.concat,g=c.push,h=c.indexOf,i={},j=i.toString,k=i.hasOwnProperty,l={},m="1.12.4",n=function(a,b){return new n.fn.init(a,b)},o=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,p=/^-ms-/,q=/-([\da-z])/gi,r=function(a,b){return b.toUpperCase()};n.fn=n.prototype={jquery:m,constructor:n,selector:"",length:0,toArray:function(){return e.call(this)},get:function(a){return null!=a?0>a?this[a+this.length]:this[a]:e.call(this)},pushStack:function(a){var b=n.merge(this.constructor(),a);return b.prevObject=this,b.context=this.context,b},each:function(a){return n.each(this,a)},map:function(a){return this.pushStack(n.map(this,function(b,c){return a.call(b,c,b)}))},slice:function(){return this.pushStack(e.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(a){var b=this.length,c=+a+(0>a?b:0);return this.pushStack(c>=0&&b>c?[this[c]]:[])},end:function(){return this.prevObject||this.constructor()},push:g,sort:c.sort,splice:c.splice},n.extend=n.fn.extend=function(){var a,b,c,d,e,f,g=arguments[0]||{},h=1,i=arguments.length,j=!1;for("boolean"==typeof g&&(j=g,g=arguments[h]||{},h++),"object"==typeof g||n.isFunction(g)||(g={}),h===i&&(g=this,h--);i>h;h++)if(null!=(e=arguments[h]))for(d in e)a=g[d],c=e[d],g!==c&&(j&&c&&(n.isPlainObject(c)||(b=n.isArray(c)))?(b?(b=!1,f=a&&n.isArray(a)?a:[]):f=a&&n.isPlainObject(a)?a:{},g[d]=n.extend(j,f,c)):void 0!==c&&(g[d]=c));return g},n.extend({expando:"jQuery"+(m+Math.random()).replace(/\D/g,""),isReady:!0,error:function(a){throw new Error(a)},noop:function(){},isFunction:function(a){return"function"===n.type(a)},isArray:Array.isArray||function(a){return"array"===n.type(a)},isWindow:function(a){return null!=a&&a==a.window},isNumeric:function(a){var b=a&&a.toString();return!n.isArray(a)&&b-parseFloat(b)+1>=0},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},isPlainObject:function(a){var b;if(!a||"object"!==n.type(a)||a.nodeType||n.isWindow(a))return!1;try{if(a.constructor&&!k.call(a,"constructor")&&!k.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}if(!l.ownFirst)for(b in a)return k.call(a,b);for(b in a);return void 0===b||k.call(a,b)},type:function(a){return null==a?a+"":"object"==typeof a||"function"==typeof a?i[j.call(a)]||"object":typeof a},globalEval:function(b){b&&n.trim(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(p,"ms-").replace(q,r)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,b){var c,d=0;if(s(a)){for(c=a.length;c>d;d++)if(b.call(a[d],d,a[d])===!1)break}else for(d in a)if(b.call(a[d],d,a[d])===!1)break;return a},trim:function(a){return null==a?"":(a+"").replace(o,"")},makeArray:function(a,b){var c=b||[];return null!=a&&(s(Object(a))?n.merge(c,"string"==typeof a?[a]:a):g.call(c,a)),c},inArray:function(a,b,c){var d;if(b){if(h)return h.call(b,a,c);for(d=b.length,c=c?0>c?Math.max(0,d+c):c:0;d>c;c++)if(c in b&&b[c]===a)return c}return-1},merge:function(a,b){var c=+b.length,d=0,e=a.length;while(c>d)a[e++]=b[d++];if(c!==c)while(void 0!==b[d])a[e++]=b[d++];return a.length=e,a},grep:function(a,b,c){for(var d,e=[],f=0,g=a.length,h=!c;g>f;f++)d=!b(a[f],f),d!==h&&e.push(a[f]);return e},map:function(a,b,c){var d,e,g=0,h=[];if(s(a))for(d=a.length;d>g;g++)e=b(a[g],g,c),null!=e&&h.push(e);else for(g in a)e=b(a[g],g,c),null!=e&&h.push(e);return f.apply([],h)},guid:1,proxy:function(a,b){var c,d,f;return"string"==typeof b&&(f=a[b],b=a,a=f),n.isFunction(a)?(c=e.call(arguments,2),d=function(){return a.apply(b||this,c.concat(e.call(arguments)))},d.guid=a.guid=a.guid||n.guid++,d):void 0},now:function(){return+new Date},support:l}),"function"==typeof Symbol&&(n.fn[Symbol.iterator]=c[Symbol.iterator]),n.each("Boolean Number String Function Array Date RegExp Object Error Symbol".split(" "),function(a,b){i["[object "+b+"]"]=b.toLowerCase()});function s(a){var b=!!a&&"length"in a&&a.length,c=n.type(a);return"function"===c||n.isWindow(a)?!1:"array"===c||0===b||"number"==typeof b&&b>0&&b-1 in a}var t=function(a){var b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u="sizzle"+1*new Date,v=a.document,w=0,x=0,y=ga(),z=ga(),A=ga(),B=function(a,b){return a===b&&(l=!0),0},C=1<<31,D={}.hasOwnProperty,E=[],F=E.pop,G=E.push,H=E.push,I=E.slice,J=function(a,b){for(var c=0,d=a.length;d>c;c++)if(a[c]===b)return c;return-1},K="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",L="[\\x20\\t\\r\\n\\f]",M="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",N="\\["+L+"*("+M+")(?:"+L+"*([*^$|!~]?=)"+L+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+M+"))|)"+L+"*\\]",O=":("+M+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+N+")*)|.*)\\)|)",P=new RegExp(L+"+","g"),Q=new RegExp("^"+L+"+|((?:^|[^\\\\])(?:\\\\.)*)"+L+"+$","g"),R=new RegExp("^"+L+"*,"+L+"*"),S=new RegExp("^"+L+"*([>+~]|"+L+")"+L+"*"),T=new RegExp("="+L+"*([^\\]'\"]*?)"+L+"*\\]","g"),U=new RegExp(O),V=new RegExp("^"+M+"$"),W={ID:new RegExp("^#("+M+")"),CLASS:new RegExp("^\\.("+M+")"),TAG:new RegExp("^("+M+"|[*])"),ATTR:new RegExp("^"+N),PSEUDO:new RegExp("^"+O),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+L+"*(even|odd|(([+-]|)(\\d*)n|)"+L+"*(?:([+-]|)"+L+"*(\\d+)|))"+L+"*\\)|)","i"),bool:new RegExp("^(?:"+K+")$","i"),needsContext:new RegExp("^"+L+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+L+"*((?:-\\d)?\\d*)"+L+"*\\)|)(?=[^-]|$)","i")},X=/^(?:input|select|textarea|button)$/i,Y=/^h\d$/i,Z=/^[^{]+\{\s*\[native \w/,$=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,_=/[+~]/,aa=/'|\\/g,ba=new RegExp("\\\\([\\da-f]{1,6}"+L+"?|("+L+")|.)","ig"),ca=function(a,b,c){var d="0x"+b-65536;return d!==d||c?b:0>d?String.fromCharCode(d+65536):String.fromCharCode(d>>10|55296,1023&d|56320)},da=function(){m()};try{H.apply(E=I.call(v.childNodes),v.childNodes),E[v.childNodes.length].nodeType}catch(ea){H={apply:E.length?function(a,b){G.apply(a,I.call(b))}:function(a,b){var c=a.length,d=0;while(a[c++]=b[d++]);a.length=c-1}}}function fa(a,b,d,e){var f,h,j,k,l,o,r,s,w=b&&b.ownerDocument,x=b?b.nodeType:9;if(d=d||[],"string"!=typeof a||!a||1!==x&&9!==x&&11!==x)return d;if(!e&&((b?b.ownerDocument||b:v)!==n&&m(b),b=b||n,p)){if(11!==x&&(o=$.exec(a)))if(f=o[1]){if(9===x){if(!(j=b.getElementById(f)))return d;if(j.id===f)return d.push(j),d}else if(w&&(j=w.getElementById(f))&&t(b,j)&&j.id===f)return d.push(j),d}else{if(o[2])return H.apply(d,b.getElementsByTagName(a)),d;if((f=o[3])&&c.getElementsByClassName&&b.getElementsByClassName)return H.apply(d,b.getElementsByClassName(f)),d}if(c.qsa&&!A[a+" "]&&(!q||!q.test(a))){if(1!==x)w=b,s=a;else if("object"!==b.nodeName.toLowerCase()){(k=b.getAttribute("id"))?k=k.replace(aa,"\\$&"):b.setAttribute("id",k=u),r=g(a),h=r.length,l=V.test(k)?"#"+k:"[id='"+k+"']";while(h--)r[h]=l+" "+qa(r[h]);s=r.join(","),w=_.test(a)&&oa(b.parentNode)||b}if(s)try{return H.apply(d,w.querySelectorAll(s)),d}catch(y){}finally{k===u&&b.removeAttribute("id")}}}return i(a.replace(Q,"$1"),b,d,e)}function ga(){var a=[];function b(c,e){return a.push(c+" ")>d.cacheLength&&delete b[a.shift()],b[c+" "]=e}return b}function ha(a){return a[u]=!0,a}function ia(a){var b=n.createElement("div");try{return!!a(b)}catch(c){return!1}finally{b.parentNode&&b.parentNode.removeChild(b),b=null}}function ja(a,b){var c=a.split("|"),e=c.length;while(e--)d.attrHandle[c[e]]=b}function ka(a,b){var c=b&&a,d=c&&1===a.nodeType&&1===b.nodeType&&(~b.sourceIndex||C)-(~a.sourceIndex||C);if(d)return d;if(c)while(c=c.nextSibling)if(c===b)return-1;return a?1:-1}function la(a){return function(b){var c=b.nodeName.toLowerCase();return"input"===c&&b.type===a}}function ma(a){return function(b){var c=b.nodeName.toLowerCase();return("input"===c||"button"===c)&&b.type===a}}function na(a){return ha(function(b){return b=+b,ha(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function oa(a){return a&&"undefined"!=typeof a.getElementsByTagName&&a}c=fa.support={},f=fa.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?"HTML"!==b.nodeName:!1},m=fa.setDocument=function(a){var b,e,g=a?a.ownerDocument||a:v;return g!==n&&9===g.nodeType&&g.documentElement?(n=g,o=n.documentElement,p=!f(n),(e=n.defaultView)&&e.top!==e&&(e.addEventListener?e.addEventListener("unload",da,!1):e.attachEvent&&e.attachEvent("onunload",da)),c.attributes=ia(function(a){return a.className="i",!a.getAttribute("className")}),c.getElementsByTagName=ia(function(a){return a.appendChild(n.createComment("")),!a.getElementsByTagName("*").length}),c.getElementsByClassName=Z.test(n.getElementsByClassName),c.getById=ia(function(a){return o.appendChild(a).id=u,!n.getElementsByName||!n.getElementsByName(u).length}),c.getById?(d.find.ID=function(a,b){if("undefined"!=typeof b.getElementById&&p){var c=b.getElementById(a);return c?[c]:[]}},d.filter.ID=function(a){var b=a.replace(ba,ca);return function(a){return a.getAttribute("id")===b}}):(delete d.find.ID,d.filter.ID=function(a){var b=a.replace(ba,ca);return function(a){var c="undefined"!=typeof a.getAttributeNode&&a.getAttributeNode("id");return c&&c.value===b}}),d.find.TAG=c.getElementsByTagName?function(a,b){return"undefined"!=typeof b.getElementsByTagName?b.getElementsByTagName(a):c.qsa?b.querySelectorAll(a):void 0}:function(a,b){var c,d=[],e=0,f=b.getElementsByTagName(a);if("*"===a){while(c=f[e++])1===c.nodeType&&d.push(c);return d}return f},d.find.CLASS=c.getElementsByClassName&&function(a,b){return"undefined"!=typeof b.getElementsByClassName&&p?b.getElementsByClassName(a):void 0},r=[],q=[],(c.qsa=Z.test(n.querySelectorAll))&&(ia(function(a){o.appendChild(a).innerHTML="<a id='"+u+"'></a><select id='"+u+"-\r\\' msallowcapture=''><option selected=''></option></select>",a.querySelectorAll("[msallowcapture^='']").length&&q.push("[*^$]="+L+"*(?:''|\"\")"),a.querySelectorAll("[selected]").length||q.push("\\["+L+"*(?:value|"+K+")"),a.querySelectorAll("[id~="+u+"-]").length||q.push("~="),a.querySelectorAll(":checked").length||q.push(":checked"),a.querySelectorAll("a#"+u+"+*").length||q.push(".#.+[+~]")}),ia(function(a){var b=n.createElement("input");b.setAttribute("type","hidden"),a.appendChild(b).setAttribute("name","D"),a.querySelectorAll("[name=d]").length&&q.push("name"+L+"*[*^$|!~]?="),a.querySelectorAll(":enabled").length||q.push(":enabled",":disabled"),a.querySelectorAll("*,:x"),q.push(",.*:")})),(c.matchesSelector=Z.test(s=o.matches||o.webkitMatchesSelector||o.mozMatchesSelector||o.oMatchesSelector||o.msMatchesSelector))&&ia(function(a){c.disconnectedMatch=s.call(a,"div"),s.call(a,"[s!='']:x"),r.push("!=",O)}),q=q.length&&new RegExp(q.join("|")),r=r.length&&new RegExp(r.join("|")),b=Z.test(o.compareDocumentPosition),t=b||Z.test(o.contains)?function(a,b){var c=9===a.nodeType?a.documentElement:a,d=b&&b.parentNode;return a===d||!(!d||1!==d.nodeType||!(c.contains?c.contains(d):a.compareDocumentPosition&&16&a.compareDocumentPosition(d)))}:function(a,b){if(b)while(b=b.parentNode)if(b===a)return!0;return!1},B=b?function(a,b){if(a===b)return l=!0,0;var d=!a.compareDocumentPosition-!b.compareDocumentPosition;return d?d:(d=(a.ownerDocument||a)===(b.ownerDocument||b)?a.compareDocumentPosition(b):1,1&d||!c.sortDetached&&b.compareDocumentPosition(a)===d?a===n||a.ownerDocument===v&&t(v,a)?-1:b===n||b.ownerDocument===v&&t(v,b)?1:k?J(k,a)-J(k,b):0:4&d?-1:1)}:function(a,b){if(a===b)return l=!0,0;var c,d=0,e=a.parentNode,f=b.parentNode,g=[a],h=[b];if(!e||!f)return a===n?-1:b===n?1:e?-1:f?1:k?J(k,a)-J(k,b):0;if(e===f)return ka(a,b);c=a;while(c=c.parentNode)g.unshift(c);c=b;while(c=c.parentNode)h.unshift(c);while(g[d]===h[d])d++;return d?ka(g[d],h[d]):g[d]===v?-1:h[d]===v?1:0},n):n},fa.matches=function(a,b){return fa(a,null,null,b)},fa.matchesSelector=function(a,b){if((a.ownerDocument||a)!==n&&m(a),b=b.replace(T,"='$1']"),c.matchesSelector&&p&&!A[b+" "]&&(!r||!r.test(b))&&(!q||!q.test(b)))try{var d=s.call(a,b);if(d||c.disconnectedMatch||a.document&&11!==a.document.nodeType)return d}catch(e){}return fa(b,n,null,[a]).length>0},fa.contains=function(a,b){return(a.ownerDocument||a)!==n&&m(a),t(a,b)},fa.attr=function(a,b){(a.ownerDocument||a)!==n&&m(a);var e=d.attrHandle[b.toLowerCase()],f=e&&D.call(d.attrHandle,b.toLowerCase())?e(a,b,!p):void 0;return void 0!==f?f:c.attributes||!p?a.getAttribute(b):(f=a.getAttributeNode(b))&&f.specified?f.value:null},fa.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},fa.uniqueSort=function(a){var b,d=[],e=0,f=0;if(l=!c.detectDuplicates,k=!c.sortStable&&a.slice(0),a.sort(B),l){while(b=a[f++])b===a[f]&&(e=d.push(f));while(e--)a.splice(d[e],1)}return k=null,a},e=fa.getText=function(a){var b,c="",d=0,f=a.nodeType;if(f){if(1===f||9===f||11===f){if("string"==typeof a.textContent)return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=e(a)}else if(3===f||4===f)return a.nodeValue}else while(b=a[d++])c+=e(b);return c},d=fa.selectors={cacheLength:50,createPseudo:ha,match:W,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(ba,ca),a[3]=(a[3]||a[4]||a[5]||"").replace(ba,ca),"~="===a[2]&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),"nth"===a[1].slice(0,3)?(a[3]||fa.error(a[0]),a[4]=+(a[4]?a[5]+(a[6]||1):2*("even"===a[3]||"odd"===a[3])),a[5]=+(a[7]+a[8]||"odd"===a[3])):a[3]&&fa.error(a[0]),a},PSEUDO:function(a){var b,c=!a[6]&&a[2];return W.CHILD.test(a[0])?null:(a[3]?a[2]=a[4]||a[5]||"":c&&U.test(c)&&(b=g(c,!0))&&(b=c.indexOf(")",c.length-b)-c.length)&&(a[0]=a[0].slice(0,b),a[2]=c.slice(0,b)),a.slice(0,3))}},filter:{TAG:function(a){var b=a.replace(ba,ca).toLowerCase();return"*"===a?function(){return!0}:function(a){return a.nodeName&&a.nodeName.toLowerCase()===b}},CLASS:function(a){var b=y[a+" "];return b||(b=new RegExp("(^|"+L+")"+a+"("+L+"|$)"))&&y(a,function(a){return b.test("string"==typeof a.className&&a.className||"undefined"!=typeof a.getAttribute&&a.getAttribute("class")||"")})},ATTR:function(a,b,c){return function(d){var e=fa.attr(d,a);return null==e?"!="===b:b?(e+="","="===b?e===c:"!="===b?e!==c:"^="===b?c&&0===e.indexOf(c):"*="===b?c&&e.indexOf(c)>-1:"$="===b?c&&e.slice(-c.length)===c:"~="===b?(" "+e.replace(P," ")+" ").indexOf(c)>-1:"|="===b?e===c||e.slice(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d,e){var f="nth"!==a.slice(0,3),g="last"!==a.slice(-4),h="of-type"===b;return 1===d&&0===e?function(a){return!!a.parentNode}:function(b,c,i){var j,k,l,m,n,o,p=f!==g?"nextSibling":"previousSibling",q=b.parentNode,r=h&&b.nodeName.toLowerCase(),s=!i&&!h,t=!1;if(q){if(f){while(p){m=b;while(m=m[p])if(h?m.nodeName.toLowerCase()===r:1===m.nodeType)return!1;o=p="only"===a&&!o&&"nextSibling"}return!0}if(o=[g?q.firstChild:q.lastChild],g&&s){m=q,l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),j=k[a]||[],n=j[0]===w&&j[1],t=n&&j[2],m=n&&q.childNodes[n];while(m=++n&&m&&m[p]||(t=n=0)||o.pop())if(1===m.nodeType&&++t&&m===b){k[a]=[w,n,t];break}}else if(s&&(m=b,l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),j=k[a]||[],n=j[0]===w&&j[1],t=n),t===!1)while(m=++n&&m&&m[p]||(t=n=0)||o.pop())if((h?m.nodeName.toLowerCase()===r:1===m.nodeType)&&++t&&(s&&(l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),k[a]=[w,t]),m===b))break;return t-=e,t===d||t%d===0&&t/d>=0}}},PSEUDO:function(a,b){var c,e=d.pseudos[a]||d.setFilters[a.toLowerCase()]||fa.error("unsupported pseudo: "+a);return e[u]?e(b):e.length>1?(c=[a,a,"",b],d.setFilters.hasOwnProperty(a.toLowerCase())?ha(function(a,c){var d,f=e(a,b),g=f.length;while(g--)d=J(a,f[g]),a[d]=!(c[d]=f[g])}):function(a){return e(a,0,c)}):e}},pseudos:{not:ha(function(a){var b=[],c=[],d=h(a.replace(Q,"$1"));return d[u]?ha(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)(f=g[h])&&(a[h]=!(b[h]=f))}):function(a,e,f){return b[0]=a,d(b,null,f,c),b[0]=null,!c.pop()}}),has:ha(function(a){return function(b){return fa(a,b).length>0}}),contains:ha(function(a){return a=a.replace(ba,ca),function(b){return(b.textContent||b.innerText||e(b)).indexOf(a)>-1}}),lang:ha(function(a){return V.test(a||"")||fa.error("unsupported lang: "+a),a=a.replace(ba,ca).toLowerCase(),function(b){var c;do if(c=p?b.lang:b.getAttribute("xml:lang")||b.getAttribute("lang"))return c=c.toLowerCase(),c===a||0===c.indexOf(a+"-");while((b=b.parentNode)&&1===b.nodeType);return!1}}),target:function(b){var c=a.location&&a.location.hash;return c&&c.slice(1)===b.id},root:function(a){return a===o},focus:function(a){return a===n.activeElement&&(!n.hasFocus||n.hasFocus())&&!!(a.type||a.href||~a.tabIndex)},enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&!!a.checked||"option"===b&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},empty:function(a){for(a=a.firstChild;a;a=a.nextSibling)if(a.nodeType<6)return!1;return!0},parent:function(a){return!d.pseudos.empty(a)},header:function(a){return Y.test(a.nodeName)},input:function(a){return X.test(a.nodeName)},button:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&"button"===a.type||"button"===b},text:function(a){var b;return"input"===a.nodeName.toLowerCase()&&"text"===a.type&&(null==(b=a.getAttribute("type"))||"text"===b.toLowerCase())},first:na(function(){return[0]}),last:na(function(a,b){return[b-1]}),eq:na(function(a,b,c){return[0>c?c+b:c]}),even:na(function(a,b){for(var c=0;b>c;c+=2)a.push(c);return a}),odd:na(function(a,b){for(var c=1;b>c;c+=2)a.push(c);return a}),lt:na(function(a,b,c){for(var d=0>c?c+b:c;--d>=0;)a.push(d);return a}),gt:na(function(a,b,c){for(var d=0>c?c+b:c;++d<b;)a.push(d);return a})}},d.pseudos.nth=d.pseudos.eq;for(b in{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})d.pseudos[b]=la(b);for(b in{submit:!0,reset:!0})d.pseudos[b]=ma(b);function pa(){}pa.prototype=d.filters=d.pseudos,d.setFilters=new pa,g=fa.tokenize=function(a,b){var c,e,f,g,h,i,j,k=z[a+" "];if(k)return b?0:k.slice(0);h=a,i=[],j=d.preFilter;while(h){c&&!(e=R.exec(h))||(e&&(h=h.slice(e[0].length)||h),i.push(f=[])),c=!1,(e=S.exec(h))&&(c=e.shift(),f.push({value:c,type:e[0].replace(Q," ")}),h=h.slice(c.length));for(g in d.filter)!(e=W[g].exec(h))||j[g]&&!(e=j[g](e))||(c=e.shift(),f.push({value:c,type:g,matches:e}),h=h.slice(c.length));if(!c)break}return b?h.length:h?fa.error(a):z(a,i).slice(0)};function qa(a){for(var b=0,c=a.length,d="";c>b;b++)d+=a[b].value;return d}function ra(a,b,c){var d=b.dir,e=c&&"parentNode"===d,f=x++;return b.first?function(b,c,f){while(b=b[d])if(1===b.nodeType||e)return a(b,c,f)}:function(b,c,g){var h,i,j,k=[w,f];if(g){while(b=b[d])if((1===b.nodeType||e)&&a(b,c,g))return!0}else while(b=b[d])if(1===b.nodeType||e){if(j=b[u]||(b[u]={}),i=j[b.uniqueID]||(j[b.uniqueID]={}),(h=i[d])&&h[0]===w&&h[1]===f)return k[2]=h[2];if(i[d]=k,k[2]=a(b,c,g))return!0}}}function sa(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function ta(a,b,c){for(var d=0,e=b.length;e>d;d++)fa(a,b[d],c);return c}function ua(a,b,c,d,e){for(var f,g=[],h=0,i=a.length,j=null!=b;i>h;h++)(f=a[h])&&(c&&!c(f,d,e)||(g.push(f),j&&b.push(h)));return g}function va(a,b,c,d,e,f){return d&&!d[u]&&(d=va(d)),e&&!e[u]&&(e=va(e,f)),ha(function(f,g,h,i){var j,k,l,m=[],n=[],o=g.length,p=f||ta(b||"*",h.nodeType?[h]:h,[]),q=!a||!f&&b?p:ua(p,m,a,h,i),r=c?e||(f?a:o||d)?[]:g:q;if(c&&c(q,r,h,i),d){j=ua(r,n),d(j,[],h,i),k=j.length;while(k--)(l=j[k])&&(r[n[k]]=!(q[n[k]]=l))}if(f){if(e||a){if(e){j=[],k=r.length;while(k--)(l=r[k])&&j.push(q[k]=l);e(null,r=[],j,i)}k=r.length;while(k--)(l=r[k])&&(j=e?J(f,l):m[k])>-1&&(f[j]=!(g[j]=l))}}else r=ua(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):H.apply(g,r)})}function wa(a){for(var b,c,e,f=a.length,g=d.relative[a[0].type],h=g||d.relative[" "],i=g?1:0,k=ra(function(a){return a===b},h,!0),l=ra(function(a){return J(b,a)>-1},h,!0),m=[function(a,c,d){var e=!g&&(d||c!==j)||((b=c).nodeType?k(a,c,d):l(a,c,d));return b=null,e}];f>i;i++)if(c=d.relative[a[i].type])m=[ra(sa(m),c)];else{if(c=d.filter[a[i].type].apply(null,a[i].matches),c[u]){for(e=++i;f>e;e++)if(d.relative[a[e].type])break;return va(i>1&&sa(m),i>1&&qa(a.slice(0,i-1).concat({value:" "===a[i-2].type?"*":""})).replace(Q,"$1"),c,e>i&&wa(a.slice(i,e)),f>e&&wa(a=a.slice(e)),f>e&&qa(a))}m.push(c)}return sa(m)}function xa(a,b){var c=b.length>0,e=a.length>0,f=function(f,g,h,i,k){var l,o,q,r=0,s="0",t=f&&[],u=[],v=j,x=f||e&&d.find.TAG("*",k),y=w+=null==v?1:Math.random()||.1,z=x.length;for(k&&(j=g===n||g||k);s!==z&&null!=(l=x[s]);s++){if(e&&l){o=0,g||l.ownerDocument===n||(m(l),h=!p);while(q=a[o++])if(q(l,g||n,h)){i.push(l);break}k&&(w=y)}c&&((l=!q&&l)&&r--,f&&t.push(l))}if(r+=s,c&&s!==r){o=0;while(q=b[o++])q(t,u,g,h);if(f){if(r>0)while(s--)t[s]||u[s]||(u[s]=F.call(i));u=ua(u)}H.apply(i,u),k&&!f&&u.length>0&&r+b.length>1&&fa.uniqueSort(i)}return k&&(w=y,j=v),t};return c?ha(f):f}return h=fa.compile=function(a,b){var c,d=[],e=[],f=A[a+" "];if(!f){b||(b=g(a)),c=b.length;while(c--)f=wa(b[c]),f[u]?d.push(f):e.push(f);f=A(a,xa(e,d)),f.selector=a}return f},i=fa.select=function(a,b,e,f){var i,j,k,l,m,n="function"==typeof a&&a,o=!f&&g(a=n.selector||a);if(e=e||[],1===o.length){if(j=o[0]=o[0].slice(0),j.length>2&&"ID"===(k=j[0]).type&&c.getById&&9===b.nodeType&&p&&d.relative[j[1].type]){if(b=(d.find.ID(k.matches[0].replace(ba,ca),b)||[])[0],!b)return e;n&&(b=b.parentNode),a=a.slice(j.shift().value.length)}i=W.needsContext.test(a)?0:j.length;while(i--){if(k=j[i],d.relative[l=k.type])break;if((m=d.find[l])&&(f=m(k.matches[0].replace(ba,ca),_.test(j[0].type)&&oa(b.parentNode)||b))){if(j.splice(i,1),a=f.length&&qa(j),!a)return H.apply(e,f),e;break}}}return(n||h(a,o))(f,b,!p,e,!b||_.test(a)&&oa(b.parentNode)||b),e},c.sortStable=u.split("").sort(B).join("")===u,c.detectDuplicates=!!l,m(),c.sortDetached=ia(function(a){return 1&a.compareDocumentPosition(n.createElement("div"))}),ia(function(a){return a.innerHTML="<a href='#'></a>","#"===a.firstChild.getAttribute("href")})||ja("type|href|height|width",function(a,b,c){return c?void 0:a.getAttribute(b,"type"===b.toLowerCase()?1:2)}),c.attributes&&ia(function(a){return a.innerHTML="<input/>",a.firstChild.setAttribute("value",""),""===a.firstChild.getAttribute("value")})||ja("value",function(a,b,c){return c||"input"!==a.nodeName.toLowerCase()?void 0:a.defaultValue}),ia(function(a){return null==a.getAttribute("disabled")})||ja(K,function(a,b,c){var d;return c?void 0:a[b]===!0?b.toLowerCase():(d=a.getAttributeNode(b))&&d.specified?d.value:null}),fa}(a);n.find=t,n.expr=t.selectors,n.expr[":"]=n.expr.pseudos,n.uniqueSort=n.unique=t.uniqueSort,n.text=t.getText,n.isXMLDoc=t.isXML,n.contains=t.contains;var u=function(a,b,c){var d=[],e=void 0!==c;while((a=a[b])&&9!==a.nodeType)if(1===a.nodeType){if(e&&n(a).is(c))break;d.push(a)}return d},v=function(a,b){for(var c=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&c.push(a);return c},w=n.expr.match.needsContext,x=/^<([\w-]+)\s*\/?>(?:<\/\1>|)$/,y=/^.[^:#\[\.,]*$/;function z(a,b,c){if(n.isFunction(b))return n.grep(a,function(a,d){return!!b.call(a,d,a)!==c});if(b.nodeType)return n.grep(a,function(a){return a===b!==c});if("string"==typeof b){if(y.test(b))return n.filter(b,a,c);b=n.filter(b,a)}return n.grep(a,function(a){return n.inArray(a,b)>-1!==c})}n.filter=function(a,b,c){var d=b[0];return c&&(a=":not("+a+")"),1===b.length&&1===d.nodeType?n.find.matchesSelector(d,a)?[d]:[]:n.find.matches(a,n.grep(b,function(a){return 1===a.nodeType}))},n.fn.extend({find:function(a){var b,c=[],d=this,e=d.length;if("string"!=typeof a)return this.pushStack(n(a).filter(function(){for(b=0;e>b;b++)if(n.contains(d[b],this))return!0}));for(b=0;e>b;b++)n.find(a,d[b],c);return c=this.pushStack(e>1?n.unique(c):c),c.selector=this.selector?this.selector+" "+a:a,c},filter:function(a){return this.pushStack(z(this,a||[],!1))},not:function(a){return this.pushStack(z(this,a||[],!0))},is:function(a){return!!z(this,"string"==typeof a&&w.test(a)?n(a):a||[],!1).length}});var A,B=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,C=n.fn.init=function(a,b,c){var e,f;if(!a)return this;if(c=c||A,"string"==typeof a){if(e="<"===a.charAt(0)&&">"===a.charAt(a.length-1)&&a.length>=3?[null,a,null]:B.exec(a),!e||!e[1]&&b)return!b||b.jquery?(b||c).find(a):this.constructor(b).find(a);if(e[1]){if(b=b instanceof n?b[0]:b,n.merge(this,n.parseHTML(e[1],b&&b.nodeType?b.ownerDocument||b:d,!0)),x.test(e[1])&&n.isPlainObject(b))for(e in b)n.isFunction(this[e])?this[e](b[e]):this.attr(e,b[e]);return this}if(f=d.getElementById(e[2]),f&&f.parentNode){if(f.id!==e[2])return A.find(a);this.length=1,this[0]=f}return this.context=d,this.selector=a,this}return a.nodeType?(this.context=this[0]=a,this.length=1,this):n.isFunction(a)?"undefined"!=typeof c.ready?c.ready(a):a(n):(void 0!==a.selector&&(this.selector=a.selector,this.context=a.context),n.makeArray(a,this))};C.prototype=n.fn,A=n(d);var D=/^(?:parents|prev(?:Until|All))/,E={children:!0,contents:!0,next:!0,prev:!0};n.fn.extend({has:function(a){var b,c=n(a,this),d=c.length;return this.filter(function(){for(b=0;d>b;b++)if(n.contains(this,c[b]))return!0})},closest:function(a,b){for(var c,d=0,e=this.length,f=[],g=w.test(a)||"string"!=typeof a?n(a,b||this.context):0;e>d;d++)for(c=this[d];c&&c!==b;c=c.parentNode)if(c.nodeType<11&&(g?g.index(c)>-1:1===c.nodeType&&n.find.matchesSelector(c,a))){f.push(c);break}return this.pushStack(f.length>1?n.uniqueSort(f):f)},index:function(a){return a?"string"==typeof a?n.inArray(this[0],n(a)):n.inArray(a.jquery?a[0]:a,this):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(a,b){return this.pushStack(n.uniqueSort(n.merge(this.get(),n(a,b))))},addBack:function(a){return this.add(null==a?this.prevObject:this.prevObject.filter(a))}});function F(a,b){do a=a[b];while(a&&1!==a.nodeType);return a}n.each({parent:function(a){var b=a.parentNode;return b&&11!==b.nodeType?b:null},parents:function(a){return u(a,"parentNode")},parentsUntil:function(a,b,c){return u(a,"parentNode",c)},next:function(a){return F(a,"nextSibling")},prev:function(a){return F(a,"previousSibling")},nextAll:function(a){return u(a,"nextSibling")},prevAll:function(a){return u(a,"previousSibling")},nextUntil:function(a,b,c){return u(a,"nextSibling",c)},prevUntil:function(a,b,c){return u(a,"previousSibling",c)},siblings:function(a){return v((a.parentNode||{}).firstChild,a)},children:function(a){return v(a.firstChild)},contents:function(a){return n.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:n.merge([],a.childNodes)}},function(a,b){n.fn[a]=function(c,d){var e=n.map(this,b,c);return"Until"!==a.slice(-5)&&(d=c),d&&"string"==typeof d&&(e=n.filter(d,e)),this.length>1&&(E[a]||(e=n.uniqueSort(e)),D.test(a)&&(e=e.reverse())),this.pushStack(e)}});var G=/\S+/g;function H(a){var b={};return n.each(a.match(G)||[],function(a,c){b[c]=!0}),b}n.Callbacks=function(a){a="string"==typeof a?H(a):n.extend({},a);var b,c,d,e,f=[],g=[],h=-1,i=function(){for(e=a.once,d=b=!0;g.length;h=-1){c=g.shift();while(++h<f.length)f[h].apply(c[0],c[1])===!1&&a.stopOnFalse&&(h=f.length,c=!1)}a.memory||(c=!1),b=!1,e&&(f=c?[]:"")},j={add:function(){return f&&(c&&!b&&(h=f.length-1,g.push(c)),function d(b){n.each(b,function(b,c){n.isFunction(c)?a.unique&&j.has(c)||f.push(c):c&&c.length&&"string"!==n.type(c)&&d(c)})}(arguments),c&&!b&&i()),this},remove:function(){return n.each(arguments,function(a,b){var c;while((c=n.inArray(b,f,c))>-1)f.splice(c,1),h>=c&&h--}),this},has:function(a){return a?n.inArray(a,f)>-1:f.length>0},empty:function(){return f&&(f=[]),this},disable:function(){return e=g=[],f=c="",this},disabled:function(){return!f},lock:function(){return e=!0,c||j.disable(),this},locked:function(){return!!e},fireWith:function(a,c){return e||(c=c||[],c=[a,c.slice?c.slice():c],g.push(c),b||i()),this},fire:function(){return j.fireWith(this,arguments),this},fired:function(){return!!d}};return j},n.extend({Deferred:function(a){var b=[["resolve","done",n.Callbacks("once memory"),"resolved"],["reject","fail",n.Callbacks("once memory"),"rejected"],["notify","progress",n.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return n.Deferred(function(c){n.each(b,function(b,f){var g=n.isFunction(a[b])&&a[b];e[f[1]](function(){var a=g&&g.apply(this,arguments);a&&n.isFunction(a.promise)?a.promise().progress(c.notify).done(c.resolve).fail(c.reject):c[f[0]+"With"](this===d?c.promise():this,g?[a]:arguments)})}),a=null}).promise()},promise:function(a){return null!=a?n.extend(a,d):d}},e={};return d.pipe=d.then,n.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[1^a][2].disable,b[2][2].lock),e[f[0]]=function(){return e[f[0]+"With"](this===e?d:this,arguments),this},e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=e.call(arguments),d=c.length,f=1!==d||a&&n.isFunction(a.promise)?d:0,g=1===f?a:n.Deferred(),h=function(a,b,c){return function(d){b[a]=this,c[a]=arguments.length>1?e.call(arguments):d,c===i?g.notifyWith(b,c):--f||g.resolveWith(b,c)}},i,j,k;if(d>1)for(i=new Array(d),j=new Array(d),k=new Array(d);d>b;b++)c[b]&&n.isFunction(c[b].promise)?c[b].promise().progress(h(b,j,i)).done(h(b,k,c)).fail(g.reject):--f;return f||g.resolveWith(k,c),g.promise()}});var I;n.fn.ready=function(a){return n.ready.promise().done(a),this},n.extend({isReady:!1,readyWait:1,holdReady:function(a){a?n.readyWait++:n.ready(!0)},ready:function(a){(a===!0?--n.readyWait:n.isReady)||(n.isReady=!0,a!==!0&&--n.readyWait>0||(I.resolveWith(d,[n]),n.fn.triggerHandler&&(n(d).triggerHandler("ready"),n(d).off("ready"))))}});function J(){d.addEventListener?(d.removeEventListener("DOMContentLoaded",K),a.removeEventListener("load",K)):(d.detachEvent("onreadystatechange",K),a.detachEvent("onload",K))}function K(){(d.addEventListener||"load"===a.event.type||"complete"===d.readyState)&&(J(),n.ready())}n.ready.promise=function(b){if(!I)if(I=n.Deferred(),"complete"===d.readyState||"loading"!==d.readyState&&!d.documentElement.doScroll)a.setTimeout(n.ready);else if(d.addEventListener)d.addEventListener("DOMContentLoaded",K),a.addEventListener("load",K);else{d.attachEvent("onreadystatechange",K),a.attachEvent("onload",K);var c=!1;try{c=null==a.frameElement&&d.documentElement}catch(e){}c&&c.doScroll&&!function f(){if(!n.isReady){try{c.doScroll("left")}catch(b){return a.setTimeout(f,50)}J(),n.ready()}}()}return I.promise(b)},n.ready.promise();var L;for(L in n(l))break;l.ownFirst="0"===L,l.inlineBlockNeedsLayout=!1,n(function(){var a,b,c,e;c=d.getElementsByTagName("body")[0],c&&c.style&&(b=d.createElement("div"),e=d.createElement("div"),e.style.cssText="position:absolute;border:0;width:0;height:0;top:0;left:-9999px",c.appendChild(e).appendChild(b),"undefined"!=typeof b.style.zoom&&(b.style.cssText="display:inline;margin:0;border:0;padding:1px;width:1px;zoom:1",l.inlineBlockNeedsLayout=a=3===b.offsetWidth,a&&(c.style.zoom=1)),c.removeChild(e))}),function(){var a=d.createElement("div");l.deleteExpando=!0;try{delete a.test}catch(b){l.deleteExpando=!1}a=null}();var M=function(a){var b=n.noData[(a.nodeName+" ").toLowerCase()],c=+a.nodeType||1;return 1!==c&&9!==c?!1:!b||b!==!0&&a.getAttribute("classid")===b},N=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,O=/([A-Z])/g;function P(a,b,c){if(void 0===c&&1===a.nodeType){var d="data-"+b.replace(O,"-$1").toLowerCase();if(c=a.getAttribute(d),"string"==typeof c){try{c="true"===c?!0:"false"===c?!1:"null"===c?null:+c+""===c?+c:N.test(c)?n.parseJSON(c):c}catch(e){}n.data(a,b,c)}else c=void 0;
nagios4-4.4.6/html/js/jquery-1.12.4.min.js:3:}return c}function Q(a){var b;for(b in a)if(("data"!==b||!n.isEmptyObject(a[b]))&&"toJSON"!==b)return!1;return!0}function R(a,b,d,e){if(M(a)){var f,g,h=n.expando,i=a.nodeType,j=i?n.cache:a,k=i?a[h]:a[h]&&h;if(k&&j[k]&&(e||j[k].data)||void 0!==d||"string"!=typeof b)return k||(k=i?a[h]=c.pop()||n.guid++:h),j[k]||(j[k]=i?{}:{toJSON:n.noop}),"object"!=typeof b&&"function"!=typeof b||(e?j[k]=n.extend(j[k],b):j[k].data=n.extend(j[k].data,b)),g=j[k],e||(g.data||(g.data={}),g=g.data),void 0!==d&&(g[n.camelCase(b)]=d),"string"==typeof b?(f=g[b],null==f&&(f=g[n.camelCase(b)])):f=g,f}}function S(a,b,c){if(M(a)){var d,e,f=a.nodeType,g=f?n.cache:a,h=f?a[n.expando]:n.expando;if(g[h]){if(b&&(d=c?g[h]:g[h].data)){n.isArray(b)?b=b.concat(n.map(b,n.camelCase)):b in d?b=[b]:(b=n.camelCase(b),b=b in d?[b]:b.split(" ")),e=b.length;while(e--)delete d[b[e]];if(c?!Q(d):!n.isEmptyObject(d))return}(c||(delete g[h].data,Q(g[h])))&&(f?n.cleanData([a],!0):l.deleteExpando||g!=g.window?delete g[h]:g[h]=void 0)}}}n.extend({cache:{},noData:{"applet ":!0,"embed ":!0,"object ":"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"},hasData:function(a){return a=a.nodeType?n.cache[a[n.expando]]:a[n.expando],!!a&&!Q(a)},data:function(a,b,c){return R(a,b,c)},removeData:function(a,b){return S(a,b)},_data:function(a,b,c){return R(a,b,c,!0)},_removeData:function(a,b){return S(a,b,!0)}}),n.fn.extend({data:function(a,b){var c,d,e,f=this[0],g=f&&f.attributes;if(void 0===a){if(this.length&&(e=n.data(f),1===f.nodeType&&!n._data(f,"parsedAttrs"))){c=g.length;while(c--)g[c]&&(d=g[c].name,0===d.indexOf("data-")&&(d=n.camelCase(d.slice(5)),P(f,d,e[d])));n._data(f,"parsedAttrs",!0)}return e}return"object"==typeof a?this.each(function(){n.data(this,a)}):arguments.length>1?this.each(function(){n.data(this,a,b)}):f?P(f,a,n.data(f,a)):void 0},removeData:function(a){return this.each(function(){n.removeData(this,a)})}}),n.extend({queue:function(a,b,c){var d;return a?(b=(b||"fx")+"queue",d=n._data(a,b),c&&(!d||n.isArray(c)?d=n._data(a,b,n.makeArray(c)):d.push(c)),d||[]):void 0},dequeue:function(a,b){b=b||"fx";var c=n.queue(a,b),d=c.length,e=c.shift(),f=n._queueHooks(a,b),g=function(){n.dequeue(a,b)};"inprogress"===e&&(e=c.shift(),d--),e&&("fx"===b&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return n._data(a,c)||n._data(a,c,{empty:n.Callbacks("once memory").add(function(){n._removeData(a,b+"queue"),n._removeData(a,c)})})}}),n.fn.extend({queue:function(a,b){var c=2;return"string"!=typeof a&&(b=a,a="fx",c--),arguments.length<c?n.queue(this[0],a):void 0===b?this:this.each(function(){var c=n.queue(this,a,b);n._queueHooks(this,a),"fx"===a&&"inprogress"!==c[0]&&n.dequeue(this,a)})},dequeue:function(a){return this.each(function(){n.dequeue(this,a)})},clearQueue:function(a){return this.queue(a||"fx",[])},promise:function(a,b){var c,d=1,e=n.Deferred(),f=this,g=this.length,h=function(){--d||e.resolveWith(f,[f])};"string"!=typeof a&&(b=a,a=void 0),a=a||"fx";while(g--)c=n._data(f[g],a+"queueHooks"),c&&c.empty&&(d++,c.empty.add(h));return h(),e.promise(b)}}),function(){var a;l.shrinkWrapBlocks=function(){if(null!=a)return a;a=!1;var b,c,e;return c=d.getElementsByTagName("body")[0],c&&c.style?(b=d.createElement("div"),e=d.createElement("div"),e.style.cssText="position:absolute;border:0;width:0;height:0;top:0;left:-9999px",c.appendChild(e).appendChild(b),"undefined"!=typeof b.style.zoom&&(b.style.cssText="-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;display:block;margin:0;border:0;padding:1px;width:1px;zoom:1",b.appendChild(d.createElement("div")).style.width="5px",a=3!==b.offsetWidth),c.removeChild(e),a):void 0}}();var T=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,U=new RegExp("^(?:([+-])=|)("+T+")([a-z%]*)$","i"),V=["Top","Right","Bottom","Left"],W=function(a,b){return a=b||a,"none"===n.css(a,"display")||!n.contains(a.ownerDocument,a)};function X(a,b,c,d){var e,f=1,g=20,h=d?function(){return d.cur()}:function(){return n.css(a,b,"")},i=h(),j=c&&c[3]||(n.cssNumber[b]?"":"px"),k=(n.cssNumber[b]||"px"!==j&&+i)&&U.exec(n.css(a,b));if(k&&k[3]!==j){j=j||k[3],c=c||[],k=+i||1;do f=f||".5",k/=f,n.style(a,b,k+j);while(f!==(f=h()/i)&&1!==f&&--g)}return c&&(k=+k||+i||0,e=c[1]?k+(c[1]+1)*c[2]:+c[2],d&&(d.unit=j,d.start=k,d.end=e)),e}var Y=function(a,b,c,d,e,f,g){var h=0,i=a.length,j=null==c;if("object"===n.type(c)){e=!0;for(h in c)Y(a,b,h,c[h],!0,f,g)}else if(void 0!==d&&(e=!0,n.isFunction(d)||(g=!0),j&&(g?(b.call(a,d),b=null):(j=b,b=function(a,b,c){return j.call(n(a),c)})),b))for(;i>h;h++)b(a[h],c,g?d:d.call(a[h],h,b(a[h],c)));return e?a:j?b.call(a):i?b(a[0],c):f},Z=/^(?:checkbox|radio)$/i,$=/<([\w:-]+)/,_=/^$|\/(?:java|ecma)script/i,aa=/^\s+/,ba="abbr|article|aside|audio|bdi|canvas|data|datalist|details|dialog|figcaption|figure|footer|header|hgroup|main|mark|meter|nav|output|picture|progress|section|summary|template|time|video";function ca(a){var b=ba.split("|"),c=a.createDocumentFragment();if(c.createElement)while(b.length)c.createElement(b.pop());return c}!function(){var a=d.createElement("div"),b=d.createDocumentFragment(),c=d.createElement("input");a.innerHTML="  <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",l.leadingWhitespace=3===a.firstChild.nodeType,l.tbody=!a.getElementsByTagName("tbody").length,l.htmlSerialize=!!a.getElementsByTagName("link").length,l.html5Clone="<:nav></:nav>"!==d.createElement("nav").cloneNode(!0).outerHTML,c.type="checkbox",c.checked=!0,b.appendChild(c),l.appendChecked=c.checked,a.innerHTML="<textarea>x</textarea>",l.noCloneChecked=!!a.cloneNode(!0).lastChild.defaultValue,b.appendChild(a),c=d.createElement("input"),c.setAttribute("type","radio"),c.setAttribute("checked","checked"),c.setAttribute("name","t"),a.appendChild(c),l.checkClone=a.cloneNode(!0).cloneNode(!0).lastChild.checked,l.noCloneEvent=!!a.addEventListener,a[n.expando]=1,l.attributes=!a.getAttribute(n.expando)}();var da={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],area:[1,"<map>","</map>"],param:[1,"<object>","</object>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:l.htmlSerialize?[0,"",""]:[1,"X<div>","</div>"]};da.optgroup=da.option,da.tbody=da.tfoot=da.colgroup=da.caption=da.thead,da.th=da.td;function ea(a,b){var c,d,e=0,f="undefined"!=typeof a.getElementsByTagName?a.getElementsByTagName(b||"*"):"undefined"!=typeof a.querySelectorAll?a.querySelectorAll(b||"*"):void 0;if(!f)for(f=[],c=a.childNodes||a;null!=(d=c[e]);e++)!b||n.nodeName(d,b)?f.push(d):n.merge(f,ea(d,b));return void 0===b||b&&n.nodeName(a,b)?n.merge([a],f):f}function fa(a,b){for(var c,d=0;null!=(c=a[d]);d++)n._data(c,"globalEval",!b||n._data(b[d],"globalEval"))}var ga=/<|&#?\w+;/,ha=/<tbody/i;function ia(a){Z.test(a.type)&&(a.defaultChecked=a.checked)}function ja(a,b,c,d,e){for(var f,g,h,i,j,k,m,o=a.length,p=ca(b),q=[],r=0;o>r;r++)if(g=a[r],g||0===g)if("object"===n.type(g))n.merge(q,g.nodeType?[g]:g);else if(ga.test(g)){i=i||p.appendChild(b.createElement("div")),j=($.exec(g)||["",""])[1].toLowerCase(),m=da[j]||da._default,i.innerHTML=m[1]+n.htmlPrefilter(g)+m[2],f=m[0];while(f--)i=i.lastChild;if(!l.leadingWhitespace&&aa.test(g)&&q.push(b.createTextNode(aa.exec(g)[0])),!l.tbody){g="table"!==j||ha.test(g)?"<table>"!==m[1]||ha.test(g)?0:i:i.firstChild,f=g&&g.childNodes.length;while(f--)n.nodeName(k=g.childNodes[f],"tbody")&&!k.childNodes.length&&g.removeChild(k)}n.merge(q,i.childNodes),i.textContent="";while(i.firstChild)i.removeChild(i.firstChild);i=p.lastChild}else q.push(b.createTextNode(g));i&&p.removeChild(i),l.appendChecked||n.grep(ea(q,"input"),ia),r=0;while(g=q[r++])if(d&&n.inArray(g,d)>-1)e&&e.push(g);else if(h=n.contains(g.ownerDocument,g),i=ea(p.appendChild(g),"script"),h&&fa(i),c){f=0;while(g=i[f++])_.test(g.type||"")&&c.push(g)}return i=null,p}!function(){var b,c,e=d.createElement("div");for(b in{submit:!0,change:!0,focusin:!0})c="on"+b,(l[b]=c in a)||(e.setAttribute(c,"t"),l[b]=e.attributes[c].expando===!1);e=null}();var ka=/^(?:input|select|textarea)$/i,la=/^key/,ma=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,na=/^(?:focusinfocus|focusoutblur)$/,oa=/^([^.]*)(?:\.(.+)|)/;function pa(){return!0}function qa(){return!1}function ra(){try{return d.activeElement}catch(a){}}function sa(a,b,c,d,e,f){var g,h;if("object"==typeof b){"string"!=typeof c&&(d=d||c,c=void 0);for(h in b)sa(a,h,c,d,b[h],f);return a}if(null==d&&null==e?(e=c,d=c=void 0):null==e&&("string"==typeof c?(e=d,d=void 0):(e=d,d=c,c=void 0)),e===!1)e=qa;else if(!e)return a;return 1===f&&(g=e,e=function(a){return n().off(a),g.apply(this,arguments)},e.guid=g.guid||(g.guid=n.guid++)),a.each(function(){n.event.add(this,b,e,d,c)})}n.event={global:{},add:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,o,p,q,r=n._data(a);if(r){c.handler&&(i=c,c=i.handler,e=i.selector),c.guid||(c.guid=n.guid++),(g=r.events)||(g=r.events={}),(k=r.handle)||(k=r.handle=function(a){return"undefined"==typeof n||a&&n.event.triggered===a.type?void 0:n.event.dispatch.apply(k.elem,arguments)},k.elem=a),b=(b||"").match(G)||[""],h=b.length;while(h--)f=oa.exec(b[h])||[],o=q=f[1],p=(f[2]||"").split(".").sort(),o&&(j=n.event.special[o]||{},o=(e?j.delegateType:j.bindType)||o,j=n.event.special[o]||{},l=n.extend({type:o,origType:q,data:d,handler:c,guid:c.guid,selector:e,needsContext:e&&n.expr.match.needsContext.test(e),namespace:p.join(".")},i),(m=g[o])||(m=g[o]=[],m.delegateCount=0,j.setup&&j.setup.call(a,d,p,k)!==!1||(a.addEventListener?a.addEventListener(o,k,!1):a.attachEvent&&a.attachEvent("on"+o,k))),j.add&&(j.add.call(a,l),l.handler.guid||(l.handler.guid=c.guid)),e?m.splice(m.delegateCount++,0,l):m.push(l),n.event.global[o]=!0);a=null}},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,o,p,q,r=n.hasData(a)&&n._data(a);if(r&&(k=r.events)){b=(b||"").match(G)||[""],j=b.length;while(j--)if(h=oa.exec(b[j])||[],o=q=h[1],p=(h[2]||"").split(".").sort(),o){l=n.event.special[o]||{},o=(d?l.delegateType:l.bindType)||o,m=k[o]||[],h=h[2]&&new RegExp("(^|\\.)"+p.join("\\.(?:.*\\.|)")+"(\\.|$)"),i=f=m.length;while(f--)g=m[f],!e&&q!==g.origType||c&&c.guid!==g.guid||h&&!h.test(g.namespace)||d&&d!==g.selector&&("**"!==d||!g.selector)||(m.splice(f,1),g.selector&&m.delegateCount--,l.remove&&l.remove.call(a,g));i&&!m.length&&(l.teardown&&l.teardown.call(a,p,r.handle)!==!1||n.removeEvent(a,o,r.handle),delete k[o])}else for(o in k)n.event.remove(a,o+b[j],c,d,!0);n.isEmptyObject(k)&&(delete r.handle,n._removeData(a,"events"))}},trigger:function(b,c,e,f){var g,h,i,j,l,m,o,p=[e||d],q=k.call(b,"type")?b.type:b,r=k.call(b,"namespace")?b.namespace.split("."):[];if(i=m=e=e||d,3!==e.nodeType&&8!==e.nodeType&&!na.test(q+n.event.triggered)&&(q.indexOf(".")>-1&&(r=q.split("."),q=r.shift(),r.sort()),h=q.indexOf(":")<0&&"on"+q,b=b[n.expando]?b:new n.Event(q,"object"==typeof b&&b),b.isTrigger=f?2:3,b.namespace=r.join("."),b.rnamespace=b.namespace?new RegExp("(^|\\.)"+r.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,b.result=void 0,b.target||(b.target=e),c=null==c?[b]:n.makeArray(c,[b]),l=n.event.special[q]||{},f||!l.trigger||l.trigger.apply(e,c)!==!1)){if(!f&&!l.noBubble&&!n.isWindow(e)){for(j=l.delegateType||q,na.test(j+q)||(i=i.parentNode);i;i=i.parentNode)p.push(i),m=i;m===(e.ownerDocument||d)&&p.push(m.defaultView||m.parentWindow||a)}o=0;while((i=p[o++])&&!b.isPropagationStopped())b.type=o>1?j:l.bindType||q,g=(n._data(i,"events")||{})[b.type]&&n._data(i,"handle"),g&&g.apply(i,c),g=h&&i[h],g&&g.apply&&M(i)&&(b.result=g.apply(i,c),b.result===!1&&b.preventDefault());if(b.type=q,!f&&!b.isDefaultPrevented()&&(!l._default||l._default.apply(p.pop(),c)===!1)&&M(e)&&h&&e[q]&&!n.isWindow(e)){m=e[h],m&&(e[h]=null),n.event.triggered=q;try{e[q]()}catch(s){}n.event.triggered=void 0,m&&(e[h]=m)}return b.result}},dispatch:function(a){a=n.event.fix(a);var b,c,d,f,g,h=[],i=e.call(arguments),j=(n._data(this,"events")||{})[a.type]||[],k=n.event.special[a.type]||{};if(i[0]=a,a.delegateTarget=this,!k.preDispatch||k.preDispatch.call(this,a)!==!1){h=n.event.handlers.call(this,a,j),b=0;while((f=h[b++])&&!a.isPropagationStopped()){a.currentTarget=f.elem,c=0;while((g=f.handlers[c++])&&!a.isImmediatePropagationStopped())a.rnamespace&&!a.rnamespace.test(g.namespace)||(a.handleObj=g,a.data=g.data,d=((n.event.special[g.origType]||{}).handle||g.handler).apply(f.elem,i),void 0!==d&&(a.result=d)===!1&&(a.preventDefault(),a.stopPropagation()))}return k.postDispatch&&k.postDispatch.call(this,a),a.result}},handlers:function(a,b){var c,d,e,f,g=[],h=b.delegateCount,i=a.target;if(h&&i.nodeType&&("click"!==a.type||isNaN(a.button)||a.button<1))for(;i!=this;i=i.parentNode||this)if(1===i.nodeType&&(i.disabled!==!0||"click"!==a.type)){for(d=[],c=0;h>c;c++)f=b[c],e=f.selector+" ",void 0===d[e]&&(d[e]=f.needsContext?n(e,this).index(i)>-1:n.find(e,this,null,[i]).length),d[e]&&d.push(f);d.length&&g.push({elem:i,handlers:d})}return h<b.length&&g.push({elem:this,handlers:b.slice(h)}),g},fix:function(a){if(a[n.expando])return a;var b,c,e,f=a.type,g=a,h=this.fixHooks[f];h||(this.fixHooks[f]=h=ma.test(f)?this.mouseHooks:la.test(f)?this.keyHooks:{}),e=h.props?this.props.concat(h.props):this.props,a=new n.Event(g),b=e.length;while(b--)c=e[b],a[c]=g[c];return a.target||(a.target=g.srcElement||d),3===a.target.nodeType&&(a.target=a.target.parentNode),a.metaKey=!!a.metaKey,h.filter?h.filter(a,g):a},props:"altKey bubbles cancelable ctrlKey currentTarget detail eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(a,b){return null==a.which&&(a.which=null!=b.charCode?b.charCode:b.keyCode),a}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(a,b){var c,e,f,g=b.button,h=b.fromElement;return null==a.pageX&&null!=b.clientX&&(e=a.target.ownerDocument||d,f=e.documentElement,c=e.body,a.pageX=b.clientX+(f&&f.scrollLeft||c&&c.scrollLeft||0)-(f&&f.clientLeft||c&&c.clientLeft||0),a.pageY=b.clientY+(f&&f.scrollTop||c&&c.scrollTop||0)-(f&&f.clientTop||c&&c.clientTop||0)),!a.relatedTarget&&h&&(a.relatedTarget=h===a.target?b.toElement:h),a.which||void 0===g||(a.which=1&g?1:2&g?3:4&g?2:0),a}},special:{load:{noBubble:!0},focus:{trigger:function(){if(this!==ra()&&this.focus)try{return this.focus(),!1}catch(a){}},delegateType:"focusin"},blur:{trigger:function(){return this===ra()&&this.blur?(this.blur(),!1):void 0},delegateType:"focusout"},click:{trigger:function(){return n.nodeName(this,"input")&&"checkbox"===this.type&&this.click?(this.click(),!1):void 0},_default:function(a){return n.nodeName(a.target,"a")}},beforeunload:{postDispatch:function(a){void 0!==a.result&&a.originalEvent&&(a.originalEvent.returnValue=a.result)}}},simulate:function(a,b,c){var d=n.extend(new n.Event,c,{type:a,isSimulated:!0});n.event.trigger(d,null,b),d.isDefaultPrevented()&&c.preventDefault()}},n.removeEvent=d.removeEventListener?function(a,b,c){a.removeEventListener&&a.removeEventListener(b,c)}:function(a,b,c){var d="on"+b;a.detachEvent&&("undefined"==typeof a[d]&&(a[d]=null),a.detachEvent(d,c))},n.Event=function(a,b){return this instanceof n.Event?(a&&a.type?(this.originalEvent=a,this.type=a.type,this.isDefaultPrevented=a.defaultPrevented||void 0===a.defaultPrevented&&a.returnValue===!1?pa:qa):this.type=a,b&&n.extend(this,b),this.timeStamp=a&&a.timeStamp||n.now(),void(this[n.expando]=!0)):new n.Event(a,b)},n.Event.prototype={constructor:n.Event,isDefaultPrevented:qa,isPropagationStopped:qa,isImmediatePropagationStopped:qa,preventDefault:function(){var a=this.originalEvent;this.isDefaultPrevented=pa,a&&(a.preventDefault?a.preventDefault():a.returnValue=!1)},stopPropagation:function(){var a=this.originalEvent;this.isPropagationStopped=pa,a&&!this.isSimulated&&(a.stopPropagation&&a.stopPropagation(),a.cancelBubble=!0)},stopImmediatePropagation:function(){var a=this.originalEvent;this.isImmediatePropagationStopped=pa,a&&a.stopImmediatePropagation&&a.stopImmediatePropagation(),this.stopPropagation()}},n.each({mouseenter:"mouseover",mouseleave:"mouseout",pointerenter:"pointerover",pointerleave:"pointerout"},function(a,b){n.event.special[a]={delegateType:b,bindType:b,handle:function(a){var c,d=this,e=a.relatedTarget,f=a.handleObj;return e&&(e===d||n.contains(d,e))||(a.type=f.origType,c=f.handler.apply(this,arguments),a.type=b),c}}}),l.submit||(n.event.special.submit={setup:function(){return n.nodeName(this,"form")?!1:void n.event.add(this,"click._submit keypress._submit",function(a){var b=a.target,c=n.nodeName(b,"input")||n.nodeName(b,"button")?n.prop(b,"form"):void 0;c&&!n._data(c,"submit")&&(n.event.add(c,"submit._submit",function(a){a._submitBubble=!0}),n._data(c,"submit",!0))})},postDispatch:function(a){a._submitBubble&&(delete a._submitBubble,this.parentNode&&!a.isTrigger&&n.event.simulate("submit",this.parentNode,a))},teardown:function(){return n.nodeName(this,"form")?!1:void n.event.remove(this,"._submit")}}),l.change||(n.event.special.change={setup:function(){return ka.test(this.nodeName)?("checkbox"!==this.type&&"radio"!==this.type||(n.event.add(this,"propertychange._change",function(a){"checked"===a.originalEvent.propertyName&&(this._justChanged=!0)}),n.event.add(this,"click._change",function(a){this._justChanged&&!a.isTrigger&&(this._justChanged=!1),n.event.simulate("change",this,a)})),!1):void n.event.add(this,"beforeactivate._change",function(a){var b=a.target;ka.test(b.nodeName)&&!n._data(b,"change")&&(n.event.add(b,"change._change",function(a){!this.parentNode||a.isSimulated||a.isTrigger||n.event.simulate("change",this.parentNode,a)}),n._data(b,"change",!0))})},handle:function(a){var b=a.target;return this!==b||a.isSimulated||a.isTrigger||"radio"!==b.type&&"checkbox"!==b.type?a.handleObj.handler.apply(this,arguments):void 0},teardown:function(){return n.event.remove(this,"._change"),!ka.test(this.nodeName)}}),l.focusin||n.each({focus:"focusin",blur:"focusout"},function(a,b){var c=function(a){n.event.simulate(b,a.target,n.event.fix(a))};n.event.special[b]={setup:function(){var d=this.ownerDocument||this,e=n._data(d,b);e||d.addEventListener(a,c,!0),n._data(d,b,(e||0)+1)},teardown:function(){var d=this.ownerDocument||this,e=n._data(d,b)-1;e?n._data(d,b,e):(d.removeEventListener(a,c,!0),n._removeData(d,b))}}}),n.fn.extend({on:function(a,b,c,d){return sa(this,a,b,c,d)},one:function(a,b,c,d){return sa(this,a,b,c,d,1)},off:function(a,b,c){var d,e;if(a&&a.preventDefault&&a.handleObj)return d=a.handleObj,n(a.delegateTarget).off(d.namespace?d.origType+"."+d.namespace:d.origType,d.selector,d.handler),this;if("object"==typeof a){for(e in a)this.off(e,b,a[e]);return this}return b!==!1&&"function"!=typeof b||(c=b,b=void 0),c===!1&&(c=qa),this.each(function(){n.event.remove(this,a,c,b)})},trigger:function(a,b){return this.each(function(){n.event.trigger(a,b,this)})},triggerHandler:function(a,b){var c=this[0];return c?n.event.trigger(a,b,c,!0):void 0}});var ta=/ jQuery\d+="(?:null|\d+)"/g,ua=new RegExp("<(?:"+ba+")[\\s/>]","i"),va=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:-]+)[^>]*)\/>/gi,wa=/<script|<style|<link/i,xa=/checked\s*(?:[^=]|=\s*.checked.)/i,ya=/^true\/(.*)/,za=/^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g,Aa=ca(d),Ba=Aa.appendChild(d.createElement("div"));function Ca(a,b){return n.nodeName(a,"table")&&n.nodeName(11!==b.nodeType?b:b.firstChild,"tr")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function Da(a){return a.type=(null!==n.find.attr(a,"type"))+"/"+a.type,a}function Ea(a){var b=ya.exec(a.type);return b?a.type=b[1]:a.removeAttribute("type"),a}function Fa(a,b){if(1===b.nodeType&&n.hasData(a)){var c,d,e,f=n._data(a),g=n._data(b,f),h=f.events;if(h){delete g.handle,g.events={};for(c in h)for(d=0,e=h[c].length;e>d;d++)n.event.add(b,c,h[c][d])}g.data&&(g.data=n.extend({},g.data))}}function Ga(a,b){var c,d,e;if(1===b.nodeType){if(c=b.nodeName.toLowerCase(),!l.noCloneEvent&&b[n.expando]){e=n._data(b);for(d in e.events)n.removeEvent(b,d,e.handle);b.removeAttribute(n.expando)}"script"===c&&b.text!==a.text?(Da(b).text=a.text,Ea(b)):"object"===c?(b.parentNode&&(b.outerHTML=a.outerHTML),l.html5Clone&&a.innerHTML&&!n.trim(b.innerHTML)&&(b.innerHTML=a.innerHTML)):"input"===c&&Z.test(a.type)?(b.defaultChecked=b.checked=a.checked,b.value!==a.value&&(b.value=a.value)):"option"===c?b.defaultSelected=b.selected=a.defaultSelected:"input"!==c&&"textarea"!==c||(b.defaultValue=a.defaultValue)}}function Ha(a,b,c,d){b=f.apply([],b);var e,g,h,i,j,k,m=0,o=a.length,p=o-1,q=b[0],r=n.isFunction(q);if(r||o>1&&"string"==typeof q&&!l.checkClone&&xa.test(q))return a.each(function(e){var f=a.eq(e);r&&(b[0]=q.call(this,e,f.html())),Ha(f,b,c,d)});if(o&&(k=ja(b,a[0].ownerDocument,!1,a,d),e=k.firstChild,1===k.childNodes.length&&(k=e),e||d)){for(i=n.map(ea(k,"script"),Da),h=i.length;o>m;m++)g=k,m!==p&&(g=n.clone(g,!0,!0),h&&n.merge(i,ea(g,"script"))),c.call(a[m],g,m);if(h)for(j=i[i.length-1].ownerDocument,n.map(i,Ea),m=0;h>m;m++)g=i[m],_.test(g.type||"")&&!n._data(g,"globalEval")&&n.contains(j,g)&&(g.src?n._evalUrl&&n._evalUrl(g.src):n.globalEval((g.text||g.textContent||g.innerHTML||"").replace(za,"")));k=e=null}return a}function Ia(a,b,c){for(var d,e=b?n.filter(b,a):a,f=0;null!=(d=e[f]);f++)c||1!==d.nodeType||n.cleanData(ea(d)),d.parentNode&&(c&&n.contains(d.ownerDocument,d)&&fa(ea(d,"script")),d.parentNode.removeChild(d));return a}n.extend({htmlPrefilter:function(a){return a.replace(va,"<$1></$2>")},clone:function(a,b,c){var d,e,f,g,h,i=n.contains(a.ownerDocument,a);if(l.html5Clone||n.isXMLDoc(a)||!ua.test("<"+a.nodeName+">")?f=a.cloneNode(!0):(Ba.innerHTML=a.outerHTML,Ba.removeChild(f=Ba.firstChild)),!(l.noCloneEvent&&l.noCloneChecked||1!==a.nodeType&&11!==a.nodeType||n.isXMLDoc(a)))for(d=ea(f),h=ea(a),g=0;null!=(e=h[g]);++g)d[g]&&Ga(e,d[g]);if(b)if(c)for(h=h||ea(a),d=d||ea(f),g=0;null!=(e=h[g]);g++)Fa(e,d[g]);else Fa(a,f);return d=ea(f,"script"),d.length>0&&fa(d,!i&&ea(a,"script")),d=h=e=null,f},cleanData:function(a,b){for(var d,e,f,g,h=0,i=n.expando,j=n.cache,k=l.attributes,m=n.event.special;null!=(d=a[h]);h++)if((b||M(d))&&(f=d[i],g=f&&j[f])){if(g.events)for(e in g.events)m[e]?n.event.remove(d,e):n.removeEvent(d,e,g.handle);j[f]&&(delete j[f],k||"undefined"==typeof d.removeAttribute?d[i]=void 0:d.removeAttribute(i),c.push(f))}}}),n.fn.extend({domManip:Ha,detach:function(a){return Ia(this,a,!0)},remove:function(a){return Ia(this,a)},text:function(a){return Y(this,function(a){return void 0===a?n.text(this):this.empty().append((this[0]&&this[0].ownerDocument||d).createTextNode(a))},null,a,arguments.length)},append:function(){return Ha(this,arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=Ca(this,a);b.appendChild(a)}})},prepend:function(){return Ha(this,arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=Ca(this,a);b.insertBefore(a,b.firstChild)}})},before:function(){return Ha(this,arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this)})},after:function(){return Ha(this,arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this.nextSibling)})},empty:function(){for(var a,b=0;null!=(a=this[b]);b++){1===a.nodeType&&n.cleanData(ea(a,!1));while(a.firstChild)a.removeChild(a.firstChild);a.options&&n.nodeName(a,"select")&&(a.options.length=0)}return this},clone:function(a,b){return a=null==a?!1:a,b=null==b?a:b,this.map(function(){return n.clone(this,a,b)})},html:function(a){return Y(this,function(a){var b=this[0]||{},c=0,d=this.length;if(void 0===a)return 1===b.nodeType?b.innerHTML.replace(ta,""):void 0;if("string"==typeof a&&!wa.test(a)&&(l.htmlSerialize||!ua.test(a))&&(l.leadingWhitespace||!aa.test(a))&&!da[($.exec(a)||["",""])[1].toLowerCase()]){a=n.htmlPrefilter(a);try{for(;d>c;c++)b=this[c]||{},1===b.nodeType&&(n.cleanData(ea(b,!1)),b.innerHTML=a);b=0}catch(e){}}b&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(){var a=[];return Ha(this,arguments,function(b){var c=this.parentNode;n.inArray(this,a)<0&&(n.cleanData(ea(this)),c&&c.replaceChild(b,this))},a)}}),n.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){n.fn[a]=function(a){for(var c,d=0,e=[],f=n(a),h=f.length-1;h>=d;d++)c=d===h?this:this.clone(!0),n(f[d])[b](c),g.apply(e,c.get());return this.pushStack(e)}});var Ja,Ka={HTML:"block",BODY:"block"};function La(a,b){var c=n(b.createElement(a)).appendTo(b.body),d=n.css(c[0],"display");return c.detach(),d}function Ma(a){var b=d,c=Ka[a];return c||(c=La(a,b),"none"!==c&&c||(Ja=(Ja||n("<iframe frameborder='0' width='0' height='0'/>")).appendTo(b.documentElement),b=(Ja[0].contentWindow||Ja[0].contentDocument).document,b.write(),b.close(),c=La(a,b),Ja.detach()),Ka[a]=c),c}var Na=/^margin/,Oa=new RegExp("^("+T+")(?!px)[a-z%]+$","i"),Pa=function(a,b,c,d){var e,f,g={};for(f in b)g[f]=a.style[f],a.style[f]=b[f];e=c.apply(a,d||[]);for(f in b)a.style[f]=g[f];return e},Qa=d.documentElement;!function(){var b,c,e,f,g,h,i=d.createElement("div"),j=d.createElement("div");if(j.style){j.style.cssText="float:left;opacity:.5",l.opacity="0.5"===j.style.opacity,l.cssFloat=!!j.style.cssFloat,j.style.backgroundClip="content-box",j.cloneNode(!0).style.backgroundClip="",l.clearCloneStyle="content-box"===j.style.backgroundClip,i=d.createElement("div"),i.style.cssText="border:0;width:8px;height:0;top:0;left:-9999px;padding:0;margin-top:1px;position:absolute",j.innerHTML="",i.appendChild(j),l.boxSizing=""===j.style.boxSizing||""===j.style.MozBoxSizing||""===j.style.WebkitBoxSizing,n.extend(l,{reliableHiddenOffsets:function(){return null==b&&k(),f},boxSizingReliable:function(){return null==b&&k(),e},pixelMarginRight:function(){return null==b&&k(),c},pixelPosition:function(){return null==b&&k(),b},reliableMarginRight:function(){return null==b&&k(),g},reliableMarginLeft:function(){return null==b&&k(),h}});function k(){var k,l,m=d.documentElement;m.appendChild(i),j.style.cssText="-webkit-box-sizing:border-box;box-sizing:border-box;position:relative;display:block;margin:auto;border:1px;padding:1px;top:1%;width:50%",b=e=h=!1,c=g=!0,a.getComputedStyle&&(l=a.getComputedStyle(j),b="1%"!==(l||{}).top,h="2px"===(l||{}).marginLeft,e="4px"===(l||{width:"4px"}).width,j.style.marginRight="50%",c="4px"===(l||{marginRight:"4px"}).marginRight,k=j.appendChild(d.createElement("div")),k.style.cssText=j.style.cssText="-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;display:block;margin:0;border:0;padding:0",k.style.marginRight=k.style.width="0",j.style.width="1px",g=!parseFloat((a.getComputedStyle(k)||{}).marginRight),j.removeChild(k)),j.style.display="none",f=0===j.getClientRects().length,f&&(j.style.display="",j.innerHTML="<table><tr><td></td><td>t</td></tr></table>",j.childNodes[0].style.borderCollapse="separate",k=j.getElementsByTagName("td"),k[0].style.cssText="margin:0;border:0;padding:0;display:none",f=0===k[0].offsetHeight,f&&(k[0].style.display="",k[1].style.display="none",f=0===k[0].offsetHeight)),m.removeChild(i)}}}();var Ra,Sa,Ta=/^(top|right|bottom|left)$/;a.getComputedStyle?(Ra=function(b){var c=b.ownerDocument.defaultView;return c&&c.opener||(c=a),c.getComputedStyle(b)},Sa=function(a,b,c){var d,e,f,g,h=a.style;return c=c||Ra(a),g=c?c.getPropertyValue(b)||c[b]:void 0,""!==g&&void 0!==g||n.contains(a.ownerDocument,a)||(g=n.style(a,b)),c&&!l.pixelMarginRight()&&Oa.test(g)&&Na.test(b)&&(d=h.width,e=h.minWidth,f=h.maxWidth,h.minWidth=h.maxWidth=h.width=g,g=c.width,h.width=d,h.minWidth=e,h.maxWidth=f),void 0===g?g:g+""}):Qa.currentStyle&&(Ra=function(a){return a.currentStyle},Sa=function(a,b,c){var d,e,f,g,h=a.style;return c=c||Ra(a),g=c?c[b]:void 0,null==g&&h&&h[b]&&(g=h[b]),Oa.test(g)&&!Ta.test(b)&&(d=h.left,e=a.runtimeStyle,f=e&&e.left,f&&(e.left=a.currentStyle.left),h.left="fontSize"===b?"1em":g,g=h.pixelLeft+"px",h.left=d,f&&(e.left=f)),void 0===g?g:g+""||"auto"});function Ua(a,b){return{get:function(){return a()?void delete this.get:(this.get=b).apply(this,arguments)}}}var Va=/alpha\([^)]*\)/i,Wa=/opacity\s*=\s*([^)]*)/i,Xa=/^(none|table(?!-c[ea]).+)/,Ya=new RegExp("^("+T+")(.*)$","i"),Za={position:"absolute",visibility:"hidden",display:"block"},$a={letterSpacing:"0",fontWeight:"400"},_a=["Webkit","O","Moz","ms"],ab=d.createElement("div").style;function bb(a){if(a in ab)return a;var b=a.charAt(0).toUpperCase()+a.slice(1),c=_a.length;while(c--)if(a=_a[c]+b,a in ab)return a}function cb(a,b){for(var c,d,e,f=[],g=0,h=a.length;h>g;g++)d=a[g],d.style&&(f[g]=n._data(d,"olddisplay"),c=d.style.display,b?(f[g]||"none"!==c||(d.style.display=""),""===d.style.display&&W(d)&&(f[g]=n._data(d,"olddisplay",Ma(d.nodeName)))):(e=W(d),(c&&"none"!==c||!e)&&n._data(d,"olddisplay",e?c:n.css(d,"display"))));for(g=0;h>g;g++)d=a[g],d.style&&(b&&"none"!==d.style.display&&""!==d.style.display||(d.style.display=b?f[g]||"":"none"));return a}function db(a,b,c){var d=Ya.exec(b);return d?Math.max(0,d[1]-(c||0))+(d[2]||"px"):b}function eb(a,b,c,d,e){for(var f=c===(d?"border":"content")?4:"width"===b?1:0,g=0;4>f;f+=2)"margin"===c&&(g+=n.css(a,c+V[f],!0,e)),d?("content"===c&&(g-=n.css(a,"padding"+V[f],!0,e)),"margin"!==c&&(g-=n.css(a,"border"+V[f]+"Width",!0,e))):(g+=n.css(a,"padding"+V[f],!0,e),"padding"!==c&&(g+=n.css(a,"border"+V[f]+"Width",!0,e)));return g}function fb(a,b,c){var d=!0,e="width"===b?a.offsetWidth:a.offsetHeight,f=Ra(a),g=l.boxSizing&&"border-box"===n.css(a,"boxSizing",!1,f);if(0>=e||null==e){if(e=Sa(a,b,f),(0>e||null==e)&&(e=a.style[b]),Oa.test(e))return e;d=g&&(l.boxSizingReliable()||e===a.style[b]),e=parseFloat(e)||0}return e+eb(a,b,c||(g?"border":"content"),d,f)+"px"}n.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=Sa(a,"opacity");return""===c?"1":c}}}},cssNumber:{animationIterationCount:!0,columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":l.cssFloat?"cssFloat":"styleFloat"},style:function(a,b,c,d){if(a&&3!==a.nodeType&&8!==a.nodeType&&a.style){var e,f,g,h=n.camelCase(b),i=a.style;if(b=n.cssProps[h]||(n.cssProps[h]=bb(h)||h),g=n.cssHooks[b]||n.cssHooks[h],void 0===c)return g&&"get"in g&&void 0!==(e=g.get(a,!1,d))?e:i[b];if(f=typeof c,"string"===f&&(e=U.exec(c))&&e[1]&&(c=X(a,b,e),f="number"),null!=c&&c===c&&("number"===f&&(c+=e&&e[3]||(n.cssNumber[h]?"":"px")),l.clearCloneStyle||""!==c||0!==b.indexOf("background")||(i[b]="inherit"),!(g&&"set"in g&&void 0===(c=g.set(a,c,d)))))try{i[b]=c}catch(j){}}},css:function(a,b,c,d){var e,f,g,h=n.camelCase(b);return b=n.cssProps[h]||(n.cssProps[h]=bb(h)||h),g=n.cssHooks[b]||n.cssHooks[h],g&&"get"in g&&(f=g.get(a,!0,c)),void 0===f&&(f=Sa(a,b,d)),"normal"===f&&b in $a&&(f=$a[b]),""===c||c?(e=parseFloat(f),c===!0||isFinite(e)?e||0:f):f}}),n.each(["height","width"],function(a,b){n.cssHooks[b]={get:function(a,c,d){return c?Xa.test(n.css(a,"display"))&&0===a.offsetWidth?Pa(a,Za,function(){return fb(a,b,d)}):fb(a,b,d):void 0},set:function(a,c,d){var e=d&&Ra(a);return db(a,c,d?eb(a,b,d,l.boxSizing&&"border-box"===n.css(a,"boxSizing",!1,e),e):0)}}}),l.opacity||(n.cssHooks.opacity={get:function(a,b){return Wa.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?.01*parseFloat(RegExp.$1)+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=n.isNumeric(b)?"alpha(opacity="+100*b+")":"",f=d&&d.filter||c.filter||"";c.zoom=1,(b>=1||""===b)&&""===n.trim(f.replace(Va,""))&&c.removeAttribute&&(c.removeAttribute("filter"),""===b||d&&!d.filter)||(c.filter=Va.test(f)?f.replace(Va,e):f+" "+e)}}),n.cssHooks.marginRight=Ua(l.reliableMarginRight,function(a,b){return b?Pa(a,{display:"inline-block"},Sa,[a,"marginRight"]):void 0}),n.cssHooks.marginLeft=Ua(l.reliableMarginLeft,function(a,b){return b?(parseFloat(Sa(a,"marginLeft"))||(n.contains(a.ownerDocument,a)?a.getBoundingClientRect().left-Pa(a,{
nagios4-4.4.6/html/js/jquery-1.12.4.min.js:4:marginLeft:0},function(){return a.getBoundingClientRect().left}):0))+"px":void 0}),n.each({margin:"",padding:"",border:"Width"},function(a,b){n.cssHooks[a+b]={expand:function(c){for(var d=0,e={},f="string"==typeof c?c.split(" "):[c];4>d;d++)e[a+V[d]+b]=f[d]||f[d-2]||f[0];return e}},Na.test(a)||(n.cssHooks[a+b].set=db)}),n.fn.extend({css:function(a,b){return Y(this,function(a,b,c){var d,e,f={},g=0;if(n.isArray(b)){for(d=Ra(a),e=b.length;e>g;g++)f[b[g]]=n.css(a,b[g],!1,d);return f}return void 0!==c?n.style(a,b,c):n.css(a,b)},a,b,arguments.length>1)},show:function(){return cb(this,!0)},hide:function(){return cb(this)},toggle:function(a){return"boolean"==typeof a?a?this.show():this.hide():this.each(function(){W(this)?n(this).show():n(this).hide()})}});function gb(a,b,c,d,e){return new gb.prototype.init(a,b,c,d,e)}n.Tween=gb,gb.prototype={constructor:gb,init:function(a,b,c,d,e,f){this.elem=a,this.prop=c,this.easing=e||n.easing._default,this.options=b,this.start=this.now=this.cur(),this.end=d,this.unit=f||(n.cssNumber[c]?"":"px")},cur:function(){var a=gb.propHooks[this.prop];return a&&a.get?a.get(this):gb.propHooks._default.get(this)},run:function(a){var b,c=gb.propHooks[this.prop];return this.options.duration?this.pos=b=n.easing[this.easing](a,this.options.duration*a,0,1,this.options.duration):this.pos=b=a,this.now=(this.end-this.start)*b+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),c&&c.set?c.set(this):gb.propHooks._default.set(this),this}},gb.prototype.init.prototype=gb.prototype,gb.propHooks={_default:{get:function(a){var b;return 1!==a.elem.nodeType||null!=a.elem[a.prop]&&null==a.elem.style[a.prop]?a.elem[a.prop]:(b=n.css(a.elem,a.prop,""),b&&"auto"!==b?b:0)},set:function(a){n.fx.step[a.prop]?n.fx.step[a.prop](a):1!==a.elem.nodeType||null==a.elem.style[n.cssProps[a.prop]]&&!n.cssHooks[a.prop]?a.elem[a.prop]=a.now:n.style(a.elem,a.prop,a.now+a.unit)}}},gb.propHooks.scrollTop=gb.propHooks.scrollLeft={set:function(a){a.elem.nodeType&&a.elem.parentNode&&(a.elem[a.prop]=a.now)}},n.easing={linear:function(a){return a},swing:function(a){return.5-Math.cos(a*Math.PI)/2},_default:"swing"},n.fx=gb.prototype.init,n.fx.step={};var hb,ib,jb=/^(?:toggle|show|hide)$/,kb=/queueHooks$/;function lb(){return a.setTimeout(function(){hb=void 0}),hb=n.now()}function mb(a,b){var c,d={height:a},e=0;for(b=b?1:0;4>e;e+=2-b)c=V[e],d["margin"+c]=d["padding"+c]=a;return b&&(d.opacity=d.width=a),d}function nb(a,b,c){for(var d,e=(qb.tweeners[b]||[]).concat(qb.tweeners["*"]),f=0,g=e.length;g>f;f++)if(d=e[f].call(c,b,a))return d}function ob(a,b,c){var d,e,f,g,h,i,j,k,m=this,o={},p=a.style,q=a.nodeType&&W(a),r=n._data(a,"fxshow");c.queue||(h=n._queueHooks(a,"fx"),null==h.unqueued&&(h.unqueued=0,i=h.empty.fire,h.empty.fire=function(){h.unqueued||i()}),h.unqueued++,m.always(function(){m.always(function(){h.unqueued--,n.queue(a,"fx").length||h.empty.fire()})})),1===a.nodeType&&("height"in b||"width"in b)&&(c.overflow=[p.overflow,p.overflowX,p.overflowY],j=n.css(a,"display"),k="none"===j?n._data(a,"olddisplay")||Ma(a.nodeName):j,"inline"===k&&"none"===n.css(a,"float")&&(l.inlineBlockNeedsLayout&&"inline"!==Ma(a.nodeName)?p.zoom=1:p.display="inline-block")),c.overflow&&(p.overflow="hidden",l.shrinkWrapBlocks()||m.always(function(){p.overflow=c.overflow[0],p.overflowX=c.overflow[1],p.overflowY=c.overflow[2]}));for(d in b)if(e=b[d],jb.exec(e)){if(delete b[d],f=f||"toggle"===e,e===(q?"hide":"show")){if("show"!==e||!r||void 0===r[d])continue;q=!0}o[d]=r&&r[d]||n.style(a,d)}else j=void 0;if(n.isEmptyObject(o))"inline"===("none"===j?Ma(a.nodeName):j)&&(p.display=j);else{r?"hidden"in r&&(q=r.hidden):r=n._data(a,"fxshow",{}),f&&(r.hidden=!q),q?n(a).show():m.done(function(){n(a).hide()}),m.done(function(){var b;n._removeData(a,"fxshow");for(b in o)n.style(a,b,o[b])});for(d in o)g=nb(q?r[d]:0,d,m),d in r||(r[d]=g.start,q&&(g.end=g.start,g.start="width"===d||"height"===d?1:0))}}function pb(a,b){var c,d,e,f,g;for(c in a)if(d=n.camelCase(c),e=b[d],f=a[c],n.isArray(f)&&(e=f[1],f=a[c]=f[0]),c!==d&&(a[d]=f,delete a[c]),g=n.cssHooks[d],g&&"expand"in g){f=g.expand(f),delete a[d];for(c in f)c in a||(a[c]=f[c],b[c]=e)}else b[d]=e}function qb(a,b,c){var d,e,f=0,g=qb.prefilters.length,h=n.Deferred().always(function(){delete i.elem}),i=function(){if(e)return!1;for(var b=hb||lb(),c=Math.max(0,j.startTime+j.duration-b),d=c/j.duration||0,f=1-d,g=0,i=j.tweens.length;i>g;g++)j.tweens[g].run(f);return h.notifyWith(a,[j,f,c]),1>f&&i?c:(h.resolveWith(a,[j]),!1)},j=h.promise({elem:a,props:n.extend({},b),opts:n.extend(!0,{specialEasing:{},easing:n.easing._default},c),originalProperties:b,originalOptions:c,startTime:hb||lb(),duration:c.duration,tweens:[],createTween:function(b,c){var d=n.Tween(a,j.opts,b,c,j.opts.specialEasing[b]||j.opts.easing);return j.tweens.push(d),d},stop:function(b){var c=0,d=b?j.tweens.length:0;if(e)return this;for(e=!0;d>c;c++)j.tweens[c].run(1);return b?(h.notifyWith(a,[j,1,0]),h.resolveWith(a,[j,b])):h.rejectWith(a,[j,b]),this}}),k=j.props;for(pb(k,j.opts.specialEasing);g>f;f++)if(d=qb.prefilters[f].call(j,a,k,j.opts))return n.isFunction(d.stop)&&(n._queueHooks(j.elem,j.opts.queue).stop=n.proxy(d.stop,d)),d;return n.map(k,nb,j),n.isFunction(j.opts.start)&&j.opts.start.call(a,j),n.fx.timer(n.extend(i,{elem:a,anim:j,queue:j.opts.queue})),j.progress(j.opts.progress).done(j.opts.done,j.opts.complete).fail(j.opts.fail).always(j.opts.always)}n.Animation=n.extend(qb,{tweeners:{"*":[function(a,b){var c=this.createTween(a,b);return X(c.elem,a,U.exec(b),c),c}]},tweener:function(a,b){n.isFunction(a)?(b=a,a=["*"]):a=a.match(G);for(var c,d=0,e=a.length;e>d;d++)c=a[d],qb.tweeners[c]=qb.tweeners[c]||[],qb.tweeners[c].unshift(b)},prefilters:[ob],prefilter:function(a,b){b?qb.prefilters.unshift(a):qb.prefilters.push(a)}}),n.speed=function(a,b,c){var d=a&&"object"==typeof a?n.extend({},a):{complete:c||!c&&b||n.isFunction(a)&&a,duration:a,easing:c&&b||b&&!n.isFunction(b)&&b};return d.duration=n.fx.off?0:"number"==typeof d.duration?d.duration:d.duration in n.fx.speeds?n.fx.speeds[d.duration]:n.fx.speeds._default,null!=d.queue&&d.queue!==!0||(d.queue="fx"),d.old=d.complete,d.complete=function(){n.isFunction(d.old)&&d.old.call(this),d.queue&&n.dequeue(this,d.queue)},d},n.fn.extend({fadeTo:function(a,b,c,d){return this.filter(W).css("opacity",0).show().end().animate({opacity:b},a,c,d)},animate:function(a,b,c,d){var e=n.isEmptyObject(a),f=n.speed(b,c,d),g=function(){var b=qb(this,n.extend({},a),f);(e||n._data(this,"finish"))&&b.stop(!0)};return g.finish=g,e||f.queue===!1?this.each(g):this.queue(f.queue,g)},stop:function(a,b,c){var d=function(a){var b=a.stop;delete a.stop,b(c)};return"string"!=typeof a&&(c=b,b=a,a=void 0),b&&a!==!1&&this.queue(a||"fx",[]),this.each(function(){var b=!0,e=null!=a&&a+"queueHooks",f=n.timers,g=n._data(this);if(e)g[e]&&g[e].stop&&d(g[e]);else for(e in g)g[e]&&g[e].stop&&kb.test(e)&&d(g[e]);for(e=f.length;e--;)f[e].elem!==this||null!=a&&f[e].queue!==a||(f[e].anim.stop(c),b=!1,f.splice(e,1));!b&&c||n.dequeue(this,a)})},finish:function(a){return a!==!1&&(a=a||"fx"),this.each(function(){var b,c=n._data(this),d=c[a+"queue"],e=c[a+"queueHooks"],f=n.timers,g=d?d.length:0;for(c.finish=!0,n.queue(this,a,[]),e&&e.stop&&e.stop.call(this,!0),b=f.length;b--;)f[b].elem===this&&f[b].queue===a&&(f[b].anim.stop(!0),f.splice(b,1));for(b=0;g>b;b++)d[b]&&d[b].finish&&d[b].finish.call(this);delete c.finish})}}),n.each(["toggle","show","hide"],function(a,b){var c=n.fn[b];n.fn[b]=function(a,d,e){return null==a||"boolean"==typeof a?c.apply(this,arguments):this.animate(mb(b,!0),a,d,e)}}),n.each({slideDown:mb("show"),slideUp:mb("hide"),slideToggle:mb("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(a,b){n.fn[a]=function(a,c,d){return this.animate(b,a,c,d)}}),n.timers=[],n.fx.tick=function(){var a,b=n.timers,c=0;for(hb=n.now();c<b.length;c++)a=b[c],a()||b[c]!==a||b.splice(c--,1);b.length||n.fx.stop(),hb=void 0},n.fx.timer=function(a){n.timers.push(a),a()?n.fx.start():n.timers.pop()},n.fx.interval=13,n.fx.start=function(){ib||(ib=a.setInterval(n.fx.tick,n.fx.interval))},n.fx.stop=function(){a.clearInterval(ib),ib=null},n.fx.speeds={slow:600,fast:200,_default:400},n.fn.delay=function(b,c){return b=n.fx?n.fx.speeds[b]||b:b,c=c||"fx",this.queue(c,function(c,d){var e=a.setTimeout(c,b);d.stop=function(){a.clearTimeout(e)}})},function(){var a,b=d.createElement("input"),c=d.createElement("div"),e=d.createElement("select"),f=e.appendChild(d.createElement("option"));c=d.createElement("div"),c.setAttribute("className","t"),c.innerHTML="  <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",a=c.getElementsByTagName("a")[0],b.setAttribute("type","checkbox"),c.appendChild(b),a=c.getElementsByTagName("a")[0],a.style.cssText="top:1px",l.getSetAttribute="t"!==c.className,l.style=/top/.test(a.getAttribute("style")),l.hrefNormalized="/a"===a.getAttribute("href"),l.checkOn=!!b.value,l.optSelected=f.selected,l.enctype=!!d.createElement("form").enctype,e.disabled=!0,l.optDisabled=!f.disabled,b=d.createElement("input"),b.setAttribute("value",""),l.input=""===b.getAttribute("value"),b.value="t",b.setAttribute("type","radio"),l.radioValue="t"===b.value}();var rb=/\r/g,sb=/[\x20\t\r\n\f]+/g;n.fn.extend({val:function(a){var b,c,d,e=this[0];{if(arguments.length)return d=n.isFunction(a),this.each(function(c){var e;1===this.nodeType&&(e=d?a.call(this,c,n(this).val()):a,null==e?e="":"number"==typeof e?e+="":n.isArray(e)&&(e=n.map(e,function(a){return null==a?"":a+""})),b=n.valHooks[this.type]||n.valHooks[this.nodeName.toLowerCase()],b&&"set"in b&&void 0!==b.set(this,e,"value")||(this.value=e))});if(e)return b=n.valHooks[e.type]||n.valHooks[e.nodeName.toLowerCase()],b&&"get"in b&&void 0!==(c=b.get(e,"value"))?c:(c=e.value,"string"==typeof c?c.replace(rb,""):null==c?"":c)}}}),n.extend({valHooks:{option:{get:function(a){var b=n.find.attr(a,"value");return null!=b?b:n.trim(n.text(a)).replace(sb," ")}},select:{get:function(a){for(var b,c,d=a.options,e=a.selectedIndex,f="select-one"===a.type||0>e,g=f?null:[],h=f?e+1:d.length,i=0>e?h:f?e:0;h>i;i++)if(c=d[i],(c.selected||i===e)&&(l.optDisabled?!c.disabled:null===c.getAttribute("disabled"))&&(!c.parentNode.disabled||!n.nodeName(c.parentNode,"optgroup"))){if(b=n(c).val(),f)return b;g.push(b)}return g},set:function(a,b){var c,d,e=a.options,f=n.makeArray(b),g=e.length;while(g--)if(d=e[g],n.inArray(n.valHooks.option.get(d),f)>-1)try{d.selected=c=!0}catch(h){d.scrollHeight}else d.selected=!1;return c||(a.selectedIndex=-1),e}}}}),n.each(["radio","checkbox"],function(){n.valHooks[this]={set:function(a,b){return n.isArray(b)?a.checked=n.inArray(n(a).val(),b)>-1:void 0}},l.checkOn||(n.valHooks[this].get=function(a){return null===a.getAttribute("value")?"on":a.value})});var tb,ub,vb=n.expr.attrHandle,wb=/^(?:checked|selected)$/i,xb=l.getSetAttribute,yb=l.input;n.fn.extend({attr:function(a,b){return Y(this,n.attr,a,b,arguments.length>1)},removeAttr:function(a){return this.each(function(){n.removeAttr(this,a)})}}),n.extend({attr:function(a,b,c){var d,e,f=a.nodeType;if(3!==f&&8!==f&&2!==f)return"undefined"==typeof a.getAttribute?n.prop(a,b,c):(1===f&&n.isXMLDoc(a)||(b=b.toLowerCase(),e=n.attrHooks[b]||(n.expr.match.bool.test(b)?ub:tb)),void 0!==c?null===c?void n.removeAttr(a,b):e&&"set"in e&&void 0!==(d=e.set(a,c,b))?d:(a.setAttribute(b,c+""),c):e&&"get"in e&&null!==(d=e.get(a,b))?d:(d=n.find.attr(a,b),null==d?void 0:d))},attrHooks:{type:{set:function(a,b){if(!l.radioValue&&"radio"===b&&n.nodeName(a,"input")){var c=a.value;return a.setAttribute("type",b),c&&(a.value=c),b}}}},removeAttr:function(a,b){var c,d,e=0,f=b&&b.match(G);if(f&&1===a.nodeType)while(c=f[e++])d=n.propFix[c]||c,n.expr.match.bool.test(c)?yb&&xb||!wb.test(c)?a[d]=!1:a[n.camelCase("default-"+c)]=a[d]=!1:n.attr(a,c,""),a.removeAttribute(xb?c:d)}}),ub={set:function(a,b,c){return b===!1?n.removeAttr(a,c):yb&&xb||!wb.test(c)?a.setAttribute(!xb&&n.propFix[c]||c,c):a[n.camelCase("default-"+c)]=a[c]=!0,c}},n.each(n.expr.match.bool.source.match(/\w+/g),function(a,b){var c=vb[b]||n.find.attr;yb&&xb||!wb.test(b)?vb[b]=function(a,b,d){var e,f;return d||(f=vb[b],vb[b]=e,e=null!=c(a,b,d)?b.toLowerCase():null,vb[b]=f),e}:vb[b]=function(a,b,c){return c?void 0:a[n.camelCase("default-"+b)]?b.toLowerCase():null}}),yb&&xb||(n.attrHooks.value={set:function(a,b,c){return n.nodeName(a,"input")?void(a.defaultValue=b):tb&&tb.set(a,b,c)}}),xb||(tb={set:function(a,b,c){var d=a.getAttributeNode(c);return d||a.setAttributeNode(d=a.ownerDocument.createAttribute(c)),d.value=b+="","value"===c||b===a.getAttribute(c)?b:void 0}},vb.id=vb.name=vb.coords=function(a,b,c){var d;return c?void 0:(d=a.getAttributeNode(b))&&""!==d.value?d.value:null},n.valHooks.button={get:function(a,b){var c=a.getAttributeNode(b);return c&&c.specified?c.value:void 0},set:tb.set},n.attrHooks.contenteditable={set:function(a,b,c){tb.set(a,""===b?!1:b,c)}},n.each(["width","height"],function(a,b){n.attrHooks[b]={set:function(a,c){return""===c?(a.setAttribute(b,"auto"),c):void 0}}})),l.style||(n.attrHooks.style={get:function(a){return a.style.cssText||void 0},set:function(a,b){return a.style.cssText=b+""}});var zb=/^(?:input|select|textarea|button|object)$/i,Ab=/^(?:a|area)$/i;n.fn.extend({prop:function(a,b){return Y(this,n.prop,a,b,arguments.length>1)},removeProp:function(a){return a=n.propFix[a]||a,this.each(function(){try{this[a]=void 0,delete this[a]}catch(b){}})}}),n.extend({prop:function(a,b,c){var d,e,f=a.nodeType;if(3!==f&&8!==f&&2!==f)return 1===f&&n.isXMLDoc(a)||(b=n.propFix[b]||b,e=n.propHooks[b]),void 0!==c?e&&"set"in e&&void 0!==(d=e.set(a,c,b))?d:a[b]=c:e&&"get"in e&&null!==(d=e.get(a,b))?d:a[b]},propHooks:{tabIndex:{get:function(a){var b=n.find.attr(a,"tabindex");return b?parseInt(b,10):zb.test(a.nodeName)||Ab.test(a.nodeName)&&a.href?0:-1}}},propFix:{"for":"htmlFor","class":"className"}}),l.hrefNormalized||n.each(["href","src"],function(a,b){n.propHooks[b]={get:function(a){return a.getAttribute(b,4)}}}),l.optSelected||(n.propHooks.selected={get:function(a){var b=a.parentNode;return b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex),null},set:function(a){var b=a.parentNode;b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex)}}),n.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){n.propFix[this.toLowerCase()]=this}),l.enctype||(n.propFix.enctype="encoding");var Bb=/[\t\r\n\f]/g;function Cb(a){return n.attr(a,"class")||""}n.fn.extend({addClass:function(a){var b,c,d,e,f,g,h,i=0;if(n.isFunction(a))return this.each(function(b){n(this).addClass(a.call(this,b,Cb(this)))});if("string"==typeof a&&a){b=a.match(G)||[];while(c=this[i++])if(e=Cb(c),d=1===c.nodeType&&(" "+e+" ").replace(Bb," ")){g=0;while(f=b[g++])d.indexOf(" "+f+" ")<0&&(d+=f+" ");h=n.trim(d),e!==h&&n.attr(c,"class",h)}}return this},removeClass:function(a){var b,c,d,e,f,g,h,i=0;if(n.isFunction(a))return this.each(function(b){n(this).removeClass(a.call(this,b,Cb(this)))});if(!arguments.length)return this.attr("class","");if("string"==typeof a&&a){b=a.match(G)||[];while(c=this[i++])if(e=Cb(c),d=1===c.nodeType&&(" "+e+" ").replace(Bb," ")){g=0;while(f=b[g++])while(d.indexOf(" "+f+" ")>-1)d=d.replace(" "+f+" "," ");h=n.trim(d),e!==h&&n.attr(c,"class",h)}}return this},toggleClass:function(a,b){var c=typeof a;return"boolean"==typeof b&&"string"===c?b?this.addClass(a):this.removeClass(a):n.isFunction(a)?this.each(function(c){n(this).toggleClass(a.call(this,c,Cb(this),b),b)}):this.each(function(){var b,d,e,f;if("string"===c){d=0,e=n(this),f=a.match(G)||[];while(b=f[d++])e.hasClass(b)?e.removeClass(b):e.addClass(b)}else void 0!==a&&"boolean"!==c||(b=Cb(this),b&&n._data(this,"__className__",b),n.attr(this,"class",b||a===!1?"":n._data(this,"__className__")||""))})},hasClass:function(a){var b,c,d=0;b=" "+a+" ";while(c=this[d++])if(1===c.nodeType&&(" "+Cb(c)+" ").replace(Bb," ").indexOf(b)>-1)return!0;return!1}}),n.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(a,b){n.fn[b]=function(a,c){return arguments.length>0?this.on(b,null,a,c):this.trigger(b)}}),n.fn.extend({hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}});var Db=a.location,Eb=n.now(),Fb=/\?/,Gb=/(,)|(\[|{)|(}|])|"(?:[^"\\\r\n]|\\["\\\/bfnrt]|\\u[\da-fA-F]{4})*"\s*:?|true|false|null|-?(?!0\d)\d+(?:\.\d+|)(?:[eE][+-]?\d+|)/g;n.parseJSON=function(b){if(a.JSON&&a.JSON.parse)return a.JSON.parse(b+"");var c,d=null,e=n.trim(b+"");return e&&!n.trim(e.replace(Gb,function(a,b,e,f){return c&&b&&(d=0),0===d?a:(c=e||b,d+=!f-!e,"")}))?Function("return "+e)():n.error("Invalid JSON: "+b)},n.parseXML=function(b){var c,d;if(!b||"string"!=typeof b)return null;try{a.DOMParser?(d=new a.DOMParser,c=d.parseFromString(b,"text/xml")):(c=new a.ActiveXObject("Microsoft.XMLDOM"),c.async="false",c.loadXML(b))}catch(e){c=void 0}return c&&c.documentElement&&!c.getElementsByTagName("parsererror").length||n.error("Invalid XML: "+b),c};var Hb=/#.*$/,Ib=/([?&])_=[^&]*/,Jb=/^(.*?):[ \t]*([^\r\n]*)\r?$/gm,Kb=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,Lb=/^(?:GET|HEAD)$/,Mb=/^\/\//,Nb=/^([\w.+-]+:)(?:\/\/(?:[^\/?#]*@|)([^\/?#:]*)(?::(\d+)|)|)/,Ob={},Pb={},Qb="*/".concat("*"),Rb=Db.href,Sb=Nb.exec(Rb.toLowerCase())||[];function Tb(a){return function(b,c){"string"!=typeof b&&(c=b,b="*");var d,e=0,f=b.toLowerCase().match(G)||[];if(n.isFunction(c))while(d=f[e++])"+"===d.charAt(0)?(d=d.slice(1)||"*",(a[d]=a[d]||[]).unshift(c)):(a[d]=a[d]||[]).push(c)}}function Ub(a,b,c,d){var e={},f=a===Pb;function g(h){var i;return e[h]=!0,n.each(a[h]||[],function(a,h){var j=h(b,c,d);return"string"!=typeof j||f||e[j]?f?!(i=j):void 0:(b.dataTypes.unshift(j),g(j),!1)}),i}return g(b.dataTypes[0])||!e["*"]&&g("*")}function Vb(a,b){var c,d,e=n.ajaxSettings.flatOptions||{};for(d in b)void 0!==b[d]&&((e[d]?a:c||(c={}))[d]=b[d]);return c&&n.extend(!0,a,c),a}function Wb(a,b,c){var d,e,f,g,h=a.contents,i=a.dataTypes;while("*"===i[0])i.shift(),void 0===e&&(e=a.mimeType||b.getResponseHeader("Content-Type"));if(e)for(g in h)if(h[g]&&h[g].test(e)){i.unshift(g);break}if(i[0]in c)f=i[0];else{for(g in c){if(!i[0]||a.converters[g+" "+i[0]]){f=g;break}d||(d=g)}f=f||d}return f?(f!==i[0]&&i.unshift(f),c[f]):void 0}function Xb(a,b,c,d){var e,f,g,h,i,j={},k=a.dataTypes.slice();if(k[1])for(g in a.converters)j[g.toLowerCase()]=a.converters[g];f=k.shift();while(f)if(a.responseFields[f]&&(c[a.responseFields[f]]=b),!i&&d&&a.dataFilter&&(b=a.dataFilter(b,a.dataType)),i=f,f=k.shift())if("*"===f)f=i;else if("*"!==i&&i!==f){if(g=j[i+" "+f]||j["* "+f],!g)for(e in j)if(h=e.split(" "),h[1]===f&&(g=j[i+" "+h[0]]||j["* "+h[0]])){g===!0?g=j[e]:j[e]!==!0&&(f=h[0],k.unshift(h[1]));break}if(g!==!0)if(g&&a["throws"])b=g(b);else try{b=g(b)}catch(l){return{state:"parsererror",error:g?l:"No conversion from "+i+" to "+f}}}return{state:"success",data:b}}n.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:Rb,type:"GET",isLocal:Kb.test(Sb[1]),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":Qb,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":n.parseJSON,"text xml":n.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(a,b){return b?Vb(Vb(a,n.ajaxSettings),b):Vb(n.ajaxSettings,a)},ajaxPrefilter:Tb(Ob),ajaxTransport:Tb(Pb),ajax:function(b,c){"object"==typeof b&&(c=b,b=void 0),c=c||{};var d,e,f,g,h,i,j,k,l=n.ajaxSetup({},c),m=l.context||l,o=l.context&&(m.nodeType||m.jquery)?n(m):n.event,p=n.Deferred(),q=n.Callbacks("once memory"),r=l.statusCode||{},s={},t={},u=0,v="canceled",w={readyState:0,getResponseHeader:function(a){var b;if(2===u){if(!k){k={};while(b=Jb.exec(g))k[b[1].toLowerCase()]=b[2]}b=k[a.toLowerCase()]}return null==b?null:b},getAllResponseHeaders:function(){return 2===u?g:null},setRequestHeader:function(a,b){var c=a.toLowerCase();return u||(a=t[c]=t[c]||a,s[a]=b),this},overrideMimeType:function(a){return u||(l.mimeType=a),this},statusCode:function(a){var b;if(a)if(2>u)for(b in a)r[b]=[r[b],a[b]];else w.always(a[w.status]);return this},abort:function(a){var b=a||v;return j&&j.abort(b),y(0,b),this}};if(p.promise(w).complete=q.add,w.success=w.done,w.error=w.fail,l.url=((b||l.url||Rb)+"").replace(Hb,"").replace(Mb,Sb[1]+"//"),l.type=c.method||c.type||l.method||l.type,l.dataTypes=n.trim(l.dataType||"*").toLowerCase().match(G)||[""],null==l.crossDomain&&(d=Nb.exec(l.url.toLowerCase()),l.crossDomain=!(!d||d[1]===Sb[1]&&d[2]===Sb[2]&&(d[3]||("http:"===d[1]?"80":"443"))===(Sb[3]||("http:"===Sb[1]?"80":"443")))),l.data&&l.processData&&"string"!=typeof l.data&&(l.data=n.param(l.data,l.traditional)),Ub(Ob,l,c,w),2===u)return w;i=n.event&&l.global,i&&0===n.active++&&n.event.trigger("ajaxStart"),l.type=l.type.toUpperCase(),l.hasContent=!Lb.test(l.type),f=l.url,l.hasContent||(l.data&&(f=l.url+=(Fb.test(f)?"&":"?")+l.data,delete l.data),l.cache===!1&&(l.url=Ib.test(f)?f.replace(Ib,"$1_="+Eb++):f+(Fb.test(f)?"&":"?")+"_="+Eb++)),l.ifModified&&(n.lastModified[f]&&w.setRequestHeader("If-Modified-Since",n.lastModified[f]),n.etag[f]&&w.setRequestHeader("If-None-Match",n.etag[f])),(l.data&&l.hasContent&&l.contentType!==!1||c.contentType)&&w.setRequestHeader("Content-Type",l.contentType),w.setRequestHeader("Accept",l.dataTypes[0]&&l.accepts[l.dataTypes[0]]?l.accepts[l.dataTypes[0]]+("*"!==l.dataTypes[0]?", "+Qb+"; q=0.01":""):l.accepts["*"]);for(e in l.headers)w.setRequestHeader(e,l.headers[e]);if(l.beforeSend&&(l.beforeSend.call(m,w,l)===!1||2===u))return w.abort();v="abort";for(e in{success:1,error:1,complete:1})w[e](l[e]);if(j=Ub(Pb,l,c,w)){if(w.readyState=1,i&&o.trigger("ajaxSend",[w,l]),2===u)return w;l.async&&l.timeout>0&&(h=a.setTimeout(function(){w.abort("timeout")},l.timeout));try{u=1,j.send(s,y)}catch(x){if(!(2>u))throw x;y(-1,x)}}else y(-1,"No Transport");function y(b,c,d,e){var k,s,t,v,x,y=c;2!==u&&(u=2,h&&a.clearTimeout(h),j=void 0,g=e||"",w.readyState=b>0?4:0,k=b>=200&&300>b||304===b,d&&(v=Wb(l,w,d)),v=Xb(l,v,w,k),k?(l.ifModified&&(x=w.getResponseHeader("Last-Modified"),x&&(n.lastModified[f]=x),x=w.getResponseHeader("etag"),x&&(n.etag[f]=x)),204===b||"HEAD"===l.type?y="nocontent":304===b?y="notmodified":(y=v.state,s=v.data,t=v.error,k=!t)):(t=y,!b&&y||(y="error",0>b&&(b=0))),w.status=b,w.statusText=(c||y)+"",k?p.resolveWith(m,[s,y,w]):p.rejectWith(m,[w,y,t]),w.statusCode(r),r=void 0,i&&o.trigger(k?"ajaxSuccess":"ajaxError",[w,l,k?s:t]),q.fireWith(m,[w,y]),i&&(o.trigger("ajaxComplete",[w,l]),--n.active||n.event.trigger("ajaxStop")))}return w},getJSON:function(a,b,c){return n.get(a,b,c,"json")},getScript:function(a,b){return n.get(a,void 0,b,"script")}}),n.each(["get","post"],function(a,b){n[b]=function(a,c,d,e){return n.isFunction(c)&&(e=e||d,d=c,c=void 0),n.ajax(n.extend({url:a,type:b,dataType:e,data:c,success:d},n.isPlainObject(a)&&a))}}),n._evalUrl=function(a){return n.ajax({url:a,type:"GET",dataType:"script",cache:!0,async:!1,global:!1,"throws":!0})},n.fn.extend({wrapAll:function(a){if(n.isFunction(a))return this.each(function(b){n(this).wrapAll(a.call(this,b))});if(this[0]){var b=n(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&1===a.firstChild.nodeType)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){return n.isFunction(a)?this.each(function(b){n(this).wrapInner(a.call(this,b))}):this.each(function(){var b=n(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=n.isFunction(a);return this.each(function(c){n(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){n.nodeName(this,"body")||n(this).replaceWith(this.childNodes)}).end()}});function Yb(a){return a.style&&a.style.display||n.css(a,"display")}function Zb(a){if(!n.contains(a.ownerDocument||d,a))return!0;while(a&&1===a.nodeType){if("none"===Yb(a)||"hidden"===a.type)return!0;a=a.parentNode}return!1}n.expr.filters.hidden=function(a){return l.reliableHiddenOffsets()?a.offsetWidth<=0&&a.offsetHeight<=0&&!a.getClientRects().length:Zb(a)},n.expr.filters.visible=function(a){return!n.expr.filters.hidden(a)};var $b=/%20/g,_b=/\[\]$/,ac=/\r?\n/g,bc=/^(?:submit|button|image|reset|file)$/i,cc=/^(?:input|select|textarea|keygen)/i;function dc(a,b,c,d){var e;if(n.isArray(b))n.each(b,function(b,e){c||_b.test(a)?d(a,e):dc(a+"["+("object"==typeof e&&null!=e?b:"")+"]",e,c,d)});else if(c||"object"!==n.type(b))d(a,b);else for(e in b)dc(a+"["+e+"]",b[e],c,d)}n.param=function(a,b){var c,d=[],e=function(a,b){b=n.isFunction(b)?b():null==b?"":b,d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};if(void 0===b&&(b=n.ajaxSettings&&n.ajaxSettings.traditional),n.isArray(a)||a.jquery&&!n.isPlainObject(a))n.each(a,function(){e(this.name,this.value)});else for(c in a)dc(c,a[c],b,e);return d.join("&").replace($b,"+")},n.fn.extend({serialize:function(){return n.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var a=n.prop(this,"elements");return a?n.makeArray(a):this}).filter(function(){var a=this.type;return this.name&&!n(this).is(":disabled")&&cc.test(this.nodeName)&&!bc.test(a)&&(this.checked||!Z.test(a))}).map(function(a,b){var c=n(this).val();return null==c?null:n.isArray(c)?n.map(c,function(a){return{name:b.name,value:a.replace(ac,"\r\n")}}):{name:b.name,value:c.replace(ac,"\r\n")}}).get()}}),n.ajaxSettings.xhr=void 0!==a.ActiveXObject?function(){return this.isLocal?ic():d.documentMode>8?hc():/^(get|post|head|put|delete|options)$/i.test(this.type)&&hc()||ic()}:hc;var ec=0,fc={},gc=n.ajaxSettings.xhr();a.attachEvent&&a.attachEvent("onunload",function(){for(var a in fc)fc[a](void 0,!0)}),l.cors=!!gc&&"withCredentials"in gc,gc=l.ajax=!!gc,gc&&n.ajaxTransport(function(b){if(!b.crossDomain||l.cors){var c;return{send:function(d,e){var f,g=b.xhr(),h=++ec;if(g.open(b.type,b.url,b.async,b.username,b.password),b.xhrFields)for(f in b.xhrFields)g[f]=b.xhrFields[f];b.mimeType&&g.overrideMimeType&&g.overrideMimeType(b.mimeType),b.crossDomain||d["X-Requested-With"]||(d["X-Requested-With"]="XMLHttpRequest");for(f in d)void 0!==d[f]&&g.setRequestHeader(f,d[f]+"");g.send(b.hasContent&&b.data||null),c=function(a,d){var f,i,j;if(c&&(d||4===g.readyState))if(delete fc[h],c=void 0,g.onreadystatechange=n.noop,d)4!==g.readyState&&g.abort();else{j={},f=g.status,"string"==typeof g.responseText&&(j.text=g.responseText);try{i=g.statusText}catch(k){i=""}f||!b.isLocal||b.crossDomain?1223===f&&(f=204):f=j.text?200:404}j&&e(f,i,j,g.getAllResponseHeaders())},b.async?4===g.readyState?a.setTimeout(c):g.onreadystatechange=fc[h]=c:c()},abort:function(){c&&c(void 0,!0)}}}});function hc(){try{return new a.XMLHttpRequest}catch(b){}}function ic(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}n.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(a){return n.globalEval(a),a}}}),n.ajaxPrefilter("script",function(a){void 0===a.cache&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),n.ajaxTransport("script",function(a){if(a.crossDomain){var b,c=d.head||n("head")[0]||d.documentElement;return{send:function(e,f){b=d.createElement("script"),b.async=!0,a.scriptCharset&&(b.charset=a.scriptCharset),b.src=a.url,b.onload=b.onreadystatechange=function(a,c){(c||!b.readyState||/loaded|complete/.test(b.readyState))&&(b.onload=b.onreadystatechange=null,b.parentNode&&b.parentNode.removeChild(b),b=null,c||f(200,"success"))},c.insertBefore(b,c.firstChild)},abort:function(){b&&b.onload(void 0,!0)}}}});var jc=[],kc=/(=)\?(?=&|$)|\?\?/;n.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var a=jc.pop()||n.expando+"_"+Eb++;return this[a]=!0,a}}),n.ajaxPrefilter("json jsonp",function(b,c,d){var e,f,g,h=b.jsonp!==!1&&(kc.test(b.url)?"url":"string"==typeof b.data&&0===(b.contentType||"").indexOf("application/x-www-form-urlencoded")&&kc.test(b.data)&&"data");return h||"jsonp"===b.dataTypes[0]?(e=b.jsonpCallback=n.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,h?b[h]=b[h].replace(kc,"$1"+e):b.jsonp!==!1&&(b.url+=(Fb.test(b.url)?"&":"?")+b.jsonp+"="+e),b.converters["script json"]=function(){return g||n.error(e+" was not called"),g[0]},b.dataTypes[0]="json",f=a[e],a[e]=function(){g=arguments},d.always(function(){void 0===f?n(a).removeProp(e):a[e]=f,b[e]&&(b.jsonpCallback=c.jsonpCallback,jc.push(e)),g&&n.isFunction(f)&&f(g[0]),g=f=void 0}),"script"):void 0}),n.parseHTML=function(a,b,c){if(!a||"string"!=typeof a)return null;"boolean"==typeof b&&(c=b,b=!1),b=b||d;var e=x.exec(a),f=!c&&[];return e?[b.createElement(e[1])]:(e=ja([a],b,f),f&&f.length&&n(f).remove(),n.merge([],e.childNodes))};var lc=n.fn.load;n.fn.load=function(a,b,c){if("string"!=typeof a&&lc)return lc.apply(this,arguments);var d,e,f,g=this,h=a.indexOf(" ");return h>-1&&(d=n.trim(a.slice(h,a.length)),a=a.slice(0,h)),n.isFunction(b)?(c=b,b=void 0):b&&"object"==typeof b&&(e="POST"),g.length>0&&n.ajax({url:a,type:e||"GET",dataType:"html",data:b}).done(function(a){f=arguments,g.html(d?n("<div>").append(n.parseHTML(a)).find(d):a)}).always(c&&function(a,b){g.each(function(){c.apply(this,f||[a.responseText,b,a])})}),this},n.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(a,b){n.fn[b]=function(a){return this.on(b,a)}}),n.expr.filters.animated=function(a){return n.grep(n.timers,function(b){return a===b.elem}).length};function mc(a){return n.isWindow(a)?a:9===a.nodeType?a.defaultView||a.parentWindow:!1}n.offset={setOffset:function(a,b,c){var d,e,f,g,h,i,j,k=n.css(a,"position"),l=n(a),m={};"static"===k&&(a.style.position="relative"),h=l.offset(),f=n.css(a,"top"),i=n.css(a,"left"),j=("absolute"===k||"fixed"===k)&&n.inArray("auto",[f,i])>-1,j?(d=l.position(),g=d.top,e=d.left):(g=parseFloat(f)||0,e=parseFloat(i)||0),n.isFunction(b)&&(b=b.call(a,c,n.extend({},h))),null!=b.top&&(m.top=b.top-h.top+g),null!=b.left&&(m.left=b.left-h.left+e),"using"in b?b.using.call(a,m):l.css(m)}},n.fn.extend({offset:function(a){if(arguments.length)return void 0===a?this:this.each(function(b){n.offset.setOffset(this,a,b)});var b,c,d={top:0,left:0},e=this[0],f=e&&e.ownerDocument;if(f)return b=f.documentElement,n.contains(b,e)?("undefined"!=typeof e.getBoundingClientRect&&(d=e.getBoundingClientRect()),c=mc(f),{top:d.top+(c.pageYOffset||b.scrollTop)-(b.clientTop||0),left:d.left+(c.pageXOffset||b.scrollLeft)-(b.clientLeft||0)}):d},position:function(){if(this[0]){var a,b,c={top:0,left:0},d=this[0];return"fixed"===n.css(d,"position")?b=d.getBoundingClientRect():(a=this.offsetParent(),b=this.offset(),n.nodeName(a[0],"html")||(c=a.offset()),c.top+=n.css(a[0],"borderTopWidth",!0),c.left+=n.css(a[0],"borderLeftWidth",!0)),{top:b.top-c.top-n.css(d,"marginTop",!0),left:b.left-c.left-n.css(d,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var a=this.offsetParent;while(a&&!n.nodeName(a,"html")&&"static"===n.css(a,"position"))a=a.offsetParent;return a||Qa})}}),n.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(a,b){var c=/Y/.test(b);n.fn[a]=function(d){return Y(this,function(a,d,e){var f=mc(a);return void 0===e?f?b in f?f[b]:f.document.documentElement[d]:a[d]:void(f?f.scrollTo(c?n(f).scrollLeft():e,c?e:n(f).scrollTop()):a[d]=e)},a,d,arguments.length,null)}}),n.each(["top","left"],function(a,b){n.cssHooks[b]=Ua(l.pixelPosition,function(a,c){return c?(c=Sa(a,b),Oa.test(c)?n(a).position()[b]+"px":c):void 0})}),n.each({Height:"height",Width:"width"},function(a,b){n.each({
nagios4-4.4.6/html/js/jquery-1.12.4.min.js-5-padding:"inner"+a,content:b,"":"outer"+a},function(c,d){n.fn[d]=function(d,e){var f=arguments.length&&(c||"boolean"!=typeof d),g=c||(d===!0||e===!0?"margin":"border");return Y(this,function(b,c,d){var e;return n.isWindow(b)?b.document.documentElement["client"+a]:9===b.nodeType?(e=b.documentElement,Math.max(b.body["scroll"+a],e["scroll"+a],b.body["offset"+a],e["offset"+a],e["client"+a])):void 0===d?n.css(b,c,g):n.style(b,c,d,g)},b,f?d:void 0,f,null)}})}),n.fn.extend({bind:function(a,b,c){return this.on(a,null,b,c)},unbind:function(a,b){return this.off(a,null,b)},delegate:function(a,b,c,d){return this.on(b,a,c,d)},undelegate:function(a,b,c){return 1===arguments.length?this.off(a,"**"):this.off(b,a||"**",c)}}),n.fn.size=function(){return this.length},n.fn.andSelf=n.fn.addBack,"function"==typeof define&&define.amd&&define("jquery",[],function(){return n});var nc=a.jQuery,oc=a.$;return n.noConflict=function(b){return a.$===n&&(a.$=oc),b&&a.jQuery===n&&(a.jQuery=nc),n},b||(a.jQuery=a.$=n),n});
##############################################
nagios4-4.4.6/html/map.php-80-				$(document).ready(function() {
nagios4-4.4.6/html/map.php:81:					var user = "<?php echo htmlspecialchars($_SERVER['REMOTE_USER']); ?>";
nagios4-4.4.6/html/map.php-82-
##############################################
nagios4-4.4.6/install-sh-91-
nagios4-4.4.6/install-sh:92:	-t=*) transformarg=`echo $1 | sed 's/-t=//'`
nagios4-4.4.6/install-sh-93-	    shift
##############################################
nagios4-4.4.6/install-sh-95-
nagios4-4.4.6/install-sh:96:	-b=*) transformbasename=`echo $1 | sed 's/-b=//'`
nagios4-4.4.6/install-sh-97-	    shift
##############################################
nagios4-4.4.6/install-sh-156-	then
nagios4-4.4.6/install-sh:157:		dst="$dst"/`basename $src`
nagios4-4.4.6/install-sh-158-	else
##############################################
nagios4-4.4.6/install-sh-163-## this sed command emulates the dirname command
nagios4-4.4.6/install-sh:164:dstdir=`echo $dst | sed -e 's,[^/]*$,,;s,/$,,;s,^$,.,'`
nagios4-4.4.6/install-sh-165-
##############################################
nagios4-4.4.6/install-sh-177-IFS='%'
nagios4-4.4.6/install-sh:178:set - `echo ${dstdir} | sed -e 's@/@%@g' -e 's@^%@/@'`
nagios4-4.4.6/install-sh-179-IFS="${oIFS}"
##############################################
nagios4-4.4.6/install-sh-211-	then
nagios4-4.4.6/install-sh:212:		dstfile=`basename $dst`
nagios4-4.4.6/install-sh-213-	else
##############################################
nagios4-4.4.6/install-sh-221-	then
nagios4-4.4.6/install-sh:222:		dstfile=`basename $dst`
nagios4-4.4.6/install-sh-223-	else
##############################################
nagios4-4.4.6/make-tarball-19-if [ ! -d $PACKAGE-$1 ]; then
nagios4-4.4.6/make-tarball:20:  ln -s `basename $PWDSAVE` $PACKAGE-$1
nagios4-4.4.6/make-tarball-21-fi
##############################################
nagios4-4.4.6/nagios.spec-207-CGI=`find contrib/ -name '*.cgi' -type f |sed s/'contrib\/'//g`
nagios4-4.4.6/nagios.spec:208:CGI=`for i in $CGI; do echo -n "$i|"; done |sed s/\|$//`
nagios4-4.4.6/nagios.spec-209-find %{buildroot}/%{_libdir}/nagios/cgi -type f -print | sed s!'%{buildroot}'!!g | grep -E -ve "($CGI)" > cgi.files
##############################################
nagios4-4.4.6/startup/default-init.in-62-if test "$USE_RAMDISK" -ne 0 && test "$RAMDISK_SIZE"X != "X"; then
nagios4-4.4.6/startup/default-init.in:63:	ramdisk=`mount |grep "${RAMDISK_DIR} type tmpfs"`
nagios4-4.4.6/startup/default-init.in-64-	if [ "$ramdisk"X == "X" ]; then
##############################################
nagios4-4.4.6/startup/default-init.in-67-			if [ -d ${RAMDISK_DIR} ]; then
nagios4-4.4.6/startup/default-init.in:68:				NagiosUserUID=`id -u ${NagiosUser}`
nagios4-4.4.6/startup/default-init.in:69:				NagiosGroupGID=`id -g ${NagiosGroup}`
nagios4-4.4.6/startup/default-init.in-70-				mount -t tmpfs -o uid=${NagiosUserUID},gid=${NagiosGroupGID},size=${RAMDISK_SIZE}m tmpfs ${RAMDISK_DIR}
##############################################
nagios4-4.4.6/startup/default-init.in-100-	$NagiosBin -vp $NagiosCfgFile > "$TMPFILE"
nagios4-4.4.6/startup/default-init.in:101:	WARN=`grep ^"Total Warnings:" "$TMPFILE" |awk -F: '{print \$2}' |sed s/' '//g`
nagios4-4.4.6/startup/default-init.in:102:	ERR=`grep ^"Total Errors:" "$TMPFILE" |awk -F: '{print \$2}' |sed s/' '//g`
nagios4-4.4.6/startup/default-init.in-103-
##############################################
nagios4-4.4.6/startup/default-init.in-159-
nagios4-4.4.6/startup/default-init.in:160:	NagiosPID=`head -n 1 $NagiosRunFile`
nagios4-4.4.6/startup/default-init.in-161-}
##############################################
nagios4-4.4.6/startup/default-init.in-183-		if test -f $NagiosRunFile; then
nagios4-4.4.6/startup/default-init.in:184:			NagiosPID=`head -n 1 $NagiosRunFile`
nagios4-4.4.6/startup/default-init.in-185-			if status_nagios; then
##############################################
nagios4-4.4.6/subst.in-13-	if (-x "/bin/mktemp") { 
nagios4-4.4.6/subst.in:14:		$TEMP = `/bin/mktemp $f.$$.XXXXXX`;
nagios4-4.4.6/subst.in-15-		die 'Cannot make temporary file $TEMP' if($?);
##############################################
nagios4-4.4.6/subst.in-49-
nagios4-4.4.6/subst.in:50:	if ((! -e $f) || (`diff $f $TEMP`)) {
nagios4-4.4.6/subst.in:51:		`mv $TEMP $f`;
nagios4-4.4.6/subst.in-52-	} else {
##############################################
nagios4-4.4.6/t/610cgistatus.t-21-
nagios4-4.4.6/t/610cgistatus.t:22:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg REMOTE_USER=nagiosadmin REQUEST_METHOD=GET QUERY_STRING=host=all $cgi`;
nagios4-4.4.6/t/610cgistatus.t-23-like( $output, '/status.cgi\?host=all&sorttype=1&sortoption=1/', "Host value should be set to all if host=all passed in" );
##############################################
nagios4-4.4.6/t/610cgistatus.t-29-
nagios4-4.4.6/t/610cgistatus.t:30:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg REMOTE_USER=nagiosadmin REQUEST_METHOD=GET QUERY_STRING=host=host1 $cgi`;
nagios4-4.4.6/t/610cgistatus.t-31-like( $output, '/status.cgi\?host=host1&sorttype=1&sortoption=1/', "Host value should be set to specific host if passed in" );
##############################################
nagios4-4.4.6/t/610cgistatus.t-33-
nagios4-4.4.6/t/610cgistatus.t:34:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg REMOTE_USER=nagiosadmin REQUEST_METHOD=GET QUERY_STRING=host= $cgi`;
nagios4-4.4.6/t/610cgistatus.t-35-like( $output, '/status.cgi\?host=&sorttype=1&sortoption=1/', "Host value kept as blank if set to blank" );
##############################################
nagios4-4.4.6/t/610cgistatus.t-37-
nagios4-4.4.6/t/610cgistatus.t:38:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg REMOTE_USER=nagiosadmin REQUEST_METHOD=GET $cgi`;
nagios4-4.4.6/t/610cgistatus.t-39-like( $output, '/status.cgi\?host=all&sorttype=1&sortoption=1/', "Host value should be set to all if nothing set initially" );
##############################################
nagios4-4.4.6/t/610cgistatus.t-43-
nagios4-4.4.6/t/610cgistatus.t:44:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg REMOTE_USER=second REQUEST_METHOD=GET QUERY_STRING=host=all $cgi`;
nagios4-4.4.6/t/610cgistatus.t-45-like( $output, '/1 Matching Services/', "Got 1 service, as permission only allows one host");
##############################################
nagios4-4.4.6/t/611cgistatus-hosturgencies.t-22-# Host list sorted by name
nagios4-4.4.6/t/611cgistatus-hosturgencies.t:23:$output = `NAGIOS_CGI_CONFIG=etc/cgi-hosturgencies.cfg REMOTE_USER=nagiosadmin REQUEST_METHOD=GET QUERY_STRING='hostgroup=all&style=hostdetail' $cgi`;
nagios4-4.4.6/t/611cgistatus-hosturgencies.t-24-like( $output, '/>host1<.*>host2<.*>host3<.*>host4</s', "List of hosts sorted by ascending name" );
##############################################
nagios4-4.4.6/t/611cgistatus-hosturgencies.t-26-# Host list sorted by (traditional) status
nagios4-4.4.6/t/611cgistatus-hosturgencies.t:27:$output = `NAGIOS_CGI_CONFIG=etc/cgi-hosturgencies.cfg REMOTE_USER=nagiosadmin REQUEST_METHOD=GET QUERY_STRING='hostgroup=all&style=hostdetail&sorttype=1&sortoption=8' $cgi`;
nagios4-4.4.6/t/611cgistatus-hosturgencies.t-28-like( $output, '/>host4<.*>host1<.*>host2<.*>host3</s', "List of hosts sorted by ascending status" );
##############################################
nagios4-4.4.6/t/611cgistatus-hosturgencies.t-30-# Host list sorted by urgency
nagios4-4.4.6/t/611cgistatus-hosturgencies.t:31:$output = `NAGIOS_CGI_CONFIG=etc/cgi-hosturgencies.cfg REMOTE_USER=nagiosadmin REQUEST_METHOD=GET QUERY_STRING='hostgroup=all&style=hostdetail&sorttype=2&sortoption=9' $cgi`;
nagios4-4.4.6/t/611cgistatus-hosturgencies.t-32-like( $output, '/>host2<.*>host3<.*>host4<.*>host1</s', "List of hosts sorted by descending urgency" );
##############################################
nagios4-4.4.6/t/615cgierror.t-25-		delete $cgis{$cgi};
nagios4-4.4.6/t/615cgierror.t:26:#		my $output = `NAGIOS_CGI_CONFIG=etc/cgi.nonexistent REQUEST_METHOD=GET $cgi_dir/$cgi`;
nagios4-4.4.6/t/615cgierror.t-27-#		like( $output, "/Error: Could not open CGI config file 'etc/cgi.nonexistent' for reading/", "Found error for $cgi" );
##############################################
nagios4-4.4.6/t/615cgierror.t-32-foreach my $cgi (sort keys %cgis) {
nagios4-4.4.6/t/615cgierror.t:33:	my $output = `NAGIOS_CGI_CONFIG=etc/cgi.nonexistent REQUEST_METHOD=GET $cgi_dir/$cgi`;
nagios4-4.4.6/t/615cgierror.t-34-	like( $output, "/Error: Could not open CGI config file 'etc/cgi.nonexistent' for reading/", "Found error for $cgi" );
##############################################
nagios4-4.4.6/t/616cginotification.t-19-
nagios4-4.4.6/t/616cginotification.t:20:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg REQUEST_METHOD=GET $notifications_cgi`;
nagios4-4.4.6/t/616cginotification.t-21-like( $output, "/<input type='hidden' name='host' value='all'>/", "Host value set to all if nothing set" );
nagios4-4.4.6/t/616cginotification.t-22-
nagios4-4.4.6/t/616cginotification.t:23:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg REQUEST_METHOD=GET QUERY_STRING=host=all $notifications_cgi`;
nagios4-4.4.6/t/616cginotification.t-24-like( $output, "/<input type='hidden' name='host' value='all'>/", "Host value set to all if host=all set" );
nagios4-4.4.6/t/616cginotification.t-25-
nagios4-4.4.6/t/616cginotification.t:26:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg REQUEST_METHOD=GET QUERY_STRING=host=hostA $notifications_cgi`;
nagios4-4.4.6/t/616cginotification.t-27-like( $output, "/<input type='hidden' name='host' value='hostA'>/", "Host value set to host in query string" );
nagios4-4.4.6/t/616cginotification.t-28-
nagios4-4.4.6/t/616cginotification.t:29:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg REQUEST_METHOD=GET QUERY_STRING=contact=all $notifications_cgi`;
nagios4-4.4.6/t/616cginotification.t-30-like( $output, "/<input type='hidden' name='contact' value='all'>/", "Contact value set to all from query string" );
nagios4-4.4.6/t/616cginotification.t-31-
nagios4-4.4.6/t/616cginotification.t:32:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg REQUEST_METHOD=GET QUERY_STRING=contact=fred $notifications_cgi`;
nagios4-4.4.6/t/616cginotification.t-33-like( $output, "/<input type='hidden' name='contact' value='fred'>/", "Contact value set to fred from query string" );
##############################################
nagios4-4.4.6/t/617statuswml.t-24-
nagios4-4.4.6/t/617statuswml.t:25:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg REQUEST_METHOD=GET QUERY_STRING="ping=127.0.0.1%3Becho+this+should+not+get+here" $statuswml`;
nagios4-4.4.6/t/617statuswml.t-26-unlike( $output, "/this should not get here/", "Check that security error does not exist" );
##############################################
nagios4-4.4.6/t/617statuswml.t-28-
nagios4-4.4.6/t/617statuswml.t:29:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg REQUEST_METHOD=GET QUERY_STRING="traceroute=127.0.0.1%3Becho+this+should+not+get+here" $statuswml`;
nagios4-4.4.6/t/617statuswml.t-30-unlike( $output, "/this should not get here/", "Check that security error does not exist" );
##############################################
nagios4-4.4.6/t/617statuswml.t-32-
nagios4-4.4.6/t/617statuswml.t:33:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg REQUEST_METHOD=GET QUERY_STRING="ping=127.0.0.1" $statuswml`;
nagios4-4.4.6/t/617statuswml.t-34-like( $output, qr%<b>Results For Ping Of 127.0.0.1:</b><br/>%, "Works correctly for valid address for ping" );
##############################################
nagios4-4.4.6/t/617statuswml.t-36-# Don't run this test below, because it actually invokes traceroute
nagios4-4.4.6/t/617statuswml.t:37:#$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg REQUEST_METHOD=GET QUERY_STRING="traceroute=127.0.0.1" $statuswml`;
nagios4-4.4.6/t/617statuswml.t-38-#like( $output, qr%<b>Results For Traceroute To 127.0.0.1:</b><br/>%, "... and traceroute" );
##############################################
nagios4-4.4.6/t/618cgisecurity.t-16-
nagios4-4.4.6/t/618cgisecurity.t:17:my $output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg REQUEST_METHOD=GET QUERY_STRING="layer=' style=xss:expression(alert('XSS')) '" $cgi_dir/statusmap.cgi`;
nagios4-4.4.6/t/618cgisecurity.t-18-unlike( $output, qr/' style=xss:expression\(alert\('XSS'\)\) '/, "XSS injection not passed straight through" );
##############################################
nagios4-4.4.6/t/618cgisecurity.t-23-
nagios4-4.4.6/t/618cgisecurity.t:24:$output = `REMOTE_USER=nagiosadmin NAGIOS_CGI_CONFIG=etc/cgi.cfg REQUEST_METHOD=GET QUERY_STRING="type=command&expand=<body onload=alert(666)>" $cgi_dir/config.cgi`;
nagios4-4.4.6/t/618cgisecurity.t-25-unlike( $output, qr/<body onload=alert\(666\)>/, "XSS injection not passed through" ) || diag ($output);
##############################################
nagios4-4.4.6/t/622extinfo-local.t-20-
nagios4-4.4.6/t/622extinfo-local.t:21:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg REQUEST_METHOD=GET $remote_user $extinfo_cgi`;
nagios4-4.4.6/t/622extinfo-local.t-22-like( $output, "/Process Information/", "extinfo.cgi without params show the process information" );
nagios4-4.4.6/t/622extinfo-local.t-23-
nagios4-4.4.6/t/622extinfo-local.t:24:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg REQUEST_METHOD=GET $remote_user QUERY_STRING='&type=1&host=host1' $extinfo_cgi`;
nagios4-4.4.6/t/622extinfo-local.t-25-like( $output, "/Schedule downtime for all services on this host/", "extinfo.cgi allows us to set downtime for a host and all of his services" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-22-
nagios4-4.4.6/t/623cmd-local.t:23:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-24-like( $output, "/<P><DIV CLASS='errorMessage'>Error: No command was specified</DIV></P>/", "$local_cgi without params shows an error" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-29-	$cmd_typ=$_;
nagios4-4.4.6/t/623cmd-local.t:30:	$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-31-	unlike( $output, "/You are requesting to execute an unknown command. Shame on you!/", "$local_cgi with cmd_typ=$cmd_typ results in an error" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-35-$cmd_typ=1;
nagios4-4.4.6/t/623cmd-local.t:36:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-37-like( $output, "/You are requesting to add a host comment/", "$local_cgi with cmd_typ=$cmd_typ shows host comment form" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-45-$cmd_typ=2;
nagios4-4.4.6/t/623cmd-local.t:46:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-47-like( $output, "/You are requesting to delete a host comment/", "$local_cgi with cmd_typ=$cmd_typ shows host comment form" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-53-$cmd_typ=3;
nagios4-4.4.6/t/623cmd-local.t:54:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-55-like( $output, "/You are requesting to add a service comment/", "$local_cgi with cmd_typ=$cmd_typ shows service comment form" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-64-$cmd_typ=4;
nagios4-4.4.6/t/623cmd-local.t:65:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-66-like( $output, "/You are requesting to delete a service comment/", "$local_cgi with cmd_typ=$cmd_typ shows service comment delete form" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-72-$cmd_typ=5;
nagios4-4.4.6/t/623cmd-local.t:73:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-74-like( $output, "/You are requesting to enable active checks of a particular service/", "$local_cgi with cmd_typ=$cmd_typ shows enable active service checks form" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-81-$cmd_typ=6;
nagios4-4.4.6/t/623cmd-local.t:82:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-83-like( $output, "/You are requesting to disable active checks of a particular service/", "$local_cgi with cmd_typ=$cmd_typ shows disable active service checks form" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-90-$cmd_typ=7;
nagios4-4.4.6/t/623cmd-local.t:91:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-92-like( $output, "/You are requesting to schedule a service check/", "$local_cgi with cmd_typ=$cmd_typ shows request service check form" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-100-$cmd_typ=9;
nagios4-4.4.6/t/623cmd-local.t:101:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-102-like( $output, "/You are requesting to delay a service notification/", "$local_cgi with cmd_typ=$cmd_typ shows request to delay service notification" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-110-$cmd_typ=10;
nagios4-4.4.6/t/623cmd-local.t:111:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-112-like( $output, "/You are requesting to delay a host notification/", "$local_cgi with cmd_typ=$cmd_typ shows request to delay host notification" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-119-$cmd_typ=11;
nagios4-4.4.6/t/623cmd-local.t:120:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-121-like( $output, "/You are requesting to disable notification/", "$local_cgi with cmd_typ=$cmd_typ shows request to disable notification" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-126-$cmd_typ=12;
nagios4-4.4.6/t/623cmd-local.t:127:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-128-like( $output, "/You are requesting to enable notification/", "$local_cgi with cmd_typ=$cmd_typ shows request to enable notification" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-133-$cmd_typ=13;
nagios4-4.4.6/t/623cmd-local.t:134:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-135-like( $output, "/You are requesting to restart the Nagios process/", "$local_cgi with cmd_typ=$cmd_typ shows request to restart Nagios" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-140-$cmd_typ=14;
nagios4-4.4.6/t/623cmd-local.t:141:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-142-like( $output, "/You are requesting to shutdown the Nagios process/", "$local_cgi with cmd_typ=$cmd_typ shows request to shutdown Nagios" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-147-$cmd_typ=15;
nagios4-4.4.6/t/623cmd-local.t:148:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-149-like( $output, "/You are requesting to enable active checks of all services on a host/", "$local_cgi with cmd_typ=$cmd_typ shows request to enable active checks of all services on a host" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-155-$cmd_typ=16;
nagios4-4.4.6/t/623cmd-local.t:156:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-157-like( $output, "/You are requesting to disable active checks of all services on a host/", "$local_cgi with cmd_typ=$cmd_typ shows request to disable active checks of all services on a host" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-163-$cmd_typ=17;
nagios4-4.4.6/t/623cmd-local.t:164:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-165-like( $output, "/You are requesting to schedule a check of all services for a host/", "$local_cgi with cmd_typ=$cmd_typ shows request check all services on a host" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-173-$cmd_typ=20;
nagios4-4.4.6/t/623cmd-local.t:174:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-175-like( $output, "/You are requesting to delete all comments for a host/", "$local_cgi with cmd_typ=$cmd_typ shows request to delete all comments for a host" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-181-$cmd_typ=21;
nagios4-4.4.6/t/623cmd-local.t:182:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-183-like( $output, "/You are requesting to delete all comments for a service/", "$local_cgi with cmd_typ=$cmd_typ shows request to delete all comments for a service" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-190-$cmd_typ=22;
nagios4-4.4.6/t/623cmd-local.t:191:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-192-like( $output, "/You are requesting to enable notifications for a service/", "$local_cgi with cmd_typ=$cmd_typ shows request to enable notifications for a service" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-199-$cmd_typ=23;
nagios4-4.4.6/t/623cmd-local.t:200:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-201-like( $output, "/You are requesting to disable notifications for a service/", "$local_cgi with cmd_typ=$cmd_typ shows request to disable notifications for a service" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-208-$cmd_typ=24;
nagios4-4.4.6/t/623cmd-local.t:209:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-210-like( $output, "/You are requesting to enable notifications for a host/", "$local_cgi with cmd_typ=$cmd_typ shows request to enable notifications for a host" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-216-$cmd_typ=25;
nagios4-4.4.6/t/623cmd-local.t:217:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-218-like( $output, "/You are requesting to disable notifications for a host/", "$local_cgi with cmd_typ=$cmd_typ shows request to disable notifications for a host" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-224-$cmd_typ=26;
nagios4-4.4.6/t/623cmd-local.t:225:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-226-like( $output, "/You are requesting to enable notifications for all hosts and services beyond a host/", "$local_cgi with cmd_typ=$cmd_typ shows request to enable notifications for all hosts and services beyond a host" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-232-$cmd_typ=27;
nagios4-4.4.6/t/623cmd-local.t:233:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-234-like( $output, "/You are requesting to disable notifications for all hosts and services beyond a host/", "$local_cgi with cmd_typ=$cmd_typ shows request to disable notifications for all hosts and services beyond a host" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-240-$cmd_typ=28;
nagios4-4.4.6/t/623cmd-local.t:241:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-242-like( $output, "/You are requesting to enable notifications for all services on a host/", "$local_cgi with cmd_typ=$cmd_typ shows request to enable notifications for all services on a host" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-248-$cmd_typ=29;
nagios4-4.4.6/t/623cmd-local.t:249:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-250-like( $output, "/You are requesting to disable notifications for all services on a host/", "$local_cgi with cmd_typ=$cmd_typ shows request to disable notifications for all services on a host" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-256-$cmd_typ=30;
nagios4-4.4.6/t/623cmd-local.t:257:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-258-like( $output, "/You are requesting to submit a passive check result for a particular service/", "$local_cgi with cmd_typ=$cmd_typ shows request to submit passive check result for a particular service" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-268-$cmd_typ=33;
nagios4-4.4.6/t/623cmd-local.t:269:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-270-like( $output, "/You are requesting to acknowledge a host problem/", "$local_cgi with cmd_typ=$cmd_typ shows request to acknowledge a host problem" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-281-$cmd_typ=34;
nagios4-4.4.6/t/623cmd-local.t:282:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-283-like( $output, "/You are requesting to acknowledge a service problem/", "$local_cgi with cmd_typ=$cmd_typ shows request to acknowledge a service problem" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-295-$cmd_typ=35;
nagios4-4.4.6/t/623cmd-local.t:296:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-297-like( $output, "/You are requesting to start executing active service checks/", "$local_cgi with cmd_typ=$cmd_typ shows request to start executing system wide active service checks" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-302-$cmd_typ=36;
nagios4-4.4.6/t/623cmd-local.t:303:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-304-like( $output, "/You are requesting to stop executing active service checks/", "$local_cgi with cmd_typ=$cmd_typ shows request to stop executing system wide active service checks" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-309-$cmd_typ=37;
nagios4-4.4.6/t/623cmd-local.t:310:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-311-like( $output, "/You are requesting to start accepting passive service checks/", "$local_cgi with cmd_typ=$cmd_typ shows request to start accepting executing system wide passive service checks" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-316-$cmd_typ=38;
nagios4-4.4.6/t/623cmd-local.t:317:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-318-like( $output, "/You are requesting to stop accepting passive service checks/", "$local_cgi with cmd_typ=$cmd_typ shows request to stop accepting system wide passive service checks" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-323-$cmd_typ=39;
nagios4-4.4.6/t/623cmd-local.t:324:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-325-like( $output, "/You are requesting to start accepting passive service checks for a particular service/", "$local_cgi with cmd_typ=$cmd_typ shows request to start accepting passive service checks for a particular service" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-332-$cmd_typ=40;
nagios4-4.4.6/t/623cmd-local.t:333:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-334-like( $output, "/You are requesting to stop accepting passive service checks for a particular service/", "$local_cgi with cmd_typ=$cmd_typ shows request to stop accepting passive service checks for a particular service" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-341-$cmd_typ=41;
nagios4-4.4.6/t/623cmd-local.t:342:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-343-like( $output, "/You are requesting to enable event handlers/", "$local_cgi with cmd_typ=$cmd_typ shows request to enable system wide event handlers" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-348-$cmd_typ=42;
nagios4-4.4.6/t/623cmd-local.t:349:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-350-like( $output, "/You are requesting to disable event handlers/", "$local_cgi with cmd_typ=$cmd_typ shows request to disable system wide event handlers" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-355-$cmd_typ=43;
nagios4-4.4.6/t/623cmd-local.t:356:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-357-like( $output, "/You are requesting to enable the event handler for a particular host/", "$local_cgi with cmd_typ=$cmd_typ shows request to enable event handler of a particular host" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-363-$cmd_typ=44;
nagios4-4.4.6/t/623cmd-local.t:364:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-365-like( $output, "/You are requesting to disable the event handler for a particular host/", "$local_cgi with cmd_typ=$cmd_typ shows request to disable event handler of a particular host" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-371-$cmd_typ=45;
nagios4-4.4.6/t/623cmd-local.t:372:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-373-like( $output, "/You are requesting to enable the event handler for a particular service/", "$local_cgi with cmd_typ=$cmd_typ shows request to enable event handler of  a particular service" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-380-$cmd_typ=46;
nagios4-4.4.6/t/623cmd-local.t:381:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-382-like( $output, "/You are requesting to disable the event handler for a particular service/", "$local_cgi with cmd_typ=$cmd_typ shows request to disable event handler   of a particular service" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-389-$cmd_typ=47;
nagios4-4.4.6/t/623cmd-local.t:390:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-391-like( $output, "/You are requesting to enable active checks of a particular host/", "$local_cgi with cmd_typ=$cmd_typ shows request to enable active checks of a particular host" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-397-$cmd_typ=48;
nagios4-4.4.6/t/623cmd-local.t:398:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-399-like( $output, "/You are requesting to disable active checks of a particular host/", "$local_cgi with cmd_typ=$cmd_typ shows request to disable active checks of a particular host" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-405-$cmd_typ=49;
nagios4-4.4.6/t/623cmd-local.t:406:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-407-like( $output, "/You are requesting to start obsessing over service checks/", "$local_cgi with cmd_typ=$cmd_typ shows request to start obsessing over service checks" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-412-$cmd_typ=50;
nagios4-4.4.6/t/623cmd-local.t:413:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-414-like( $output, "/You are requesting to stop obsessing over service checks/", "$local_cgi with cmd_typ=$cmd_typ shows request to stop obsessing over service checks" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-419-$cmd_typ=51;
nagios4-4.4.6/t/623cmd-local.t:420:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-421-like( $output, "/You are requesting to remove a host acknowledgement/", "$local_cgi with cmd_typ=$cmd_typ shows request to remove a host acknowledgement" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-426-$cmd_typ=52;
nagios4-4.4.6/t/623cmd-local.t:427:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-428-like( $output, "/You are requesting to remove a service acknowledgement/", "$local_cgi with cmd_typ=$cmd_typ shows request to remove a service acknowledgement" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-435-$cmd_typ=55;
nagios4-4.4.6/t/623cmd-local.t:436:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-437-like( $output, "/You are requesting to schedule downtime for a particular host/", "$local_cgi with cmd_typ=$cmd_typ shows request to schedule downtime for a particular Host" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-447-$cmd_typ=56;
nagios4-4.4.6/t/623cmd-local.t:448:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-449-like( $output, "/You are requesting to schedule downtime for a particular service/", "$local_cgi with cmd_typ=$cmd_typ shows request to schedule downtime for a particular Service" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-460-$cmd_typ=57;
nagios4-4.4.6/t/623cmd-local.t:461:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-462-like( $output, "/You are requesting to enable flap detection for a particular host/", "$local_cgi with cmd_typ=$cmd_typ shows request to enable flap detection for a particular host" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-468-$cmd_typ=58;
nagios4-4.4.6/t/623cmd-local.t:469:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-470-like( $output, "/You are requesting to disable flap detection for a particular host/", "$local_cgi with cmd_typ=$cmd_typ shows request to disable flap detection for a particular host" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-476-$cmd_typ=59;
nagios4-4.4.6/t/623cmd-local.t:477:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-478-like( $output, "/You are requesting to enable flap detection for a particular service/", "$local_cgi with cmd_typ=$cmd_typ shows request to enable flap detection for a particular service" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-485-$cmd_typ=60;
nagios4-4.4.6/t/623cmd-local.t:486:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-487-like( $output, "/You are requesting to disable flap detection for a particular service/", "$local_cgi with cmd_typ=$cmd_typ shows request to disable flap detection for a particular service" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-494-$cmd_typ=61;
nagios4-4.4.6/t/623cmd-local.t:495:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-496-like( $output, "/You are requesting to enable flap detection for hosts and services/", "$local_cgi with cmd_typ=$cmd_typ shows request to enable flap detection for hosts and services" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-501-$cmd_typ=62;
nagios4-4.4.6/t/623cmd-local.t:502:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-503-like( $output, "/You are requesting to disable flap detection for hosts and services/", "$local_cgi with cmd_typ=$cmd_typ shows request to disable flap detection for hosts and services" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-508-$cmd_typ=63;
nagios4-4.4.6/t/623cmd-local.t:509:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-510-like( $output, "/You are requesting to enable notifications for all services in a particular hostgroup/", "$local_cgi with cmd_typ=$cmd_typ shows request to enable notifications for all services in a particular hostgroup" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-516-$cmd_typ=64;
nagios4-4.4.6/t/623cmd-local.t:517:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-518-like( $output, "/You are requesting to disable notifications for all services in a particular hostgroup/", "$local_cgi with cmd_typ=$cmd_typ shows request to disable notifications for all services in a particular hostgroup" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-524-$cmd_typ=65;
nagios4-4.4.6/t/623cmd-local.t:525:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-526-like( $output, "/You are requesting to enable notifications for all hosts in a particular hostgroup/", "$local_cgi with cmd_typ=$cmd_typ shows request to enable notifications for all hosts in a particular hostgroup" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-532-$cmd_typ=66;
nagios4-4.4.6/t/623cmd-local.t:533:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-534-like( $output, "/You are requesting to disable notifications for all hosts in a particular hostgroup/", "$local_cgi with cmd_typ=$cmd_typ shows request to disable notifications for all hosts in a particular hostgroup" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-540-$cmd_typ=67;
nagios4-4.4.6/t/623cmd-local.t:541:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-542-like( $output, "/You are requesting to enable active checks of all services in a particular hostgroup/", "$local_cgi with cmd_typ=$cmd_typ shows request to enable active checks of all services in a particular hostgroup" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-548-$cmd_typ=68;
nagios4-4.4.6/t/623cmd-local.t:549:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-550-like( $output, "/You are requesting to disable active checks of all services in a particular hostgroup/", "$local_cgi with cmd_typ=$cmd_typ shows request to disable active checks of all services in a particular hostgroup" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-556-$cmd_typ=78;
nagios4-4.4.6/t/623cmd-local.t:557:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-558-like( $output, "/You are requesting to cancel scheduled downtime for a particular host/", "$local_cgi with cmd_typ=$cmd_typ shows request to cancel scheduled downtime for a particular host" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-564-$cmd_typ=79;
nagios4-4.4.6/t/623cmd-local.t:565:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-566-like( $output, "/You are requesting to cancel scheduled downtime for a particular service/", "$local_cgi with cmd_typ=$cmd_typ shows request to cancel scheduled downtime for a particular service" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-572-$cmd_typ=82;
nagios4-4.4.6/t/623cmd-local.t:573:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-574-like( $output, "/You are requesting to enable performance data processing for hosts and services/", "$local_cgi with cmd_typ=$cmd_typ shows request to enable performance data processing for hosts and services" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-579-$cmd_typ=83;
nagios4-4.4.6/t/623cmd-local.t:580:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-581-like( $output, "/You are requesting to disable performance data processing for hosts and services/", "$local_cgi with cmd_typ=$cmd_typ shows request to disable performance data processing for hosts and services" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-586-$cmd_typ=84;
nagios4-4.4.6/t/623cmd-local.t:587:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-588-like( $output, "/You are requesting to schedule downtime for all hosts in a particular hostgroup/", "$local_cgi with cmd_typ=$cmd_typ shows request to schedule downtime for all hosts in a particular hostgroup" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-598-$cmd_typ=85;
nagios4-4.4.6/t/623cmd-local.t:599:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-600-like( $output, "/You are requesting to schedule downtime for all services in a particular hostgroup/", "$local_cgi with cmd_typ=$cmd_typ shows request to schedule downtime for all services in a particular hostgroup" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-610-$cmd_typ=86;
nagios4-4.4.6/t/623cmd-local.t:611:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-612-like( $output, "/You are requesting to schedule downtime for all services for a particular host/", "$local_cgi with cmd_typ=$cmd_typ shows request to schedule downtime for all services for a particular host" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-622-$cmd_typ=87;
nagios4-4.4.6/t/623cmd-local.t:623:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-624-like( $output, "/You are requesting to submit a passive check result for a particular host/", "$local_cgi with cmd_typ=$cmd_typ shows request to submit a passive check result for a particular host" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-632-$cmd_typ=88;
nagios4-4.4.6/t/623cmd-local.t:633:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-634-like( $output, "/You are requesting to start executing host checks/", "$local_cgi with cmd_typ=$cmd_typ shows request to start executing host checks" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-639-$cmd_typ=89;
nagios4-4.4.6/t/623cmd-local.t:640:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-641-like( $output, "/You are requesting to stop executing host checks/", "$local_cgi with cmd_typ=$cmd_typ shows request to stop executing host checks" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-646-$cmd_typ=90;
nagios4-4.4.6/t/623cmd-local.t:647:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-648-like( $output, "/You are requesting to start accepting passive host checks/", "$local_cgi with cmd_typ=$cmd_typ shows request to start accepting passive host checks" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-653-$cmd_typ=91;
nagios4-4.4.6/t/623cmd-local.t:654:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-655-like( $output, "/You are requesting to stop accepting passive host checks/", "$local_cgi with cmd_typ=$cmd_typ shows request to stop accepting passive host checks" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-660-$cmd_typ=92;
nagios4-4.4.6/t/623cmd-local.t:661:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-662-like( $output, "/You are requesting to start accepting passive checks for a particular host/", "$local_cgi with cmd_typ=$cmd_typ shows request to start accepting passive checks for a particular host" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-668-$cmd_typ=93;
nagios4-4.4.6/t/623cmd-local.t:669:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-670-like( $output, "/You are requesting to stop accepting passive checks for a particular host/", "$local_cgi with cmd_typ=$cmd_typ shows request to stop accepting passive checks for a particular host" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-676-$cmd_typ=94;
nagios4-4.4.6/t/623cmd-local.t:677:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-678-like( $output, "/You are requesting to start obsessing over host checks/", "$local_cgi with cmd_typ=$cmd_typ shows request to start obsessing over host checks" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-683-$cmd_typ=95;
nagios4-4.4.6/t/623cmd-local.t:684:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-685-like( $output, "/You are requesting to stop obsessing over host checks/", "$local_cgi with cmd_typ=$cmd_typ shows request to stop obsessing over host checks" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-690-$cmd_typ=96;
nagios4-4.4.6/t/623cmd-local.t:691:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-692-like( $output, "/You are requesting to schedule a host check/", "$local_cgi with cmd_typ=$cmd_typ shows request to schedule a host check" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-699-$cmd_typ=99;
nagios4-4.4.6/t/623cmd-local.t:700:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-701-like( $output, "/You are requesting to start obsessing over a particular service/", "$local_cgi with cmd_typ=$cmd_typ shows request to start obsessing over a particular service" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-708-$cmd_typ=100;
nagios4-4.4.6/t/623cmd-local.t:709:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-710-like( $output, "/You are requesting to stop obsessing over a particular service/", "$local_cgi with cmd_typ=$cmd_typ shows request to stop obsessing over a particular service" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-717-$cmd_typ=101;
nagios4-4.4.6/t/623cmd-local.t:718:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-719-like( $output, "/You are requesting to start obsessing over a particular host/", "$local_cgi with cmd_typ=$cmd_typ shows request to start obsessing over a particular host" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-725-$cmd_typ=102;
nagios4-4.4.6/t/623cmd-local.t:726:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-727-like( $output, "/You are requesting to stop obsessing over a particular host/", "$local_cgi with cmd_typ=$cmd_typ shows request to stop obsessing over a particular host" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-733-$cmd_typ=109;
nagios4-4.4.6/t/623cmd-local.t:734:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-735-like( $output, "/You are requesting to enable notifications for all services in a particular servicegroup/", "$local_cgi with cmd_typ=$cmd_typ shows request to enable notifications for all services in a particular servicegroup" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-741-$cmd_typ=110;
nagios4-4.4.6/t/623cmd-local.t:742:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-743-like( $output, "/You are requesting to disable notifications for all services in a particular servicegroup/", "$local_cgi with cmd_typ=$cmd_typ shows request to disable notifications for all services in a particular servicegroup" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-749-$cmd_typ=111;
nagios4-4.4.6/t/623cmd-local.t:750:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-751-like( $output, "/You are requesting to enable notifications for all hosts in a particular servicegroup/", "$local_cgi with cmd_typ=$cmd_typ shows request to enable notifications for all hosts in a particular servicegroup" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-757-$cmd_typ=112;
nagios4-4.4.6/t/623cmd-local.t:758:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-759-like( $output, "/You are requesting to disable notifications for all hosts in a particular servicegroup/", "$local_cgi with cmd_typ=$cmd_typ shows request to disable notifications for all hosts in a particular servicegroup" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-765-$cmd_typ=113;
nagios4-4.4.6/t/623cmd-local.t:766:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-767-like( $output, "/You are requesting to enable active checks of all services in a particular servicegroup/", "$local_cgi with cmd_typ=$cmd_typ shows request to enable active checks of all services in a particular servicegroup" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-773-$cmd_typ=114;
nagios4-4.4.6/t/623cmd-local.t:774:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-775-like( $output, "/You are requesting to disable active checks of all services in a particular servicegroup/", "$local_cgi with cmd_typ=$cmd_typ shows request to disable active checks of all services in a particular servicegroup" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-781-$cmd_typ=121;
nagios4-4.4.6/t/623cmd-local.t:782:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-783-like( $output, "/You are requesting to schedule downtime for all hosts in a particular servicegroup/", "$local_cgi with cmd_typ=$cmd_typ shows request to schedule downtime for all hosts in a particular servicegroup" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-793-$cmd_typ=122;
nagios4-4.4.6/t/623cmd-local.t:794:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-795-like( $output, "/You are requesting to schedule downtime for all services in a particular servicegroup/", "$local_cgi with cmd_typ=$cmd_typ shows request to schedule downtime for all services in a particular servicegroup" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-805-$cmd_typ=159;
nagios4-4.4.6/t/623cmd-local.t:806:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-807-like( $output, "/You are requesting to send a custom host notification/", "$local_cgi with cmd_typ=$cmd_typ shows request to send a custom host notification" );
##############################################
nagios4-4.4.6/t/623cmd-local.t-815-$cmd_typ=160;
nagios4-4.4.6/t/623cmd-local.t:816:$output = `NAGIOS_CGI_CONFIG=etc/cgi.cfg $remote_user REQUEST_METHOD=GET QUERY_STRING='cmd_typ=$cmd_typ' $local_cgi`;
nagios4-4.4.6/t/623cmd-local.t-817-like( $output, "/You are requesting to send a custom service notification/", "$local_cgi with cmd_typ=$cmd_typ shows request to send a custom service notification" );
##############################################
nagios4-4.4.6/t/660status-downtimes-comments.t-32-	$copies = (10)**($iteration);
nagios4-4.4.6/t/660status-downtimes-comments.t:33:	is( system("cat $status_dat > $generated"), 0, "New status.dat file" );
nagios4-4.4.6/t/660status-downtimes-comments.t:34:	is( system("$generator $copies >> $generated"), 0, "Generated $copies downtimes");
nagios4-4.4.6/t/660status-downtimes-comments.t-35-	my $num_comments = $copies + 1;
##############################################
nagios4-4.4.6/t/660status-downtimes-comments.t-37-	my $start = time;
nagios4-4.4.6/t/660status-downtimes-comments.t:38:	$output = `NAGIOS_CGI_CONFIG=etc/cgi-with-generated-status.cfg REQUEST_METHOD=GET REMOTE_USER=nagiosadmin QUERY_STRING="host=host1" $status_cgi`;
nagios4-4.4.6/t/660status-downtimes-comments.t-39-	my $duration = time-$start;
##############################################
nagios4-4.4.6/t/660status-downtimes-comments.t-45-	# Check that the comments ids are sorted
nagios4-4.4.6/t/660status-downtimes-comments.t:46:	#$output = `NAGIOS_CGI_CONFIG=etc/cgi-with-generated-status.cfg REQUEST_METHOD=GET REMOTE_USER=nagiosadmin QUERY_STRING="type=2&host=host1&service=Dummy+service" $extinfo_cgi`;
nagios4-4.4.6/t/660status-downtimes-comments.t-47-	#check_decrementing_comment_ids();
##############################################
nagios4-4.4.6/t/705nagiostats.t-18-
nagios4-4.4.6/t/705nagiostats.t:19:my $output = `$nagiostats -c "$etc/nagios-does-not-exist.cfg"`;
nagios4-4.4.6/t/705nagiostats.t-20-isnt( $?, 0, "Bad return code with no config file" );
##############################################
nagios4-4.4.6/t/705nagiostats.t-22-
nagios4-4.4.6/t/705nagiostats.t:23:$output = `$nagiostats -c "$etc/nagios-no-status.cfg"`;
nagios4-4.4.6/t/705nagiostats.t-24-isnt( $?, 0, "Bad return code with no status file" );
##############################################
nagios4-4.4.6/t/705nagiostats.t-26-
nagios4-4.4.6/t/705nagiostats.t:27:$output = `$nagiostats -c "$etc/nagios-no-status.cfg" -m -d NUMHSTUP`;
nagios4-4.4.6/t/705nagiostats.t-28-isnt( $?, 0, "Bad return code with no status file in MRTG mode" );
##############################################
nagios4-4.4.6/t/705nagiostats.t-30-
nagios4-4.4.6/t/705nagiostats.t:31:$output = `$nagiostats -c "$etc/nagios-with-generated-status.cfg" -m -d NUMHOSTS`;
nagios4-4.4.6/t/705nagiostats.t-32-is( $?, 0, "Bad return code with implied status file in MRTG mode" );
##############################################
nagios4-4.4.6/t/705nagiostats.t-34-
nagios4-4.4.6/t/705nagiostats.t:35:$output = `$nagiostats -s "$var/status-generated.dat" -m -d NUMHOSTS`;
nagios4-4.4.6/t/705nagiostats.t-36-is( $?, 0, "Bad return code with explicit status file in MRTG mode" );
##############################################
nagios4-4.4.6/t/900-configparsing.t-18-
nagios4-4.4.6/t/900-configparsing.t:19:my $output = `$nagios -v "$etc/nagios.cfg"`;
nagios4-4.4.6/t/900-configparsing.t-20-if ($? == 0) {
##############################################
nagios4-4.4.6/t/900-configparsing.t-25-
nagios4-4.4.6/t/900-configparsing.t:26:system("$nagios -vp '$etc/nagios.cfg' > /dev/null") == 0 or die "Cannot create precached objects file";
nagios4-4.4.6/t/900-configparsing.t:27:system("grep -v 'Created:' $precache > '$precache.generated'");
nagios4-4.4.6/t/900-configparsing.t-28-
nagios4-4.4.6/t/900-configparsing.t-29-my $diff = "diff -u $precache.expected $precache.generated";
nagios4-4.4.6/t/900-configparsing.t:30:my @output = `$diff`;
nagios4-4.4.6/t/900-configparsing.t-31-if ($? == 0) {
##############################################
nagios4-4.4.6/t/910-noservice.t-18-
nagios4-4.4.6/t/910-noservice.t:19:my $output = `$nagios -v "$etc/nagios-no-service.cfg"`;
nagios4-4.4.6/t/910-noservice.t-20-like( $output, "/Error: There are no services defined!/", "Correct error for no services" );
##############################################
nagios4-4.4.6/t/920-nocontactgroup.t-17-
nagios4-4.4.6/t/920-nocontactgroup.t:18:my $output = `$nagios -v "$etc/nagios-no-contactgroup.cfg"`;
nagios4-4.4.6/t/920-nocontactgroup.t-19-like( $output, "/Error: Could not find any contactgroup matching 'nonexistentone'/", "Correct error for no contactgroup" );
##############################################
nagios4-4.4.6/t/930-emptygroups.t-19-
nagios4-4.4.6/t/930-emptygroups.t:20:my @output = `$nagios -v "$etc/nagios-empty-groups.cfg"`;
nagios4-4.4.6/t/930-emptygroups.t-21-if ($? == 0) {
##############################################
nagios4-4.4.6/tap/Makefile.in-224-	dot_seen=no; \
nagios4-4.4.6/tap/Makefile.in:225:	target=`echo $@ | sed s/-recursive//`; \
nagios4-4.4.6/tap/Makefile.in-226-	list='$(SUBDIRS)'; for subdir in $$list; do \
##############################################
nagios4-4.4.6/tap/Makefile.in-254-	rev="$$rev ."; \
nagios4-4.4.6/tap/Makefile.in:255:	target=`echo $@ | sed s/-recursive//`; \
nagios4-4.4.6/tap/Makefile.in-256-	for subdir in $$rev; do \
##############################################
nagios4-4.4.6/tap/Makefile.in-328-GTAGS:
nagios4-4.4.6/tap/Makefile.in:329:	here=`$(am__cd) $(top_builddir) && pwd` \
nagios4-4.4.6/tap/Makefile.in-330-	  && cd $(top_srcdir) \
##############################################
nagios4-4.4.6/tap/Makefile.in-338-	mkdir $(distdir)
nagios4-4.4.6/tap/Makefile.in:339:	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
nagios4-4.4.6/tap/Makefile.in:340:	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
nagios4-4.4.6/tap/Makefile.in-341-	list='$(DISTFILES)'; for file in $$list; do \
nagios4-4.4.6/tap/Makefile.in-342-	  case $$file in \
nagios4-4.4.6/tap/Makefile.in:343:	    $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
nagios4-4.4.6/tap/Makefile.in:344:	    $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
nagios4-4.4.6/tap/Makefile.in-345-	  esac; \
nagios4-4.4.6/tap/Makefile.in-346-	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
nagios4-4.4.6/tap/Makefile.in:347:	  dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
nagios4-4.4.6/tap/Makefile.in-348-	  if test "$$dir" != "$$file" && test "$$dir" != "."; then \
##############################################
nagios4-4.4.6/tap/Makefile.in-369-	    || exit 1; \
nagios4-4.4.6/tap/Makefile.in:370:	    distdir=`$(am__cd) $(distdir) && pwd`; \
nagios4-4.4.6/tap/Makefile.in:371:	    top_distdir=`$(am__cd) $(top_distdir) && pwd`; \
nagios4-4.4.6/tap/Makefile.in-372-	    (cd $$subdir && \
##############################################
nagios4-4.4.6/tap/Makefile.in-429-	chmod a-w $(distdir)
nagios4-4.4.6/tap/Makefile.in:430:	dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
nagios4-4.4.6/tap/Makefile.in-431-	  && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
##############################################
nagios4-4.4.6/tap/Makefile.in-460-	@cd $(distuninstallcheck_dir) \
nagios4-4.4.6/tap/Makefile.in:461:	&& test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \
nagios4-4.4.6/tap/Makefile.in-462-	   || { echo "ERROR: files left after uninstall:" ; \
##############################################
nagios4-4.4.6/tap/Makefile.in-472-	fi
nagios4-4.4.6/tap/Makefile.in:473:	@test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
nagios4-4.4.6/tap/Makefile.in-474-	  || { echo "ERROR: files left in build directory after distclean:" ; \
##############################################
nagios4-4.4.6/tap/aclocal.m4-65-# $ac_aux_dir to `$srcdir/foo'.  In other projects, it is set to
nagios4-4.4.6/tap/aclocal.m4:66:# `$srcdir', `$srcdir/..', or `$srcdir/../..'.
nagios4-4.4.6/tap/aclocal.m4-67-#
##############################################
nagios4-4.4.6/tap/aclocal.m4-89-# iff we strip the leading $srcdir from $ac_aux_dir.  That would be:
nagios4-4.4.6/tap/aclocal.m4:90:#   am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"`
nagios4-4.4.6/tap/aclocal.m4-91-# and then we would define $MISSING as
##############################################
nagios4-4.4.6/tap/aclocal.m4-105-# expand $ac_aux_dir to an absolute path
nagios4-4.4.6/tap/aclocal.m4:106:am_aux_dir=`cd $ac_aux_dir && pwd`
nagios4-4.4.6/tap/aclocal.m4-107-])
##############################################
nagios4-4.4.6/tap/aclocal.m4-225-  if test "$am_compiler_list" = ""; then
nagios4-4.4.6/tap/aclocal.m4:226:     am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp`
nagios4-4.4.6/tap/aclocal.m4-227-  fi
##############################################
nagios4-4.4.6/tap/aclocal.m4-346-  # Strip MF so we end up with the name of the file.
nagios4-4.4.6/tap/aclocal.m4:347:  mf=`echo "$mf" | sed -e 's/:.*$//'`
nagios4-4.4.6/tap/aclocal.m4-348-  # Check whether this is an Automake generated Makefile or not.
##############################################
nagios4-4.4.6/tap/aclocal.m4-354-  if grep '^#.*generated by automake' $mf > /dev/null 2>&1; then
nagios4-4.4.6/tap/aclocal.m4:355:    dirpart=`AS_DIRNAME("$mf")`
nagios4-4.4.6/tap/aclocal.m4-356-  else
##############################################
nagios4-4.4.6/tap/aclocal.m4-360-  # from the Makefile without running `make'.
nagios4-4.4.6/tap/aclocal.m4:361:  DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
nagios4-4.4.6/tap/aclocal.m4-362-  test -z "$DEPDIR" && continue
nagios4-4.4.6/tap/aclocal.m4:363:  am__include=`sed -n 's/^am__include = //p' < "$mf"`
nagios4-4.4.6/tap/aclocal.m4-364-  test -z "am__include" && continue
nagios4-4.4.6/tap/aclocal.m4:365:  am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
nagios4-4.4.6/tap/aclocal.m4-366-  # When using ansi2knr, U may be empty or an underscore; expand it
nagios4-4.4.6/tap/aclocal.m4:367:  U=`sed -n 's/^U = //p' < "$mf"`
nagios4-4.4.6/tap/aclocal.m4-368-  # Find all dependency output files, they are included files with
##############################################
nagios4-4.4.6/tap/aclocal.m4-376-    test -f "$dirpart/$file" && continue
nagios4-4.4.6/tap/aclocal.m4:377:    fdir=`AS_DIRNAME(["$file"])`
nagios4-4.4.6/tap/aclocal.m4-378-    AS_MKDIR_P([$dirpart/$fdir])
##############################################
nagios4-4.4.6/tap/aclocal.m4-442-# test to see if srcdir already configured
nagios4-4.4.6/tap/aclocal.m4:443:if test "`cd $srcdir && pwd`" != "`pwd`" &&
nagios4-4.4.6/tap/aclocal.m4-444-   test -f $srcdir/config.status; then
##############################################
nagios4-4.4.6/tap/aclocal.m4-518-    * )
nagios4-4.4.6/tap/aclocal.m4:519:      _am_stamp_count=`expr $_am_stamp_count + 1` ;;
nagios4-4.4.6/tap/aclocal.m4-520-  esac
nagios4-4.4.6/tap/aclocal.m4-521-done
nagios4-4.4.6/tap/aclocal.m4:522:echo "timestamp for $1" >`AS_DIRNAME([$1])`/stamp-h[]$_am_stamp_count])
nagios4-4.4.6/tap/aclocal.m4-523-
##############################################
nagios4-4.4.6/tap/aclocal.m4-625-# case it prints its new name instead of `make'.
nagios4-4.4.6/tap/aclocal.m4:626:if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then
nagios4-4.4.6/tap/aclocal.m4-627-   am__include=include
##############################################
nagios4-4.4.6/tap/aclocal.m4-633-   echo '.include "confinc"' > confmf
nagios4-4.4.6/tap/aclocal.m4:634:   if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then
nagios4-4.4.6/tap/aclocal.m4-635-      am__include=.include
##############################################
nagios4-4.4.6/tap/aclocal.m4-845-if (
nagios4-4.4.6/tap/aclocal.m4:846:   set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null`
nagios4-4.4.6/tap/aclocal.m4-847-   if test "$[*]" = "X"; then
nagios4-4.4.6/tap/aclocal.m4-848-      # -L didn't work.
nagios4-4.4.6/tap/aclocal.m4:849:      set X `ls -t $srcdir/configure conftest.file`
nagios4-4.4.6/tap/aclocal.m4-850-   fi
##############################################
nagios4-4.4.6/tap/aclocal.m4-1200-
nagios4-4.4.6/tap/aclocal.m4:1201:cc_basename=`$echo X"$compiler" | $Xsed -e 's%^.*/%%'`
nagios4-4.4.6/tap/aclocal.m4-1202-
##############################################
nagios4-4.4.6/tap/aclocal.m4-1289-  # Remove one level of quotation (which was required for Make).
nagios4-4.4.6/tap/aclocal.m4:1290:  ECHO=`echo "$ECHO" | sed 's,\\\\\[$]\\[$]0,'[$]0','`
nagios4-4.4.6/tap/aclocal.m4-1291-  ;;
##############################################
nagios4-4.4.6/tap/aclocal.m4-1300-  :
nagios4-4.4.6/tap/aclocal.m4:1301:elif test "X`($echo '\t') 2>/dev/null`" = 'X\t' ; then
nagios4-4.4.6/tap/aclocal.m4-1302-  # Yippee, $echo works!
##############################################
nagios4-4.4.6/tap/aclocal.m4-1326-    # expected sizes: less than 2Kb, 1Kb, 512 bytes, 16 bytes, ...
nagios4-4.4.6/tap/aclocal.m4:1327:    if (echo_test_string="`eval $cmd`") 2>/dev/null &&
nagios4-4.4.6/tap/aclocal.m4:1328:       echo_test_string="`eval $cmd`" &&
nagios4-4.4.6/tap/aclocal.m4-1329-       (test "X$echo_test_string" = "X$echo_test_string") 2>/dev/null
##############################################
nagios4-4.4.6/tap/aclocal.m4-1335-
nagios4-4.4.6/tap/aclocal.m4:1336:if test "X`($echo '\t') 2>/dev/null`" = 'X\t' &&
nagios4-4.4.6/tap/aclocal.m4:1337:   echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` &&
nagios4-4.4.6/tap/aclocal.m4-1338-   test "X$echo_testing_string" = "X$echo_test_string"; then
##############################################
nagios4-4.4.6/tap/aclocal.m4-1350-    if (test -f $dir/echo || test -f $dir/echo$ac_exeext) &&
nagios4-4.4.6/tap/aclocal.m4:1351:       test "X`($dir/echo '\t') 2>/dev/null`" = 'X\t' &&
nagios4-4.4.6/tap/aclocal.m4:1352:       echo_testing_string=`($dir/echo "$echo_test_string") 2>/dev/null` &&
nagios4-4.4.6/tap/aclocal.m4-1353-       test "X$echo_testing_string" = "X$echo_test_string"; then
##############################################
nagios4-4.4.6/tap/aclocal.m4-1362-    if test "X`(print -r '\t') 2>/dev/null`" = 'X\t' &&
nagios4-4.4.6/tap/aclocal.m4:1363:       echo_testing_string=`(print -r "$echo_test_string") 2>/dev/null` &&
nagios4-4.4.6/tap/aclocal.m4-1364-       test "X$echo_testing_string" = "X$echo_test_string"; then
##############################################
nagios4-4.4.6/tap/aclocal.m4-1377-      echo='printf %s\n'
nagios4-4.4.6/tap/aclocal.m4:1378:      if test "X`($echo '\t') 2>/dev/null`" = 'X\t' &&
nagios4-4.4.6/tap/aclocal.m4:1379:	 echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` &&
nagios4-4.4.6/tap/aclocal.m4-1380-	 test "X$echo_testing_string" = "X$echo_test_string"; then
##############################################
nagios4-4.4.6/tap/aclocal.m4-1382-	:
nagios4-4.4.6/tap/aclocal.m4:1383:      elif echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` &&
nagios4-4.4.6/tap/aclocal.m4-1384-	   test "X$echo_testing_string" = 'X\t' &&
nagios4-4.4.6/tap/aclocal.m4:1385:	   echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` &&
nagios4-4.4.6/tap/aclocal.m4-1386-	   test "X$echo_testing_string" = "X$echo_test_string"; then
##############################################
nagios4-4.4.6/tap/aclocal.m4-1391-	echo="$CONFIG_SHELL [$]0 --fallback-echo"
nagios4-4.4.6/tap/aclocal.m4:1392:      elif echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` &&
nagios4-4.4.6/tap/aclocal.m4-1393-	   test "X$echo_testing_string" = 'X\t' &&
nagios4-4.4.6/tap/aclocal.m4:1394:	   echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` &&
nagios4-4.4.6/tap/aclocal.m4-1395-	   test "X$echo_testing_string" = "X$echo_test_string"; then
##############################################
nagios4-4.4.6/tap/aclocal.m4-1401-	for cmd in 'echo test' 'sed 2q "[$]0"' 'sed 10q "[$]0"' 'sed 20q "[$]0"' 'sed 50q "[$]0"'; do
nagios4-4.4.6/tap/aclocal.m4:1402:	  if (test "X$echo_test_string" = "X`eval $cmd`") 2>/dev/null
nagios4-4.4.6/tap/aclocal.m4-1403-	  then
##############################################
nagios4-4.4.6/tap/aclocal.m4-1409-	if test "$prev" != 'sed 50q "[$]0"'; then
nagios4-4.4.6/tap/aclocal.m4:1410:	  echo_test_string=`eval $prev`
nagios4-4.4.6/tap/aclocal.m4-1411-	  export echo_test_string
##############################################
nagios4-4.4.6/tap/aclocal.m4-1448-  if AC_TRY_EVAL(ac_compile); then
nagios4-4.4.6/tap/aclocal.m4:1449:    case `/usr/bin/file conftest.$ac_objext` in
nagios4-4.4.6/tap/aclocal.m4-1450-    *ELF-32*)
##############################################
nagios4-4.4.6/tap/aclocal.m4-1464-   if test "$lt_cv_prog_gnu_ld" = yes; then
nagios4-4.4.6/tap/aclocal.m4:1465:    case `/usr/bin/file conftest.$ac_objext` in
nagios4-4.4.6/tap/aclocal.m4-1466-    *32-bit*)
##############################################
nagios4-4.4.6/tap/aclocal.m4-1476-   else
nagios4-4.4.6/tap/aclocal.m4:1477:    case `/usr/bin/file conftest.$ac_objext` in
nagios4-4.4.6/tap/aclocal.m4-1478-    *32-bit*)
##############################################
nagios4-4.4.6/tap/aclocal.m4-1688-    # And add a safety zone
nagios4-4.4.6/tap/aclocal.m4:1689:    lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4`
nagios4-4.4.6/tap/aclocal.m4-1690-    ;;
##############################################
nagios4-4.4.6/tap/aclocal.m4-1696-    SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}}
nagios4-4.4.6/tap/aclocal.m4:1697:    while (test "X"`$SHELL [$]0 --fallback-echo "X$teststring" 2>/dev/null` \
nagios4-4.4.6/tap/aclocal.m4-1698-	       = "XX$teststring") >/dev/null 2>&1 &&
nagios4-4.4.6/tap/aclocal.m4:1699:	    new_result=`expr "X$teststring" : ".*" 2>&1` &&
nagios4-4.4.6/tap/aclocal.m4-1700-	    lt_cv_sys_max_cmd_len=$new_result &&
##############################################
nagios4-4.4.6/tap/aclocal.m4-1702-    do
nagios4-4.4.6/tap/aclocal.m4:1703:      i=`expr $i + 1`
nagios4-4.4.6/tap/aclocal.m4-1704-      teststring=$teststring$teststring
##############################################
nagios4-4.4.6/tap/aclocal.m4-1709-    # It appears as though 1/2 is a usable value.
nagios4-4.4.6/tap/aclocal.m4:1710:    lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2`
nagios4-4.4.6/tap/aclocal.m4-1711-    ;;
##############################################
nagios4-4.4.6/tap/aclocal.m4-1997-  if test "$hard_links" = no; then
nagios4-4.4.6/tap/aclocal.m4:1998:    AC_MSG_WARN([`$CC' does not support `-c -o', so `make -j' may be unsafe])
nagios4-4.4.6/tap/aclocal.m4-1999-    need_locks=warn
##############################################
nagios4-4.4.6/tap/aclocal.m4-2112-if test "$GCC" = yes; then
nagios4-4.4.6/tap/aclocal.m4:2113:  sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"`
nagios4-4.4.6/tap/aclocal.m4-2114-  if echo "$sys_lib_search_path_spec" | grep ';' >/dev/null ; then
##############################################
nagios4-4.4.6/tap/aclocal.m4-2118-    # okay in the real world where ";" in dirpaths is itself problematic.
nagios4-4.4.6/tap/aclocal.m4:2119:    sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'`
nagios4-4.4.6/tap/aclocal.m4-2120-  else
nagios4-4.4.6/tap/aclocal.m4:2121:    sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED  -e "s/$PATH_SEPARATOR/ /g"`
nagios4-4.4.6/tap/aclocal.m4-2122-  fi
##############################################
nagios4-4.4.6/tap/aclocal.m4-2189-  # Create ${libname}_ixlibrary.a entries in /sys/libs.
nagios4-4.4.6/tap/aclocal.m4:2190:  finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([[^/]]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done'
nagios4-4.4.6/tap/aclocal.m4-2191-  ;;
##############################################
nagios4-4.4.6/tap/aclocal.m4-2222-    # DLL is installed to $(libdir)/../bin by postinstall_cmds
nagios4-4.4.6/tap/aclocal.m4:2223:    postinstall_cmds='base_file=`basename \${file}`~
nagios4-4.4.6/tap/aclocal.m4:2224:      dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i;echo \$dlname'\''`~
nagios4-4.4.6/tap/aclocal.m4:2225:      dldir=$destdir/`dirname \$dlpath`~
nagios4-4.4.6/tap/aclocal.m4-2226-      test -d \$dldir || mkdir -p \$dldir~
nagios4-4.4.6/tap/aclocal.m4-2227-      $install_prog $dir/$dlname \$dldir/$dlname'
nagios4-4.4.6/tap/aclocal.m4:2228:    postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~
nagios4-4.4.6/tap/aclocal.m4-2229-      dlpath=$dir/\$dldll~
##############################################
nagios4-4.4.6/tap/aclocal.m4-2235-      # Cygwin DLLs use 'cyg' prefix rather than 'lib'
nagios4-4.4.6/tap/aclocal.m4:2236:      soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}'
nagios4-4.4.6/tap/aclocal.m4-2237-      sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib"
##############################################
nagios4-4.4.6/tap/aclocal.m4-2240-      # MinGW DLLs use traditional 'lib' prefix
nagios4-4.4.6/tap/aclocal.m4:2241:      soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}'
nagios4-4.4.6/tap/aclocal.m4:2242:      sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"`
nagios4-4.4.6/tap/aclocal.m4-2243-      if echo "$sys_lib_search_path_spec" | [grep ';[c-zC-Z]:/' >/dev/null]; then
##############################################
nagios4-4.4.6/tap/aclocal.m4-2249-        # which wouldn't understand a cygwinified path. Ahh.
nagios4-4.4.6/tap/aclocal.m4:2250:        sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'`
nagios4-4.4.6/tap/aclocal.m4-2251-      else
nagios4-4.4.6/tap/aclocal.m4:2252:        sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED  -e "s/$PATH_SEPARATOR/ /g"`
nagios4-4.4.6/tap/aclocal.m4-2253-      fi
##############################################
nagios4-4.4.6/tap/aclocal.m4-2256-      # pw32 DLLs use 'pw' prefix rather than 'lib'
nagios4-4.4.6/tap/aclocal.m4:2257:      library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}'
nagios4-4.4.6/tap/aclocal.m4-2258-      ;;
##############################################
nagios4-4.4.6/tap/aclocal.m4-2262-  *)
nagios4-4.4.6/tap/aclocal.m4:2263:    library_names_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext} $libname.lib'
nagios4-4.4.6/tap/aclocal.m4-2264-    ;;
##############################################
nagios4-4.4.6/tap/aclocal.m4-2282-  if test "$GCC" = yes; then
nagios4-4.4.6/tap/aclocal.m4:2283:    sys_lib_search_path_spec=`$CC -print-search-dirs | tr "\n" "$PATH_SEPARATOR" | sed -e 's/libraries:/@libraries:/' | tr "@" "\n" | grep "^libraries:" | sed -e "s/^libraries://" -e "s,=/,/,g" -e "s,$PATH_SEPARATOR, ,g" -e "s,.*,& /lib /usr/lib /usr/local/lib,g"`
nagios4-4.4.6/tap/aclocal.m4-2284-  else
##############################################
nagios4-4.4.6/tap/aclocal.m4-2459-  if test -f /etc/ld.so.conf; then
nagios4-4.4.6/tap/aclocal.m4:2460:    lt_ld_extra=`$SED -e 's/[:,\t]/ /g;s/=[^=]*$//;s/=[^= ]* / /g' /etc/ld.so.conf | tr '\n' ' '`
nagios4-4.4.6/tap/aclocal.m4-2461-    sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra"
##############################################
nagios4-4.4.6/tap/aclocal.m4-2526-  shlibpath_var=LD_LIBRARY_PATH
nagios4-4.4.6/tap/aclocal.m4:2527:  if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
nagios4-4.4.6/tap/aclocal.m4-2528-    case $host_os in
##############################################
nagios4-4.4.6/tap/aclocal.m4-2655-  if test -z "$LTCC"; then
nagios4-4.4.6/tap/aclocal.m4:2656:    eval "`$SHELL ${ofile} --config | grep '^LTCC='`"
nagios4-4.4.6/tap/aclocal.m4-2657-    if test -z "$LTCC"; then
##############################################
nagios4-4.4.6/tap/aclocal.m4-2659-    else
nagios4-4.4.6/tap/aclocal.m4:2660:      AC_MSG_WARN([using `LTCC=$LTCC', extracted from `$ofile'])
nagios4-4.4.6/tap/aclocal.m4-2661-    fi
##############################################
nagios4-4.4.6/tap/aclocal.m4-2665-  # Note that this assumes the entire list is on one line.
nagios4-4.4.6/tap/aclocal.m4:2666:  available_tags=`grep "^available_tags=" "${ofile}" | $SED -e 's/available_tags=\(.*$\)/\1/' -e 's/\"//g'`
nagios4-4.4.6/tap/aclocal.m4-2667-
##############################################
nagios4-4.4.6/tap/aclocal.m4-2671-    # Check whether tagname contains only valid characters
nagios4-4.4.6/tap/aclocal.m4:2672:    case `$echo "X$tagname" | $Xsed -e 's:[[-_ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890,/]]::g'` in
nagios4-4.4.6/tap/aclocal.m4-2673-    "") ;;
##############################################
nagios4-4.4.6/tap/aclocal.m4-2926-	"file_magic "*)
nagios4-4.4.6/tap/aclocal.m4:2927:	  file_magic_regex="`expr \"$deplibs_check_method\" : \"file_magic \(.*\)\"`"
nagios4-4.4.6/tap/aclocal.m4-2928-	  MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
##############################################
nagios4-4.4.6/tap/aclocal.m4-2998-    # gcc leaves a trailing carriage return which upsets mingw
nagios4-4.4.6/tap/aclocal.m4:2999:    ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;;
nagios4-4.4.6/tap/aclocal.m4-3000-  *)
nagios4-4.4.6/tap/aclocal.m4:3001:    ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;
nagios4-4.4.6/tap/aclocal.m4-3002-  esac
##############################################
nagios4-4.4.6/tap/aclocal.m4-3007-      # Canonicalize the pathname of ld
nagios4-4.4.6/tap/aclocal.m4:3008:      ac_prog=`echo $ac_prog| $SED 's%\\\\%/%g'`
nagios4-4.4.6/tap/aclocal.m4-3009-      while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do
nagios4-4.4.6/tap/aclocal.m4:3010:	ac_prog=`echo $ac_prog| $SED "s%$re_direlt%/%"`
nagios4-4.4.6/tap/aclocal.m4-3011-      done
##############################################
nagios4-4.4.6/tap/aclocal.m4-3038-      # Break only if it was the GNU/non-GNU ld that we prefer.
nagios4-4.4.6/tap/aclocal.m4:3039:      case `"$lt_cv_path_LD" -v 2>&1 </dev/null` in
nagios4-4.4.6/tap/aclocal.m4-3040-      *GNU* | *'with BFD'*)
##############################################
nagios4-4.4.6/tap/aclocal.m4-3069-[# I'd rather use --version here, but apparently some GNU ld's only accept -v.
nagios4-4.4.6/tap/aclocal.m4:3070:case `$LD -v 2>&1 </dev/null` in
nagios4-4.4.6/tap/aclocal.m4-3071-*GNU* | *'with BFD'*)
##############################################
nagios4-4.4.6/tap/aclocal.m4-3232-openbsd*)
nagios4-4.4.6/tap/aclocal.m4:3233:  if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
nagios4-4.4.6/tap/aclocal.m4-3234-    lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|\.so|_pic\.a)$'
##############################################
nagios4-4.4.6/tap/aclocal.m4-3305-      # Tru64's nm complains that /dev/null is an invalid object file
nagios4-4.4.6/tap/aclocal.m4:3306:      case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in
nagios4-4.4.6/tap/aclocal.m4-3307-      */dev/null* | *'Invalid file or object type'*)
##############################################
nagios4-4.4.6/tap/aclocal.m4-3311-      *)
nagios4-4.4.6/tap/aclocal.m4:3312:	case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in
nagios4-4.4.6/tap/aclocal.m4-3313-	*/dev/null*)
##############################################
nagios4-4.4.6/tap/aclocal.m4-3524-if test -n "$_LT_AC_TAGVAR(lt_prog_cc_shlib, $1)"; then
nagios4-4.4.6/tap/aclocal.m4:3525:  AC_MSG_WARN([`$CC' requires `$_LT_AC_TAGVAR(lt_prog_cc_shlib, $1)' to build shared libraries])
nagios4-4.4.6/tap/aclocal.m4:3526:  if echo "$old_CC $old_CFLAGS " | grep "[[ 	]]$_LT_AC_TAGVAR(lt_prog_cc_shlib, $1)[[ 	]]" >/dev/null; then :
nagios4-4.4.6/tap/aclocal.m4-3527-  else
##############################################
nagios4-4.4.6/tap/aclocal.m4-3665-_LT_AC_TAGVAR(compiler, $1)=$CC
nagios4-4.4.6/tap/aclocal.m4:3666:cc_basename=`$echo X"$compiler" | $Xsed -e 's%^.*/%%'`
nagios4-4.4.6/tap/aclocal.m4-3667-
##############################################
nagios4-4.4.6/tap/aclocal.m4-3695-    # ancient GNU ld didn't support --whole-archive et. al.
nagios4-4.4.6/tap/aclocal.m4:3696:    if eval "`$CC -print-prog-name=ld` --help 2>&1" | \
nagios4-4.4.6/tap/aclocal.m4-3697-	grep 'no-whole-archive' > /dev/null; then
##############################################
nagios4-4.4.6/tap/aclocal.m4-3775-      # below for broken collect2 doesn't work under 4.3+
nagios4-4.4.6/tap/aclocal.m4:3776:	collect2name=`${CC} -print-prog-name=collect2`
nagios4-4.4.6/tap/aclocal.m4-3777-	if test -f "$collect2name" && \
##############################################
nagios4-4.4.6/tap/aclocal.m4-3819-
nagios4-4.4.6/tap/aclocal.m4:3820:      _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC"' -o $output_objdir/$soname $libobjs $deplibs $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$no_entry_flag \${wl}$exp_sym_flag:\$export_symbols $shared_flag"
nagios4-4.4.6/tap/aclocal.m4-3821-     else
##############################################
nagios4-4.4.6/tap/aclocal.m4-3865-      # is EXPORTS), use it as is; otherwise, prepend...
nagios4-4.4.6/tap/aclocal.m4:3866:      _LT_AC_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then
nagios4-4.4.6/tap/aclocal.m4-3867-	cp $export_symbols $output_objdir/$soname.def;
##############################################
nagios4-4.4.6/tap/aclocal.m4-3926-         output_verbose_link_cmd='echo'
nagios4-4.4.6/tap/aclocal.m4:3927:          _LT_AC_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj ${wl}-single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $verstring'
nagios4-4.4.6/tap/aclocal.m4-3928-          _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags'
##############################################
nagios4-4.4.6/tap/aclocal.m4-3994-      # dependencies.
nagios4-4.4.6/tap/aclocal.m4:3995:      output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | grep "[-]L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list'
nagios4-4.4.6/tap/aclocal.m4-3996-      ;;
##############################################
nagios4-4.4.6/tap/aclocal.m4-4066-	# dependencies.
nagios4-4.4.6/tap/aclocal.m4:4067:	output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | grep "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list'
nagios4-4.4.6/tap/aclocal.m4-4068-	;;
##############################################
nagios4-4.4.6/tap/aclocal.m4-4091-	# SGI C++
nagios4-4.4.6/tap/aclocal.m4:4092:	_LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${objdir}/so_locations -o $lib'
nagios4-4.4.6/tap/aclocal.m4-4093-
##############################################
nagios4-4.4.6/tap/aclocal.m4-4102-	  if test "$with_gnu_ld" = no; then
nagios4-4.4.6/tap/aclocal.m4:4103:	    _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${objdir}/so_locations -o $lib'
nagios4-4.4.6/tap/aclocal.m4-4104-	  else
nagios4-4.4.6/tap/aclocal.m4:4105:	    _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` -o $lib'
nagios4-4.4.6/tap/aclocal.m4-4106-	  fi
##############################################
nagios4-4.4.6/tap/aclocal.m4-4121-	# to its proper name (with version) after linking.
nagios4-4.4.6/tap/aclocal.m4:4122:	_LT_AC_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib'
nagios4-4.4.6/tap/aclocal.m4:4123:	_LT_AC_TAGVAR(archive_expsym_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib ${wl}-retain-symbols-file,$export_symbols; mv \$templib $lib'
nagios4-4.4.6/tap/aclocal.m4-4124-	# Commands to make compiler produce verbose output that lists
##############################################
nagios4-4.4.6/tap/aclocal.m4-4131-	# dependencies.
nagios4-4.4.6/tap/aclocal.m4:4132:	output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | grep "ld"`; rm -f libconftest$shared_ext; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list'
nagios4-4.4.6/tap/aclocal.m4-4133-
##############################################
nagios4-4.4.6/tap/aclocal.m4-4146-	# earlier do not add the objects themselves.
nagios4-4.4.6/tap/aclocal.m4:4147:	case `$CC -V 2>&1` in
nagios4-4.4.6/tap/aclocal.m4-4148-	*"Version 7."*)
##############################################
nagios4-4.4.6/tap/aclocal.m4-4178-	# dependencies.
nagios4-4.4.6/tap/aclocal.m4:4179:	output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list'
nagios4-4.4.6/tap/aclocal.m4-4180-	;;
##############################################
nagios4-4.4.6/tap/aclocal.m4-4222-    _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
nagios4-4.4.6/tap/aclocal.m4:4223:    if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
nagios4-4.4.6/tap/aclocal.m4-4224-      _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file,$export_symbols -o $lib'
##############################################
nagios4-4.4.6/tap/aclocal.m4-4237-	# to its proper name (with version) after linking.
nagios4-4.4.6/tap/aclocal.m4:4238:	_LT_AC_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib'
nagios4-4.4.6/tap/aclocal.m4-4239-
##############################################
nagios4-4.4.6/tap/aclocal.m4-4254-	_LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*'
nagios4-4.4.6/tap/aclocal.m4:4255:	_LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && echo ${wl}-set_version $verstring` -update_registry ${objdir}/so_locations -o $lib'
nagios4-4.4.6/tap/aclocal.m4-4256-
##############################################
nagios4-4.4.6/tap/aclocal.m4-4267-	# dependencies.
nagios4-4.4.6/tap/aclocal.m4:4268:	output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld" | grep -v "ld:"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list'
nagios4-4.4.6/tap/aclocal.m4-4269-	;;
##############################################
nagios4-4.4.6/tap/aclocal.m4-4272-	  _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*'
nagios4-4.4.6/tap/aclocal.m4:4273:	  _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${objdir}/so_locations -o $lib'
nagios4-4.4.6/tap/aclocal.m4-4274-
##############################################
nagios4-4.4.6/tap/aclocal.m4-4297-	# to its proper name (with version) after linking.
nagios4-4.4.6/tap/aclocal.m4:4298:	_LT_AC_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib'
nagios4-4.4.6/tap/aclocal.m4-4299-
##############################################
nagios4-4.4.6/tap/aclocal.m4-4313-	_LT_AC_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*'
nagios4-4.4.6/tap/aclocal.m4:4314:	_LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${objdir}/so_locations -o $lib'
nagios4-4.4.6/tap/aclocal.m4:4315:	_LT_AC_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~
nagios4-4.4.6/tap/aclocal.m4-4316-	  echo "-hidden">> $lib.exp~
nagios4-4.4.6/tap/aclocal.m4:4317:	  $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname -Wl,-input -Wl,$lib.exp  `test -n "$verstring" && echo -set_version	$verstring` -update_registry $objdir/so_locations -o $lib~
nagios4-4.4.6/tap/aclocal.m4-4318-	  $rm $lib.exp'
##############################################
nagios4-4.4.6/tap/aclocal.m4-4330-	# dependencies.
nagios4-4.4.6/tap/aclocal.m4:4331:	output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld" | grep -v "ld:"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list'
nagios4-4.4.6/tap/aclocal.m4-4332-	;;
##############################################
nagios4-4.4.6/tap/aclocal.m4-4335-	  _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*'
nagios4-4.4.6/tap/aclocal.m4:4336:	 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${objdir}/so_locations -o $lib'
nagios4-4.4.6/tap/aclocal.m4-4337-
##############################################
nagios4-4.4.6/tap/aclocal.m4-4418-	# dependencies.
nagios4-4.4.6/tap/aclocal.m4:4419:	output_verbose_link_cmd='templist=`$CC -G $CFLAGS -v conftest.$objext 2>&1 | grep "\-[[LR]]"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list'
nagios4-4.4.6/tap/aclocal.m4-4420-
##############################################
nagios4-4.4.6/tap/aclocal.m4-4575-  # eval without this substitution.
nagios4-4.4.6/tap/aclocal.m4:4576:  output_verbose_link_cmd="`$echo \"X$output_verbose_link_cmd\" | $Xsed -e \"$no_glob_subst\"`"
nagios4-4.4.6/tap/aclocal.m4-4577-
nagios4-4.4.6/tap/aclocal.m4:4578:  for p in `eval $output_verbose_link_cmd`; do
nagios4-4.4.6/tap/aclocal.m4-4579-    case $p in
##############################################
nagios4-4.4.6/tap/aclocal.m4-4706-_LT_AC_TAGVAR(compiler, $1)=$CC
nagios4-4.4.6/tap/aclocal.m4:4707:cc_basename=`$echo X"$compiler" | $Xsed -e 's%^.*/%%'`
nagios4-4.4.6/tap/aclocal.m4-4708-
##############################################
nagios4-4.4.6/tap/aclocal.m4-4925-      # Double-quote double-evaled strings.
nagios4-4.4.6/tap/aclocal.m4:4926:      eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\""
nagios4-4.4.6/tap/aclocal.m4-4927-      ;;
nagios4-4.4.6/tap/aclocal.m4-4928-    *)
nagios4-4.4.6/tap/aclocal.m4:4929:      eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$sed_quote_subst\"\`\\\""
nagios4-4.4.6/tap/aclocal.m4-4930-      ;;
##############################################
nagios4-4.4.6/tap/aclocal.m4-4935-  *'\[$]0 --fallback-echo"')
nagios4-4.4.6/tap/aclocal.m4:4936:    lt_echo=`$echo "X$lt_echo" | $Xsed -e 's/\\\\\\\[$]0 --fallback-echo"[$]/[$]0 --fallback-echo"/'`
nagios4-4.4.6/tap/aclocal.m4-4937-    ;;
##############################################
nagios4-4.4.6/tap/aclocal.m4-4950-
nagios4-4.4.6/tap/aclocal.m4:4951:# `$echo "$cfgfile" | sed 's%^.*/%%'` - Provide generalized library-building support services.
nagios4-4.4.6/tap/aclocal.m4-4952-# Generated automatically by $PROGRAM (GNU $PACKAGE $VERSION$TIMESTAMP)
##############################################
nagios4-4.4.6/tap/aclocal.m4-5323-  # libtool script then.
nagios4-4.4.6/tap/aclocal.m4:5324:  ltmain_in=`echo $ltmain | sed -e 's/\.sh$/.in/'`
nagios4-4.4.6/tap/aclocal.m4-5325-  if test -f "$ltmain_in"; then
##############################################
nagios4-4.4.6/tap/aclocal.m4-5422-# If we're using GNU nm, then use its standard symbol codes.
nagios4-4.4.6/tap/aclocal.m4:5423:case `$NM -V 2>&1` in
nagios4-4.4.6/tap/aclocal.m4-5424-*GNU* | *'with BFD'*)
##############################################
nagios4-4.4.6/tap/aclocal.m4-5452-    nlist=conftest.nm
nagios4-4.4.6/tap/aclocal.m4:5453:    if AC_TRY_EVAL(NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $nlist) && test -s "$nlist"; then
nagios4-4.4.6/tap/aclocal.m4-5454-      # Try sorting and uniquifying the output.
##############################################
nagios4-4.4.6/tap/aclocal.m4-6163-	# is EXPORTS), use it as is; otherwise, prepend...
nagios4-4.4.6/tap/aclocal.m4:6164:	_LT_AC_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then
nagios4-4.4.6/tap/aclocal.m4-6165-	  cp $export_symbols $output_objdir/$soname.def;
##############################################
nagios4-4.4.6/tap/aclocal.m4-6218-      supports_anon_versioning=no
nagios4-4.4.6/tap/aclocal.m4:6219:      case `$LD -v 2>/dev/null` in
nagios4-4.4.6/tap/aclocal.m4-6220-        *\ [01].* | *\ 2.[[0-9]].* | *\ 2.10.*) ;; # catch versions < 2.11
##############################################
nagios4-4.4.6/tap/aclocal.m4-6324-	# below for broken collect2 doesn't work under 4.3+
nagios4-4.4.6/tap/aclocal.m4:6325:	  collect2name=`${CC} -print-prog-name=collect2`
nagios4-4.4.6/tap/aclocal.m4-6326-	  if test -f "$collect2name" && \
##############################################
nagios4-4.4.6/tap/aclocal.m4-6367-       _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath"
nagios4-4.4.6/tap/aclocal.m4:6368:	_LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC"' -o $output_objdir/$soname $libobjs $deplibs $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$no_entry_flag \${wl}$exp_sym_flag:\$export_symbols $shared_flag"
nagios4-4.4.6/tap/aclocal.m4-6369-       else
##############################################
nagios4-4.4.6/tap/aclocal.m4-6416-      # FIXME: Setting linknames here is a bad hack.
nagios4-4.4.6/tap/aclocal.m4:6417:      _LT_AC_TAGVAR(archive_cmds, $1)='$CC -o $lib $libobjs $compiler_flags `echo "$deplibs" | $SED -e '\''s/ -lc$//'\''` -link -dll~linknames='
nagios4-4.4.6/tap/aclocal.m4-6418-      # The linker will automatically build a .lib file if we build a DLL.
##############################################
nagios4-4.4.6/tap/aclocal.m4-6421-      _LT_AC_TAGVAR(old_archive_cmds, $1)='lib /OUT:$oldlib$oldobjs$old_deplibs'
nagios4-4.4.6/tap/aclocal.m4:6422:      fix_srcfile_path='`cygpath -w "$srcfile"`'
nagios4-4.4.6/tap/aclocal.m4-6423-      _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=yes
##############################################
nagios4-4.4.6/tap/aclocal.m4-6462-         output_verbose_link_cmd='echo'
nagios4-4.4.6/tap/aclocal.m4:6463:         _LT_AC_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $verstring'
nagios4-4.4.6/tap/aclocal.m4-6464-         _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags'
##############################################
nagios4-4.4.6/tap/aclocal.m4-6582-      if test "$GCC" = yes; then
nagios4-4.4.6/tap/aclocal.m4:6583:	_LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
nagios4-4.4.6/tap/aclocal.m4-6584-      else
nagios4-4.4.6/tap/aclocal.m4:6585:	_LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib'
nagios4-4.4.6/tap/aclocal.m4-6586-	_LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='-rpath $libdir'
##############################################
nagios4-4.4.6/tap/aclocal.m4-6614-      _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
nagios4-4.4.6/tap/aclocal.m4:6615:      if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
nagios4-4.4.6/tap/aclocal.m4-6616-	_LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'
##############################################
nagios4-4.4.6/tap/aclocal.m4-6644-	_LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*'
nagios4-4.4.6/tap/aclocal.m4:6645:	_LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
nagios4-4.4.6/tap/aclocal.m4-6646-      else
nagios4-4.4.6/tap/aclocal.m4-6647-	_LT_AC_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*'
nagios4-4.4.6/tap/aclocal.m4:6648:	_LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib'
nagios4-4.4.6/tap/aclocal.m4-6649-      fi
##############################################
nagios4-4.4.6/tap/aclocal.m4-6656-	_LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*'
nagios4-4.4.6/tap/aclocal.m4:6657:	_LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
nagios4-4.4.6/tap/aclocal.m4-6658-	_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
##############################################
nagios4-4.4.6/tap/aclocal.m4-6660-	_LT_AC_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*'
nagios4-4.4.6/tap/aclocal.m4:6661:	_LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib'
nagios4-4.4.6/tap/aclocal.m4:6662:	_LT_AC_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; echo "-hidden">> $lib.exp~
nagios4-4.4.6/tap/aclocal.m4:6663:	$LD -shared${allow_undefined_flag} -input $lib.exp $linker_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${objdir}/so_locations -o $lib~$rm $lib.exp'
nagios4-4.4.6/tap/aclocal.m4-6664-
##############################################
nagios4-4.4.6/tap/aclocal.m4-6837-        _LT_AC_TAGVAR(allow_undefined_flag, $1)=
nagios4-4.4.6/tap/aclocal.m4:6838:        if AC_TRY_EVAL(_LT_AC_TAGVAR(archive_cmds, $1) 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1)
nagios4-4.4.6/tap/aclocal.m4-6839-        then
##############################################
nagios4-4.4.6/tap/aclocal.m4-6973-    test $lt_ac_count -gt 10 && break
nagios4-4.4.6/tap/aclocal.m4:6974:    lt_ac_count=`expr $lt_ac_count + 1`
nagios4-4.4.6/tap/aclocal.m4-6975-    if test $lt_ac_count -gt $lt_ac_max; then
##############################################
nagios4-4.4.6/tap/compile-105-# Name of file we expect compiler to create.
nagios4-4.4.6/tap/compile:106:cofile=`echo "$cfile" | sed -e 's|^.*/||' -e 's/\.c$/.o/'`
nagios4-4.4.6/tap/compile-107-
##############################################
nagios4-4.4.6/tap/compile-111-# object file name, since that is what matters with a parallel build.
nagios4-4.4.6/tap/compile:112:lockdir=`echo "$cofile" | sed -e 's|[/.-]|_|g'`.d
nagios4-4.4.6/tap/compile-113-while true; do
##############################################
nagios4-4.4.6/tap/config.guess-37-
nagios4-4.4.6/tap/config.guess:38:me=`echo "$0" | sed -e 's,.*/,,'`
nagios4-4.4.6/tap/config.guess-39-
##############################################
nagios4-4.4.6/tap/config.guess-106-: ${TMPDIR=/tmp} ;
nagios4-4.4.6/tap/config.guess:107: { tmp=`(umask 077 && mktemp -d -q "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } ||
nagios4-4.4.6/tap/config.guess-108- { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } ||
##############################################
nagios4-4.4.6/tap/config.guess-191-	    *)
nagios4-4.4.6/tap/config.guess:192:		release=`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'`
nagios4-4.4.6/tap/config.guess-193-		;;
##############################################
nagios4-4.4.6/tap/config.guess-240-	if test $UNAME_RELEASE = "V4.0"; then
nagios4-4.4.6/tap/config.guess:241:		UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'`
nagios4-4.4.6/tap/config.guess-242-	fi
##############################################
nagios4-4.4.6/tap/config.guess-246-	# types through head -n 1, so we only detect the type of CPU 0.
nagios4-4.4.6/tap/config.guess:247:	ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^  The alpha \(.*\) processor.*$/\1/p' | head -n 1`
nagios4-4.4.6/tap/config.guess-248-	case "$ALPHA_CPU_TYPE" in
##############################################
nagios4-4.4.6/tap/config.guess-283-	# 1.2 uses "1.2" for uname -r.
nagios4-4.4.6/tap/config.guess:284:	echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[VTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'`
nagios4-4.4.6/tap/config.guess-285-	exit 0 ;;
##############################################
nagios4-4.4.6/tap/config.guess-334-    sun4H:SunOS:5.*:*)
nagios4-4.4.6/tap/config.guess:335:	echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
nagios4-4.4.6/tap/config.guess-336-	exit 0 ;;
nagios4-4.4.6/tap/config.guess-337-    sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*)
nagios4-4.4.6/tap/config.guess:338:	echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
nagios4-4.4.6/tap/config.guess-339-	exit 0 ;;
nagios4-4.4.6/tap/config.guess-340-    i86pc:SunOS:5.*:*)
nagios4-4.4.6/tap/config.guess:341:	echo i386-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
nagios4-4.4.6/tap/config.guess-342-	exit 0 ;;
##############################################
nagios4-4.4.6/tap/config.guess-346-	# it's likely to be more like Solaris than SunOS4.
nagios4-4.4.6/tap/config.guess:347:	echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
nagios4-4.4.6/tap/config.guess-348-	exit 0 ;;
##############################################
nagios4-4.4.6/tap/config.guess-355-	# Japanese Language versions have a version number like `4.1.3-JL'.
nagios4-4.4.6/tap/config.guess:356:	echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'`
nagios4-4.4.6/tap/config.guess-357-	exit 0 ;;
##############################################
nagios4-4.4.6/tap/config.guess-361-    sun*:*:4.2BSD:*)
nagios4-4.4.6/tap/config.guess:362:	UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null`
nagios4-4.4.6/tap/config.guess-363-	test "x${UNAME_RELEASE}" = "x" && UNAME_RELEASE=3
##############################################
nagios4-4.4.6/tap/config.guess-440-	$CC_FOR_BUILD -o $dummy $dummy.c \
nagios4-4.4.6/tap/config.guess:441:	  && $dummy `echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` \
nagios4-4.4.6/tap/config.guess-442-	  && exit 0
##############################################
nagios4-4.4.6/tap/config.guess-495-    *:IRIX*:*:*)
nagios4-4.4.6/tap/config.guess:496:	echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'`
nagios4-4.4.6/tap/config.guess-497-	exit 0 ;;
##############################################
nagios4-4.4.6/tap/config.guess-534-    *:AIX:*:[45])
nagios4-4.4.6/tap/config.guess:535:	IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'`
nagios4-4.4.6/tap/config.guess-536-	if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then
##############################################
nagios4-4.4.6/tap/config.guess-569-    9000/[34678]??:HP-UX:*:*)
nagios4-4.4.6/tap/config.guess:570:	HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'`
nagios4-4.4.6/tap/config.guess-571-	case "${UNAME_MACHINE}" in
##############################################
nagios4-4.4.6/tap/config.guess-623-EOF
nagios4-4.4.6/tap/config.guess:624:		    (CCOPTS= $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy`
nagios4-4.4.6/tap/config.guess-625-		    test -z "$HP_ARCH" && HP_ARCH=hppa
##############################################
nagios4-4.4.6/tap/config.guess-641-    ia64:HP-UX:*:*)
nagios4-4.4.6/tap/config.guess:642:	HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'`
nagios4-4.4.6/tap/config.guess-643-	echo ia64-hp-hpux${HPUX_REV}
##############################################
nagios4-4.4.6/tap/config.guess-741-        FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'`
nagios4-4.4.6/tap/config.guess:742:        FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'`
nagios4-4.4.6/tap/config.guess-743-        echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}"
##############################################
nagios4-4.4.6/tap/config.guess-764-EOF
nagios4-4.4.6/tap/config.guess:765:	eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^LIBC=`
nagios4-4.4.6/tap/config.guess-766-	# GNU/FreeBSD systems have a "k" prefix to indicate we are using
##############################################
nagios4-4.4.6/tap/config.guess-768-	case ${LIBC} in gnu) kernel_only='k' ;; esac
nagios4-4.4.6/tap/config.guess:769:	echo ${UNAME_MACHINE}-unknown-${kernel_only}freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`${LIBC:+-$LIBC}
nagios4-4.4.6/tap/config.guess-770-	exit 0 ;;
##############################################
nagios4-4.4.6/tap/config.guess-798-    prep*:SunOS:5.*:*)
nagios4-4.4.6/tap/config.guess:799:	echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
nagios4-4.4.6/tap/config.guess-800-	exit 0 ;;
nagios4-4.4.6/tap/config.guess-801-    *:GNU:*:*)
nagios4-4.4.6/tap/config.guess:802:	echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'`
nagios4-4.4.6/tap/config.guess-803-	exit 0 ;;
##############################################
nagios4-4.4.6/tap/config.guess-834-EOF
nagios4-4.4.6/tap/config.guess:835:	eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^CPU=`
nagios4-4.4.6/tap/config.guess-836-	test x"${CPU}" != x && echo "${CPU}-unknown-linux-gnu" && exit 0
##############################################
nagios4-4.4.6/tap/config.guess-853-EOF
nagios4-4.4.6/tap/config.guess:854:	eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^CPU=`
nagios4-4.4.6/tap/config.guess-855-	test x"${CPU}" != x && echo "${CPU}-unknown-linux-gnu" && exit 0
##############################################
nagios4-4.4.6/tap/config.guess-951-EOF
nagios4-4.4.6/tap/config.guess:952:	eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^LIBC=`
nagios4-4.4.6/tap/config.guess-953-	test x"${LIBC}" != x && echo "${UNAME_MACHINE}-pc-linux-${LIBC}" && exit 0
##############################################
nagios4-4.4.6/tap/config.guess-987-    i*86:*:4.*:* | i*86:SYSTEM_V:4.*:*)
nagios4-4.4.6/tap/config.guess:988:	UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'`
nagios4-4.4.6/tap/config.guess-989-	if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then
##############################################
nagios4-4.4.6/tap/config.sub-54-
nagios4-4.4.6/tap/config.sub:55:me=`echo "$0" | sed -e 's,.*/,,'`
nagios4-4.4.6/tap/config.sub-56-
##############################################
nagios4-4.4.6/tap/config.sub-118-# Here we must recognize all the valid KERNEL-OS combinations.
nagios4-4.4.6/tap/config.sub:119:maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'`
nagios4-4.4.6/tap/config.sub-120-case $maybe_os in
##############################################
nagios4-4.4.6/tap/config.sub-122-    os=-$maybe_os
nagios4-4.4.6/tap/config.sub:123:    basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`
nagios4-4.4.6/tap/config.sub-124-    ;;
nagios4-4.4.6/tap/config.sub-125-  *)
nagios4-4.4.6/tap/config.sub:126:    basic_machine=`echo $1 | sed 's/-[^-]*$//'`
nagios4-4.4.6/tap/config.sub-127-    if [ $basic_machine != $1 ]
nagios4-4.4.6/tap/config.sub:128:    then os=`echo $1 | sed 's/.*-/-/'`
nagios4-4.4.6/tap/config.sub-129-    else os=; fi
##############################################
nagios4-4.4.6/tap/config.sub-173-		os=-sco3.2v5
nagios4-4.4.6/tap/config.sub:174:		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
nagios4-4.4.6/tap/config.sub-175-		;;
##############################################
nagios4-4.4.6/tap/config.sub-177-		os=-sco3.2v4
nagios4-4.4.6/tap/config.sub:178:		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
nagios4-4.4.6/tap/config.sub-179-		;;
nagios4-4.4.6/tap/config.sub-180-	-sco3.2.[4-9]*)
nagios4-4.4.6/tap/config.sub:181:		os=`echo $os | sed -e 's/sco3.2./sco3.2v/'`
nagios4-4.4.6/tap/config.sub:182:		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
nagios4-4.4.6/tap/config.sub-183-		;;
##############################################
nagios4-4.4.6/tap/config.sub-185-		# Don't forget version if it is 3.2v4 or newer.
nagios4-4.4.6/tap/config.sub:186:		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
nagios4-4.4.6/tap/config.sub-187-		;;
##############################################
nagios4-4.4.6/tap/config.sub-189-		os=-sco3.2v2
nagios4-4.4.6/tap/config.sub:190:		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
nagios4-4.4.6/tap/config.sub-191-		;;
nagios4-4.4.6/tap/config.sub-192-	-udk*)
nagios4-4.4.6/tap/config.sub:193:		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
nagios4-4.4.6/tap/config.sub-194-		;;
##############################################
nagios4-4.4.6/tap/config.sub-196-		os=-isc2.2
nagios4-4.4.6/tap/config.sub:197:		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
nagios4-4.4.6/tap/config.sub-198-		;;
##############################################
nagios4-4.4.6/tap/config.sub-202-	-isc*)
nagios4-4.4.6/tap/config.sub:203:		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
nagios4-4.4.6/tap/config.sub-204-		;;
##############################################
nagios4-4.4.6/tap/config.sub-208-	-ptx*)
nagios4-4.4.6/tap/config.sub:209:		basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'`
nagios4-4.4.6/tap/config.sub-210-		;;
nagios4-4.4.6/tap/config.sub-211-	-windowsnt*)
nagios4-4.4.6/tap/config.sub:212:		os=`echo $os | sed -e 's/windowsnt/winnt/'`
nagios4-4.4.6/tap/config.sub-213-		;;
##############################################
nagios4-4.4.6/tap/config.sub-286-	*-*-*)
nagios4-4.4.6/tap/config.sub:287:		echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2
nagios4-4.4.6/tap/config.sub-288-		exit 1
##############################################
nagios4-4.4.6/tap/config.sub-578-	i*86v32)
nagios4-4.4.6/tap/config.sub:579:		basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
nagios4-4.4.6/tap/config.sub-580-		os=-sysv32
##############################################
nagios4-4.4.6/tap/config.sub-582-	i*86v4*)
nagios4-4.4.6/tap/config.sub:583:		basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
nagios4-4.4.6/tap/config.sub-584-		os=-sysv4
##############################################
nagios4-4.4.6/tap/config.sub-586-	i*86v)
nagios4-4.4.6/tap/config.sub:587:		basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
nagios4-4.4.6/tap/config.sub-588-		os=-sysv
##############################################
nagios4-4.4.6/tap/config.sub-590-	i*86sol2)
nagios4-4.4.6/tap/config.sub:591:		basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
nagios4-4.4.6/tap/config.sub-592-		os=-solaris2
##############################################
nagios4-4.4.6/tap/config.sub-638-	mips3*-*)
nagios4-4.4.6/tap/config.sub:639:		basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`
nagios4-4.4.6/tap/config.sub-640-		;;
nagios4-4.4.6/tap/config.sub-641-	mips3*)
nagios4-4.4.6/tap/config.sub:642:		basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown
nagios4-4.4.6/tap/config.sub-643-		;;
##############################################
nagios4-4.4.6/tap/config.sub-780-	pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*)
nagios4-4.4.6/tap/config.sub:781:		basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'`
nagios4-4.4.6/tap/config.sub-782-		;;
nagios4-4.4.6/tap/config.sub-783-	pentiumpro-* | p6-* | 6x86-* | athlon-*)
nagios4-4.4.6/tap/config.sub:784:		basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'`
nagios4-4.4.6/tap/config.sub-785-		;;
nagios4-4.4.6/tap/config.sub-786-	pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*)
nagios4-4.4.6/tap/config.sub:787:		basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'`
nagios4-4.4.6/tap/config.sub-788-		;;
nagios4-4.4.6/tap/config.sub-789-	pentium4-*)
nagios4-4.4.6/tap/config.sub:790:		basic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'`
nagios4-4.4.6/tap/config.sub-791-		;;
##############################################
nagios4-4.4.6/tap/config.sub-798-		;;
nagios4-4.4.6/tap/config.sub:799:	ppc-*)	basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'`
nagios4-4.4.6/tap/config.sub-800-		;;
##############################################
nagios4-4.4.6/tap/config.sub-804-	ppcle-* | powerpclittle-*)
nagios4-4.4.6/tap/config.sub:805:		basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'`
nagios4-4.4.6/tap/config.sub-806-		;;
##############################################
nagios4-4.4.6/tap/config.sub-808-		;;
nagios4-4.4.6/tap/config.sub:809:	ppc64-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'`
nagios4-4.4.6/tap/config.sub-810-		;;
##############################################
nagios4-4.4.6/tap/config.sub-814-	ppc64le-* | powerpc64little-*)
nagios4-4.4.6/tap/config.sub:815:		basic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-//'`
nagios4-4.4.6/tap/config.sub-816-		;;
##############################################
nagios4-4.4.6/tap/config.sub-1079-	*)
nagios4-4.4.6/tap/config.sub:1080:		echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2
nagios4-4.4.6/tap/config.sub-1081-		exit 1
##############################################
nagios4-4.4.6/tap/config.sub-1087-	*-digital*)
nagios4-4.4.6/tap/config.sub:1088:		basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'`
nagios4-4.4.6/tap/config.sub-1089-		;;
nagios4-4.4.6/tap/config.sub-1090-	*-commodore*)
nagios4-4.4.6/tap/config.sub:1091:		basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'`
nagios4-4.4.6/tap/config.sub-1092-		;;
##############################################
nagios4-4.4.6/tap/config.sub-1105-	-solaris1 | -solaris1.*)
nagios4-4.4.6/tap/config.sub:1106:		os=`echo $os | sed -e 's|solaris1|sunos4|'`
nagios4-4.4.6/tap/config.sub-1107-		;;
##############################################
nagios4-4.4.6/tap/config.sub-1117-	-gnu/linux*)
nagios4-4.4.6/tap/config.sub:1118:		os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'`
nagios4-4.4.6/tap/config.sub-1119-		;;
##############################################
nagios4-4.4.6/tap/config.sub-1157-	-nto*)
nagios4-4.4.6/tap/config.sub:1158:		os=`echo $os | sed -e 's|nto|nto-qnx|'`
nagios4-4.4.6/tap/config.sub-1159-		;;
##############################################
nagios4-4.4.6/tap/config.sub-1164-	-mac*)
nagios4-4.4.6/tap/config.sub:1165:		os=`echo $os | sed -e 's|mac|macos|'`
nagios4-4.4.6/tap/config.sub-1166-		;;
nagios4-4.4.6/tap/config.sub-1167-	-linux*)
nagios4-4.4.6/tap/config.sub:1168:		os=`echo $os | sed -e 's|linux|linux-gnu|'`
nagios4-4.4.6/tap/config.sub-1169-		;;
nagios4-4.4.6/tap/config.sub-1170-	-sunos5*)
nagios4-4.4.6/tap/config.sub:1171:		os=`echo $os | sed -e 's|sunos5|solaris2|'`
nagios4-4.4.6/tap/config.sub-1172-		;;
nagios4-4.4.6/tap/config.sub-1173-	-sunos6*)
nagios4-4.4.6/tap/config.sub:1174:		os=`echo $os | sed -e 's|sunos6|solaris3|'`
nagios4-4.4.6/tap/config.sub-1175-		;;
##############################################
nagios4-4.4.6/tap/config.sub-1216-	-sinix5.*)
nagios4-4.4.6/tap/config.sub:1217:		os=`echo $os | sed -e 's|sinix|sysv|'`
nagios4-4.4.6/tap/config.sub-1218-		;;
##############################################
nagios4-4.4.6/tap/config.sub-1261-		# Get rid of the `-' at the beginning of $os.
nagios4-4.4.6/tap/config.sub:1262:		os=`echo $os | sed 's/[^-]*-//'`
nagios4-4.4.6/tap/config.sub:1263:		echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2
nagios4-4.4.6/tap/config.sub-1264-		exit 1
##############################################
nagios4-4.4.6/tap/config.sub-1491-		esac
nagios4-4.4.6/tap/config.sub:1492:		basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"`
nagios4-4.4.6/tap/config.sub-1493-		;;
##############################################
nagios4-4.4.6/tap/configure-43-do
nagios4-4.4.6/tap/configure:44:  if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then
nagios4-4.4.6/tap/configure-45-    eval $as_var=C; export $as_var
##############################################
nagios4-4.4.6/tap/configure-101-  as_lineno_2=$LINENO
nagios4-4.4.6/tap/configure:102:  as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null`
nagios4-4.4.6/tap/configure-103-  test "x$as_lineno_1" != "x$as_lineno_2" &&
##############################################
nagios4-4.4.6/tap/configure-140-  as_lineno_2=$LINENO
nagios4-4.4.6/tap/configure:141:  as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null`
nagios4-4.4.6/tap/configure-142-  test "x$as_lineno_1" != "x$as_lineno_2" &&
##############################################
nagios4-4.4.6/tap/configure-250-  # Remove one level of quotation (which was required for Make).
nagios4-4.4.6/tap/configure:251:  ECHO=`echo "$ECHO" | sed 's,\\\\\$\\$0,'$0','`
nagios4-4.4.6/tap/configure-252-  ;;
##############################################
nagios4-4.4.6/tap/configure-261-  :
nagios4-4.4.6/tap/configure:262:elif test "X`($echo '\t') 2>/dev/null`" = 'X\t' ; then
nagios4-4.4.6/tap/configure-263-  # Yippee, $echo works!
##############################################
nagios4-4.4.6/tap/configure-287-    # expected sizes: less than 2Kb, 1Kb, 512 bytes, 16 bytes, ...
nagios4-4.4.6/tap/configure:288:    if (echo_test_string="`eval $cmd`") 2>/dev/null &&
nagios4-4.4.6/tap/configure:289:       echo_test_string="`eval $cmd`" &&
nagios4-4.4.6/tap/configure-290-       (test "X$echo_test_string" = "X$echo_test_string") 2>/dev/null
##############################################
nagios4-4.4.6/tap/configure-296-
nagios4-4.4.6/tap/configure:297:if test "X`($echo '\t') 2>/dev/null`" = 'X\t' &&
nagios4-4.4.6/tap/configure:298:   echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` &&
nagios4-4.4.6/tap/configure-299-   test "X$echo_testing_string" = "X$echo_test_string"; then
##############################################
nagios4-4.4.6/tap/configure-311-    if (test -f $dir/echo || test -f $dir/echo$ac_exeext) &&
nagios4-4.4.6/tap/configure:312:       test "X`($dir/echo '\t') 2>/dev/null`" = 'X\t' &&
nagios4-4.4.6/tap/configure:313:       echo_testing_string=`($dir/echo "$echo_test_string") 2>/dev/null` &&
nagios4-4.4.6/tap/configure-314-       test "X$echo_testing_string" = "X$echo_test_string"; then
##############################################
nagios4-4.4.6/tap/configure-323-    if test "X`(print -r '\t') 2>/dev/null`" = 'X\t' &&
nagios4-4.4.6/tap/configure:324:       echo_testing_string=`(print -r "$echo_test_string") 2>/dev/null` &&
nagios4-4.4.6/tap/configure-325-       test "X$echo_testing_string" = "X$echo_test_string"; then
##############################################
nagios4-4.4.6/tap/configure-338-      echo='printf %s\n'
nagios4-4.4.6/tap/configure:339:      if test "X`($echo '\t') 2>/dev/null`" = 'X\t' &&
nagios4-4.4.6/tap/configure:340:	 echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` &&
nagios4-4.4.6/tap/configure-341-	 test "X$echo_testing_string" = "X$echo_test_string"; then
##############################################
nagios4-4.4.6/tap/configure-343-	:
nagios4-4.4.6/tap/configure:344:      elif echo_testing_string=`($ORIGINAL_CONFIG_SHELL "$0" --fallback-echo '\t') 2>/dev/null` &&
nagios4-4.4.6/tap/configure-345-	   test "X$echo_testing_string" = 'X\t' &&
nagios4-4.4.6/tap/configure:346:	   echo_testing_string=`($ORIGINAL_CONFIG_SHELL "$0" --fallback-echo "$echo_test_string") 2>/dev/null` &&
nagios4-4.4.6/tap/configure-347-	   test "X$echo_testing_string" = "X$echo_test_string"; then
##############################################
nagios4-4.4.6/tap/configure-352-	echo="$CONFIG_SHELL $0 --fallback-echo"
nagios4-4.4.6/tap/configure:353:      elif echo_testing_string=`($CONFIG_SHELL "$0" --fallback-echo '\t') 2>/dev/null` &&
nagios4-4.4.6/tap/configure-354-	   test "X$echo_testing_string" = 'X\t' &&
nagios4-4.4.6/tap/configure:355:	   echo_testing_string=`($CONFIG_SHELL "$0" --fallback-echo "$echo_test_string") 2>/dev/null` &&
nagios4-4.4.6/tap/configure-356-	   test "X$echo_testing_string" = "X$echo_test_string"; then
##############################################
nagios4-4.4.6/tap/configure-362-	for cmd in 'echo test' 'sed 2q "$0"' 'sed 10q "$0"' 'sed 20q "$0"' 'sed 50q "$0"'; do
nagios4-4.4.6/tap/configure:363:	  if (test "X$echo_test_string" = "X`eval $cmd`") 2>/dev/null
nagios4-4.4.6/tap/configure-364-	  then
##############################################
nagios4-4.4.6/tap/configure-370-	if test "$prev" != 'sed 50q "$0"'; then
nagios4-4.4.6/tap/configure:371:	  echo_test_string=`eval $prev`
nagios4-4.4.6/tap/configure-372-	  export echo_test_string
##############################################
nagios4-4.4.6/tap/configure-516-
nagios4-4.4.6/tap/configure:517:  ac_optarg=`expr "x$ac_option" : 'x[^=]*=\(.*\)'`
nagios4-4.4.6/tap/configure-518-
##############################################
nagios4-4.4.6/tap/configure-549-  -disable-* | --disable-*)
nagios4-4.4.6/tap/configure:550:    ac_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
nagios4-4.4.6/tap/configure-551-    # Reject names that are not valid shell variable names.
##############################################
nagios4-4.4.6/tap/configure-554-   { (exit 1); exit 1; }; }
nagios4-4.4.6/tap/configure:555:    ac_feature=`echo $ac_feature | sed 's/-/_/g'`
nagios4-4.4.6/tap/configure-556-    eval "enable_$ac_feature=no" ;;
##############################################
nagios4-4.4.6/tap/configure-558-  -enable-* | --enable-*)
nagios4-4.4.6/tap/configure:559:    ac_feature=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
nagios4-4.4.6/tap/configure-560-    # Reject names that are not valid shell variable names.
##############################################
nagios4-4.4.6/tap/configure-563-   { (exit 1); exit 1; }; }
nagios4-4.4.6/tap/configure:564:    ac_feature=`echo $ac_feature | sed 's/-/_/g'`
nagios4-4.4.6/tap/configure-565-    case $ac_option in
nagios4-4.4.6/tap/configure:566:      *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;;
nagios4-4.4.6/tap/configure-567-      *) ac_optarg=yes ;;
##############################################
nagios4-4.4.6/tap/configure-740-  -with-* | --with-*)
nagios4-4.4.6/tap/configure:741:    ac_package=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
nagios4-4.4.6/tap/configure-742-    # Reject names that are not valid shell variable names.
##############################################
nagios4-4.4.6/tap/configure-745-   { (exit 1); exit 1; }; }
nagios4-4.4.6/tap/configure:746:    ac_package=`echo $ac_package| sed 's/-/_/g'`
nagios4-4.4.6/tap/configure-747-    case $ac_option in
nagios4-4.4.6/tap/configure:748:      *=*) ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`;;
nagios4-4.4.6/tap/configure-749-      *) ac_optarg=yes ;;
##############################################
nagios4-4.4.6/tap/configure-753-  -without-* | --without-*)
nagios4-4.4.6/tap/configure:754:    ac_package=`expr "x$ac_option" : 'x-*without-\(.*\)'`
nagios4-4.4.6/tap/configure-755-    # Reject names that are not valid shell variable names.
##############################################
nagios4-4.4.6/tap/configure-758-   { (exit 1); exit 1; }; }
nagios4-4.4.6/tap/configure:759:    ac_package=`echo $ac_package | sed 's/-/_/g'`
nagios4-4.4.6/tap/configure-760-    eval "with_$ac_package=no" ;;
##############################################
nagios4-4.4.6/tap/configure-785-  *=*)
nagios4-4.4.6/tap/configure:786:    ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='`
nagios4-4.4.6/tap/configure-787-    # Reject names that are not valid shell variable names.
##############################################
nagios4-4.4.6/tap/configure-790-   { (exit 1); exit 1; }; }
nagios4-4.4.6/tap/configure:791:    ac_optarg=`echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"`
nagios4-4.4.6/tap/configure-792-    eval "$ac_envvar='$ac_optarg'"
##############################################
nagios4-4.4.6/tap/configure-806-if test -n "$ac_prev"; then
nagios4-4.4.6/tap/configure:807:  ac_option=--`echo $ac_prev | sed 's/_/-/g'`
nagios4-4.4.6/tap/configure-808-  { echo "$as_me: error: missing argument to $ac_option" >&2
##############################################
nagios4-4.4.6/tap/configure-814-do
nagios4-4.4.6/tap/configure:815:  eval ac_val=$`echo $ac_var`
nagios4-4.4.6/tap/configure-816-  case $ac_val in
##############################################
nagios4-4.4.6/tap/configure-826-do
nagios4-4.4.6/tap/configure:827:  eval ac_val=$`echo $ac_var`
nagios4-4.4.6/tap/configure-828-  case $ac_val in
##############################################
nagios4-4.4.6/tap/configure-893-   { (exit 1); exit 1; }; }
nagios4-4.4.6/tap/configure:894:srcdir=`echo "$srcdir" | sed 's%\([^\\/]\)[\\/]*$%\1%'`
nagios4-4.4.6/tap/configure-895-ac_env_build_alias_set=${build_alias+set}
##############################################
nagios4-4.4.6/tap/configure-984-By default, \`make install' will install all the files in
nagios4-4.4.6/tap/configure:985:\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc.  You can specify
nagios4-4.4.6/tap/configure:986:an installation prefix other than \`$ac_default_prefix' using \`--prefix',
nagios4-4.4.6/tap/configure-987-for instance \`--prefix=\$HOME'.
##############################################
nagios4-4.4.6/tap/configure-1074-if test "$ac_dir" != .; then
nagios4-4.4.6/tap/configure:1075:  ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'`
nagios4-4.4.6/tap/configure-1076-  # A "../" for each directory in $ac_dir_suffix.
nagios4-4.4.6/tap/configure:1077:  ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'`
nagios4-4.4.6/tap/configure-1078-else
##############################################
nagios4-4.4.6/tap/configure-1087-    else
nagios4-4.4.6/tap/configure:1088:       ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'`
nagios4-4.4.6/tap/configure-1089-    fi ;;
##############################################
nagios4-4.4.6/tap/configure-1243-    *" "*|*"	"*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\"\']*)
nagios4-4.4.6/tap/configure:1244:      ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
nagios4-4.4.6/tap/configure-1245-    esac
##############################################
nagios4-4.4.6/tap/configure-1315-    do
nagios4-4.4.6/tap/configure:1316:      eval ac_val=$`echo $ac_var`
nagios4-4.4.6/tap/configure-1317-      echo "$ac_var='"'"'$ac_val'"'"'"
##############################################
nagios4-4.4.6/tap/configure-1329-      do
nagios4-4.4.6/tap/configure:1330:	eval ac_val=$`echo $ac_var`
nagios4-4.4.6/tap/configure-1331-	echo "$ac_var='"'"'$ac_val'"'"'"
##############################################
nagios4-4.4.6/tap/configure-1436-    set,)
nagios4-4.4.6/tap/configure:1437:      { echo "$as_me:$LINENO: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
nagios4-4.4.6/tap/configure:1438:echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
nagios4-4.4.6/tap/configure-1439-      ac_cache_corrupted=: ;;
##############################################
nagios4-4.4.6/tap/configure-1459-    *" "*|*"	"*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\"\']*)
nagios4-4.4.6/tap/configure:1460:      ac_arg=$ac_var=`echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
nagios4-4.4.6/tap/configure-1461-    *) ac_arg=$ac_var=$ac_new_val ;;
##############################################
nagios4-4.4.6/tap/configure-1625-if (
nagios4-4.4.6/tap/configure:1626:   set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null`
nagios4-4.4.6/tap/configure-1627-   if test "$*" = "X"; then
nagios4-4.4.6/tap/configure-1628-      # -L didn't work.
nagios4-4.4.6/tap/configure:1629:      set X `ls -t $srcdir/configure conftest.file`
nagios4-4.4.6/tap/configure-1630-   fi
##############################################
nagios4-4.4.6/tap/configure-1669-_ACEOF
nagios4-4.4.6/tap/configure:1670:program_transform_name=`echo $program_transform_name | sed -f conftest.sed`
nagios4-4.4.6/tap/configure-1671-rm conftest.sed
##############################################
nagios4-4.4.6/tap/configure-1673-# expand $ac_aux_dir to an absolute path
nagios4-4.4.6/tap/configure:1674:am_aux_dir=`cd $ac_aux_dir && pwd`
nagios4-4.4.6/tap/configure-1675-
##############################################
nagios4-4.4.6/tap/configure-1760-echo $ECHO_N "checking whether ${MAKE-make} sets \$(MAKE)... $ECHO_C" >&6
nagios4-4.4.6/tap/configure:1761:set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y,:./+-,___p_,'`
nagios4-4.4.6/tap/configure-1762-if eval "test \"\${ac_cv_prog_make_${ac_make}_set+set}\" = set"; then
##############################################
nagios4-4.4.6/tap/configure-1769-# GNU make sometimes prints "make[1]: Entering...", which would confuse us.
nagios4-4.4.6/tap/configure:1770:eval `${MAKE-make} -f conftest.make 2>/dev/null | grep temp=`
nagios4-4.4.6/tap/configure-1771-if test -n "$ac_maketemp"; then
##############################################
nagios4-4.4.6/tap/configure-1777-fi
nagios4-4.4.6/tap/configure:1778:if eval "test \"`echo '$ac_cv_prog_make_'${ac_make}_set`\" = yes"; then
nagios4-4.4.6/tap/configure-1779-  echo "$as_me:$LINENO: result: yes" >&5
##############################################
nagios4-4.4.6/tap/configure-1797-# test to see if srcdir already configured
nagios4-4.4.6/tap/configure:1798:if test "`cd $srcdir && pwd`" != "`pwd`" &&
nagios4-4.4.6/tap/configure-1799-   test -f $srcdir/config.status; then
##############################################
nagios4-4.4.6/tap/configure-2264-     "checking for C compiler version" >&5
nagios4-4.4.6/tap/configure:2265:ac_compiler=`set X $ac_compile; echo $2`
nagios4-4.4.6/tap/configure-2266-{ (eval echo "$as_me:$LINENO: \"$ac_compiler --version </dev/null >&5\"") >&5
##############################################
nagios4-4.4.6/tap/configure-2303-echo $ECHO_N "checking for C compiler default output file name... $ECHO_C" >&6
nagios4-4.4.6/tap/configure:2304:ac_link_default=`echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'`
nagios4-4.4.6/tap/configure-2305-if { (eval echo "$as_me:$LINENO: \"$ac_link_default\"") >&5
##############################################
nagios4-4.4.6/tap/configure-2331-    *.* )
nagios4-4.4.6/tap/configure:2332:	ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
nagios4-4.4.6/tap/configure-2333-	# FIXME: I believe we export ac_cv_exeext for Libtool,
##############################################
nagios4-4.4.6/tap/configure-2411-    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.o | *.obj ) ;;
nagios4-4.4.6/tap/configure:2412:    *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
nagios4-4.4.6/tap/configure-2413-	  export ac_cv_exeext
##############################################
nagios4-4.4.6/tap/configure-2461-    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg ) ;;
nagios4-4.4.6/tap/configure:2462:    *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'`
nagios4-4.4.6/tap/configure-2463-       break;;
##############################################
nagios4-4.4.6/tap/configure-2540-echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6
nagios4-4.4.6/tap/configure:2541:GCC=`test $ac_compiler_gnu = yes && echo yes`
nagios4-4.4.6/tap/configure-2542-ac_test_CFLAGS=${CFLAGS+set}
##############################################
nagios4-4.4.6/tap/configure-2899-# case it prints its new name instead of `make'.
nagios4-4.4.6/tap/configure:2900:if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then
nagios4-4.4.6/tap/configure-2901-   am__include=include
##############################################
nagios4-4.4.6/tap/configure-2907-   echo '.include "confinc"' > confmf
nagios4-4.4.6/tap/configure:2908:   if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then
nagios4-4.4.6/tap/configure-2909-      am__include=.include
##############################################
nagios4-4.4.6/tap/configure-2969-  if test "$am_compiler_list" = ""; then
nagios4-4.4.6/tap/configure:2970:     am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp`
nagios4-4.4.6/tap/configure-2971-  fi
##############################################
nagios4-4.4.6/tap/configure-3135-test -z "$ac_cv_build_alias" &&
nagios4-4.4.6/tap/configure:3136:  ac_cv_build_alias=`$ac_config_guess`
nagios4-4.4.6/tap/configure-3137-test -z "$ac_cv_build_alias" &&
##############################################
nagios4-4.4.6/tap/configure-3140-   { (exit 1); exit 1; }; }
nagios4-4.4.6/tap/configure:3141:ac_cv_build=`$ac_config_sub $ac_cv_build_alias` ||
nagios4-4.4.6/tap/configure-3142-  { { echo "$as_me:$LINENO: error: $ac_config_sub $ac_cv_build_alias failed" >&5
##############################################
nagios4-4.4.6/tap/configure-3149-build=$ac_cv_build
nagios4-4.4.6/tap/configure:3150:build_cpu=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
nagios4-4.4.6/tap/configure:3151:build_vendor=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
nagios4-4.4.6/tap/configure:3152:build_os=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
nagios4-4.4.6/tap/configure-3153-
##############################################
nagios4-4.4.6/tap/configure-3162-  ac_cv_host_alias=$ac_cv_build_alias
nagios4-4.4.6/tap/configure:3163:ac_cv_host=`$ac_config_sub $ac_cv_host_alias` ||
nagios4-4.4.6/tap/configure-3164-  { { echo "$as_me:$LINENO: error: $ac_config_sub $ac_cv_host_alias failed" >&5
##############################################
nagios4-4.4.6/tap/configure-3171-host=$ac_cv_host
nagios4-4.4.6/tap/configure:3172:host_cpu=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
nagios4-4.4.6/tap/configure:3173:host_vendor=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
nagios4-4.4.6/tap/configure:3174:host_os=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
nagios4-4.4.6/tap/configure-3175-
##############################################
nagios4-4.4.6/tap/configure-3219-    test $lt_ac_count -gt 10 && break
nagios4-4.4.6/tap/configure:3220:    lt_ac_count=`expr $lt_ac_count + 1`
nagios4-4.4.6/tap/configure-3221-    if test $lt_ac_count -gt $lt_ac_max; then
##############################################
nagios4-4.4.6/tap/configure-3264-    # gcc leaves a trailing carriage return which upsets mingw
nagios4-4.4.6/tap/configure:3265:    ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;;
nagios4-4.4.6/tap/configure-3266-  *)
nagios4-4.4.6/tap/configure:3267:    ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;
nagios4-4.4.6/tap/configure-3268-  esac
##############################################
nagios4-4.4.6/tap/configure-3273-      # Canonicalize the pathname of ld
nagios4-4.4.6/tap/configure:3274:      ac_prog=`echo $ac_prog| $SED 's%\\\\%/%g'`
nagios4-4.4.6/tap/configure-3275-      while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do
nagios4-4.4.6/tap/configure:3276:	ac_prog=`echo $ac_prog| $SED "s%$re_direlt%/%"`
nagios4-4.4.6/tap/configure-3277-      done
##############################################
nagios4-4.4.6/tap/configure-3308-      # Break only if it was the GNU/non-GNU ld that we prefer.
nagios4-4.4.6/tap/configure:3309:      case `"$lt_cv_path_LD" -v 2>&1 </dev/null` in
nagios4-4.4.6/tap/configure-3310-      *GNU* | *'with BFD'*)
##############################################
nagios4-4.4.6/tap/configure-3341-  # I'd rather use --version here, but apparently some GNU ld's only accept -v.
nagios4-4.4.6/tap/configure:3342:case `$LD -v 2>&1 </dev/null` in
nagios4-4.4.6/tap/configure-3343-*GNU* | *'with BFD'*)
##############################################
nagios4-4.4.6/tap/configure-3399-      # Tru64's nm complains that /dev/null is an invalid object file
nagios4-4.4.6/tap/configure:3400:      case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in
nagios4-4.4.6/tap/configure-3401-      */dev/null* | *'Invalid file or object type'*)
##############################################
nagios4-4.4.6/tap/configure-3405-      *)
nagios4-4.4.6/tap/configure:3406:	case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in
nagios4-4.4.6/tap/configure-3407-	*/dev/null*)
##############################################
nagios4-4.4.6/tap/configure-3560-openbsd*)
nagios4-4.4.6/tap/configure:3561:  if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
nagios4-4.4.6/tap/configure-3562-    lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|\.so|_pic\.a)$'
##############################################
nagios4-4.4.6/tap/configure-3643-  (exit $ac_status); }; then
nagios4-4.4.6/tap/configure:3644:    case `/usr/bin/file conftest.$ac_objext` in
nagios4-4.4.6/tap/configure-3645-    *ELF-32*)
##############################################
nagios4-4.4.6/tap/configure-3663-   if test "$lt_cv_prog_gnu_ld" = yes; then
nagios4-4.4.6/tap/configure:3664:    case `/usr/bin/file conftest.$ac_objext` in
nagios4-4.4.6/tap/configure-3665-    *32-bit*)
##############################################
nagios4-4.4.6/tap/configure-3675-   else
nagios4-4.4.6/tap/configure:3676:    case `/usr/bin/file conftest.$ac_objext` in
nagios4-4.4.6/tap/configure-3677-    *32-bit*)
##############################################
nagios4-4.4.6/tap/configure-4232-do
nagios4-4.4.6/tap/configure:4233:as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
nagios4-4.4.6/tap/configure-4234-echo "$as_me:$LINENO: checking for $ac_header" >&5
##############################################
nagios4-4.4.6/tap/configure-4279-fi
nagios4-4.4.6/tap/configure:4280:echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
nagios4-4.4.6/tap/configure:4281:echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
nagios4-4.4.6/tap/configure:4282:if test `eval echo '${'$as_ac_Header'}'` = yes; then
nagios4-4.4.6/tap/configure-4283-  cat >>confdefs.h <<_ACEOF
nagios4-4.4.6/tap/configure:4284:#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
nagios4-4.4.6/tap/configure-4285-_ACEOF
##############################################
nagios4-4.4.6/tap/configure-4294-do
nagios4-4.4.6/tap/configure:4295:as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
nagios4-4.4.6/tap/configure-4296-if eval "test \"\${$as_ac_Header+set}\" = set"; then
##############################################
nagios4-4.4.6/tap/configure-4301-fi
nagios4-4.4.6/tap/configure:4302:echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
nagios4-4.4.6/tap/configure:4303:echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
nagios4-4.4.6/tap/configure-4304-else
##############################################
nagios4-4.4.6/tap/configure-4428-fi
nagios4-4.4.6/tap/configure:4429:echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
nagios4-4.4.6/tap/configure:4430:echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
nagios4-4.4.6/tap/configure-4431-
nagios4-4.4.6/tap/configure-4432-fi
nagios4-4.4.6/tap/configure:4433:if test `eval echo '${'$as_ac_Header'}'` = yes; then
nagios4-4.4.6/tap/configure-4434-  cat >>confdefs.h <<_ACEOF
nagios4-4.4.6/tap/configure:4435:#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
nagios4-4.4.6/tap/configure-4436-_ACEOF
##############################################
nagios4-4.4.6/tap/configure-4537-     "checking for C++ compiler version" >&5
nagios4-4.4.6/tap/configure:4538:ac_compiler=`set X $ac_compile; echo $2`
nagios4-4.4.6/tap/configure-4539-{ (eval echo "$as_me:$LINENO: \"$ac_compiler --version </dev/null >&5\"") >&5
##############################################
nagios4-4.4.6/tap/configure-4612-echo "${ECHO_T}$ac_cv_cxx_compiler_gnu" >&6
nagios4-4.4.6/tap/configure:4613:GXX=`test $ac_compiler_gnu = yes && echo yes`
nagios4-4.4.6/tap/configure-4614-ac_test_CXXFLAGS=${CXXFLAGS+set}
##############################################
nagios4-4.4.6/tap/configure-4824-  if test "$am_compiler_list" = ""; then
nagios4-4.4.6/tap/configure:4825:     am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp`
nagios4-4.4.6/tap/configure-4826-  fi
##############################################
nagios4-4.4.6/tap/configure-5237-     "checking for Fortran 77 compiler version" >&5
nagios4-4.4.6/tap/configure:5238:ac_compiler=`set X $ac_compile; echo $2`
nagios4-4.4.6/tap/configure-5239-{ (eval echo "$as_me:$LINENO: \"$ac_compiler --version </dev/null >&5\"") >&5
##############################################
nagios4-4.4.6/tap/configure-5372-
nagios4-4.4.6/tap/configure:5373:G77=`test $ac_compiler_gnu = yes && echo yes`
nagios4-4.4.6/tap/configure-5374-ac_ext=c
##############################################
nagios4-4.4.6/tap/configure-5435-    # And add a safety zone
nagios4-4.4.6/tap/configure:5436:    lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4`
nagios4-4.4.6/tap/configure-5437-    ;;
##############################################
nagios4-4.4.6/tap/configure-5443-    SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}}
nagios4-4.4.6/tap/configure:5444:    while (test "X"`$SHELL $0 --fallback-echo "X$teststring" 2>/dev/null` \
nagios4-4.4.6/tap/configure-5445-	       = "XX$teststring") >/dev/null 2>&1 &&
nagios4-4.4.6/tap/configure:5446:	    new_result=`expr "X$teststring" : ".*" 2>&1` &&
nagios4-4.4.6/tap/configure-5447-	    lt_cv_sys_max_cmd_len=$new_result &&
##############################################
nagios4-4.4.6/tap/configure-5449-    do
nagios4-4.4.6/tap/configure:5450:      i=`expr $i + 1`
nagios4-4.4.6/tap/configure-5451-      teststring=$teststring$teststring
##############################################
nagios4-4.4.6/tap/configure-5456-    # It appears as though 1/2 is a usable value.
nagios4-4.4.6/tap/configure:5457:    lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2`
nagios4-4.4.6/tap/configure-5458-    ;;
##############################################
nagios4-4.4.6/tap/configure-5543-# If we're using GNU nm, then use its standard symbol codes.
nagios4-4.4.6/tap/configure:5544:case `$NM -V 2>&1` in
nagios4-4.4.6/tap/configure-5545-*GNU* | *'with BFD'*)
##############################################
nagios4-4.4.6/tap/configure-6019-
nagios4-4.4.6/tap/configure:6020:cc_basename=`$echo X"$compiler" | $Xsed -e 's%^.*/%%'`
nagios4-4.4.6/tap/configure-6021-
##############################################
nagios4-4.4.6/tap/configure-6046-	"file_magic "*)
nagios4-4.4.6/tap/configure:6047:	  file_magic_regex="`expr \"$deplibs_check_method\" : \"file_magic \(.*\)\"`"
nagios4-4.4.6/tap/configure-6048-	  MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
##############################################
nagios4-4.4.6/tap/configure-6108-	"file_magic "*)
nagios4-4.4.6/tap/configure:6109:	  file_magic_regex="`expr \"$deplibs_check_method\" : \"file_magic \(.*\)\"`"
nagios4-4.4.6/tap/configure-6110-	  MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
##############################################
nagios4-4.4.6/tap/configure-6219-if test -n "$lt_prog_cc_shlib"; then
nagios4-4.4.6/tap/configure:6220:  { echo "$as_me:$LINENO: WARNING: \`$CC' requires \`$lt_prog_cc_shlib' to build shared libraries" >&5
nagios4-4.4.6/tap/configure:6221:echo "$as_me: WARNING: \`$CC' requires \`$lt_prog_cc_shlib' to build shared libraries" >&2;}
nagios4-4.4.6/tap/configure-6222-  if echo "$old_CC $old_CFLAGS " | grep "[ 	]$lt_prog_cc_shlib[ 	]" >/dev/null; then :
##############################################
nagios4-4.4.6/tap/configure-6637-  if test "$hard_links" = no; then
nagios4-4.4.6/tap/configure:6638:    { echo "$as_me:$LINENO: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5
nagios4-4.4.6/tap/configure:6639:echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;}
nagios4-4.4.6/tap/configure-6640-    need_locks=warn
##############################################
nagios4-4.4.6/tap/configure-6760-	# is EXPORTS), use it as is; otherwise, prepend...
nagios4-4.4.6/tap/configure:6761:	archive_expsym_cmds='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then
nagios4-4.4.6/tap/configure-6762-	  cp $export_symbols $output_objdir/$soname.def;
##############################################
nagios4-4.4.6/tap/configure-6815-      supports_anon_versioning=no
nagios4-4.4.6/tap/configure:6816:      case `$LD -v 2>/dev/null` in
nagios4-4.4.6/tap/configure-6817-        *\ 01.* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11
##############################################
nagios4-4.4.6/tap/configure-6921-	# below for broken collect2 doesn't work under 4.3+
nagios4-4.4.6/tap/configure:6922:	  collect2name=`${CC} -print-prog-name=collect2`
nagios4-4.4.6/tap/configure-6923-	  if test -f "$collect2name" && \
##############################################
nagios4-4.4.6/tap/configure-7015-       hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath"
nagios4-4.4.6/tap/configure:7016:	archive_expsym_cmds="\$CC"' -o $output_objdir/$soname $libobjs $deplibs $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$no_entry_flag \${wl}$exp_sym_flag:\$export_symbols $shared_flag"
nagios4-4.4.6/tap/configure-7017-       else
##############################################
nagios4-4.4.6/tap/configure-7115-      # FIXME: Setting linknames here is a bad hack.
nagios4-4.4.6/tap/configure:7116:      archive_cmds='$CC -o $lib $libobjs $compiler_flags `echo "$deplibs" | $SED -e '\''s/ -lc$//'\''` -link -dll~linknames='
nagios4-4.4.6/tap/configure-7117-      # The linker will automatically build a .lib file if we build a DLL.
##############################################
nagios4-4.4.6/tap/configure-7120-      old_archive_cmds='lib /OUT:$oldlib$oldobjs$old_deplibs'
nagios4-4.4.6/tap/configure:7121:      fix_srcfile_path='`cygpath -w "$srcfile"`'
nagios4-4.4.6/tap/configure-7122-      enable_shared_with_static_runtimes=yes
##############################################
nagios4-4.4.6/tap/configure-7161-         output_verbose_link_cmd='echo'
nagios4-4.4.6/tap/configure:7162:         archive_cmds='$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $verstring'
nagios4-4.4.6/tap/configure-7163-         module_cmds='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags'
##############################################
nagios4-4.4.6/tap/configure-7281-      if test "$GCC" = yes; then
nagios4-4.4.6/tap/configure:7282:	archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
nagios4-4.4.6/tap/configure-7283-      else
nagios4-4.4.6/tap/configure:7284:	archive_cmds='$LD -shared $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib'
nagios4-4.4.6/tap/configure-7285-	hardcode_libdir_flag_spec_ld='-rpath $libdir'
##############################################
nagios4-4.4.6/tap/configure-7313-      hardcode_shlibpath_var=no
nagios4-4.4.6/tap/configure:7314:      if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
nagios4-4.4.6/tap/configure-7315-	archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'
##############################################
nagios4-4.4.6/tap/configure-7343-	allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*'
nagios4-4.4.6/tap/configure:7344:	archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
nagios4-4.4.6/tap/configure-7345-      else
nagios4-4.4.6/tap/configure-7346-	allow_undefined_flag=' -expect_unresolved \*'
nagios4-4.4.6/tap/configure:7347:	archive_cmds='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib'
nagios4-4.4.6/tap/configure-7348-      fi
##############################################
nagios4-4.4.6/tap/configure-7355-	allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*'
nagios4-4.4.6/tap/configure:7356:	archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
nagios4-4.4.6/tap/configure-7357-	hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
##############################################
nagios4-4.4.6/tap/configure-7359-	allow_undefined_flag=' -expect_unresolved \*'
nagios4-4.4.6/tap/configure:7360:	archive_cmds='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib'
nagios4-4.4.6/tap/configure:7361:	archive_expsym_cmds='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; echo "-hidden">> $lib.exp~
nagios4-4.4.6/tap/configure:7362:	$LD -shared${allow_undefined_flag} -input $lib.exp $linker_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${objdir}/so_locations -o $lib~$rm $lib.exp'
nagios4-4.4.6/tap/configure-7363-
##############################################
nagios4-4.4.6/tap/configure-7581-if test "$GCC" = yes; then
nagios4-4.4.6/tap/configure:7582:  sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"`
nagios4-4.4.6/tap/configure-7583-  if echo "$sys_lib_search_path_spec" | grep ';' >/dev/null ; then
##############################################
nagios4-4.4.6/tap/configure-7587-    # okay in the real world where ";" in dirpaths is itself problematic.
nagios4-4.4.6/tap/configure:7588:    sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'`
nagios4-4.4.6/tap/configure-7589-  else
nagios4-4.4.6/tap/configure:7590:    sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED  -e "s/$PATH_SEPARATOR/ /g"`
nagios4-4.4.6/tap/configure-7591-  fi
##############################################
nagios4-4.4.6/tap/configure-7658-  # Create ${libname}_ixlibrary.a entries in /sys/libs.
nagios4-4.4.6/tap/configure:7659:  finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done'
nagios4-4.4.6/tap/configure-7660-  ;;
##############################################
nagios4-4.4.6/tap/configure-7691-    # DLL is installed to $(libdir)/../bin by postinstall_cmds
nagios4-4.4.6/tap/configure:7692:    postinstall_cmds='base_file=`basename \${file}`~
nagios4-4.4.6/tap/configure:7693:      dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i;echo \$dlname'\''`~
nagios4-4.4.6/tap/configure:7694:      dldir=$destdir/`dirname \$dlpath`~
nagios4-4.4.6/tap/configure-7695-      test -d \$dldir || mkdir -p \$dldir~
nagios4-4.4.6/tap/configure-7696-      $install_prog $dir/$dlname \$dldir/$dlname'
nagios4-4.4.6/tap/configure:7697:    postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~
nagios4-4.4.6/tap/configure-7698-      dlpath=$dir/\$dldll~
##############################################
nagios4-4.4.6/tap/configure-7704-      # Cygwin DLLs use 'cyg' prefix rather than 'lib'
nagios4-4.4.6/tap/configure:7705:      soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}'
nagios4-4.4.6/tap/configure-7706-      sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib"
##############################################
nagios4-4.4.6/tap/configure-7709-      # MinGW DLLs use traditional 'lib' prefix
nagios4-4.4.6/tap/configure:7710:      soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}'
nagios4-4.4.6/tap/configure:7711:      sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"`
nagios4-4.4.6/tap/configure-7712-      if echo "$sys_lib_search_path_spec" | grep ';[c-zC-Z]:/' >/dev/null; then
##############################################
nagios4-4.4.6/tap/configure-7718-        # which wouldn't understand a cygwinified path. Ahh.
nagios4-4.4.6/tap/configure:7719:        sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'`
nagios4-4.4.6/tap/configure-7720-      else
nagios4-4.4.6/tap/configure:7721:        sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED  -e "s/$PATH_SEPARATOR/ /g"`
nagios4-4.4.6/tap/configure-7722-      fi
##############################################
nagios4-4.4.6/tap/configure-7725-      # pw32 DLLs use 'pw' prefix rather than 'lib'
nagios4-4.4.6/tap/configure:7726:      library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/./-/g'`${versuffix}${shared_ext}'
nagios4-4.4.6/tap/configure-7727-      ;;
##############################################
nagios4-4.4.6/tap/configure-7731-  *)
nagios4-4.4.6/tap/configure:7732:    library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib'
nagios4-4.4.6/tap/configure-7733-    ;;
##############################################
nagios4-4.4.6/tap/configure-7751-  if test "$GCC" = yes; then
nagios4-4.4.6/tap/configure:7752:    sys_lib_search_path_spec=`$CC -print-search-dirs | tr "\n" "$PATH_SEPARATOR" | sed -e 's/libraries:/@libraries:/' | tr "@" "\n" | grep "^libraries:" | sed -e "s/^libraries://" -e "s,=/,/,g" -e "s,$PATH_SEPARATOR, ,g" -e "s,.*,& /lib /usr/lib /usr/local/lib,g"`
nagios4-4.4.6/tap/configure-7753-  else
##############################################
nagios4-4.4.6/tap/configure-7928-  if test -f /etc/ld.so.conf; then
nagios4-4.4.6/tap/configure:7929:    lt_ld_extra=`$SED -e 's/:,\t/ /g;s/=^=*$//;s/=^= * / /g' /etc/ld.so.conf | tr '\n' ' '`
nagios4-4.4.6/tap/configure-7930-    sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra"
##############################################
nagios4-4.4.6/tap/configure-7995-  shlibpath_var=LD_LIBRARY_PATH
nagios4-4.4.6/tap/configure:7996:  if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
nagios4-4.4.6/tap/configure-7997-    case $host_os in
##############################################
nagios4-4.4.6/tap/configure-9091-      # Double-quote double-evaled strings.
nagios4-4.4.6/tap/configure:9092:      eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\""
nagios4-4.4.6/tap/configure-9093-      ;;
nagios4-4.4.6/tap/configure-9094-    *)
nagios4-4.4.6/tap/configure:9095:      eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$sed_quote_subst\"\`\\\""
nagios4-4.4.6/tap/configure-9096-      ;;
##############################################
nagios4-4.4.6/tap/configure-9101-  *'\$0 --fallback-echo"')
nagios4-4.4.6/tap/configure:9102:    lt_echo=`$echo "X$lt_echo" | $Xsed -e 's/\\\\\\\$0 --fallback-echo"$/$0 --fallback-echo"/'`
nagios4-4.4.6/tap/configure-9103-    ;;
##############################################
nagios4-4.4.6/tap/configure-9114-
nagios4-4.4.6/tap/configure:9115:# `$echo "$cfgfile" | sed 's%^.*/%%'` - Provide generalized library-building support services.
nagios4-4.4.6/tap/configure-9116-# Generated automatically by $PROGRAM (GNU $PACKAGE $VERSION$TIMESTAMP)
##############################################
nagios4-4.4.6/tap/configure-9484-  # libtool script then.
nagios4-4.4.6/tap/configure:9485:  ltmain_in=`echo $ltmain | sed -e 's/\.sh$/.in/'`
nagios4-4.4.6/tap/configure-9486-  if test -f "$ltmain_in"; then
##############################################
nagios4-4.4.6/tap/configure-9513-  if test -z "$LTCC"; then
nagios4-4.4.6/tap/configure:9514:    eval "`$SHELL ${ofile} --config | grep '^LTCC='`"
nagios4-4.4.6/tap/configure-9515-    if test -z "$LTCC"; then
##############################################
nagios4-4.4.6/tap/configure-9518-    else
nagios4-4.4.6/tap/configure:9519:      { echo "$as_me:$LINENO: WARNING: using \`LTCC=$LTCC', extracted from \`$ofile'" >&5
nagios4-4.4.6/tap/configure:9520:echo "$as_me: WARNING: using \`LTCC=$LTCC', extracted from \`$ofile'" >&2;}
nagios4-4.4.6/tap/configure-9521-    fi
##############################################
nagios4-4.4.6/tap/configure-9525-  # Note that this assumes the entire list is on one line.
nagios4-4.4.6/tap/configure:9526:  available_tags=`grep "^available_tags=" "${ofile}" | $SED -e 's/available_tags=\(.*$\)/\1/' -e 's/\"//g'`
nagios4-4.4.6/tap/configure-9527-
##############################################
nagios4-4.4.6/tap/configure-9531-    # Check whether tagname contains only valid characters
nagios4-4.4.6/tap/configure:9532:    case `$echo "X$tagname" | $Xsed -e 's:[-_ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890,/]::g'` in
nagios4-4.4.6/tap/configure-9533-    "") ;;
##############################################
nagios4-4.4.6/tap/configure-9633-compiler_CXX=$CC
nagios4-4.4.6/tap/configure:9634:cc_basename=`$echo X"$compiler" | $Xsed -e 's%^.*/%%'`
nagios4-4.4.6/tap/configure-9635-
##############################################
nagios4-4.4.6/tap/configure-9662-    # gcc leaves a trailing carriage return which upsets mingw
nagios4-4.4.6/tap/configure:9663:    ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;;
nagios4-4.4.6/tap/configure-9664-  *)
nagios4-4.4.6/tap/configure:9665:    ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;
nagios4-4.4.6/tap/configure-9666-  esac
##############################################
nagios4-4.4.6/tap/configure-9671-      # Canonicalize the pathname of ld
nagios4-4.4.6/tap/configure:9672:      ac_prog=`echo $ac_prog| $SED 's%\\\\%/%g'`
nagios4-4.4.6/tap/configure-9673-      while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do
nagios4-4.4.6/tap/configure:9674:	ac_prog=`echo $ac_prog| $SED "s%$re_direlt%/%"`
nagios4-4.4.6/tap/configure-9675-      done
##############################################
nagios4-4.4.6/tap/configure-9706-      # Break only if it was the GNU/non-GNU ld that we prefer.
nagios4-4.4.6/tap/configure:9707:      case `"$lt_cv_path_LD" -v 2>&1 </dev/null` in
nagios4-4.4.6/tap/configure-9708-      *GNU* | *'with BFD'*)
##############################################
nagios4-4.4.6/tap/configure-9739-  # I'd rather use --version here, but apparently some GNU ld's only accept -v.
nagios4-4.4.6/tap/configure:9740:case `$LD -v 2>&1 </dev/null` in
nagios4-4.4.6/tap/configure-9741-*GNU* | *'with BFD'*)
##############################################
nagios4-4.4.6/tap/configure-9769-    # ancient GNU ld didn't support --whole-archive et. al.
nagios4-4.4.6/tap/configure:9770:    if eval "`$CC -print-prog-name=ld` --help 2>&1" | \
nagios4-4.4.6/tap/configure-9771-	grep 'no-whole-archive' > /dev/null; then
##############################################
nagios4-4.4.6/tap/configure-9850-      # below for broken collect2 doesn't work under 4.3+
nagios4-4.4.6/tap/configure:9851:	collect2name=`${CC} -print-prog-name=collect2`
nagios4-4.4.6/tap/configure-9852-	if test -f "$collect2name" && \
##############################################
nagios4-4.4.6/tap/configure-9945-
nagios4-4.4.6/tap/configure:9946:      archive_expsym_cmds_CXX="\$CC"' -o $output_objdir/$soname $libobjs $deplibs $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$no_entry_flag \${wl}$exp_sym_flag:\$export_symbols $shared_flag"
nagios4-4.4.6/tap/configure-9947-     else
##############################################
nagios4-4.4.6/tap/configure-10042-      # is EXPORTS), use it as is; otherwise, prepend...
nagios4-4.4.6/tap/configure:10043:      archive_expsym_cmds_CXX='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then
nagios4-4.4.6/tap/configure-10044-	cp $export_symbols $output_objdir/$soname.def;
##############################################
nagios4-4.4.6/tap/configure-10103-         output_verbose_link_cmd='echo'
nagios4-4.4.6/tap/configure:10104:          archive_cmds_CXX='$CC -qmkshrobj ${wl}-single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $verstring'
nagios4-4.4.6/tap/configure-10105-          module_cmds_CXX='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags'
##############################################
nagios4-4.4.6/tap/configure-10171-      # dependencies.
nagios4-4.4.6/tap/configure:10172:      output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | grep "-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list'
nagios4-4.4.6/tap/configure-10173-      ;;
##############################################
nagios4-4.4.6/tap/configure-10243-	# dependencies.
nagios4-4.4.6/tap/configure:10244:	output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | grep "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list'
nagios4-4.4.6/tap/configure-10245-	;;
##############################################
nagios4-4.4.6/tap/configure-10268-	# SGI C++
nagios4-4.4.6/tap/configure:10269:	archive_cmds_CXX='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${objdir}/so_locations -o $lib'
nagios4-4.4.6/tap/configure-10270-
##############################################
nagios4-4.4.6/tap/configure-10279-	  if test "$with_gnu_ld" = no; then
nagios4-4.4.6/tap/configure:10280:	    archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${objdir}/so_locations -o $lib'
nagios4-4.4.6/tap/configure-10281-	  else
nagios4-4.4.6/tap/configure:10282:	    archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` -o $lib'
nagios4-4.4.6/tap/configure-10283-	  fi
##############################################
nagios4-4.4.6/tap/configure-10298-	# to its proper name (with version) after linking.
nagios4-4.4.6/tap/configure:10299:	archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib'
nagios4-4.4.6/tap/configure:10300:	archive_expsym_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib ${wl}-retain-symbols-file,$export_symbols; mv \$templib $lib'
nagios4-4.4.6/tap/configure-10301-	# Commands to make compiler produce verbose output that lists
##############################################
nagios4-4.4.6/tap/configure-10308-	# dependencies.
nagios4-4.4.6/tap/configure:10309:	output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | grep "ld"`; rm -f libconftest$shared_ext; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list'
nagios4-4.4.6/tap/configure-10310-
##############################################
nagios4-4.4.6/tap/configure-10323-	# earlier do not add the objects themselves.
nagios4-4.4.6/tap/configure:10324:	case `$CC -V 2>&1` in
nagios4-4.4.6/tap/configure-10325-	*"Version 7."*)
##############################################
nagios4-4.4.6/tap/configure-10355-	# dependencies.
nagios4-4.4.6/tap/configure:10356:	output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list'
nagios4-4.4.6/tap/configure-10357-	;;
##############################################
nagios4-4.4.6/tap/configure-10399-    hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir'
nagios4-4.4.6/tap/configure:10400:    if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
nagios4-4.4.6/tap/configure-10401-      archive_expsym_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file,$export_symbols -o $lib'
##############################################
nagios4-4.4.6/tap/configure-10414-	# to its proper name (with version) after linking.
nagios4-4.4.6/tap/configure:10415:	archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib'
nagios4-4.4.6/tap/configure-10416-
##############################################
nagios4-4.4.6/tap/configure-10431-	allow_undefined_flag_CXX=' ${wl}-expect_unresolved ${wl}\*'
nagios4-4.4.6/tap/configure:10432:	archive_cmds_CXX='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && echo ${wl}-set_version $verstring` -update_registry ${objdir}/so_locations -o $lib'
nagios4-4.4.6/tap/configure-10433-
##############################################
nagios4-4.4.6/tap/configure-10444-	# dependencies.
nagios4-4.4.6/tap/configure:10445:	output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld" | grep -v "ld:"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list'
nagios4-4.4.6/tap/configure-10446-	;;
##############################################
nagios4-4.4.6/tap/configure-10449-	  allow_undefined_flag_CXX=' ${wl}-expect_unresolved ${wl}\*'
nagios4-4.4.6/tap/configure:10450:	  archive_cmds_CXX='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${objdir}/so_locations -o $lib'
nagios4-4.4.6/tap/configure-10451-
##############################################
nagios4-4.4.6/tap/configure-10474-	# to its proper name (with version) after linking.
nagios4-4.4.6/tap/configure:10475:	archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib'
nagios4-4.4.6/tap/configure-10476-
##############################################
nagios4-4.4.6/tap/configure-10490-	allow_undefined_flag_CXX=' -expect_unresolved \*'
nagios4-4.4.6/tap/configure:10491:	archive_cmds_CXX='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${objdir}/so_locations -o $lib'
nagios4-4.4.6/tap/configure:10492:	archive_expsym_cmds_CXX='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~
nagios4-4.4.6/tap/configure-10493-	  echo "-hidden">> $lib.exp~
nagios4-4.4.6/tap/configure:10494:	  $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname -Wl,-input -Wl,$lib.exp  `test -n "$verstring" && echo -set_version	$verstring` -update_registry $objdir/so_locations -o $lib~
nagios4-4.4.6/tap/configure-10495-	  $rm $lib.exp'
##############################################
nagios4-4.4.6/tap/configure-10507-	# dependencies.
nagios4-4.4.6/tap/configure:10508:	output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld" | grep -v "ld:"`; templist=`echo $templist | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list'
nagios4-4.4.6/tap/configure-10509-	;;
##############################################
nagios4-4.4.6/tap/configure-10512-	  allow_undefined_flag_CXX=' ${wl}-expect_unresolved ${wl}\*'
nagios4-4.4.6/tap/configure:10513:	 archive_cmds_CXX='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${objdir}/so_locations -o $lib'
nagios4-4.4.6/tap/configure-10514-
##############################################
nagios4-4.4.6/tap/configure-10595-	# dependencies.
nagios4-4.4.6/tap/configure:10596:	output_verbose_link_cmd='templist=`$CC -G $CFLAGS -v conftest.$objext 2>&1 | grep "\-[LR]"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list'
nagios4-4.4.6/tap/configure-10597-
##############################################
nagios4-4.4.6/tap/configure-10699-  # eval without this substitution.
nagios4-4.4.6/tap/configure:10700:  output_verbose_link_cmd="`$echo \"X$output_verbose_link_cmd\" | $Xsed -e \"$no_glob_subst\"`"
nagios4-4.4.6/tap/configure-10701-
nagios4-4.4.6/tap/configure:10702:  for p in `eval $output_verbose_link_cmd`; do
nagios4-4.4.6/tap/configure-10703-    case $p in
##############################################
nagios4-4.4.6/tap/configure-11173-  if test "$hard_links" = no; then
nagios4-4.4.6/tap/configure:11174:    { echo "$as_me:$LINENO: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5
nagios4-4.4.6/tap/configure:11175:echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;}
nagios4-4.4.6/tap/configure-11176-    need_locks=warn
##############################################
nagios4-4.4.6/tap/configure-11293-if test "$GCC" = yes; then
nagios4-4.4.6/tap/configure:11294:  sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"`
nagios4-4.4.6/tap/configure-11295-  if echo "$sys_lib_search_path_spec" | grep ';' >/dev/null ; then
##############################################
nagios4-4.4.6/tap/configure-11299-    # okay in the real world where ";" in dirpaths is itself problematic.
nagios4-4.4.6/tap/configure:11300:    sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'`
nagios4-4.4.6/tap/configure-11301-  else
nagios4-4.4.6/tap/configure:11302:    sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED  -e "s/$PATH_SEPARATOR/ /g"`
nagios4-4.4.6/tap/configure-11303-  fi
##############################################
nagios4-4.4.6/tap/configure-11370-  # Create ${libname}_ixlibrary.a entries in /sys/libs.
nagios4-4.4.6/tap/configure:11371:  finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done'
nagios4-4.4.6/tap/configure-11372-  ;;
##############################################
nagios4-4.4.6/tap/configure-11403-    # DLL is installed to $(libdir)/../bin by postinstall_cmds
nagios4-4.4.6/tap/configure:11404:    postinstall_cmds='base_file=`basename \${file}`~
nagios4-4.4.6/tap/configure:11405:      dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i;echo \$dlname'\''`~
nagios4-4.4.6/tap/configure:11406:      dldir=$destdir/`dirname \$dlpath`~
nagios4-4.4.6/tap/configure-11407-      test -d \$dldir || mkdir -p \$dldir~
nagios4-4.4.6/tap/configure-11408-      $install_prog $dir/$dlname \$dldir/$dlname'
nagios4-4.4.6/tap/configure:11409:    postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~
nagios4-4.4.6/tap/configure-11410-      dlpath=$dir/\$dldll~
##############################################
nagios4-4.4.6/tap/configure-11416-      # Cygwin DLLs use 'cyg' prefix rather than 'lib'
nagios4-4.4.6/tap/configure:11417:      soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}'
nagios4-4.4.6/tap/configure-11418-      sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib"
##############################################
nagios4-4.4.6/tap/configure-11421-      # MinGW DLLs use traditional 'lib' prefix
nagios4-4.4.6/tap/configure:11422:      soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}'
nagios4-4.4.6/tap/configure:11423:      sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"`
nagios4-4.4.6/tap/configure-11424-      if echo "$sys_lib_search_path_spec" | grep ';[c-zC-Z]:/' >/dev/null; then
##############################################
nagios4-4.4.6/tap/configure-11430-        # which wouldn't understand a cygwinified path. Ahh.
nagios4-4.4.6/tap/configure:11431:        sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'`
nagios4-4.4.6/tap/configure-11432-      else
nagios4-4.4.6/tap/configure:11433:        sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED  -e "s/$PATH_SEPARATOR/ /g"`
nagios4-4.4.6/tap/configure-11434-      fi
##############################################
nagios4-4.4.6/tap/configure-11437-      # pw32 DLLs use 'pw' prefix rather than 'lib'
nagios4-4.4.6/tap/configure:11438:      library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/./-/g'`${versuffix}${shared_ext}'
nagios4-4.4.6/tap/configure-11439-      ;;
##############################################
nagios4-4.4.6/tap/configure-11443-  *)
nagios4-4.4.6/tap/configure:11444:    library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib'
nagios4-4.4.6/tap/configure-11445-    ;;
##############################################
nagios4-4.4.6/tap/configure-11463-  if test "$GCC" = yes; then
nagios4-4.4.6/tap/configure:11464:    sys_lib_search_path_spec=`$CC -print-search-dirs | tr "\n" "$PATH_SEPARATOR" | sed -e 's/libraries:/@libraries:/' | tr "@" "\n" | grep "^libraries:" | sed -e "s/^libraries://" -e "s,=/,/,g" -e "s,$PATH_SEPARATOR, ,g" -e "s,.*,& /lib /usr/lib /usr/local/lib,g"`
nagios4-4.4.6/tap/configure-11465-  else
##############################################
nagios4-4.4.6/tap/configure-11640-  if test -f /etc/ld.so.conf; then
nagios4-4.4.6/tap/configure:11641:    lt_ld_extra=`$SED -e 's/:,\t/ /g;s/=^=*$//;s/=^= * / /g' /etc/ld.so.conf | tr '\n' ' '`
nagios4-4.4.6/tap/configure-11642-    sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra"
##############################################
nagios4-4.4.6/tap/configure-11707-  shlibpath_var=LD_LIBRARY_PATH
nagios4-4.4.6/tap/configure:11708:  if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
nagios4-4.4.6/tap/configure-11709-    case $host_os in
##############################################
nagios4-4.4.6/tap/configure-12766-      # Double-quote double-evaled strings.
nagios4-4.4.6/tap/configure:12767:      eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\""
nagios4-4.4.6/tap/configure-12768-      ;;
nagios4-4.4.6/tap/configure-12769-    *)
nagios4-4.4.6/tap/configure:12770:      eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$sed_quote_subst\"\`\\\""
nagios4-4.4.6/tap/configure-12771-      ;;
##############################################
nagios4-4.4.6/tap/configure-12776-  *'\$0 --fallback-echo"')
nagios4-4.4.6/tap/configure:12777:    lt_echo=`$echo "X$lt_echo" | $Xsed -e 's/\\\\\\\$0 --fallback-echo"$/$0 --fallback-echo"/'`
nagios4-4.4.6/tap/configure-12778-    ;;
##############################################
nagios4-4.4.6/tap/configure-13086-  # libtool script then.
nagios4-4.4.6/tap/configure:13087:  ltmain_in=`echo $ltmain | sed -e 's/\.sh$/.in/'`
nagios4-4.4.6/tap/configure-13088-  if test -f "$ltmain_in"; then
##############################################
nagios4-4.4.6/tap/configure-13170-compiler_F77=$CC
nagios4-4.4.6/tap/configure:13171:cc_basename=`$echo X"$compiler" | $Xsed -e 's%^.*/%%'`
nagios4-4.4.6/tap/configure-13172-
##############################################
nagios4-4.4.6/tap/configure-13529-  if test "$hard_links" = no; then
nagios4-4.4.6/tap/configure:13530:    { echo "$as_me:$LINENO: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5
nagios4-4.4.6/tap/configure:13531:echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;}
nagios4-4.4.6/tap/configure-13532-    need_locks=warn
##############################################
nagios4-4.4.6/tap/configure-13652-	# is EXPORTS), use it as is; otherwise, prepend...
nagios4-4.4.6/tap/configure:13653:	archive_expsym_cmds_F77='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then
nagios4-4.4.6/tap/configure-13654-	  cp $export_symbols $output_objdir/$soname.def;
##############################################
nagios4-4.4.6/tap/configure-13707-      supports_anon_versioning=no
nagios4-4.4.6/tap/configure:13708:      case `$LD -v 2>/dev/null` in
nagios4-4.4.6/tap/configure-13709-        *\ 01.* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11
##############################################
nagios4-4.4.6/tap/configure-13813-	# below for broken collect2 doesn't work under 4.3+
nagios4-4.4.6/tap/configure:13814:	  collect2name=`${CC} -print-prog-name=collect2`
nagios4-4.4.6/tap/configure-13815-	  if test -f "$collect2name" && \
##############################################
nagios4-4.4.6/tap/configure-13897-       hardcode_libdir_flag_spec_F77='${wl}-blibpath:$libdir:'"$aix_libpath"
nagios4-4.4.6/tap/configure:13898:	archive_expsym_cmds_F77="\$CC"' -o $output_objdir/$soname $libobjs $deplibs $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$no_entry_flag \${wl}$exp_sym_flag:\$export_symbols $shared_flag"
nagios4-4.4.6/tap/configure-13899-       else
##############################################
nagios4-4.4.6/tap/configure-13987-      # FIXME: Setting linknames here is a bad hack.
nagios4-4.4.6/tap/configure:13988:      archive_cmds_F77='$CC -o $lib $libobjs $compiler_flags `echo "$deplibs" | $SED -e '\''s/ -lc$//'\''` -link -dll~linknames='
nagios4-4.4.6/tap/configure-13989-      # The linker will automatically build a .lib file if we build a DLL.
##############################################
nagios4-4.4.6/tap/configure-13992-      old_archive_cmds_F77='lib /OUT:$oldlib$oldobjs$old_deplibs'
nagios4-4.4.6/tap/configure:13993:      fix_srcfile_path='`cygpath -w "$srcfile"`'
nagios4-4.4.6/tap/configure-13994-      enable_shared_with_static_runtimes_F77=yes
##############################################
nagios4-4.4.6/tap/configure-14033-         output_verbose_link_cmd='echo'
nagios4-4.4.6/tap/configure:14034:         archive_cmds_F77='$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $verstring'
nagios4-4.4.6/tap/configure-14035-         module_cmds_F77='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags'
##############################################
nagios4-4.4.6/tap/configure-14153-      if test "$GCC" = yes; then
nagios4-4.4.6/tap/configure:14154:	archive_cmds_F77='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
nagios4-4.4.6/tap/configure-14155-      else
nagios4-4.4.6/tap/configure:14156:	archive_cmds_F77='$LD -shared $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib'
nagios4-4.4.6/tap/configure-14157-	hardcode_libdir_flag_spec_ld_F77='-rpath $libdir'
##############################################
nagios4-4.4.6/tap/configure-14185-      hardcode_shlibpath_var_F77=no
nagios4-4.4.6/tap/configure:14186:      if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
nagios4-4.4.6/tap/configure-14187-	archive_cmds_F77='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'
##############################################
nagios4-4.4.6/tap/configure-14215-	allow_undefined_flag_F77=' ${wl}-expect_unresolved ${wl}\*'
nagios4-4.4.6/tap/configure:14216:	archive_cmds_F77='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
nagios4-4.4.6/tap/configure-14217-      else
nagios4-4.4.6/tap/configure-14218-	allow_undefined_flag_F77=' -expect_unresolved \*'
nagios4-4.4.6/tap/configure:14219:	archive_cmds_F77='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib'
nagios4-4.4.6/tap/configure-14220-      fi
##############################################
nagios4-4.4.6/tap/configure-14227-	allow_undefined_flag_F77=' ${wl}-expect_unresolved ${wl}\*'
nagios4-4.4.6/tap/configure:14228:	archive_cmds_F77='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
nagios4-4.4.6/tap/configure-14229-	hardcode_libdir_flag_spec_F77='${wl}-rpath ${wl}$libdir'
##############################################
nagios4-4.4.6/tap/configure-14231-	allow_undefined_flag_F77=' -expect_unresolved \*'
nagios4-4.4.6/tap/configure:14232:	archive_cmds_F77='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib'
nagios4-4.4.6/tap/configure:14233:	archive_expsym_cmds_F77='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; echo "-hidden">> $lib.exp~
nagios4-4.4.6/tap/configure:14234:	$LD -shared${allow_undefined_flag} -input $lib.exp $linker_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${objdir}/so_locations -o $lib~$rm $lib.exp'
nagios4-4.4.6/tap/configure-14235-
##############################################
nagios4-4.4.6/tap/configure-14453-if test "$GCC" = yes; then
nagios4-4.4.6/tap/configure:14454:  sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"`
nagios4-4.4.6/tap/configure-14455-  if echo "$sys_lib_search_path_spec" | grep ';' >/dev/null ; then
##############################################
nagios4-4.4.6/tap/configure-14459-    # okay in the real world where ";" in dirpaths is itself problematic.
nagios4-4.4.6/tap/configure:14460:    sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'`
nagios4-4.4.6/tap/configure-14461-  else
nagios4-4.4.6/tap/configure:14462:    sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED  -e "s/$PATH_SEPARATOR/ /g"`
nagios4-4.4.6/tap/configure-14463-  fi
##############################################
nagios4-4.4.6/tap/configure-14530-  # Create ${libname}_ixlibrary.a entries in /sys/libs.
nagios4-4.4.6/tap/configure:14531:  finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done'
nagios4-4.4.6/tap/configure-14532-  ;;
##############################################
nagios4-4.4.6/tap/configure-14563-    # DLL is installed to $(libdir)/../bin by postinstall_cmds
nagios4-4.4.6/tap/configure:14564:    postinstall_cmds='base_file=`basename \${file}`~
nagios4-4.4.6/tap/configure:14565:      dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i;echo \$dlname'\''`~
nagios4-4.4.6/tap/configure:14566:      dldir=$destdir/`dirname \$dlpath`~
nagios4-4.4.6/tap/configure-14567-      test -d \$dldir || mkdir -p \$dldir~
nagios4-4.4.6/tap/configure-14568-      $install_prog $dir/$dlname \$dldir/$dlname'
nagios4-4.4.6/tap/configure:14569:    postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~
nagios4-4.4.6/tap/configure-14570-      dlpath=$dir/\$dldll~
##############################################
nagios4-4.4.6/tap/configure-14576-      # Cygwin DLLs use 'cyg' prefix rather than 'lib'
nagios4-4.4.6/tap/configure:14577:      soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}'
nagios4-4.4.6/tap/configure-14578-      sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib"
##############################################
nagios4-4.4.6/tap/configure-14581-      # MinGW DLLs use traditional 'lib' prefix
nagios4-4.4.6/tap/configure:14582:      soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}'
nagios4-4.4.6/tap/configure:14583:      sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"`
nagios4-4.4.6/tap/configure-14584-      if echo "$sys_lib_search_path_spec" | grep ';[c-zC-Z]:/' >/dev/null; then
##############################################
nagios4-4.4.6/tap/configure-14590-        # which wouldn't understand a cygwinified path. Ahh.
nagios4-4.4.6/tap/configure:14591:        sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'`
nagios4-4.4.6/tap/configure-14592-      else
nagios4-4.4.6/tap/configure:14593:        sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED  -e "s/$PATH_SEPARATOR/ /g"`
nagios4-4.4.6/tap/configure-14594-      fi
##############################################
nagios4-4.4.6/tap/configure-14597-      # pw32 DLLs use 'pw' prefix rather than 'lib'
nagios4-4.4.6/tap/configure:14598:      library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/./-/g'`${versuffix}${shared_ext}'
nagios4-4.4.6/tap/configure-14599-      ;;
##############################################
nagios4-4.4.6/tap/configure-14603-  *)
nagios4-4.4.6/tap/configure:14604:    library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib'
nagios4-4.4.6/tap/configure-14605-    ;;
##############################################
nagios4-4.4.6/tap/configure-14623-  if test "$GCC" = yes; then
nagios4-4.4.6/tap/configure:14624:    sys_lib_search_path_spec=`$CC -print-search-dirs | tr "\n" "$PATH_SEPARATOR" | sed -e 's/libraries:/@libraries:/' | tr "@" "\n" | grep "^libraries:" | sed -e "s/^libraries://" -e "s,=/,/,g" -e "s,$PATH_SEPARATOR, ,g" -e "s,.*,& /lib /usr/lib /usr/local/lib,g"`
nagios4-4.4.6/tap/configure-14625-  else
##############################################
nagios4-4.4.6/tap/configure-14800-  if test -f /etc/ld.so.conf; then
nagios4-4.4.6/tap/configure:14801:    lt_ld_extra=`$SED -e 's/:,\t/ /g;s/=^=*$//;s/=^= * / /g' /etc/ld.so.conf | tr '\n' ' '`
nagios4-4.4.6/tap/configure-14802-    sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra"
##############################################
nagios4-4.4.6/tap/configure-14867-  shlibpath_var=LD_LIBRARY_PATH
nagios4-4.4.6/tap/configure:14868:  if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
nagios4-4.4.6/tap/configure-14869-    case $host_os in
##############################################
nagios4-4.4.6/tap/configure-15121-      # Double-quote double-evaled strings.
nagios4-4.4.6/tap/configure:15122:      eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\""
nagios4-4.4.6/tap/configure-15123-      ;;
nagios4-4.4.6/tap/configure-15124-    *)
nagios4-4.4.6/tap/configure:15125:      eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$sed_quote_subst\"\`\\\""
nagios4-4.4.6/tap/configure-15126-      ;;
##############################################
nagios4-4.4.6/tap/configure-15131-  *'\$0 --fallback-echo"')
nagios4-4.4.6/tap/configure:15132:    lt_echo=`$echo "X$lt_echo" | $Xsed -e 's/\\\\\\\$0 --fallback-echo"$/$0 --fallback-echo"/'`
nagios4-4.4.6/tap/configure-15133-    ;;
##############################################
nagios4-4.4.6/tap/configure-15441-  # libtool script then.
nagios4-4.4.6/tap/configure:15442:  ltmain_in=`echo $ltmain | sed -e 's/\.sh$/.in/'`
nagios4-4.4.6/tap/configure-15443-  if test -f "$ltmain_in"; then
##############################################
nagios4-4.4.6/tap/configure-15867-  if test "$hard_links" = no; then
nagios4-4.4.6/tap/configure:15868:    { echo "$as_me:$LINENO: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5
nagios4-4.4.6/tap/configure:15869:echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;}
nagios4-4.4.6/tap/configure-15870-    need_locks=warn
##############################################
nagios4-4.4.6/tap/configure-15990-	# is EXPORTS), use it as is; otherwise, prepend...
nagios4-4.4.6/tap/configure:15991:	archive_expsym_cmds_GCJ='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then
nagios4-4.4.6/tap/configure-15992-	  cp $export_symbols $output_objdir/$soname.def;
##############################################
nagios4-4.4.6/tap/configure-16045-      supports_anon_versioning=no
nagios4-4.4.6/tap/configure:16046:      case `$LD -v 2>/dev/null` in
nagios4-4.4.6/tap/configure-16047-        *\ 01.* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11
##############################################
nagios4-4.4.6/tap/configure-16151-	# below for broken collect2 doesn't work under 4.3+
nagios4-4.4.6/tap/configure:16152:	  collect2name=`${CC} -print-prog-name=collect2`
nagios4-4.4.6/tap/configure-16153-	  if test -f "$collect2name" && \
##############################################
nagios4-4.4.6/tap/configure-16245-       hardcode_libdir_flag_spec_GCJ='${wl}-blibpath:$libdir:'"$aix_libpath"
nagios4-4.4.6/tap/configure:16246:	archive_expsym_cmds_GCJ="\$CC"' -o $output_objdir/$soname $libobjs $deplibs $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$no_entry_flag \${wl}$exp_sym_flag:\$export_symbols $shared_flag"
nagios4-4.4.6/tap/configure-16247-       else
##############################################
nagios4-4.4.6/tap/configure-16345-      # FIXME: Setting linknames here is a bad hack.
nagios4-4.4.6/tap/configure:16346:      archive_cmds_GCJ='$CC -o $lib $libobjs $compiler_flags `echo "$deplibs" | $SED -e '\''s/ -lc$//'\''` -link -dll~linknames='
nagios4-4.4.6/tap/configure-16347-      # The linker will automatically build a .lib file if we build a DLL.
##############################################
nagios4-4.4.6/tap/configure-16350-      old_archive_cmds_GCJ='lib /OUT:$oldlib$oldobjs$old_deplibs'
nagios4-4.4.6/tap/configure:16351:      fix_srcfile_path='`cygpath -w "$srcfile"`'
nagios4-4.4.6/tap/configure-16352-      enable_shared_with_static_runtimes_GCJ=yes
##############################################
nagios4-4.4.6/tap/configure-16391-         output_verbose_link_cmd='echo'
nagios4-4.4.6/tap/configure:16392:         archive_cmds_GCJ='$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $verstring'
nagios4-4.4.6/tap/configure-16393-         module_cmds_GCJ='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags'
##############################################
nagios4-4.4.6/tap/configure-16511-      if test "$GCC" = yes; then
nagios4-4.4.6/tap/configure:16512:	archive_cmds_GCJ='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
nagios4-4.4.6/tap/configure-16513-      else
nagios4-4.4.6/tap/configure:16514:	archive_cmds_GCJ='$LD -shared $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib'
nagios4-4.4.6/tap/configure-16515-	hardcode_libdir_flag_spec_ld_GCJ='-rpath $libdir'
##############################################
nagios4-4.4.6/tap/configure-16543-      hardcode_shlibpath_var_GCJ=no
nagios4-4.4.6/tap/configure:16544:      if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
nagios4-4.4.6/tap/configure-16545-	archive_cmds_GCJ='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'
##############################################
nagios4-4.4.6/tap/configure-16573-	allow_undefined_flag_GCJ=' ${wl}-expect_unresolved ${wl}\*'
nagios4-4.4.6/tap/configure:16574:	archive_cmds_GCJ='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
nagios4-4.4.6/tap/configure-16575-      else
nagios4-4.4.6/tap/configure-16576-	allow_undefined_flag_GCJ=' -expect_unresolved \*'
nagios4-4.4.6/tap/configure:16577:	archive_cmds_GCJ='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib'
nagios4-4.4.6/tap/configure-16578-      fi
##############################################
nagios4-4.4.6/tap/configure-16585-	allow_undefined_flag_GCJ=' ${wl}-expect_unresolved ${wl}\*'
nagios4-4.4.6/tap/configure:16586:	archive_cmds_GCJ='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
nagios4-4.4.6/tap/configure-16587-	hardcode_libdir_flag_spec_GCJ='${wl}-rpath ${wl}$libdir'
##############################################
nagios4-4.4.6/tap/configure-16589-	allow_undefined_flag_GCJ=' -expect_unresolved \*'
nagios4-4.4.6/tap/configure:16590:	archive_cmds_GCJ='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib'
nagios4-4.4.6/tap/configure:16591:	archive_expsym_cmds_GCJ='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; echo "-hidden">> $lib.exp~
nagios4-4.4.6/tap/configure:16592:	$LD -shared${allow_undefined_flag} -input $lib.exp $linker_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${objdir}/so_locations -o $lib~$rm $lib.exp'
nagios4-4.4.6/tap/configure-16593-
##############################################
nagios4-4.4.6/tap/configure-16811-if test "$GCC" = yes; then
nagios4-4.4.6/tap/configure:16812:  sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"`
nagios4-4.4.6/tap/configure-16813-  if echo "$sys_lib_search_path_spec" | grep ';' >/dev/null ; then
##############################################
nagios4-4.4.6/tap/configure-16817-    # okay in the real world where ";" in dirpaths is itself problematic.
nagios4-4.4.6/tap/configure:16818:    sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'`
nagios4-4.4.6/tap/configure-16819-  else
nagios4-4.4.6/tap/configure:16820:    sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED  -e "s/$PATH_SEPARATOR/ /g"`
nagios4-4.4.6/tap/configure-16821-  fi
##############################################
nagios4-4.4.6/tap/configure-16888-  # Create ${libname}_ixlibrary.a entries in /sys/libs.
nagios4-4.4.6/tap/configure:16889:  finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done'
nagios4-4.4.6/tap/configure-16890-  ;;
##############################################
nagios4-4.4.6/tap/configure-16921-    # DLL is installed to $(libdir)/../bin by postinstall_cmds
nagios4-4.4.6/tap/configure:16922:    postinstall_cmds='base_file=`basename \${file}`~
nagios4-4.4.6/tap/configure:16923:      dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i;echo \$dlname'\''`~
nagios4-4.4.6/tap/configure:16924:      dldir=$destdir/`dirname \$dlpath`~
nagios4-4.4.6/tap/configure-16925-      test -d \$dldir || mkdir -p \$dldir~
nagios4-4.4.6/tap/configure-16926-      $install_prog $dir/$dlname \$dldir/$dlname'
nagios4-4.4.6/tap/configure:16927:    postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~
nagios4-4.4.6/tap/configure-16928-      dlpath=$dir/\$dldll~
##############################################
nagios4-4.4.6/tap/configure-16934-      # Cygwin DLLs use 'cyg' prefix rather than 'lib'
nagios4-4.4.6/tap/configure:16935:      soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}'
nagios4-4.4.6/tap/configure-16936-      sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib"
##############################################
nagios4-4.4.6/tap/configure-16939-      # MinGW DLLs use traditional 'lib' prefix
nagios4-4.4.6/tap/configure:16940:      soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}'
nagios4-4.4.6/tap/configure:16941:      sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"`
nagios4-4.4.6/tap/configure-16942-      if echo "$sys_lib_search_path_spec" | grep ';[c-zC-Z]:/' >/dev/null; then
##############################################
nagios4-4.4.6/tap/configure-16948-        # which wouldn't understand a cygwinified path. Ahh.
nagios4-4.4.6/tap/configure:16949:        sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'`
nagios4-4.4.6/tap/configure-16950-      else
nagios4-4.4.6/tap/configure:16951:        sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED  -e "s/$PATH_SEPARATOR/ /g"`
nagios4-4.4.6/tap/configure-16952-      fi
##############################################
nagios4-4.4.6/tap/configure-16955-      # pw32 DLLs use 'pw' prefix rather than 'lib'
nagios4-4.4.6/tap/configure:16956:      library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/./-/g'`${versuffix}${shared_ext}'
nagios4-4.4.6/tap/configure-16957-      ;;
##############################################
nagios4-4.4.6/tap/configure-16961-  *)
nagios4-4.4.6/tap/configure:16962:    library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib'
nagios4-4.4.6/tap/configure-16963-    ;;
##############################################
nagios4-4.4.6/tap/configure-16981-  if test "$GCC" = yes; then
nagios4-4.4.6/tap/configure:16982:    sys_lib_search_path_spec=`$CC -print-search-dirs | tr "\n" "$PATH_SEPARATOR" | sed -e 's/libraries:/@libraries:/' | tr "@" "\n" | grep "^libraries:" | sed -e "s/^libraries://" -e "s,=/,/,g" -e "s,$PATH_SEPARATOR, ,g" -e "s,.*,& /lib /usr/lib /usr/local/lib,g"`
nagios4-4.4.6/tap/configure-16983-  else
##############################################
nagios4-4.4.6/tap/configure-17158-  if test -f /etc/ld.so.conf; then
nagios4-4.4.6/tap/configure:17159:    lt_ld_extra=`$SED -e 's/:,\t/ /g;s/=^=*$//;s/=^= * / /g' /etc/ld.so.conf | tr '\n' ' '`
nagios4-4.4.6/tap/configure-17160-    sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra"
##############################################
nagios4-4.4.6/tap/configure-17225-  shlibpath_var=LD_LIBRARY_PATH
nagios4-4.4.6/tap/configure:17226:  if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
nagios4-4.4.6/tap/configure-17227-    case $host_os in
##############################################
nagios4-4.4.6/tap/configure-18284-      # Double-quote double-evaled strings.
nagios4-4.4.6/tap/configure:18285:      eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\""
nagios4-4.4.6/tap/configure-18286-      ;;
nagios4-4.4.6/tap/configure-18287-    *)
nagios4-4.4.6/tap/configure:18288:      eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$sed_quote_subst\"\`\\\""
nagios4-4.4.6/tap/configure-18289-      ;;
##############################################
nagios4-4.4.6/tap/configure-18294-  *'\$0 --fallback-echo"')
nagios4-4.4.6/tap/configure:18295:    lt_echo=`$echo "X$lt_echo" | $Xsed -e 's/\\\\\\\$0 --fallback-echo"$/$0 --fallback-echo"/'`
nagios4-4.4.6/tap/configure-18296-    ;;
##############################################
nagios4-4.4.6/tap/configure-18604-  # libtool script then.
nagios4-4.4.6/tap/configure:18605:  ltmain_in=`echo $ltmain | sed -e 's/\.sh$/.in/'`
nagios4-4.4.6/tap/configure-18606-  if test -f "$ltmain_in"; then
##############################################
nagios4-4.4.6/tap/configure-18729-      # Double-quote double-evaled strings.
nagios4-4.4.6/tap/configure:18730:      eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\""
nagios4-4.4.6/tap/configure-18731-      ;;
nagios4-4.4.6/tap/configure-18732-    *)
nagios4-4.4.6/tap/configure:18733:      eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$sed_quote_subst\"\`\\\""
nagios4-4.4.6/tap/configure-18734-      ;;
##############################################
nagios4-4.4.6/tap/configure-18739-  *'\$0 --fallback-echo"')
nagios4-4.4.6/tap/configure:18740:    lt_echo=`$echo "X$lt_echo" | $Xsed -e 's/\\\\\\\$0 --fallback-echo"$/$0 --fallback-echo"/'`
nagios4-4.4.6/tap/configure-18741-    ;;
##############################################
nagios4-4.4.6/tap/configure-19049-  # libtool script then.
nagios4-4.4.6/tap/configure:19050:  ltmain_in=`echo $ltmain | sed -e 's/\.sh$/.in/'`
nagios4-4.4.6/tap/configure-19051-  if test -f "$ltmain_in"; then
##############################################
nagios4-4.4.6/tap/configure-19450-do
nagios4-4.4.6/tap/configure:19451:as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
nagios4-4.4.6/tap/configure-19452-if eval "test \"\${$as_ac_Header+set}\" = set"; then
##############################################
nagios4-4.4.6/tap/configure-19457-fi
nagios4-4.4.6/tap/configure:19458:echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
nagios4-4.4.6/tap/configure:19459:echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
nagios4-4.4.6/tap/configure-19460-else
##############################################
nagios4-4.4.6/tap/configure-19584-fi
nagios4-4.4.6/tap/configure:19585:echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
nagios4-4.4.6/tap/configure:19586:echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
nagios4-4.4.6/tap/configure-19587-
nagios4-4.4.6/tap/configure-19588-fi
nagios4-4.4.6/tap/configure:19589:if test `eval echo '${'$as_ac_Header'}'` = yes; then
nagios4-4.4.6/tap/configure-19590-  cat >>confdefs.h <<_ACEOF
nagios4-4.4.6/tap/configure:19591:#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
nagios4-4.4.6/tap/configure-19592-_ACEOF
##############################################
nagios4-4.4.6/tap/configure-19600-do
nagios4-4.4.6/tap/configure:19601:as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
nagios4-4.4.6/tap/configure-19602-if eval "test \"\${$as_ac_Header+set}\" = set"; then
##############################################
nagios4-4.4.6/tap/configure-19607-fi
nagios4-4.4.6/tap/configure:19608:echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
nagios4-4.4.6/tap/configure:19609:echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
nagios4-4.4.6/tap/configure-19610-else
##############################################
nagios4-4.4.6/tap/configure-19734-fi
nagios4-4.4.6/tap/configure:19735:echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_Header'}'`" >&5
nagios4-4.4.6/tap/configure:19736:echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
nagios4-4.4.6/tap/configure-19737-
nagios4-4.4.6/tap/configure-19738-fi
nagios4-4.4.6/tap/configure:19739:if test `eval echo '${'$as_ac_Header'}'` = yes; then
nagios4-4.4.6/tap/configure-19740-  cat >>confdefs.h <<_ACEOF
nagios4-4.4.6/tap/configure:19741:#define `echo "HAVE_$ac_header" | $as_tr_cpp` 1
nagios4-4.4.6/tap/configure-19742-_ACEOF
##############################################
nagios4-4.4.6/tap/configure-19861-do
nagios4-4.4.6/tap/configure:19862:as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
nagios4-4.4.6/tap/configure-19863-echo "$as_me:$LINENO: checking for $ac_func" >&5
##############################################
nagios4-4.4.6/tap/configure-19950-fi
nagios4-4.4.6/tap/configure:19951:echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
nagios4-4.4.6/tap/configure:19952:echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
nagios4-4.4.6/tap/configure:19953:if test `eval echo '${'$as_ac_var'}'` = yes; then
nagios4-4.4.6/tap/configure-19954-  cat >>confdefs.h <<_ACEOF
nagios4-4.4.6/tap/configure:19955:#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
nagios4-4.4.6/tap/configure-19956-_ACEOF
##############################################
nagios4-4.4.6/tap/configure-20062-do
nagios4-4.4.6/tap/configure:20063:as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
nagios4-4.4.6/tap/configure-20064-echo "$as_me:$LINENO: checking for $ac_func" >&5
##############################################
nagios4-4.4.6/tap/configure-20151-fi
nagios4-4.4.6/tap/configure:20152:echo "$as_me:$LINENO: result: `eval echo '${'$as_ac_var'}'`" >&5
nagios4-4.4.6/tap/configure:20153:echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
nagios4-4.4.6/tap/configure:20154:if test `eval echo '${'$as_ac_var'}'` = yes; then
nagios4-4.4.6/tap/configure-20155-  cat >>confdefs.h <<_ACEOF
nagios4-4.4.6/tap/configure:20156:#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
nagios4-4.4.6/tap/configure-20157-_ACEOF
##############################################
nagios4-4.4.6/tap/configure-20267-ac_LF_and_DOT=`echo; echo .`
nagios4-4.4.6/tap/configure:20268:DEFS=`sed -n -f confdef2opt.sed confdefs.h | tr "$ac_LF_and_DOT" ' .'`
nagios4-4.4.6/tap/configure-20269-rm -f confdef2opt.sed
##############################################
nagios4-4.4.6/tap/configure-20363-do
nagios4-4.4.6/tap/configure:20364:  if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then
nagios4-4.4.6/tap/configure-20365-    eval $as_var=C; export $as_var
##############################################
nagios4-4.4.6/tap/configure-20421-  as_lineno_2=$LINENO
nagios4-4.4.6/tap/configure:20422:  as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null`
nagios4-4.4.6/tap/configure-20423-  test "x$as_lineno_1" != "x$as_lineno_2" &&
##############################################
nagios4-4.4.6/tap/configure-20461-  as_lineno_2=$LINENO
nagios4-4.4.6/tap/configure:20462:  as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null`
nagios4-4.4.6/tap/configure-20463-  test "x$as_lineno_1" != "x$as_lineno_2" &&
##############################################
nagios4-4.4.6/tap/configure-20638-configured by $0, generated by GNU Autoconf 2.59,
nagios4-4.4.6/tap/configure:20639:  with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
nagios4-4.4.6/tap/configure-20640-
##############################################
nagios4-4.4.6/tap/configure-20655-  --*=*)
nagios4-4.4.6/tap/configure:20656:    ac_option=`expr "x$1" : 'x\([^=]*\)='`
nagios4-4.4.6/tap/configure:20657:    ac_optarg=`expr "x$1" : 'x[^=]*=\(.*\)'`
nagios4-4.4.6/tap/configure-20658-    ac_shift=:
##############################################
nagios4-4.4.6/tap/configure-20951-      fi
nagios4-4.4.6/tap/configure:20952:      ac_sed_frag=`expr $ac_sed_frag + 1`
nagios4-4.4.6/tap/configure-20953-      ac_beg=$ac_end
nagios4-4.4.6/tap/configure:20954:      ac_end=`expr $ac_end + $ac_max_sed_lines`
nagios4-4.4.6/tap/configure-20955-    fi
##############################################
nagios4-4.4.6/tap/configure-20968-	cat >$tmp/stdin
nagios4-4.4.6/tap/configure:20969:	ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
nagios4-4.4.6/tap/configure:20970:	ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
nagios4-4.4.6/tap/configure:20971:  *:* ) ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
nagios4-4.4.6/tap/configure:20972:	ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
nagios4-4.4.6/tap/configure-20973-  * )   ac_file_in=$ac_file.in ;;
##############################################
nagios4-4.4.6/tap/configure-21016-if test "$ac_dir" != .; then
nagios4-4.4.6/tap/configure:21017:  ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'`
nagios4-4.4.6/tap/configure-21018-  # A "../" for each directory in $ac_dir_suffix.
nagios4-4.4.6/tap/configure:21019:  ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'`
nagios4-4.4.6/tap/configure-21020-else
##############################################
nagios4-4.4.6/tap/configure-21029-    else
nagios4-4.4.6/tap/configure:21030:       ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'`
nagios4-4.4.6/tap/configure-21031-    fi ;;
##############################################
nagios4-4.4.6/tap/configure-21162-for ac_file in : $CONFIG_COMMANDS; do test "x$ac_file" = x: && continue
nagios4-4.4.6/tap/configure:21163:  ac_dest=`echo "$ac_file" | sed 's,:.*,,'`
nagios4-4.4.6/tap/configure:21164:  ac_source=`echo "$ac_file" | sed 's,[^:]*:,,'`
nagios4-4.4.6/tap/configure-21165-  ac_dir=`(dirname "$ac_dest") 2>/dev/null ||
##############################################
nagios4-4.4.6/tap/configure-21204-if test "$ac_dir" != .; then
nagios4-4.4.6/tap/configure:21205:  ac_dir_suffix=/`echo "$ac_dir" | sed 's,^\.[\\/],,'`
nagios4-4.4.6/tap/configure-21206-  # A "../" for each directory in $ac_dir_suffix.
nagios4-4.4.6/tap/configure:21207:  ac_top_builddir=`echo "$ac_dir_suffix" | sed 's,/[^\\/]*,../,g'`
nagios4-4.4.6/tap/configure-21208-else
##############################################
nagios4-4.4.6/tap/configure-21217-    else
nagios4-4.4.6/tap/configure:21218:       ac_top_srcdir=`echo $ac_top_builddir | sed 's,/$,,'`
nagios4-4.4.6/tap/configure-21219-    fi ;;
##############################################
nagios4-4.4.6/tap/configure-21272-  # Strip MF so we end up with the name of the file.
nagios4-4.4.6/tap/configure:21273:  mf=`echo "$mf" | sed -e 's/:.*$//'`
nagios4-4.4.6/tap/configure-21274-  # Check whether this is an Automake generated Makefile or not.
##############################################
nagios4-4.4.6/tap/configure-21297-  # from the Makefile without running `make'.
nagios4-4.4.6/tap/configure:21298:  DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
nagios4-4.4.6/tap/configure-21299-  test -z "$DEPDIR" && continue
nagios4-4.4.6/tap/configure:21300:  am__include=`sed -n 's/^am__include = //p' < "$mf"`
nagios4-4.4.6/tap/configure-21301-  test -z "am__include" && continue
nagios4-4.4.6/tap/configure:21302:  am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
nagios4-4.4.6/tap/configure-21303-  # When using ansi2knr, U may be empty or an underscore; expand it
nagios4-4.4.6/tap/configure:21304:  U=`sed -n 's/^U = //p' < "$mf"`
nagios4-4.4.6/tap/configure-21305-  # Find all dependency output files, they are included files with
##############################################
nagios4-4.4.6/tap/depcomp-68-  sed 's|[^\\/]*$|'${DEPDIR-.deps}'/&|;s|\.\([^.]*\)$|.P\1|;s|Pobj$|Po|'`}
nagios4-4.4.6/tap/depcomp:69:tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`}
nagios4-4.4.6/tap/depcomp-70-
##############################################
nagios4-4.4.6/tap/depcomp-203-  # Version 6 uses the directory in both cases.
nagios4-4.4.6/tap/depcomp:204:  stripped=`echo "$object" | sed 's/\(.*\)\..*$/\1/'`
nagios4-4.4.6/tap/depcomp-205-  tmpdepfile="$stripped.u"
##############################################
nagios4-4.4.6/tap/depcomp-214-  else
nagios4-4.4.6/tap/depcomp:215:    stripped=`echo "$stripped" | sed 's,^.*/,,'`
nagios4-4.4.6/tap/depcomp-216-    tmpdepfile="$stripped.u"
##############################################
nagios4-4.4.6/tap/depcomp-228-    # Do two passes, one to just change these to
nagios4-4.4.6/tap/depcomp:229:    # `$object: dependent.h' and one to simply `dependent.h:'.
nagios4-4.4.6/tap/depcomp-230-    sed -e "s,^$outname:,$object :," < "$tmpdepfile" > "$depfile"
##############################################
nagios4-4.4.6/tap/depcomp-269-  # Do two passes, one to just change these to
nagios4-4.4.6/tap/depcomp:270:  # `$object: dependent.h' and one to simply `dependent.h:'.
nagios4-4.4.6/tap/depcomp-271-  sed "s,^[^:]*:,$object :," < "$tmpdepfile" > "$depfile"
##############################################
nagios4-4.4.6/tap/depcomp-284-   # Subdirectories are respected.
nagios4-4.4.6/tap/depcomp:285:   dir=`echo "$object" | sed -e 's|/[^/]*$|/|'`
nagios4-4.4.6/tap/depcomp-286-   test "x$dir" = "x$object" && dir=
nagios4-4.4.6/tap/depcomp:287:   base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'`
nagios4-4.4.6/tap/depcomp-288-
##############################################
nagios4-4.4.6/tap/depcomp-416-  done
nagios4-4.4.6/tap/depcomp:417:  obj_suffix="`echo $object | sed 's/^.*\././'`"
nagios4-4.4.6/tap/depcomp-418-  touch "$tmpdepfile"
##############################################
nagios4-4.4.6/tap/install-sh-210-      fi
nagios4-4.4.6/tap/install-sh:211:      dst=$dst/`basename "$src"`
nagios4-4.4.6/tap/install-sh-212-    fi
##############################################
nagios4-4.4.6/tap/install-sh-215-  # This sed command emulates the dirname command.
nagios4-4.4.6/tap/install-sh:216:  dstdir=`echo "$dst" | sed -e 's,/*$,,;s,[^/]*$,,;s,/*$,,;s,^$,.,'`
nagios4-4.4.6/tap/install-sh-217-
##############################################
nagios4-4.4.6/tap/install-sh-228-    IFS='%'
nagios4-4.4.6/tap/install-sh:229:    set x `echo "$dstdir" | sed -e 's@/@%@g' -e 's@^%@/@'`
nagios4-4.4.6/tap/install-sh-230-    shift
##############################################
nagios4-4.4.6/tap/install-sh-256-  else
nagios4-4.4.6/tap/install-sh:257:    dstfile=`basename "$dst"`
nagios4-4.4.6/tap/install-sh-258-
##############################################
nagios4-4.4.6/tap/ltmain.sh-36-# The name of this program:
nagios4-4.4.6/tap/ltmain.sh:37:progname=`echo "$progpath" | $SED $basename`
nagios4-4.4.6/tap/ltmain.sh-38-modename="$progname"
##############################################
nagios4-4.4.6/tap/ltmain.sh-61-  :
nagios4-4.4.6/tap/ltmain.sh:62:elif test "X`($echo '\t') 2>/dev/null`" = 'X\t'; then
nagios4-4.4.6/tap/ltmain.sh-63-  # Yippee, $echo works!
##############################################
nagios4-4.4.6/tap/ltmain.sh-147-  win32_libid_type="unknown"
nagios4-4.4.6/tap/ltmain.sh:148:  win32_fileres=`file -L $1 2>/dev/null`
nagios4-4.4.6/tap/ltmain.sh-149-  case $win32_fileres in
##############################################
nagios4-4.4.6/tap/ltmain.sh-199-      # but not from the CC environment variable when configure was run.
nagios4-4.4.6/tap/ltmain.sh:200:      " $CC "* | "$CC "* | " `$echo $CC` "* | "`$echo $CC` "* | " $CC_quoted"* | "$CC_quoted "* | " `$echo $CC_quoted` "* | "`$echo $CC_quoted` "*) ;;
nagios4-4.4.6/tap/ltmain.sh-201-      # Blanks at the start of $base_compile will cause this to fail
##############################################
nagios4-4.4.6/tap/ltmain.sh-206-	    # Evaluate the configuration.
nagios4-4.4.6/tap/ltmain.sh:207:	    eval "`${SED} -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $progpath`"
nagios4-4.4.6/tap/ltmain.sh-208-	    CC_quoted=
##############################################
nagios4-4.4.6/tap/ltmain.sh-218-	    case "$@ " in
nagios4-4.4.6/tap/ltmain.sh:219:	      " $CC "* | "$CC "* | " `$echo $CC` "* | "`$echo $CC` "* | " $CC_quoted"* | "$CC_quoted "* | " `$echo $CC_quoted` "* | "`$echo $CC_quoted` "*)
nagios4-4.4.6/tap/ltmain.sh-220-	      # The compiler in the base compile command matches
##############################################
nagios4-4.4.6/tap/ltmain.sh-269-      esac
nagios4-4.4.6/tap/ltmain.sh:270:      my_xlib=`$echo "X$my_xlib" | $Xsed -e 's%^.*/%%'`
nagios4-4.4.6/tap/ltmain.sh-271-      my_xdir="$my_gentop/$my_xlib"
##############################################
nagios4-4.4.6/tap/ltmain.sh-289-	  darwin_curdir=`pwd`
nagios4-4.4.6/tap/ltmain.sh:290:	  darwin_base_archive=`basename $darwin_archive`
nagios4-4.4.6/tap/ltmain.sh:291:	  darwin_arches=`lipo -info "$darwin_archive" 2>/dev/null | $EGREP Architectures 2>/dev/null`
nagios4-4.4.6/tap/ltmain.sh-292-	  if test -n "$darwin_arches"; then 
nagios4-4.4.6/tap/ltmain.sh:293:	    darwin_arches=`echo "$darwin_arches" | $SED -e 's/.*are://'`
nagios4-4.4.6/tap/ltmain.sh-294-	    darwin_arch=
##############################################
nagios4-4.4.6/tap/ltmain.sh-307-      ## Okay now we have a bunch of thin objects, gotta fatten them up :)
nagios4-4.4.6/tap/ltmain.sh:308:	    darwin_filelist=`find unfat-$$ -type f | xargs basename | sort -u | $NL2SP`
nagios4-4.4.6/tap/ltmain.sh-309-	    darwin_file=
##############################################
nagios4-4.4.6/tap/ltmain.sh-311-	    for darwin_file in $darwin_filelist; do
nagios4-4.4.6/tap/ltmain.sh:312:	      darwin_files=`find unfat-$$ -name $darwin_file -print | $NL2SP`
nagios4-4.4.6/tap/ltmain.sh-313-	      lipo -create -output "$darwin_file" $darwin_files
##############################################
nagios4-4.4.6/tap/ltmain.sh-343-	      do
nagios4-4.4.6/tap/ltmain.sh:344:		name_to=`$echo "X$name_to" | $Xsed -e "s/\([^.]*\)/\1-$i/"`
nagios4-4.4.6/tap/ltmain.sh-345-	      done
##############################################
nagios4-4.4.6/tap/ltmain.sh-347-	      $run eval "(cd \$my_xdir && $AR xN $i \$my_xabs '$name' && $mv '$name' '$name_to')" || exit $?
nagios4-4.4.6/tap/ltmain.sh:348:	      i=`expr $i + 1`
nagios4-4.4.6/tap/ltmain.sh-349-	    done
##############################################
nagios4-4.4.6/tap/ltmain.sh-353-      esac
nagios4-4.4.6/tap/ltmain.sh:354:      my_oldobjs="$my_oldobjs "`find $my_xdir -name \*.$objext -print -o -name \*.lo -print | $NL2SP`
nagios4-4.4.6/tap/ltmain.sh-355-    done
##############################################
nagios4-4.4.6/tap/ltmain.sh-371-  case $arg in
nagios4-4.4.6/tap/ltmain.sh:372:  -*=*) optarg=`$echo "X$arg" | $Xsed -e 's/[-_a-zA-Z0-9]*=//'` ;;
nagios4-4.4.6/tap/ltmain.sh-373-  *) optarg= ;;
##############################################
nagios4-4.4.6/tap/ltmain.sh-402-	  # Evaluate the configuration.
nagios4-4.4.6/tap/ltmain.sh:403:	  eval "`${SED} -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$tagname'$/,/^# ### END LIBTOOL TAG CONFIG: '$tagname'$/p' < $progpath`"
nagios4-4.4.6/tap/ltmain.sh-404-	else
##############################################
nagios4-4.4.6/tap/ltmain.sh-629-	-Wc,*)
nagios4-4.4.6/tap/ltmain.sh:630:	  args=`$echo "X$arg" | $Xsed -e "s/^-Wc,//"`
nagios4-4.4.6/tap/ltmain.sh-631-	  lastarg=
##############################################
nagios4-4.4.6/tap/ltmain.sh-646-	  IFS="$save_ifs"
nagios4-4.4.6/tap/ltmain.sh:647:	  lastarg=`$echo "X$lastarg" | $Xsed -e "s/^ //"`
nagios4-4.4.6/tap/ltmain.sh-648-
##############################################
nagios4-4.4.6/tap/ltmain.sh-665-      # Aesthetically quote the previous argument.
nagios4-4.4.6/tap/ltmain.sh:666:      lastarg=`$echo "X$lastarg" | $Xsed -e "$sed_quote_subst"`
nagios4-4.4.6/tap/ltmain.sh-667-
##############################################
nagios4-4.4.6/tap/ltmain.sh-690-      # Get the name of the library object.
nagios4-4.4.6/tap/ltmain.sh:691:      [ -z "$libobj" ] && libobj=`$echo "X$srcfile" | $Xsed -e 's%^.*/%%'`
nagios4-4.4.6/tap/ltmain.sh-692-      ;;
##############################################
nagios4-4.4.6/tap/ltmain.sh-701-    *.ads) xform=ads ;;
nagios4-4.4.6/tap/ltmain.sh:702:    *.asm) xform=asm ;;
nagios4-4.4.6/tap/ltmain.sh-703-    *.c++) xform=c++ ;;
##############################################
nagios4-4.4.6/tap/ltmain.sh-713-
nagios4-4.4.6/tap/ltmain.sh:714:    libobj=`$echo "X$libobj" | $Xsed -e "s/\.$xform$/.lo/"`
nagios4-4.4.6/tap/ltmain.sh-715-
nagios4-4.4.6/tap/ltmain.sh-716-    case $libobj in
nagios4-4.4.6/tap/ltmain.sh:717:    *.lo) obj=`$echo "X$libobj" | $Xsed -e "$lo2o"` ;;
nagios4-4.4.6/tap/ltmain.sh-718-    *)
##############################################
nagios4-4.4.6/tap/ltmain.sh-744-
nagios4-4.4.6/tap/ltmain.sh:745:    objname=`$echo "X$obj" | $Xsed -e 's%^.*/%%'`
nagios4-4.4.6/tap/ltmain.sh:746:    xdir=`$echo "X$obj" | $Xsed -e 's%/[^/]*$%%'`
nagios4-4.4.6/tap/ltmain.sh-747-    if test "X$xdir" = "X$obj"; then
##############################################
nagios4-4.4.6/tap/ltmain.sh-783-    if test "$compiler_c_o" = no; then
nagios4-4.4.6/tap/ltmain.sh:784:      output_obj=`$echo "X$srcfile" | $Xsed -e 's%^.*/%%' -e 's%\.[^.]*$%%'`.${objext}
nagios4-4.4.6/tap/ltmain.sh-785-      lockfile="$output_obj.lock"
##############################################
nagios4-4.4.6/tap/ltmain.sh-804-*** ERROR, $lockfile exists and contains:
nagios4-4.4.6/tap/ltmain.sh:805:`cat $lockfile 2>/dev/null`
nagios4-4.4.6/tap/ltmain.sh-806-
##############################################
nagios4-4.4.6/tap/ltmain.sh-873-      if test "$need_locks" = warn &&
nagios4-4.4.6/tap/ltmain.sh:874:	 test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then
nagios4-4.4.6/tap/ltmain.sh-875-	$echo "\
nagios4-4.4.6/tap/ltmain.sh-876-*** ERROR, $lockfile contains:
nagios4-4.4.6/tap/ltmain.sh:877:`cat $lockfile 2>/dev/null`
nagios4-4.4.6/tap/ltmain.sh-878-
##############################################
nagios4-4.4.6/tap/ltmain.sh-945-      if test "$need_locks" = warn &&
nagios4-4.4.6/tap/ltmain.sh:946:	 test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then
nagios4-4.4.6/tap/ltmain.sh-947-	$echo "\
nagios4-4.4.6/tap/ltmain.sh-948-*** ERROR, $lockfile contains:
nagios4-4.4.6/tap/ltmain.sh:949:`cat $lockfile 2>/dev/null`
nagios4-4.4.6/tap/ltmain.sh-950-
##############################################
nagios4-4.4.6/tap/ltmain.sh-1107-      *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \	]*|*]*|"")
nagios4-4.4.6/tap/ltmain.sh:1108:	qarg=\"`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`\" ### testsuite: skip nested quoting test
nagios4-4.4.6/tap/ltmain.sh-1109-	;;
##############################################
nagios4-4.4.6/tap/ltmain.sh-1196-	    moreargs=
nagios4-4.4.6/tap/ltmain.sh:1197:	    for fil in `cat $save_arg`
nagios4-4.4.6/tap/ltmain.sh-1198-	    do
##############################################
nagios4-4.4.6/tap/ltmain.sh-1223-		# Extract subdirectory from the argument.
nagios4-4.4.6/tap/ltmain.sh:1224:		xdir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'`
nagios4-4.4.6/tap/ltmain.sh-1225-		if test "X$xdir" = "X$arg"; then
##############################################
nagios4-4.4.6/tap/ltmain.sh-1277-		  # Extract subdirectory from the argument.
nagios4-4.4.6/tap/ltmain.sh:1278:		  xdir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'`
nagios4-4.4.6/tap/ltmain.sh-1279-		  if test "X$xdir" = "X$arg"; then
##############################################
nagios4-4.4.6/tap/ltmain.sh-1284-
nagios4-4.4.6/tap/ltmain.sh:1285:		  pic_object=`$echo "X${xdir}${objdir}/${arg}" | $Xsed -e "$lo2o"`
nagios4-4.4.6/tap/ltmain.sh:1286:		  non_pic_object=`$echo "X${xdir}${arg}" | $Xsed -e "$lo2o"`
nagios4-4.4.6/tap/ltmain.sh-1287-		  libobjs="$libobjs $pic_object"
##############################################
nagios4-4.4.6/tap/ltmain.sh-1426-      -L*)
nagios4-4.4.6/tap/ltmain.sh:1427:	dir=`$echo "X$arg" | $Xsed -e 's/^-L//'`
nagios4-4.4.6/tap/ltmain.sh-1428-	# We need an absolute path.
##############################################
nagios4-4.4.6/tap/ltmain.sh-1431-	*)
nagios4-4.4.6/tap/ltmain.sh:1432:	  absdir=`cd "$dir" && pwd`
nagios4-4.4.6/tap/ltmain.sh-1433-	  if test -z "$absdir"; then
##############################################
nagios4-4.4.6/tap/ltmain.sh-1514-	# to be aesthetically quoted because they are evaled later.
nagios4-4.4.6/tap/ltmain.sh:1515:	arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
nagios4-4.4.6/tap/ltmain.sh-1516-	case $arg in
##############################################
nagios4-4.4.6/tap/ltmain.sh-1585-      -R*)
nagios4-4.4.6/tap/ltmain.sh:1586:	dir=`$echo "X$arg" | $Xsed -e 's/^-R//'`
nagios4-4.4.6/tap/ltmain.sh-1587-	# We need an absolute path.
##############################################
nagios4-4.4.6/tap/ltmain.sh-1626-      -Wc,*)
nagios4-4.4.6/tap/ltmain.sh:1627:	args=`$echo "X$arg" | $Xsed -e "$sed_quote_subst" -e 's/^-Wc,//'`
nagios4-4.4.6/tap/ltmain.sh-1628-	arg=
##############################################
nagios4-4.4.6/tap/ltmain.sh-1640-	IFS="$save_ifs"
nagios4-4.4.6/tap/ltmain.sh:1641:	arg=`$echo "X$arg" | $Xsed -e "s/^ //"`
nagios4-4.4.6/tap/ltmain.sh-1642-	;;
##############################################
nagios4-4.4.6/tap/ltmain.sh-1644-      -Wl,*)
nagios4-4.4.6/tap/ltmain.sh:1645:	args=`$echo "X$arg" | $Xsed -e "$sed_quote_subst" -e 's/^-Wl,//'`
nagios4-4.4.6/tap/ltmain.sh-1646-	arg=
##############################################
nagios4-4.4.6/tap/ltmain.sh-1659-	IFS="$save_ifs"
nagios4-4.4.6/tap/ltmain.sh:1660:	arg=`$echo "X$arg" | $Xsed -e "s/^ //"`
nagios4-4.4.6/tap/ltmain.sh-1661-	;;
##############################################
nagios4-4.4.6/tap/ltmain.sh-1681-	# to be aesthetically quoted because they are evaled later.
nagios4-4.4.6/tap/ltmain.sh:1682:	arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
nagios4-4.4.6/tap/ltmain.sh-1683-	case $arg in
##############################################
nagios4-4.4.6/tap/ltmain.sh-1718-	  # Extract subdirectory from the argument.
nagios4-4.4.6/tap/ltmain.sh:1719:	  xdir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'`
nagios4-4.4.6/tap/ltmain.sh-1720-	  if test "X$xdir" = "X$arg"; then
##############################################
nagios4-4.4.6/tap/ltmain.sh-1772-	    # Extract subdirectory from the argument.
nagios4-4.4.6/tap/ltmain.sh:1773:	    xdir=`$echo "X$arg" | $Xsed -e 's%/[^/]*$%%'`
nagios4-4.4.6/tap/ltmain.sh-1774-	    if test "X$xdir" = "X$arg"; then
##############################################
nagios4-4.4.6/tap/ltmain.sh-1779-
nagios4-4.4.6/tap/ltmain.sh:1780:	    pic_object=`$echo "X${xdir}${objdir}/${arg}" | $Xsed -e "$lo2o"`
nagios4-4.4.6/tap/ltmain.sh:1781:	    non_pic_object=`$echo "X${xdir}${arg}" | $Xsed -e "$lo2o"`
nagios4-4.4.6/tap/ltmain.sh-1782-	    libobjs="$libobjs $pic_object"
##############################################
nagios4-4.4.6/tap/ltmain.sh-1815-	# to be aesthetically quoted because they are evaled later.
nagios4-4.4.6/tap/ltmain.sh:1816:	arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
nagios4-4.4.6/tap/ltmain.sh-1817-	case $arg in
##############################################
nagios4-4.4.6/tap/ltmain.sh-1845-    # calculate the name of the file, without its directory
nagios4-4.4.6/tap/ltmain.sh:1846:    outputname=`$echo "X$output" | $Xsed -e 's%^.*/%%'`
nagios4-4.4.6/tap/ltmain.sh-1847-    libobjs_save="$libobjs"
##############################################
nagios4-4.4.6/tap/ltmain.sh-1850-      # get the directories listed in $shlibpath_var
nagios4-4.4.6/tap/ltmain.sh:1851:      eval shlib_search_path=\`\$echo \"X\${$shlibpath_var}\" \| \$Xsed -e \'s/:/ /g\'\`
nagios4-4.4.6/tap/ltmain.sh-1852-    else
##############################################
nagios4-4.4.6/tap/ltmain.sh-1857-
nagios4-4.4.6/tap/ltmain.sh:1858:    output_objdir=`$echo "X$output" | $Xsed -e 's%/[^/]*$%%'`
nagios4-4.4.6/tap/ltmain.sh-1859-    if test "X$output_objdir" = "X$output"; then
##############################################
nagios4-4.4.6/tap/ltmain.sh-1998-	  fi
nagios4-4.4.6/tap/ltmain.sh:1999:	  name=`$echo "X$deplib" | $Xsed -e 's/^-l//'`
nagios4-4.4.6/tap/ltmain.sh-2000-	  for searchdir in $newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path; do
##############################################
nagios4-4.4.6/tap/ltmain.sh-2042-		    found=no
nagios4-4.4.6/tap/ltmain.sh:2043:		    ladir=`$echo "X$lib" | $Xsed -e 's%/[^/]*$%%'`
nagios4-4.4.6/tap/ltmain.sh-2044-		    test "X$ladir" = "X$lib" && ladir="."
##############################################
nagios4-4.4.6/tap/ltmain.sh-2067-	    newdependency_libs="$deplib $newdependency_libs"
nagios4-4.4.6/tap/ltmain.sh:2068:	    newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'`
nagios4-4.4.6/tap/ltmain.sh-2069-	    ;;
##############################################
nagios4-4.4.6/tap/ltmain.sh-2080-	    fi
nagios4-4.4.6/tap/ltmain.sh:2081:	    newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'`
nagios4-4.4.6/tap/ltmain.sh-2082-	    ;;
##############################################
nagios4-4.4.6/tap/ltmain.sh-2090-	  if test "$pass" = link; then
nagios4-4.4.6/tap/ltmain.sh:2091:	    dir=`$echo "X$deplib" | $Xsed -e 's/^-R//'`
nagios4-4.4.6/tap/ltmain.sh-2092-	    # Make sure the xrpath contains only unique directories.
##############################################
nagios4-4.4.6/tap/ltmain.sh-2112-		set dummy $deplibs_check_method
nagios4-4.4.6/tap/ltmain.sh:2113:	        match_pattern_regex=`expr "$deplibs_check_method" : "$2 \(.*\)"`
nagios4-4.4.6/tap/ltmain.sh-2114-		if eval $echo \"$deplib\" 2>/dev/null \
##############################################
nagios4-4.4.6/tap/ltmain.sh-2184-
nagios4-4.4.6/tap/ltmain.sh:2185:	ladir=`$echo "X$lib" | $Xsed -e 's%/[^/]*$%%'`
nagios4-4.4.6/tap/ltmain.sh-2186-	test "X$ladir" = "X$lib" && ladir="."
##############################################
nagios4-4.4.6/tap/ltmain.sh-2274-	*)
nagios4-4.4.6/tap/ltmain.sh:2275:	  abs_ladir=`cd "$ladir" && pwd`
nagios4-4.4.6/tap/ltmain.sh-2276-	  if test -z "$abs_ladir"; then
##############################################
nagios4-4.4.6/tap/ltmain.sh-2282-	esac
nagios4-4.4.6/tap/ltmain.sh:2283:	laname=`$echo "X$lib" | $Xsed -e 's%^.*/%%'`
nagios4-4.4.6/tap/ltmain.sh-2284-
##############################################
nagios4-4.4.6/tap/ltmain.sh-2308-	fi # $installed = yes
nagios4-4.4.6/tap/ltmain.sh:2309:	name=`$echo "X$laname" | $Xsed -e 's/\.la$//' -e 's/^lib//'`
nagios4-4.4.6/tap/ltmain.sh-2310-
##############################################
nagios4-4.4.6/tap/ltmain.sh-2355-	    case $deplib in
nagios4-4.4.6/tap/ltmain.sh:2356:	    -L*) newlib_search_path="$newlib_search_path "`$echo "X$deplib" | $Xsed -e 's/^-L//'`;; ### testsuite: skip nested quoting test
nagios4-4.4.6/tap/ltmain.sh-2357-	    esac
##############################################
nagios4-4.4.6/tap/ltmain.sh-2470-	    shift; shift
nagios4-4.4.6/tap/ltmain.sh:2471:	    libname=`eval \\$echo \"$libname_spec\"`
nagios4-4.4.6/tap/ltmain.sh-2472-	    # use dlname if we got it. it's perfectly good, no?
##############################################
nagios4-4.4.6/tap/ltmain.sh-2478-	      *cygwin* | mingw*)
nagios4-4.4.6/tap/ltmain.sh:2479:		major=`expr $current - $age`
nagios4-4.4.6/tap/ltmain.sh-2480-		versuffix="-$major"
##############################################
nagios4-4.4.6/tap/ltmain.sh-2489-	    soroot="$soname"
nagios4-4.4.6/tap/ltmain.sh:2490:	    soname=`$echo $soroot | ${SED} -e 's/^.*\///'`
nagios4-4.4.6/tap/ltmain.sh:2491:	    newlib="libimp-`$echo $soname | ${SED} 's/^lib//;s/\.dll$//'`.a"
nagios4-4.4.6/tap/ltmain.sh-2492-
##############################################
nagios4-4.4.6/tap/ltmain.sh-2720-	      case $libdir in
nagios4-4.4.6/tap/ltmain.sh:2721:	      -R*) temp_xrpath=`$echo "X$libdir" | $Xsed -e 's/^-R//'`
nagios4-4.4.6/tap/ltmain.sh-2722-		   case " $xrpath " in
##############################################
nagios4-4.4.6/tap/ltmain.sh-2752-	      *.la)
nagios4-4.4.6/tap/ltmain.sh:2753:		dir=`$echo "X$deplib" | $Xsed -e 's%/[^/]*$%%'`
nagios4-4.4.6/tap/ltmain.sh-2754-		test "X$dir" = "X$deplib" && dir="."
##############################################
nagios4-4.4.6/tap/ltmain.sh-2758-		*)
nagios4-4.4.6/tap/ltmain.sh:2759:		  absdir=`cd "$dir" && pwd`
nagios4-4.4.6/tap/ltmain.sh-2760-		  if test -z "$absdir"; then
##############################################
nagios4-4.4.6/tap/ltmain.sh-2768-		else
nagios4-4.4.6/tap/ltmain.sh:2769:		  eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib`
nagios4-4.4.6/tap/ltmain.sh-2770-		  if test -z "$libdir"; then
##############################################
nagios4-4.4.6/tap/ltmain.sh-2783-		  # but need to link against shared
nagios4-4.4.6/tap/ltmain.sh:2784:		  eval deplibrary_names=`${SED} -n -e 's/^library_names=\(.*\)$/\1/p' $deplib`
nagios4-4.4.6/tap/ltmain.sh-2785-		  if test -n "$deplibrary_names" ; then
##############################################
nagios4-4.4.6/tap/ltmain.sh-2808-		  # Again, we only want to link against shared libraries
nagios4-4.4.6/tap/ltmain.sh:2809:		  eval tmp_libs=`$echo "X$deplib" | $Xsed -e "s,^\-l,,"`
nagios4-4.4.6/tap/ltmain.sh-2810-		  for tmp in $newlib_search_path ; do
##############################################
nagios4-4.4.6/tap/ltmain.sh-2975-      lib*)
nagios4-4.4.6/tap/ltmain.sh:2976:	name=`$echo "X$outputname" | $Xsed -e 's/\.la$//' -e 's/^lib//'`
nagios4-4.4.6/tap/ltmain.sh-2977-	eval shared_ext=\"$shrext_cmds\"
##############################################
nagios4-4.4.6/tap/ltmain.sh-2981-	if test "$module" = no; then
nagios4-4.4.6/tap/ltmain.sh:2982:	  $echo "$modename: libtool library \`$output' must begin with \`lib'" 1>&2
nagios4-4.4.6/tap/ltmain.sh-2983-	  $echo "$help" 1>&2
##############################################
nagios4-4.4.6/tap/ltmain.sh-2987-	  # Add the "lib" prefix for modules if required
nagios4-4.4.6/tap/ltmain.sh:2988:	  name=`$echo "X$outputname" | $Xsed -e 's/\.la$//'`
nagios4-4.4.6/tap/ltmain.sh-2989-	  eval shared_ext=\"$shrext_cmds\"
##############################################
nagios4-4.4.6/tap/ltmain.sh-2991-	else
nagios4-4.4.6/tap/ltmain.sh:2992:	  libname=`$echo "X$outputname" | $Xsed -e 's/\.la$//'`
nagios4-4.4.6/tap/ltmain.sh-2993-	fi
##############################################
nagios4-4.4.6/tap/ltmain.sh-3068-	  darwin|linux|osf|windows)
nagios4-4.4.6/tap/ltmain.sh:3069:	    current=`expr $number_major + $number_minor`
nagios4-4.4.6/tap/ltmain.sh-3070-	    age="$number_minor"
##############################################
nagios4-4.4.6/tap/ltmain.sh-3078-	  irix|nonstopux)
nagios4-4.4.6/tap/ltmain.sh:3079:	    current=`expr $number_major + $number_minor - 1`
nagios4-4.4.6/tap/ltmain.sh-3080-	    age="$number_minor"
##############################################
nagios4-4.4.6/tap/ltmain.sh-3120-	if test "$age" -gt "$current"; then
nagios4-4.4.6/tap/ltmain.sh:3121:	  $echo "$modename: AGE \`$age' is greater than the current interface number \`$current'" 1>&2
nagios4-4.4.6/tap/ltmain.sh-3122-	  $echo "$modename: \`$vinfo' is not valid version information" 1>&2
##############################################
nagios4-4.4.6/tap/ltmain.sh-3135-	  # verstring for coding it into the library header
nagios4-4.4.6/tap/ltmain.sh:3136:	  major=.`expr $current - $age`
nagios4-4.4.6/tap/ltmain.sh-3137-	  versuffix="$major.$age.$revision"
nagios4-4.4.6/tap/ltmain.sh-3138-	  # Darwin ld doesn't like 0 for these options...
nagios4-4.4.6/tap/ltmain.sh:3139:	  minor_current=`expr $current + 1`
nagios4-4.4.6/tap/ltmain.sh-3140-	  verstring="${wl}-compatibility_version ${wl}$minor_current ${wl}-current_version ${wl}$minor_current.$revision"
##############################################
nagios4-4.4.6/tap/ltmain.sh-3153-	irix | nonstopux)
nagios4-4.4.6/tap/ltmain.sh:3154:	  major=`expr $current - $age + 1`
nagios4-4.4.6/tap/ltmain.sh-3155-
##############################################
nagios4-4.4.6/tap/ltmain.sh-3164-	  while test "$loop" -ne 0; do
nagios4-4.4.6/tap/ltmain.sh:3165:	    iface=`expr $revision - $loop`
nagios4-4.4.6/tap/ltmain.sh:3166:	    loop=`expr $loop - 1`
nagios4-4.4.6/tap/ltmain.sh-3167-	    verstring="$verstring_prefix$major.$iface:$verstring"
##############################################
nagios4-4.4.6/tap/ltmain.sh-3175-	linux)
nagios4-4.4.6/tap/ltmain.sh:3176:	  major=.`expr $current - $age`
nagios4-4.4.6/tap/ltmain.sh-3177-	  versuffix="$major.$age.$revision"
##############################################
nagios4-4.4.6/tap/ltmain.sh-3180-	osf)
nagios4-4.4.6/tap/ltmain.sh:3181:	  major=.`expr $current - $age`
nagios4-4.4.6/tap/ltmain.sh-3182-	  versuffix=".$current.$age.$revision"
##############################################
nagios4-4.4.6/tap/ltmain.sh-3187-	  while test "$loop" -ne 0; do
nagios4-4.4.6/tap/ltmain.sh:3188:	    iface=`expr $current - $loop`
nagios4-4.4.6/tap/ltmain.sh:3189:	    loop=`expr $loop - 1`
nagios4-4.4.6/tap/ltmain.sh-3190-	    verstring="$verstring:${iface}.0"
##############################################
nagios4-4.4.6/tap/ltmain.sh-3204-	  # extension on DOS 8.3 filesystems.
nagios4-4.4.6/tap/ltmain.sh:3205:	  major=`expr $current - $age`
nagios4-4.4.6/tap/ltmain.sh-3206-	  versuffix="-$major"
##############################################
nagios4-4.4.6/tap/ltmain.sh-3259-	removelist=
nagios4-4.4.6/tap/ltmain.sh:3260:	tempremovelist=`$echo "$output_objdir/*"`
nagios4-4.4.6/tap/ltmain.sh-3261-	for p in $tempremovelist; do
##############################################
nagios4-4.4.6/tap/ltmain.sh-3287-	# Transform .lo files to .o files.
nagios4-4.4.6/tap/ltmain.sh:3288:	oldobjs="$objs "`$echo "X$libobjs" | $SP2NL | $Xsed -e '/\.'${libext}'$/d' -e "$lo2o" | $NL2SP`
nagios4-4.4.6/tap/ltmain.sh-3289-      fi
##############################################
nagios4-4.4.6/tap/ltmain.sh-3292-      for path in $notinst_path; do
nagios4-4.4.6/tap/ltmain.sh:3293:	lib_search_path=`$echo "$lib_search_path " | ${SED} -e 's% $path % %g'`
nagios4-4.4.6/tap/ltmain.sh:3294:	deplibs=`$echo "$deplibs " | ${SED} -e 's% -L$path % %g'`
nagios4-4.4.6/tap/ltmain.sh:3295:	dependency_libs=`$echo "$dependency_libs " | ${SED} -e 's% -L$path % %g'`
nagios4-4.4.6/tap/ltmain.sh-3296-      done
##############################################
nagios4-4.4.6/tap/ltmain.sh-3395-	    for i in $deplibs; do
nagios4-4.4.6/tap/ltmain.sh:3396:	      name="`expr $i : '-l\(.*\)'`"
nagios4-4.4.6/tap/ltmain.sh-3397-	      # If $name is empty we are operating on a -L argument.
##############################################
nagios4-4.4.6/tap/ltmain.sh-3407-		if test -n "$i" ; then
nagios4-4.4.6/tap/ltmain.sh:3408:		  libname=`eval \\$echo \"$libname_spec\"`
nagios4-4.4.6/tap/ltmain.sh:3409:		  deplib_matches=`eval \\$echo \"$library_names_spec\"`
nagios4-4.4.6/tap/ltmain.sh-3410-		  set dummy $deplib_matches
nagios4-4.4.6/tap/ltmain.sh-3411-		  deplib_match=$2
nagios4-4.4.6/tap/ltmain.sh:3412:		  if test `expr "$ldd_output" : ".*$deplib_match"` -ne 0 ; then
nagios4-4.4.6/tap/ltmain.sh-3413-		    newdeplibs="$newdeplibs $i"
##############################################
nagios4-4.4.6/tap/ltmain.sh-3432-	    for i in $deplibs; do
nagios4-4.4.6/tap/ltmain.sh:3433:	      name="`expr $i : '-l\(.*\)'`"
nagios4-4.4.6/tap/ltmain.sh-3434-	      # If $name is empty we are operating on a -L argument.
##############################################
nagios4-4.4.6/tap/ltmain.sh-3449-		  if test -n "$i" ; then
nagios4-4.4.6/tap/ltmain.sh:3450:		    libname=`eval \\$echo \"$libname_spec\"`
nagios4-4.4.6/tap/ltmain.sh:3451:		    deplib_matches=`eval \\$echo \"$library_names_spec\"`
nagios4-4.4.6/tap/ltmain.sh-3452-		    set dummy $deplib_matches
nagios4-4.4.6/tap/ltmain.sh-3453-		    deplib_match=$2
nagios4-4.4.6/tap/ltmain.sh:3454:		    if test `expr "$ldd_output" : ".*$deplib_match"` -ne 0 ; then
nagios4-4.4.6/tap/ltmain.sh-3455-		      newdeplibs="$newdeplibs $i"
##############################################
nagios4-4.4.6/tap/ltmain.sh-3482-	  set dummy $deplibs_check_method
nagios4-4.4.6/tap/ltmain.sh:3483:	  file_magic_regex=`expr "$deplibs_check_method" : "$2 \(.*\)"`
nagios4-4.4.6/tap/ltmain.sh-3484-	  for a_deplib in $deplibs; do
nagios4-4.4.6/tap/ltmain.sh:3485:	    name="`expr $a_deplib : '-l\(.*\)'`"
nagios4-4.4.6/tap/ltmain.sh-3486-	    # If $name is empty we are operating on a -L argument.
##############################################
nagios4-4.4.6/tap/ltmain.sh-3496-	      if test -n "$a_deplib" ; then
nagios4-4.4.6/tap/ltmain.sh:3497:		libname=`eval \\$echo \"$libname_spec\"`
nagios4-4.4.6/tap/ltmain.sh-3498-		for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do
nagios4-4.4.6/tap/ltmain.sh:3499:		  potential_libs=`ls $i/$libname[.-]* 2>/dev/null`
nagios4-4.4.6/tap/ltmain.sh-3500-		  for potent_lib in $potential_libs; do
##############################################
nagios4-4.4.6/tap/ltmain.sh-3512-		      while test -h "$potlib" 2>/dev/null; do
nagios4-4.4.6/tap/ltmain.sh:3513:			potliblink=`ls -ld $potlib | ${SED} 's/.* -> //'`
nagios4-4.4.6/tap/ltmain.sh-3514-			case $potliblink in
nagios4-4.4.6/tap/ltmain.sh-3515-			[\\/]* | [A-Za-z]:[\\/]*) potlib="$potliblink";;
nagios4-4.4.6/tap/ltmain.sh:3516:			*) potlib=`$echo "X$potlib" | $Xsed -e 's,[^/]*$,,'`"$potliblink";;
nagios4-4.4.6/tap/ltmain.sh-3517-			esac
##############################################
nagios4-4.4.6/tap/ltmain.sh-3551-	  set dummy $deplibs_check_method
nagios4-4.4.6/tap/ltmain.sh:3552:	  match_pattern_regex=`expr "$deplibs_check_method" : "$2 \(.*\)"`
nagios4-4.4.6/tap/ltmain.sh-3553-	  for a_deplib in $deplibs; do
nagios4-4.4.6/tap/ltmain.sh:3554:	    name="`expr $a_deplib : '-l\(.*\)'`"
nagios4-4.4.6/tap/ltmain.sh-3555-	    # If $name is empty we are operating on a -L argument.
##############################################
nagios4-4.4.6/tap/ltmain.sh-3565-	      if test -n "$a_deplib" ; then
nagios4-4.4.6/tap/ltmain.sh:3566:		libname=`eval \\$echo \"$libname_spec\"`
nagios4-4.4.6/tap/ltmain.sh-3567-		for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do
nagios4-4.4.6/tap/ltmain.sh:3568:		  potential_libs=`ls $i/$libname[.-]* 2>/dev/null`
nagios4-4.4.6/tap/ltmain.sh-3569-		  for potent_lib in $potential_libs; do
##############################################
nagios4-4.4.6/tap/ltmain.sh-3608-	      # can't use Xsed below, because $i might contain '/'
nagios4-4.4.6/tap/ltmain.sh:3609:	      tmp_deplibs=`$echo "X $tmp_deplibs" | ${SED} -e "1s,^X,," -e "s,$i,,"`
nagios4-4.4.6/tap/ltmain.sh-3610-	    done
##############################################
nagios4-4.4.6/tap/ltmain.sh-3633-	  # On Rhapsody replace the C library is the System framework
nagios4-4.4.6/tap/ltmain.sh:3634:	  newdeplibs=`$echo "X $newdeplibs" | $Xsed -e 's/ -lc / -framework System /'`
nagios4-4.4.6/tap/ltmain.sh-3635-	  ;;
##############################################
nagios4-4.4.6/tap/ltmain.sh-3772-	# Use standard objects if they are pic
nagios4-4.4.6/tap/ltmain.sh:3773:	test -z "$pic_flag" && libobjs=`$echo "X$libobjs" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP`
nagios4-4.4.6/tap/ltmain.sh-3774-
##############################################
nagios4-4.4.6/tap/ltmain.sh-3785-	      eval cmd=\"$cmd\"
nagios4-4.4.6/tap/ltmain.sh:3786:	      if len=`expr "X$cmd" : ".*"` &&
nagios4-4.4.6/tap/ltmain.sh-3787-	       test "$len" -le "$max_cmd_len" || test "$max_cmd_len" -le -1; then
##############################################
nagios4-4.4.6/tap/ltmain.sh-3863-
nagios4-4.4.6/tap/ltmain.sh:3864:	if test "X$skipped_export" != "X:" && len=`expr "X$test_cmds" : ".*"` &&
nagios4-4.4.6/tap/ltmain.sh-3865-	   test "$len" -le "$max_cmd_len" || test "$max_cmd_len" -le -1; then
##############################################
nagios4-4.4.6/tap/ltmain.sh-3897-	    if test "X$objlist" = X ||
nagios4-4.4.6/tap/ltmain.sh:3898:	       { len=`expr "X$test_cmds" : ".*"` &&
nagios4-4.4.6/tap/ltmain.sh-3899-		 test "$len" -le "$max_cmd_len"; }; then
##############################################
nagios4-4.4.6/tap/ltmain.sh-3912-	      last_robj=$output_objdir/$save_output-${k}.$objext
nagios4-4.4.6/tap/ltmain.sh:3913:	      k=`expr $k + 1`
nagios4-4.4.6/tap/ltmain.sh-3914-	      output=$output_objdir/$save_output-${k}.$objext
##############################################
nagios4-4.4.6/tap/ltmain.sh-3938-	  do
nagios4-4.4.6/tap/ltmain.sh:3939:	    i=`expr $i + 1`
nagios4-4.4.6/tap/ltmain.sh-3940-	    delfiles="$delfiles $output_objdir/$save_output-${i}.$objext"
##############################################
nagios4-4.4.6/tap/ltmain.sh-4045-	libobj="$output"
nagios4-4.4.6/tap/ltmain.sh:4046:	obj=`$echo "X$output" | $Xsed -e "$lo2o"`
nagios4-4.4.6/tap/ltmain.sh-4047-	;;
##############################################
nagios4-4.4.6/tap/ltmain.sh-4079-      # Create the old-style object.
nagios4-4.4.6/tap/ltmain.sh:4080:      reload_objs="$objs$old_deplibs "`$echo "X$libobjs" | $SP2NL | $Xsed -e '/\.'${libext}$'/d' -e '/\.lib$/d' -e "$lo2o" | $NL2SP`" $reload_conv_objs" ### testsuite: skip nested quoting test
nagios4-4.4.6/tap/ltmain.sh-4081-
##############################################
nagios4-4.4.6/tap/ltmain.sh-4140-      case $host in
nagios4-4.4.6/tap/ltmain.sh:4141:	*cygwin*) output=`$echo $output | ${SED} -e 's,.exe$,,;s,$,.exe,'` ;;
nagios4-4.4.6/tap/ltmain.sh-4142-      esac
##############################################
nagios4-4.4.6/tap/ltmain.sh-4160-	# On Rhapsody replace the C library is the System framework
nagios4-4.4.6/tap/ltmain.sh:4161:	compile_deplibs=`$echo "X $compile_deplibs" | $Xsed -e 's/ -lc / -framework System /'`
nagios4-4.4.6/tap/ltmain.sh:4162:	finalize_deplibs=`$echo "X $finalize_deplibs" | $Xsed -e 's/ -lc / -framework System /'`
nagios4-4.4.6/tap/ltmain.sh-4163-	;;
##############################################
nagios4-4.4.6/tap/ltmain.sh-4272-	# Transform all the library objects into standard objects.
nagios4-4.4.6/tap/ltmain.sh:4273:	compile_command=`$echo "X$compile_command" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP`
nagios4-4.4.6/tap/ltmain.sh:4274:	finalize_command=`$echo "X$finalize_command" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP`
nagios4-4.4.6/tap/ltmain.sh-4275-      fi
##############################################
nagios4-4.4.6/tap/ltmain.sh-4318-	    # Add our own program objects to the symbol list.
nagios4-4.4.6/tap/ltmain.sh:4319:	    progfiles=`$echo "X$objs$old_deplibs" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP`
nagios4-4.4.6/tap/ltmain.sh-4320-	    for arg in $progfiles; do
##############################################
nagios4-4.4.6/tap/ltmain.sh-4348-	    $show "extracting global C symbols from \`$arg'"
nagios4-4.4.6/tap/ltmain.sh:4349:	    name=`$echo "$arg" | ${SED} -e 's%^.*/%%'`
nagios4-4.4.6/tap/ltmain.sh-4350-	    $run eval '$echo ": $name " >> "$nlist"'
##############################################
nagios4-4.4.6/tap/ltmain.sh-4448-	  # Transform the symbol file into the correct name.
nagios4-4.4.6/tap/ltmain.sh:4449:	  compile_command=`$echo "X$compile_command" | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}S.${objext}%"`
nagios4-4.4.6/tap/ltmain.sh:4450:	  finalize_command=`$echo "X$finalize_command" | $Xsed -e "s%@SYMFILE@%$output_objdir/${outputname}S.${objext}%"`
nagios4-4.4.6/tap/ltmain.sh-4451-	  ;;
##############################################
nagios4-4.4.6/tap/ltmain.sh-4465-	# Nullify the symbol file.
nagios4-4.4.6/tap/ltmain.sh:4466:	compile_command=`$echo "X$compile_command" | $Xsed -e "s% @SYMFILE@%%"`
nagios4-4.4.6/tap/ltmain.sh:4467:	finalize_command=`$echo "X$finalize_command" | $Xsed -e "s% @SYMFILE@%%"`
nagios4-4.4.6/tap/ltmain.sh-4468-      fi
##############################################
nagios4-4.4.6/tap/ltmain.sh-4471-	# Replace the output file specification.
nagios4-4.4.6/tap/ltmain.sh:4472:	compile_command=`$echo "X$compile_command" | $Xsed -e 's%@OUTPUT@%'"$output"'%g'`
nagios4-4.4.6/tap/ltmain.sh-4473-	link_command="$compile_command$compile_rpath"
##############################################
nagios4-4.4.6/tap/ltmain.sh-4538-	# Replace the output file specification.
nagios4-4.4.6/tap/ltmain.sh:4539:	link_command=`$echo "X$link_command" | $Xsed -e 's%@OUTPUT@%'"$output"'%g'`
nagios4-4.4.6/tap/ltmain.sh-4540-	# Delete the old output file.
##############################################
nagios4-4.4.6/tap/ltmain.sh-4558-	  if test "$fast_install" = yes; then
nagios4-4.4.6/tap/ltmain.sh:4559:	    relink_command=`$echo "X$compile_var$compile_command$compile_rpath" | $Xsed -e 's%@OUTPUT@%\$progdir/\$file%g'`
nagios4-4.4.6/tap/ltmain.sh-4560-	  else
##############################################
nagios4-4.4.6/tap/ltmain.sh-4570-      # Replace the output file specification.
nagios4-4.4.6/tap/ltmain.sh:4571:      link_command=`$echo "X$link_command" | $Xsed -e 's%@OUTPUT@%'"$output_objdir/$outputname"'%g'`
nagios4-4.4.6/tap/ltmain.sh-4572-
##############################################
nagios4-4.4.6/tap/ltmain.sh-4590-	  else
nagios4-4.4.6/tap/ltmain.sh:4591:	    var_value=`$echo "X$var_value" | $Xsed -e "$sed_quote_subst"`
nagios4-4.4.6/tap/ltmain.sh-4592-	    relink_command="$var=\"$var_value\"; export $var; $relink_command"
##############################################
nagios4-4.4.6/tap/ltmain.sh-4595-	relink_command="(cd `pwd`; $relink_command)"
nagios4-4.4.6/tap/ltmain.sh:4596:	relink_command=`$echo "X$relink_command" | $Xsed -e "$sed_quote_subst"`
nagios4-4.4.6/tap/ltmain.sh-4597-      fi
##############################################
nagios4-4.4.6/tap/ltmain.sh-4604-	esac
nagios4-4.4.6/tap/ltmain.sh:4605:	qecho=`$echo "X$qecho" | $Xsed -e "$sed_quote_subst"`
nagios4-4.4.6/tap/ltmain.sh-4606-      else
nagios4-4.4.6/tap/ltmain.sh:4607:	qecho=`$echo "X$echo" | $Xsed -e "$sed_quote_subst"`
nagios4-4.4.6/tap/ltmain.sh-4608-      fi
##############################################
nagios4-4.4.6/tap/ltmain.sh-4614-	case $output in
nagios4-4.4.6/tap/ltmain.sh:4615:	  *.exe) output=`$echo $output|${SED} 's,.exe$,,'` ;;
nagios4-4.4.6/tap/ltmain.sh-4616-	esac
##############################################
nagios4-4.4.6/tap/ltmain.sh-4620-	    exeext=.exe
nagios4-4.4.6/tap/ltmain.sh:4621:	    outputname=`$echo $outputname|${SED} 's,.exe$,,'` ;;
nagios4-4.4.6/tap/ltmain.sh-4622-	  *) exeext= ;;
##############################################
nagios4-4.4.6/tap/ltmain.sh-4625-	  *cygwin* | *mingw* )
nagios4-4.4.6/tap/ltmain.sh:4626:	    cwrappersource=`$echo ${objdir}/lt-${output}.c`
nagios4-4.4.6/tap/ltmain.sh:4627:	    cwrapper=`$echo ${output}.exe`
nagios4-4.4.6/tap/ltmain.sh-4628-	    $rm $cwrappersource $cwrapper
##############################################
nagios4-4.4.6/tap/ltmain.sh-4875-      shift
nagios4-4.4.6/tap/ltmain.sh:4876:    elif test \"X\`(\$echo '\t') 2>/dev/null\`\" = 'X\t'; then
nagios4-4.4.6/tap/ltmain.sh-4877-      # Yippee, \$echo works!
##############################################
nagios4-4.4.6/tap/ltmain.sh-4887-  # Find the directory that this script lives in.
nagios4-4.4.6/tap/ltmain.sh:4888:  thisdir=\`\$echo \"X\$file\" | \$Xsed -e 's%/[^/]*$%%'\`
nagios4-4.4.6/tap/ltmain.sh-4889-  test \"x\$thisdir\" = \"x\$file\" && thisdir=.
##############################################
nagios4-4.4.6/tap/ltmain.sh-4891-  # Follow symbolic links until we get to the real thisdir.
nagios4-4.4.6/tap/ltmain.sh:4892:  file=\`ls -ld \"\$file\" | ${SED} -n 's/.*-> //p'\`
nagios4-4.4.6/tap/ltmain.sh-4893-  while test -n \"\$file\"; do
nagios4-4.4.6/tap/ltmain.sh:4894:    destdir=\`\$echo \"X\$file\" | \$Xsed -e 's%/[^/]*\$%%'\`
nagios4-4.4.6/tap/ltmain.sh-4895-
##############################################
nagios4-4.4.6/tap/ltmain.sh-4903-
nagios4-4.4.6/tap/ltmain.sh:4904:    file=\`\$echo \"X\$file\" | \$Xsed -e 's%^.*/%%'\`
nagios4-4.4.6/tap/ltmain.sh:4905:    file=\`ls -ld \"\$thisdir/\$file\" | ${SED} -n 's/.*-> //p'\`
nagios4-4.4.6/tap/ltmain.sh-4906-  done
##############################################
nagios4-4.4.6/tap/ltmain.sh-4908-  # Try to get the absolute directory name.
nagios4-4.4.6/tap/ltmain.sh:4909:  absdir=\`cd \"\$thisdir\" && pwd\`
nagios4-4.4.6/tap/ltmain.sh-4910-  test -n \"\$absdir\" && thisdir=\"\$absdir\"
##############################################
nagios4-4.4.6/tap/ltmain.sh-4918-  if test ! -f \"\$progdir/\$program\" || \\
nagios4-4.4.6/tap/ltmain.sh:4919:     { file=\`ls -1dt \"\$progdir/\$program\" \"\$progdir/../\$program\" 2>/dev/null | ${SED} 1q\`; \\
nagios4-4.4.6/tap/ltmain.sh-4920-       test \"X\$file\" != \"X\$progdir/\$program\"; }; then
##############################################
nagios4-4.4.6/tap/ltmain.sh-4933-    if test -n \"\$relink_command\"; then
nagios4-4.4.6/tap/ltmain.sh:4934:      if relink_command_output=\`eval \$relink_command 2>&1\`; then :
nagios4-4.4.6/tap/ltmain.sh-4935-      else
##############################################
nagios4-4.4.6/tap/ltmain.sh-4965-    # The second colon is a workaround for a bug in BeOS R4 sed
nagios4-4.4.6/tap/ltmain.sh:4966:    $shlibpath_var=\`\$echo \"X\$$shlibpath_var\" | \$Xsed -e 's/::*\$//'\`
nagios4-4.4.6/tap/ltmain.sh-4967-
##############################################
nagios4-4.4.6/tap/ltmain.sh-5047-
nagios4-4.4.6/tap/ltmain.sh:5048:	if len=`expr "X$cmds" : ".*"` &&
nagios4-4.4.6/tap/ltmain.sh-5049-	     test "$len" -le "$max_cmd_len" || test "$max_cmd_len" -le -1; then
##############################################
nagios4-4.4.6/tap/ltmain.sh-5082-	    eval test_cmds=\"$old_archive_cmds\"
nagios4-4.4.6/tap/ltmain.sh:5083:	    if len=`expr "X$test_cmds" : ".*"` &&
nagios4-4.4.6/tap/ltmain.sh-5084-	       test "$len" -le "$max_cmd_len"; then
##############################################
nagios4-4.4.6/tap/ltmain.sh-5134-	else
nagios4-4.4.6/tap/ltmain.sh:5135:	  var_value=`$echo "X$var_value" | $Xsed -e "$sed_quote_subst"`
nagios4-4.4.6/tap/ltmain.sh-5136-	  relink_command="$var=\"$var_value\"; export $var; $relink_command"
##############################################
nagios4-4.4.6/tap/ltmain.sh-5140-      relink_command="(cd `pwd`; $SHELL $progpath $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)"
nagios4-4.4.6/tap/ltmain.sh:5141:      relink_command=`$echo "X$relink_command" | $Xsed -e "$sed_quote_subst"`
nagios4-4.4.6/tap/ltmain.sh-5142-      if test "$hardcode_automatic" = yes ; then
##############################################
nagios4-4.4.6/tap/ltmain.sh-5159-	      *.la)
nagios4-4.4.6/tap/ltmain.sh:5160:		name=`$echo "X$deplib" | $Xsed -e 's%^.*/%%'`
nagios4-4.4.6/tap/ltmain.sh:5161:		eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib`
nagios4-4.4.6/tap/ltmain.sh-5162-		if test -z "$libdir"; then
##############################################
nagios4-4.4.6/tap/ltmain.sh-5173-	    for lib in $dlfiles; do
nagios4-4.4.6/tap/ltmain.sh:5174:	      name=`$echo "X$lib" | $Xsed -e 's%^.*/%%'`
nagios4-4.4.6/tap/ltmain.sh:5175:	      eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib`
nagios4-4.4.6/tap/ltmain.sh-5176-	      if test -z "$libdir"; then
##############################################
nagios4-4.4.6/tap/ltmain.sh-5184-	    for lib in $dlprefiles; do
nagios4-4.4.6/tap/ltmain.sh:5185:	      name=`$echo "X$lib" | $Xsed -e 's%^.*/%%'`
nagios4-4.4.6/tap/ltmain.sh:5186:	      eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib`
nagios4-4.4.6/tap/ltmain.sh-5187-	      if test -z "$libdir"; then
##############################################
nagios4-4.4.6/tap/ltmain.sh-5281-      # Aesthetically quote it.
nagios4-4.4.6/tap/ltmain.sh:5282:      arg=`$echo "X$nonopt" | $Xsed -e "$sed_quote_subst"`
nagios4-4.4.6/tap/ltmain.sh-5283-      case $arg in
##############################################
nagios4-4.4.6/tap/ltmain.sh-5297-    # Aesthetically quote it.
nagios4-4.4.6/tap/ltmain.sh:5298:    arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
nagios4-4.4.6/tap/ltmain.sh-5299-    case $arg in
##############################################
nagios4-4.4.6/tap/ltmain.sh-5345-      # Aesthetically quote the argument.
nagios4-4.4.6/tap/ltmain.sh:5346:      arg=`$echo "X$arg" | $Xsed -e "$sed_quote_subst"`
nagios4-4.4.6/tap/ltmain.sh-5347-      case $arg in
##############################################
nagios4-4.4.6/tap/ltmain.sh-5377-    # Strip any trailing slash from the destination.
nagios4-4.4.6/tap/ltmain.sh:5378:    dest=`$echo "X$dest" | $Xsed -e 's%/$%%'`
nagios4-4.4.6/tap/ltmain.sh-5379-
##############################################
nagios4-4.4.6/tap/ltmain.sh-5385-    else
nagios4-4.4.6/tap/ltmain.sh:5386:      destdir=`$echo "X$dest" | $Xsed -e 's%/[^/]*$%%'`
nagios4-4.4.6/tap/ltmain.sh-5387-      test "X$destdir" = "X$dest" && destdir=.
nagios4-4.4.6/tap/ltmain.sh:5388:      destname=`$echo "X$dest" | $Xsed -e 's%^.*/%%'`
nagios4-4.4.6/tap/ltmain.sh-5389-
##############################################
nagios4-4.4.6/tap/ltmain.sh-5461-
nagios4-4.4.6/tap/ltmain.sh:5462:	dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`/
nagios4-4.4.6/tap/ltmain.sh-5463-	test "X$dir" = "X$file/" && dir=
##############################################
nagios4-4.4.6/tap/ltmain.sh-5467-	  # Determine the prefix the user has applied to our future dir.
nagios4-4.4.6/tap/ltmain.sh:5468:	  inst_prefix_dir=`$echo "$destdir" | $SED "s%$libdir\$%%"`
nagios4-4.4.6/tap/ltmain.sh-5469-
##############################################
nagios4-4.4.6/tap/ltmain.sh-5482-	    # Stick the inst_prefix_dir data into the link command.
nagios4-4.4.6/tap/ltmain.sh:5483:	    relink_command=`$echo "$relink_command" | $SED "s%@inst_prefix_dir@%-inst-prefix-dir $inst_prefix_dir%"`
nagios4-4.4.6/tap/ltmain.sh-5484-	  else
nagios4-4.4.6/tap/ltmain.sh:5485:	    relink_command=`$echo "$relink_command" | $SED "s%@inst_prefix_dir@%%"`
nagios4-4.4.6/tap/ltmain.sh-5486-	  fi
##############################################
nagios4-4.4.6/tap/ltmain.sh-5544-	*)
nagios4-4.4.6/tap/ltmain.sh:5545:	  name=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
nagios4-4.4.6/tap/ltmain.sh-5546-	  instname="$dir/$name"i
##############################################
nagios4-4.4.6/tap/ltmain.sh-5562-	else
nagios4-4.4.6/tap/ltmain.sh:5563:	  destfile=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
nagios4-4.4.6/tap/ltmain.sh-5564-	  destfile="$destdir/$destfile"
##############################################
nagios4-4.4.6/tap/ltmain.sh-5569-	*.lo)
nagios4-4.4.6/tap/ltmain.sh:5570:	  staticdest=`$echo "X$destfile" | $Xsed -e "$lo2o"`
nagios4-4.4.6/tap/ltmain.sh-5571-	  ;;
##############################################
nagios4-4.4.6/tap/ltmain.sh-5591-	  # Deduce the name of the old-style object file.
nagios4-4.4.6/tap/ltmain.sh:5592:	  staticobj=`$echo "X$file" | $Xsed -e "$lo2o"`
nagios4-4.4.6/tap/ltmain.sh-5593-
##############################################
nagios4-4.4.6/tap/ltmain.sh-5604-	else
nagios4-4.4.6/tap/ltmain.sh:5605:	  destfile=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
nagios4-4.4.6/tap/ltmain.sh-5606-	  destfile="$destdir/$destfile"
##############################################
nagios4-4.4.6/tap/ltmain.sh-5615-	    if test ! -f "$file"; then
nagios4-4.4.6/tap/ltmain.sh:5616:	      file=`$echo $file|${SED} 's,.exe$,,'`
nagios4-4.4.6/tap/ltmain.sh-5617-	      stripped_ext=".exe"
##############################################
nagios4-4.4.6/tap/ltmain.sh-5624-	*cygwin*|*mingw*)
nagios4-4.4.6/tap/ltmain.sh:5625:	    wrapper=`$echo $file | ${SED} -e 's,.exe$,,'`
nagios4-4.4.6/tap/ltmain.sh-5626-	    ;;
##############################################
nagios4-4.4.6/tap/ltmain.sh-5664-	    fi
nagios4-4.4.6/tap/ltmain.sh:5665:	    libfile="$libdir/"`$echo "X$lib" | $Xsed -e 's%^.*/%%g'` ### testsuite: skip nested quoting test
nagios4-4.4.6/tap/ltmain.sh-5666-	    if test -n "$libdir" && test ! -f "$libfile"; then
nagios4-4.4.6/tap/ltmain.sh:5667:	      $echo "$modename: warning: \`$lib' has not been installed in \`$libdir'" 1>&2
nagios4-4.4.6/tap/ltmain.sh-5668-	      finalize=no
##############################################
nagios4-4.4.6/tap/ltmain.sh-5700-	      fi
nagios4-4.4.6/tap/ltmain.sh:5701:	      file=`$echo "X$file$stripped_ext" | $Xsed -e 's%^.*/%%'`
nagios4-4.4.6/tap/ltmain.sh-5702-	      outputname="$tmpdir/$file"
nagios4-4.4.6/tap/ltmain.sh-5703-	      # Replace the output file specification.
nagios4-4.4.6/tap/ltmain.sh:5704:	      relink_command=`$echo "X$relink_command" | $Xsed -e 's%@OUTPUT@%'"$outputname"'%g'`
nagios4-4.4.6/tap/ltmain.sh-5705-
##############################################
nagios4-4.4.6/tap/ltmain.sh-5718-	    # Install the binary that we compiled earlier.
nagios4-4.4.6/tap/ltmain.sh:5719:	    file=`$echo "X$file$stripped_ext" | $Xsed -e "s%\([^/]*\)$%$objdir/\1%"`
nagios4-4.4.6/tap/ltmain.sh-5720-	  fi
##############################################
nagios4-4.4.6/tap/ltmain.sh-5734-	  *:*.exe)
nagios4-4.4.6/tap/ltmain.sh:5735:	    destfile=`$echo $destfile | ${SED} -e 's,.exe$,,'`
nagios4-4.4.6/tap/ltmain.sh-5736-	    ;;
##############################################
nagios4-4.4.6/tap/ltmain.sh-5747-    for file in $staticlibs; do
nagios4-4.4.6/tap/ltmain.sh:5748:      name=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
nagios4-4.4.6/tap/ltmain.sh-5749-
##############################################
nagios4-4.4.6/tap/ltmain.sh-5904-	  # Warn if it was a shared library.
nagios4-4.4.6/tap/ltmain.sh:5905:	  test -n "$library_names" && $echo "$modename: warning: \`$file' was not linked with \`-export-dynamic'"
nagios4-4.4.6/tap/ltmain.sh-5906-	  continue
##############################################
nagios4-4.4.6/tap/ltmain.sh-5908-
nagios4-4.4.6/tap/ltmain.sh:5909:	dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`
nagios4-4.4.6/tap/ltmain.sh-5910-	test "X$dir" = "X$file" && dir=.
##############################################
nagios4-4.4.6/tap/ltmain.sh-5914-	else
nagios4-4.4.6/tap/ltmain.sh:5915:	  $echo "$modename: cannot find \`$dlname' in \`$dir' or \`$dir/$objdir'" 1>&2
nagios4-4.4.6/tap/ltmain.sh-5916-	  exit $EXIT_FAILURE
##############################################
nagios4-4.4.6/tap/ltmain.sh-5921-	# Just add the directory containing the .lo file.
nagios4-4.4.6/tap/ltmain.sh:5922:	dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`
nagios4-4.4.6/tap/ltmain.sh-5923-	test "X$dir" = "X$file" && dir=.
##############################################
nagios4-4.4.6/tap/ltmain.sh-5932-      # Get the absolute pathname.
nagios4-4.4.6/tap/ltmain.sh:5933:      absdir=`cd "$dir" && pwd`
nagios4-4.4.6/tap/ltmain.sh-5934-      test -n "$absdir" && dir="$absdir"
##############################################
nagios4-4.4.6/tap/ltmain.sh-5968-      # Quote arguments (to preserve shell metacharacters).
nagios4-4.4.6/tap/ltmain.sh:5969:      file=`$echo "X$file" | $Xsed -e "$sed_quote_subst"`
nagios4-4.4.6/tap/ltmain.sh-5970-      args="$args \"$file\""
##############################################
nagios4-4.4.6/tap/ltmain.sh-6030-    for file in $files; do
nagios4-4.4.6/tap/ltmain.sh:6031:      dir=`$echo "X$file" | $Xsed -e 's%/[^/]*$%%'`
nagios4-4.4.6/tap/ltmain.sh-6032-      if test "X$dir" = "X$file"; then
##############################################
nagios4-4.4.6/tap/ltmain.sh-6037-      fi
nagios4-4.4.6/tap/ltmain.sh:6038:      name=`$echo "X$file" | $Xsed -e 's%^.*/%%'`
nagios4-4.4.6/tap/ltmain.sh-6039-      test "$mode" = uninstall && objdir="$dir"
##############################################
nagios4-4.4.6/tap/ltmain.sh-6138-	  *.exe)
nagios4-4.4.6/tap/ltmain.sh:6139:	    file=`$echo $file|${SED} 's,.exe$,,'`
nagios4-4.4.6/tap/ltmain.sh:6140:	    noexename=`$echo $name|${SED} 's,.exe$,,'`
nagios4-4.4.6/tap/ltmain.sh-6141-	    # $file with .exe has already been added to rmfiles,
##############################################
nagios4-4.4.6/tap/ltmain.sh-6412-# ### BEGIN LIBTOOL TAG CONFIG: disable-static
nagios4-4.4.6/tap/ltmain.sh:6413:build_old_libs=`case $build_libtool_libs in yes) $echo no;; *) $echo yes;; esac`
nagios4-4.4.6/tap/ltmain.sh-6414-# ### END LIBTOOL TAG CONFIG: disable-static
##############################################
nagios4-4.4.6/tap/missing-128-       # Could not run --version or --help.  This is probably someone
nagios4-4.4.6/tap/missing:129:       # running `$TOOL --version' or `$TOOL --help' to check whether
nagios4-4.4.6/tap/missing-130-       # $TOOL exists and not knowing $TOOL uses missing.
##############################################
nagios4-4.4.6/tap/missing-162-         from any GNU archive site."
nagios4-4.4.6/tap/missing:163:    files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER(\([^)]*\)).*/\1/p' ${configure_ac}`
nagios4-4.4.6/tap/missing-164-    test -z "$files" && files="config.h"
##############################################
nagios4-4.4.6/tap/missing-191-         proper tools for further handling them.
nagios4-4.4.6/tap/missing:192:         You can get \`$1' as part of \`Autoconf' from any GNU
nagios4-4.4.6/tap/missing-193-         archive site."
nagios4-4.4.6/tap/missing-194-
nagios4-4.4.6/tap/missing:195:    file=`echo "$*" | sed -n 's/.*--output[ =]*\([^ ]*\).*/\1/p'`
nagios4-4.4.6/tap/missing:196:    test -z "$file" && file=`echo "$*" | sed -n 's/.*-o[ ]*\([^ ]*\).*/\1/p'`
nagios4-4.4.6/tap/missing-197-    if test -f "$file"; then
##############################################
nagios4-4.4.6/tap/missing-220-	*.y)
nagios4-4.4.6/tap/missing:221:	    SRCFILE=`echo "$LASTARG" | sed 's/y$/c/'`
nagios4-4.4.6/tap/missing-222-	    if [ -f "$SRCFILE" ]; then
##############################################
nagios4-4.4.6/tap/missing-224-	    fi
nagios4-4.4.6/tap/missing:225:	    SRCFILE=`echo "$LASTARG" | sed 's/y$/h/'`
nagios4-4.4.6/tap/missing-226-	    if [ -f "$SRCFILE" ]; then
##############################################
nagios4-4.4.6/tap/missing-250-	*.l)
nagios4-4.4.6/tap/missing:251:	    SRCFILE=`echo "$LASTARG" | sed 's/l$/c/'`
nagios4-4.4.6/tap/missing-252-	    if [ -f "$SRCFILE" ]; then
##############################################
nagios4-4.4.6/tap/missing-269-
nagios4-4.4.6/tap/missing:270:    file=`echo "$*" | sed -n 's/.*-o \([^ ]*\).*/\1/p'`
nagios4-4.4.6/tap/missing-271-    if test -z "$file"; then
nagios4-4.4.6/tap/missing:272:	file=`echo "$*" | sed -n 's/.*--output=\([^ ]*\).*/\1/p'`
nagios4-4.4.6/tap/missing-273-    fi
##############################################
nagios4-4.4.6/tap/missing-290-         the \`GNU make' package.  Grab either from any GNU archive site."
nagios4-4.4.6/tap/missing:291:    file=`echo "$*" | sed -n 's/.*-o \([^ ]*\).*/\1/p'`
nagios4-4.4.6/tap/missing-292-    if test -z "$file"; then
nagios4-4.4.6/tap/missing:293:      file=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'`
nagios4-4.4.6/tap/missing:294:      file=`sed -n '/^@setfilename/ { s/.* \([^ ]*\) *$/\1/; p; q; }' $file`
nagios4-4.4.6/tap/missing-295-    fi
##############################################
nagios4-4.4.6/tap/missing-314-	*o*)
nagios4-4.4.6/tap/missing:315:	    firstarg=`echo "$firstarg" | sed s/o//`
nagios4-4.4.6/tap/missing-316-	    tar "$firstarg" "$@" && exit 0
##############################################
nagios4-4.4.6/tap/missing-320-	*h*)
nagios4-4.4.6/tap/missing:321:	    firstarg=`echo "$firstarg" | sed s/h//`
nagios4-4.4.6/tap/missing-322-	    tar "$firstarg" "$@" && exit 0
##############################################
nagios4-4.4.6/tap/src/Makefile.in-50-CONFIG_CLEAN_FILES =
nagios4-4.4.6/tap/src/Makefile.in:51:am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
nagios4-4.4.6/tap/src/Makefile.in-52-am__vpath_adj = case $$p in \
nagios4-4.4.6/tap/src/Makefile.in:53:    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
nagios4-4.4.6/tap/src/Makefile.in-54-    *) f=$$p;; \
nagios4-4.4.6/tap/src/Makefile.in-55-  esac;
nagios4-4.4.6/tap/src/Makefile.in:56:am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
nagios4-4.4.6/tap/src/Makefile.in-57-am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(man3dir)" \
##############################################
nagios4-4.4.6/tap/src/Makefile.in-240-	@list='$(lib_LTLIBRARIES)'; for p in $$list; do \
nagios4-4.4.6/tap/src/Makefile.in:241:	  dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
nagios4-4.4.6/tap/src/Makefile.in-242-	  test "$$dir" != "$$p" || dir=.; \
##############################################
nagios4-4.4.6/tap/src/Makefile.in-264-.c.obj:
nagios4-4.4.6/tap/src/Makefile.in:265:@am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
nagios4-4.4.6/tap/src/Makefile.in-266-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
##############################################
nagios4-4.4.6/tap/src/Makefile.in-268-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
nagios4-4.4.6/tap/src/Makefile.in:269:@am__fastdepCC_FALSE@	$(COMPILE) -c `$(CYGPATH_W) '$<'`
nagios4-4.4.6/tap/src/Makefile.in-270-
##############################################
nagios4-4.4.6/tap/src/Makefile.in-299-	  else file=$$i; fi; \
nagios4-4.4.6/tap/src/Makefile.in:300:	  ext=`echo $$i | sed -e 's/^.*\\.//'`; \
nagios4-4.4.6/tap/src/Makefile.in-301-	  case "$$ext" in \
##############################################
nagios4-4.4.6/tap/src/Makefile.in-304-	  esac; \
nagios4-4.4.6/tap/src/Makefile.in:305:	  inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \
nagios4-4.4.6/tap/src/Makefile.in:306:	  inst=`echo $$inst | sed -e 's/^.*\///'`; \
nagios4-4.4.6/tap/src/Makefile.in:307:	  inst=`echo $$inst | sed '$(transform)'`.$$ext; \
nagios4-4.4.6/tap/src/Makefile.in-308-	  echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man3dir)/$$inst'"; \
##############################################
nagios4-4.4.6/tap/src/Makefile.in-320-	for i in $$list; do \
nagios4-4.4.6/tap/src/Makefile.in:321:	  ext=`echo $$i | sed -e 's/^.*\\.//'`; \
nagios4-4.4.6/tap/src/Makefile.in-322-	  case "$$ext" in \
##############################################
nagios4-4.4.6/tap/src/Makefile.in-325-	  esac; \
nagios4-4.4.6/tap/src/Makefile.in:326:	  inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \
nagios4-4.4.6/tap/src/Makefile.in:327:	  inst=`echo $$inst | sed -e 's/^.*\///'`; \
nagios4-4.4.6/tap/src/Makefile.in:328:	  inst=`echo $$inst | sed '$(transform)'`.$$ext; \
nagios4-4.4.6/tap/src/Makefile.in-329-	  echo " rm -f '$(DESTDIR)$(man3dir)/$$inst'"; \
##############################################
nagios4-4.4.6/tap/src/Makefile.in-390-GTAGS:
nagios4-4.4.6/tap/src/Makefile.in:391:	here=`$(am__cd) $(top_builddir) && pwd` \
nagios4-4.4.6/tap/src/Makefile.in-392-	  && cd $(top_srcdir) \
##############################################
nagios4-4.4.6/tap/src/Makefile.in-398-distdir: $(DISTFILES)
nagios4-4.4.6/tap/src/Makefile.in:399:	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
nagios4-4.4.6/tap/src/Makefile.in:400:	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
nagios4-4.4.6/tap/src/Makefile.in-401-	list='$(DISTFILES)'; for file in $$list; do \
nagios4-4.4.6/tap/src/Makefile.in-402-	  case $$file in \
nagios4-4.4.6/tap/src/Makefile.in:403:	    $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
nagios4-4.4.6/tap/src/Makefile.in:404:	    $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
nagios4-4.4.6/tap/src/Makefile.in-405-	  esac; \
nagios4-4.4.6/tap/src/Makefile.in-406-	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
nagios4-4.4.6/tap/src/Makefile.in:407:	  dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
nagios4-4.4.6/tap/src/Makefile.in-408-	  if test "$$dir" != "$$file" && test "$$dir" != "."; then \
##############################################
nagios4-4.4.6/tap/tests/Makefile.in-206-	dot_seen=no; \
nagios4-4.4.6/tap/tests/Makefile.in:207:	target=`echo $@ | sed s/-recursive//`; \
nagios4-4.4.6/tap/tests/Makefile.in-208-	list='$(SUBDIRS)'; for subdir in $$list; do \
##############################################
nagios4-4.4.6/tap/tests/Makefile.in-236-	rev="$$rev ."; \
nagios4-4.4.6/tap/tests/Makefile.in:237:	target=`echo $@ | sed s/-recursive//`; \
nagios4-4.4.6/tap/tests/Makefile.in-238-	for subdir in $$rev; do \
##############################################
nagios4-4.4.6/tap/tests/Makefile.in-310-GTAGS:
nagios4-4.4.6/tap/tests/Makefile.in:311:	here=`$(am__cd) $(top_builddir) && pwd` \
nagios4-4.4.6/tap/tests/Makefile.in-312-	  && cd $(top_srcdir) \
##############################################
nagios4-4.4.6/tap/tests/Makefile.in-318-distdir: $(DISTFILES)
nagios4-4.4.6/tap/tests/Makefile.in:319:	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
nagios4-4.4.6/tap/tests/Makefile.in:320:	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
nagios4-4.4.6/tap/tests/Makefile.in-321-	list='$(DISTFILES)'; for file in $$list; do \
nagios4-4.4.6/tap/tests/Makefile.in-322-	  case $$file in \
nagios4-4.4.6/tap/tests/Makefile.in:323:	    $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
nagios4-4.4.6/tap/tests/Makefile.in:324:	    $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
nagios4-4.4.6/tap/tests/Makefile.in-325-	  esac; \
nagios4-4.4.6/tap/tests/Makefile.in-326-	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
nagios4-4.4.6/tap/tests/Makefile.in:327:	  dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
nagios4-4.4.6/tap/tests/Makefile.in-328-	  if test "$$dir" != "$$file" && test "$$dir" != "."; then \
##############################################
nagios4-4.4.6/tap/tests/Makefile.in-349-	    || exit 1; \
nagios4-4.4.6/tap/tests/Makefile.in:350:	    distdir=`$(am__cd) $(distdir) && pwd`; \
nagios4-4.4.6/tap/tests/Makefile.in:351:	    top_distdir=`$(am__cd) $(top_distdir) && pwd`; \
nagios4-4.4.6/tap/tests/Makefile.in-352-	    (cd $$subdir && \
##############################################
nagios4-4.4.6/tap/tests/diag/Makefile.in-206-	@list='$(check_PROGRAMS)'; for p in $$list; do \
nagios4-4.4.6/tap/tests/diag/Makefile.in:207:	  f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
nagios4-4.4.6/tap/tests/diag/Makefile.in-208-	  echo " rm -f $$p $$f"; \
##############################################
nagios4-4.4.6/tap/tests/diag/Makefile.in-230-.c.obj:
nagios4-4.4.6/tap/tests/diag/Makefile.in:231:@am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
nagios4-4.4.6/tap/tests/diag/Makefile.in-232-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
##############################################
nagios4-4.4.6/tap/tests/diag/Makefile.in-234-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
nagios4-4.4.6/tap/tests/diag/Makefile.in:235:@am__fastdepCC_FALSE@	$(COMPILE) -c `$(CYGPATH_W) '$<'`
nagios4-4.4.6/tap/tests/diag/Makefile.in-236-
##############################################
nagios4-4.4.6/tap/tests/diag/Makefile.in-244-test-test.o: test.c
nagios4-4.4.6/tap/tests/diag/Makefile.in:245:@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_CFLAGS) $(CFLAGS) -MT test-test.o -MD -MP -MF "$(DEPDIR)/test-test.Tpo" -c -o test-test.o `test -f 'test.c' || echo '$(srcdir)/'`test.c; \
nagios4-4.4.6/tap/tests/diag/Makefile.in-246-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test-test.Tpo" "$(DEPDIR)/test-test.Po"; else rm -f "$(DEPDIR)/test-test.Tpo"; exit 1; fi
##############################################
nagios4-4.4.6/tap/tests/diag/Makefile.in-248-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
nagios4-4.4.6/tap/tests/diag/Makefile.in:249:@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_CFLAGS) $(CFLAGS) -c -o test-test.o `test -f 'test.c' || echo '$(srcdir)/'`test.c
nagios4-4.4.6/tap/tests/diag/Makefile.in-250-
nagios4-4.4.6/tap/tests/diag/Makefile.in-251-test-test.obj: test.c
nagios4-4.4.6/tap/tests/diag/Makefile.in:252:@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_CFLAGS) $(CFLAGS) -MT test-test.obj -MD -MP -MF "$(DEPDIR)/test-test.Tpo" -c -o test-test.obj `if test -f 'test.c'; then $(CYGPATH_W) 'test.c'; else $(CYGPATH_W) '$(srcdir)/test.c'; fi`; \
nagios4-4.4.6/tap/tests/diag/Makefile.in-253-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test-test.Tpo" "$(DEPDIR)/test-test.Po"; else rm -f "$(DEPDIR)/test-test.Tpo"; exit 1; fi
##############################################
nagios4-4.4.6/tap/tests/diag/Makefile.in-255-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
nagios4-4.4.6/tap/tests/diag/Makefile.in:256:@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_CFLAGS) $(CFLAGS) -c -o test-test.obj `if test -f 'test.c'; then $(CYGPATH_W) 'test.c'; else $(CYGPATH_W) '$(srcdir)/test.c'; fi`
nagios4-4.4.6/tap/tests/diag/Makefile.in-257-
##############################################
nagios4-4.4.6/tap/tests/diag/Makefile.in-308-GTAGS:
nagios4-4.4.6/tap/tests/diag/Makefile.in:309:	here=`$(am__cd) $(top_builddir) && pwd` \
nagios4-4.4.6/tap/tests/diag/Makefile.in-310-	  && cd $(top_srcdir) \
##############################################
nagios4-4.4.6/tap/tests/diag/Makefile.in-325-	    if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \
nagios4-4.4.6/tap/tests/diag/Makefile.in:326:	      all=`expr $$all + 1`; \
nagios4-4.4.6/tap/tests/diag/Makefile.in-327-	      case " $(XFAIL_TESTS) " in \
nagios4-4.4.6/tap/tests/diag/Makefile.in-328-	      *" $$tst "*) \
nagios4-4.4.6/tap/tests/diag/Makefile.in:329:		xpass=`expr $$xpass + 1`; \
nagios4-4.4.6/tap/tests/diag/Makefile.in:330:		failed=`expr $$failed + 1`; \
nagios4-4.4.6/tap/tests/diag/Makefile.in-331-		echo "XPASS: $$tst"; \
##############################################
nagios4-4.4.6/tap/tests/diag/Makefile.in-337-	    elif test $$? -ne 77; then \
nagios4-4.4.6/tap/tests/diag/Makefile.in:338:	      all=`expr $$all + 1`; \
nagios4-4.4.6/tap/tests/diag/Makefile.in-339-	      case " $(XFAIL_TESTS) " in \
nagios4-4.4.6/tap/tests/diag/Makefile.in-340-	      *" $$tst "*) \
nagios4-4.4.6/tap/tests/diag/Makefile.in:341:		xfail=`expr $$xfail + 1`; \
nagios4-4.4.6/tap/tests/diag/Makefile.in-342-		echo "XFAIL: $$tst"; \
##############################################
nagios4-4.4.6/tap/tests/diag/Makefile.in-344-	      *) \
nagios4-4.4.6/tap/tests/diag/Makefile.in:345:		failed=`expr $$failed + 1`; \
nagios4-4.4.6/tap/tests/diag/Makefile.in-346-		echo "FAIL: $$tst"; \
##############################################
nagios4-4.4.6/tap/tests/diag/Makefile.in-349-	    else \
nagios4-4.4.6/tap/tests/diag/Makefile.in:350:	      skip=`expr $$skip + 1`; \
nagios4-4.4.6/tap/tests/diag/Makefile.in-351-	      echo "SKIP: $$tst"; \
##############################################
nagios4-4.4.6/tap/tests/diag/Makefile.in-370-	    skipped="($$skip tests were not run)"; \
nagios4-4.4.6/tap/tests/diag/Makefile.in:371:	    test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \
nagios4-4.4.6/tap/tests/diag/Makefile.in-372-	      dashes="$$skipped"; \
##############################################
nagios4-4.4.6/tap/tests/diag/Makefile.in-376-	    report="Please report to $(PACKAGE_BUGREPORT)"; \
nagios4-4.4.6/tap/tests/diag/Makefile.in:377:	    test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \
nagios4-4.4.6/tap/tests/diag/Makefile.in-378-	      dashes="$$report"; \
nagios4-4.4.6/tap/tests/diag/Makefile.in-379-	  fi; \
nagios4-4.4.6/tap/tests/diag/Makefile.in:380:	  dashes=`echo "$$dashes" | sed s/./=/g`; \
nagios4-4.4.6/tap/tests/diag/Makefile.in-381-	  echo "$$dashes"; \
##############################################
nagios4-4.4.6/tap/tests/diag/Makefile.in-389-distdir: $(DISTFILES)
nagios4-4.4.6/tap/tests/diag/Makefile.in:390:	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
nagios4-4.4.6/tap/tests/diag/Makefile.in:391:	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
nagios4-4.4.6/tap/tests/diag/Makefile.in-392-	list='$(DISTFILES)'; for file in $$list; do \
nagios4-4.4.6/tap/tests/diag/Makefile.in-393-	  case $$file in \
nagios4-4.4.6/tap/tests/diag/Makefile.in:394:	    $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
nagios4-4.4.6/tap/tests/diag/Makefile.in:395:	    $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
nagios4-4.4.6/tap/tests/diag/Makefile.in-396-	  esac; \
nagios4-4.4.6/tap/tests/diag/Makefile.in-397-	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
nagios4-4.4.6/tap/tests/diag/Makefile.in:398:	  dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
nagios4-4.4.6/tap/tests/diag/Makefile.in-399-	  if test "$$dir" != "$$file" && test "$$dir" != "."; then \
##############################################
nagios4-4.4.6/tap/tests/diag/test.t-2-
nagios4-4.4.6/tap/tests/diag/test.t:3:cd `dirname $0`
nagios4-4.4.6/tap/tests/diag/test.t-4-
##############################################
nagios4-4.4.6/tap/tests/fail/Makefile.in-206-	@list='$(check_PROGRAMS)'; for p in $$list; do \
nagios4-4.4.6/tap/tests/fail/Makefile.in:207:	  f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
nagios4-4.4.6/tap/tests/fail/Makefile.in-208-	  echo " rm -f $$p $$f"; \
##############################################
nagios4-4.4.6/tap/tests/fail/Makefile.in-230-.c.obj:
nagios4-4.4.6/tap/tests/fail/Makefile.in:231:@am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
nagios4-4.4.6/tap/tests/fail/Makefile.in-232-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
##############################################
nagios4-4.4.6/tap/tests/fail/Makefile.in-234-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
nagios4-4.4.6/tap/tests/fail/Makefile.in:235:@am__fastdepCC_FALSE@	$(COMPILE) -c `$(CYGPATH_W) '$<'`
nagios4-4.4.6/tap/tests/fail/Makefile.in-236-
##############################################
nagios4-4.4.6/tap/tests/fail/Makefile.in-244-test-test.o: test.c
nagios4-4.4.6/tap/tests/fail/Makefile.in:245:@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_CFLAGS) $(CFLAGS) -MT test-test.o -MD -MP -MF "$(DEPDIR)/test-test.Tpo" -c -o test-test.o `test -f 'test.c' || echo '$(srcdir)/'`test.c; \
nagios4-4.4.6/tap/tests/fail/Makefile.in-246-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test-test.Tpo" "$(DEPDIR)/test-test.Po"; else rm -f "$(DEPDIR)/test-test.Tpo"; exit 1; fi
##############################################
nagios4-4.4.6/tap/tests/fail/Makefile.in-248-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
nagios4-4.4.6/tap/tests/fail/Makefile.in:249:@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_CFLAGS) $(CFLAGS) -c -o test-test.o `test -f 'test.c' || echo '$(srcdir)/'`test.c
nagios4-4.4.6/tap/tests/fail/Makefile.in-250-
nagios4-4.4.6/tap/tests/fail/Makefile.in-251-test-test.obj: test.c
nagios4-4.4.6/tap/tests/fail/Makefile.in:252:@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_CFLAGS) $(CFLAGS) -MT test-test.obj -MD -MP -MF "$(DEPDIR)/test-test.Tpo" -c -o test-test.obj `if test -f 'test.c'; then $(CYGPATH_W) 'test.c'; else $(CYGPATH_W) '$(srcdir)/test.c'; fi`; \
nagios4-4.4.6/tap/tests/fail/Makefile.in-253-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test-test.Tpo" "$(DEPDIR)/test-test.Po"; else rm -f "$(DEPDIR)/test-test.Tpo"; exit 1; fi
##############################################
nagios4-4.4.6/tap/tests/fail/Makefile.in-255-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
nagios4-4.4.6/tap/tests/fail/Makefile.in:256:@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_CFLAGS) $(CFLAGS) -c -o test-test.obj `if test -f 'test.c'; then $(CYGPATH_W) 'test.c'; else $(CYGPATH_W) '$(srcdir)/test.c'; fi`
nagios4-4.4.6/tap/tests/fail/Makefile.in-257-
##############################################
nagios4-4.4.6/tap/tests/fail/Makefile.in-308-GTAGS:
nagios4-4.4.6/tap/tests/fail/Makefile.in:309:	here=`$(am__cd) $(top_builddir) && pwd` \
nagios4-4.4.6/tap/tests/fail/Makefile.in-310-	  && cd $(top_srcdir) \
##############################################
nagios4-4.4.6/tap/tests/fail/Makefile.in-325-	    if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \
nagios4-4.4.6/tap/tests/fail/Makefile.in:326:	      all=`expr $$all + 1`; \
nagios4-4.4.6/tap/tests/fail/Makefile.in-327-	      case " $(XFAIL_TESTS) " in \
nagios4-4.4.6/tap/tests/fail/Makefile.in-328-	      *" $$tst "*) \
nagios4-4.4.6/tap/tests/fail/Makefile.in:329:		xpass=`expr $$xpass + 1`; \
nagios4-4.4.6/tap/tests/fail/Makefile.in:330:		failed=`expr $$failed + 1`; \
nagios4-4.4.6/tap/tests/fail/Makefile.in-331-		echo "XPASS: $$tst"; \
##############################################
nagios4-4.4.6/tap/tests/fail/Makefile.in-337-	    elif test $$? -ne 77; then \
nagios4-4.4.6/tap/tests/fail/Makefile.in:338:	      all=`expr $$all + 1`; \
nagios4-4.4.6/tap/tests/fail/Makefile.in-339-	      case " $(XFAIL_TESTS) " in \
nagios4-4.4.6/tap/tests/fail/Makefile.in-340-	      *" $$tst "*) \
nagios4-4.4.6/tap/tests/fail/Makefile.in:341:		xfail=`expr $$xfail + 1`; \
nagios4-4.4.6/tap/tests/fail/Makefile.in-342-		echo "XFAIL: $$tst"; \
##############################################
nagios4-4.4.6/tap/tests/fail/Makefile.in-344-	      *) \
nagios4-4.4.6/tap/tests/fail/Makefile.in:345:		failed=`expr $$failed + 1`; \
nagios4-4.4.6/tap/tests/fail/Makefile.in-346-		echo "FAIL: $$tst"; \
##############################################
nagios4-4.4.6/tap/tests/fail/Makefile.in-349-	    else \
nagios4-4.4.6/tap/tests/fail/Makefile.in:350:	      skip=`expr $$skip + 1`; \
nagios4-4.4.6/tap/tests/fail/Makefile.in-351-	      echo "SKIP: $$tst"; \
##############################################
nagios4-4.4.6/tap/tests/fail/Makefile.in-370-	    skipped="($$skip tests were not run)"; \
nagios4-4.4.6/tap/tests/fail/Makefile.in:371:	    test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \
nagios4-4.4.6/tap/tests/fail/Makefile.in-372-	      dashes="$$skipped"; \
##############################################
nagios4-4.4.6/tap/tests/fail/Makefile.in-376-	    report="Please report to $(PACKAGE_BUGREPORT)"; \
nagios4-4.4.6/tap/tests/fail/Makefile.in:377:	    test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \
nagios4-4.4.6/tap/tests/fail/Makefile.in-378-	      dashes="$$report"; \
nagios4-4.4.6/tap/tests/fail/Makefile.in-379-	  fi; \
nagios4-4.4.6/tap/tests/fail/Makefile.in:380:	  dashes=`echo "$$dashes" | sed s/./=/g`; \
nagios4-4.4.6/tap/tests/fail/Makefile.in-381-	  echo "$$dashes"; \
##############################################
nagios4-4.4.6/tap/tests/fail/Makefile.in-389-distdir: $(DISTFILES)
nagios4-4.4.6/tap/tests/fail/Makefile.in:390:	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
nagios4-4.4.6/tap/tests/fail/Makefile.in:391:	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
nagios4-4.4.6/tap/tests/fail/Makefile.in-392-	list='$(DISTFILES)'; for file in $$list; do \
nagios4-4.4.6/tap/tests/fail/Makefile.in-393-	  case $$file in \
nagios4-4.4.6/tap/tests/fail/Makefile.in:394:	    $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
nagios4-4.4.6/tap/tests/fail/Makefile.in:395:	    $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
nagios4-4.4.6/tap/tests/fail/Makefile.in-396-	  esac; \
nagios4-4.4.6/tap/tests/fail/Makefile.in-397-	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
nagios4-4.4.6/tap/tests/fail/Makefile.in:398:	  dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
nagios4-4.4.6/tap/tests/fail/Makefile.in-399-	  if test "$$dir" != "$$file" && test "$$dir" != "."; then \
##############################################
nagios4-4.4.6/tap/tests/fail/test.t-2-
nagios4-4.4.6/tap/tests/fail/test.t:3:cd `dirname $0`
nagios4-4.4.6/tap/tests/fail/test.t-4-
##############################################
nagios4-4.4.6/tap/tests/ok/Makefile.in-206-	dot_seen=no; \
nagios4-4.4.6/tap/tests/ok/Makefile.in:207:	target=`echo $@ | sed s/-recursive//`; \
nagios4-4.4.6/tap/tests/ok/Makefile.in-208-	list='$(SUBDIRS)'; for subdir in $$list; do \
##############################################
nagios4-4.4.6/tap/tests/ok/Makefile.in-236-	rev="$$rev ."; \
nagios4-4.4.6/tap/tests/ok/Makefile.in:237:	target=`echo $@ | sed s/-recursive//`; \
nagios4-4.4.6/tap/tests/ok/Makefile.in-238-	for subdir in $$rev; do \
##############################################
nagios4-4.4.6/tap/tests/ok/Makefile.in-310-GTAGS:
nagios4-4.4.6/tap/tests/ok/Makefile.in:311:	here=`$(am__cd) $(top_builddir) && pwd` \
nagios4-4.4.6/tap/tests/ok/Makefile.in-312-	  && cd $(top_srcdir) \
##############################################
nagios4-4.4.6/tap/tests/ok/Makefile.in-318-distdir: $(DISTFILES)
nagios4-4.4.6/tap/tests/ok/Makefile.in:319:	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
nagios4-4.4.6/tap/tests/ok/Makefile.in:320:	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
nagios4-4.4.6/tap/tests/ok/Makefile.in-321-	list='$(DISTFILES)'; for file in $$list; do \
nagios4-4.4.6/tap/tests/ok/Makefile.in-322-	  case $$file in \
nagios4-4.4.6/tap/tests/ok/Makefile.in:323:	    $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
nagios4-4.4.6/tap/tests/ok/Makefile.in:324:	    $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
nagios4-4.4.6/tap/tests/ok/Makefile.in-325-	  esac; \
nagios4-4.4.6/tap/tests/ok/Makefile.in-326-	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
nagios4-4.4.6/tap/tests/ok/Makefile.in:327:	  dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
nagios4-4.4.6/tap/tests/ok/Makefile.in-328-	  if test "$$dir" != "$$file" && test "$$dir" != "."; then \
##############################################
nagios4-4.4.6/tap/tests/ok/Makefile.in-349-	    || exit 1; \
nagios4-4.4.6/tap/tests/ok/Makefile.in:350:	    distdir=`$(am__cd) $(distdir) && pwd`; \
nagios4-4.4.6/tap/tests/ok/Makefile.in:351:	    top_distdir=`$(am__cd) $(top_distdir) && pwd`; \
nagios4-4.4.6/tap/tests/ok/Makefile.in-352-	    (cd $$subdir && \
##############################################
nagios4-4.4.6/tap/tests/ok/ok-hash/Makefile.in-206-	@list='$(check_PROGRAMS)'; for p in $$list; do \
nagios4-4.4.6/tap/tests/ok/ok-hash/Makefile.in:207:	  f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
nagios4-4.4.6/tap/tests/ok/ok-hash/Makefile.in-208-	  echo " rm -f $$p $$f"; \
##############################################
nagios4-4.4.6/tap/tests/ok/ok-hash/Makefile.in-230-.c.obj:
nagios4-4.4.6/tap/tests/ok/ok-hash/Makefile.in:231:@am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
nagios4-4.4.6/tap/tests/ok/ok-hash/Makefile.in-232-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
##############################################
nagios4-4.4.6/tap/tests/ok/ok-hash/Makefile.in-234-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
nagios4-4.4.6/tap/tests/ok/ok-hash/Makefile.in:235:@am__fastdepCC_FALSE@	$(COMPILE) -c `$(CYGPATH_W) '$<'`
nagios4-4.4.6/tap/tests/ok/ok-hash/Makefile.in-236-
##############################################
nagios4-4.4.6/tap/tests/ok/ok-hash/Makefile.in-244-test-test.o: test.c
nagios4-4.4.6/tap/tests/ok/ok-hash/Makefile.in:245:@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_CFLAGS) $(CFLAGS) -MT test-test.o -MD -MP -MF "$(DEPDIR)/test-test.Tpo" -c -o test-test.o `test -f 'test.c' || echo '$(srcdir)/'`test.c; \
nagios4-4.4.6/tap/tests/ok/ok-hash/Makefile.in-246-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test-test.Tpo" "$(DEPDIR)/test-test.Po"; else rm -f "$(DEPDIR)/test-test.Tpo"; exit 1; fi
##############################################
nagios4-4.4.6/tap/tests/ok/ok-hash/Makefile.in-248-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
nagios4-4.4.6/tap/tests/ok/ok-hash/Makefile.in:249:@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_CFLAGS) $(CFLAGS) -c -o test-test.o `test -f 'test.c' || echo '$(srcdir)/'`test.c
nagios4-4.4.6/tap/tests/ok/ok-hash/Makefile.in-250-
nagios4-4.4.6/tap/tests/ok/ok-hash/Makefile.in-251-test-test.obj: test.c
nagios4-4.4.6/tap/tests/ok/ok-hash/Makefile.in:252:@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_CFLAGS) $(CFLAGS) -MT test-test.obj -MD -MP -MF "$(DEPDIR)/test-test.Tpo" -c -o test-test.obj `if test -f 'test.c'; then $(CYGPATH_W) 'test.c'; else $(CYGPATH_W) '$(srcdir)/test.c'; fi`; \
nagios4-4.4.6/tap/tests/ok/ok-hash/Makefile.in-253-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test-test.Tpo" "$(DEPDIR)/test-test.Po"; else rm -f "$(DEPDIR)/test-test.Tpo"; exit 1; fi
##############################################
nagios4-4.4.6/tap/tests/ok/ok-hash/Makefile.in-255-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
nagios4-4.4.6/tap/tests/ok/ok-hash/Makefile.in:256:@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_CFLAGS) $(CFLAGS) -c -o test-test.obj `if test -f 'test.c'; then $(CYGPATH_W) 'test.c'; else $(CYGPATH_W) '$(srcdir)/test.c'; fi`
nagios4-4.4.6/tap/tests/ok/ok-hash/Makefile.in-257-
##############################################
nagios4-4.4.6/tap/tests/ok/ok-hash/Makefile.in-308-GTAGS:
nagios4-4.4.6/tap/tests/ok/ok-hash/Makefile.in:309:	here=`$(am__cd) $(top_builddir) && pwd` \
nagios4-4.4.6/tap/tests/ok/ok-hash/Makefile.in-310-	  && cd $(top_srcdir) \
##############################################
nagios4-4.4.6/tap/tests/ok/ok-hash/Makefile.in-325-	    if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \
nagios4-4.4.6/tap/tests/ok/ok-hash/Makefile.in:326:	      all=`expr $$all + 1`; \
nagios4-4.4.6/tap/tests/ok/ok-hash/Makefile.in-327-	      case " $(XFAIL_TESTS) " in \
nagios4-4.4.6/tap/tests/ok/ok-hash/Makefile.in-328-	      *" $$tst "*) \
nagios4-4.4.6/tap/tests/ok/ok-hash/Makefile.in:329:		xpass=`expr $$xpass + 1`; \
nagios4-4.4.6/tap/tests/ok/ok-hash/Makefile.in:330:		failed=`expr $$failed + 1`; \
nagios4-4.4.6/tap/tests/ok/ok-hash/Makefile.in-331-		echo "XPASS: $$tst"; \
##############################################
nagios4-4.4.6/tap/tests/ok/ok-hash/Makefile.in-337-	    elif test $$? -ne 77; then \
nagios4-4.4.6/tap/tests/ok/ok-hash/Makefile.in:338:	      all=`expr $$all + 1`; \
nagios4-4.4.6/tap/tests/ok/ok-hash/Makefile.in-339-	      case " $(XFAIL_TESTS) " in \
nagios4-4.4.6/tap/tests/ok/ok-hash/Makefile.in-340-	      *" $$tst "*) \
nagios4-4.4.6/tap/tests/ok/ok-hash/Makefile.in:341:		xfail=`expr $$xfail + 1`; \
nagios4-4.4.6/tap/tests/ok/ok-hash/Makefile.in-342-		echo "XFAIL: $$tst"; \
##############################################
nagios4-4.4.6/tap/tests/ok/ok-hash/Makefile.in-344-	      *) \
nagios4-4.4.6/tap/tests/ok/ok-hash/Makefile.in:345:		failed=`expr $$failed + 1`; \
nagios4-4.4.6/tap/tests/ok/ok-hash/Makefile.in-346-		echo "FAIL: $$tst"; \
##############################################
nagios4-4.4.6/tap/tests/ok/ok-hash/Makefile.in-349-	    else \
nagios4-4.4.6/tap/tests/ok/ok-hash/Makefile.in:350:	      skip=`expr $$skip + 1`; \
nagios4-4.4.6/tap/tests/ok/ok-hash/Makefile.in-351-	      echo "SKIP: $$tst"; \
##############################################
nagios4-4.4.6/tap/tests/ok/ok-hash/Makefile.in-370-	    skipped="($$skip tests were not run)"; \
nagios4-4.4.6/tap/tests/ok/ok-hash/Makefile.in:371:	    test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \
nagios4-4.4.6/tap/tests/ok/ok-hash/Makefile.in-372-	      dashes="$$skipped"; \
##############################################
nagios4-4.4.6/tap/tests/ok/ok-hash/Makefile.in-376-	    report="Please report to $(PACKAGE_BUGREPORT)"; \
nagios4-4.4.6/tap/tests/ok/ok-hash/Makefile.in:377:	    test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \
nagios4-4.4.6/tap/tests/ok/ok-hash/Makefile.in-378-	      dashes="$$report"; \
nagios4-4.4.6/tap/tests/ok/ok-hash/Makefile.in-379-	  fi; \
nagios4-4.4.6/tap/tests/ok/ok-hash/Makefile.in:380:	  dashes=`echo "$$dashes" | sed s/./=/g`; \
nagios4-4.4.6/tap/tests/ok/ok-hash/Makefile.in-381-	  echo "$$dashes"; \
##############################################
nagios4-4.4.6/tap/tests/ok/ok-hash/Makefile.in-389-distdir: $(DISTFILES)
nagios4-4.4.6/tap/tests/ok/ok-hash/Makefile.in:390:	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
nagios4-4.4.6/tap/tests/ok/ok-hash/Makefile.in:391:	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
nagios4-4.4.6/tap/tests/ok/ok-hash/Makefile.in-392-	list='$(DISTFILES)'; for file in $$list; do \
nagios4-4.4.6/tap/tests/ok/ok-hash/Makefile.in-393-	  case $$file in \
nagios4-4.4.6/tap/tests/ok/ok-hash/Makefile.in:394:	    $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
nagios4-4.4.6/tap/tests/ok/ok-hash/Makefile.in:395:	    $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
nagios4-4.4.6/tap/tests/ok/ok-hash/Makefile.in-396-	  esac; \
nagios4-4.4.6/tap/tests/ok/ok-hash/Makefile.in-397-	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
nagios4-4.4.6/tap/tests/ok/ok-hash/Makefile.in:398:	  dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
nagios4-4.4.6/tap/tests/ok/ok-hash/Makefile.in-399-	  if test "$$dir" != "$$file" && test "$$dir" != "."; then \
##############################################
nagios4-4.4.6/tap/tests/ok/ok-hash/test.t-2-
nagios4-4.4.6/tap/tests/ok/ok-hash/test.t:3:cd `dirname $0`
nagios4-4.4.6/tap/tests/ok/ok-hash/test.t-4-
##############################################
nagios4-4.4.6/tap/tests/ok/ok-numeric/Makefile.in-206-	@list='$(check_PROGRAMS)'; for p in $$list; do \
nagios4-4.4.6/tap/tests/ok/ok-numeric/Makefile.in:207:	  f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
nagios4-4.4.6/tap/tests/ok/ok-numeric/Makefile.in-208-	  echo " rm -f $$p $$f"; \
##############################################
nagios4-4.4.6/tap/tests/ok/ok-numeric/Makefile.in-230-.c.obj:
nagios4-4.4.6/tap/tests/ok/ok-numeric/Makefile.in:231:@am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
nagios4-4.4.6/tap/tests/ok/ok-numeric/Makefile.in-232-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
##############################################
nagios4-4.4.6/tap/tests/ok/ok-numeric/Makefile.in-234-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
nagios4-4.4.6/tap/tests/ok/ok-numeric/Makefile.in:235:@am__fastdepCC_FALSE@	$(COMPILE) -c `$(CYGPATH_W) '$<'`
nagios4-4.4.6/tap/tests/ok/ok-numeric/Makefile.in-236-
##############################################
nagios4-4.4.6/tap/tests/ok/ok-numeric/Makefile.in-244-test-test.o: test.c
nagios4-4.4.6/tap/tests/ok/ok-numeric/Makefile.in:245:@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_CFLAGS) $(CFLAGS) -MT test-test.o -MD -MP -MF "$(DEPDIR)/test-test.Tpo" -c -o test-test.o `test -f 'test.c' || echo '$(srcdir)/'`test.c; \
nagios4-4.4.6/tap/tests/ok/ok-numeric/Makefile.in-246-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test-test.Tpo" "$(DEPDIR)/test-test.Po"; else rm -f "$(DEPDIR)/test-test.Tpo"; exit 1; fi
##############################################
nagios4-4.4.6/tap/tests/ok/ok-numeric/Makefile.in-248-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
nagios4-4.4.6/tap/tests/ok/ok-numeric/Makefile.in:249:@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_CFLAGS) $(CFLAGS) -c -o test-test.o `test -f 'test.c' || echo '$(srcdir)/'`test.c
nagios4-4.4.6/tap/tests/ok/ok-numeric/Makefile.in-250-
nagios4-4.4.6/tap/tests/ok/ok-numeric/Makefile.in-251-test-test.obj: test.c
nagios4-4.4.6/tap/tests/ok/ok-numeric/Makefile.in:252:@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_CFLAGS) $(CFLAGS) -MT test-test.obj -MD -MP -MF "$(DEPDIR)/test-test.Tpo" -c -o test-test.obj `if test -f 'test.c'; then $(CYGPATH_W) 'test.c'; else $(CYGPATH_W) '$(srcdir)/test.c'; fi`; \
nagios4-4.4.6/tap/tests/ok/ok-numeric/Makefile.in-253-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test-test.Tpo" "$(DEPDIR)/test-test.Po"; else rm -f "$(DEPDIR)/test-test.Tpo"; exit 1; fi
##############################################
nagios4-4.4.6/tap/tests/ok/ok-numeric/Makefile.in-255-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
nagios4-4.4.6/tap/tests/ok/ok-numeric/Makefile.in:256:@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_CFLAGS) $(CFLAGS) -c -o test-test.obj `if test -f 'test.c'; then $(CYGPATH_W) 'test.c'; else $(CYGPATH_W) '$(srcdir)/test.c'; fi`
nagios4-4.4.6/tap/tests/ok/ok-numeric/Makefile.in-257-
##############################################
nagios4-4.4.6/tap/tests/ok/ok-numeric/Makefile.in-308-GTAGS:
nagios4-4.4.6/tap/tests/ok/ok-numeric/Makefile.in:309:	here=`$(am__cd) $(top_builddir) && pwd` \
nagios4-4.4.6/tap/tests/ok/ok-numeric/Makefile.in-310-	  && cd $(top_srcdir) \
##############################################
nagios4-4.4.6/tap/tests/ok/ok-numeric/Makefile.in-325-	    if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \
nagios4-4.4.6/tap/tests/ok/ok-numeric/Makefile.in:326:	      all=`expr $$all + 1`; \
nagios4-4.4.6/tap/tests/ok/ok-numeric/Makefile.in-327-	      case " $(XFAIL_TESTS) " in \
nagios4-4.4.6/tap/tests/ok/ok-numeric/Makefile.in-328-	      *" $$tst "*) \
nagios4-4.4.6/tap/tests/ok/ok-numeric/Makefile.in:329:		xpass=`expr $$xpass + 1`; \
nagios4-4.4.6/tap/tests/ok/ok-numeric/Makefile.in:330:		failed=`expr $$failed + 1`; \
nagios4-4.4.6/tap/tests/ok/ok-numeric/Makefile.in-331-		echo "XPASS: $$tst"; \
##############################################
nagios4-4.4.6/tap/tests/ok/ok-numeric/Makefile.in-337-	    elif test $$? -ne 77; then \
nagios4-4.4.6/tap/tests/ok/ok-numeric/Makefile.in:338:	      all=`expr $$all + 1`; \
nagios4-4.4.6/tap/tests/ok/ok-numeric/Makefile.in-339-	      case " $(XFAIL_TESTS) " in \
nagios4-4.4.6/tap/tests/ok/ok-numeric/Makefile.in-340-	      *" $$tst "*) \
nagios4-4.4.6/tap/tests/ok/ok-numeric/Makefile.in:341:		xfail=`expr $$xfail + 1`; \
nagios4-4.4.6/tap/tests/ok/ok-numeric/Makefile.in-342-		echo "XFAIL: $$tst"; \
##############################################
nagios4-4.4.6/tap/tests/ok/ok-numeric/Makefile.in-344-	      *) \
nagios4-4.4.6/tap/tests/ok/ok-numeric/Makefile.in:345:		failed=`expr $$failed + 1`; \
nagios4-4.4.6/tap/tests/ok/ok-numeric/Makefile.in-346-		echo "FAIL: $$tst"; \
##############################################
nagios4-4.4.6/tap/tests/ok/ok-numeric/Makefile.in-349-	    else \
nagios4-4.4.6/tap/tests/ok/ok-numeric/Makefile.in:350:	      skip=`expr $$skip + 1`; \
nagios4-4.4.6/tap/tests/ok/ok-numeric/Makefile.in-351-	      echo "SKIP: $$tst"; \
##############################################
nagios4-4.4.6/tap/tests/ok/ok-numeric/Makefile.in-370-	    skipped="($$skip tests were not run)"; \
nagios4-4.4.6/tap/tests/ok/ok-numeric/Makefile.in:371:	    test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \
nagios4-4.4.6/tap/tests/ok/ok-numeric/Makefile.in-372-	      dashes="$$skipped"; \
##############################################
nagios4-4.4.6/tap/tests/ok/ok-numeric/Makefile.in-376-	    report="Please report to $(PACKAGE_BUGREPORT)"; \
nagios4-4.4.6/tap/tests/ok/ok-numeric/Makefile.in:377:	    test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \
nagios4-4.4.6/tap/tests/ok/ok-numeric/Makefile.in-378-	      dashes="$$report"; \
nagios4-4.4.6/tap/tests/ok/ok-numeric/Makefile.in-379-	  fi; \
nagios4-4.4.6/tap/tests/ok/ok-numeric/Makefile.in:380:	  dashes=`echo "$$dashes" | sed s/./=/g`; \
nagios4-4.4.6/tap/tests/ok/ok-numeric/Makefile.in-381-	  echo "$$dashes"; \
##############################################
nagios4-4.4.6/tap/tests/ok/ok-numeric/Makefile.in-389-distdir: $(DISTFILES)
nagios4-4.4.6/tap/tests/ok/ok-numeric/Makefile.in:390:	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
nagios4-4.4.6/tap/tests/ok/ok-numeric/Makefile.in:391:	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
nagios4-4.4.6/tap/tests/ok/ok-numeric/Makefile.in-392-	list='$(DISTFILES)'; for file in $$list; do \
nagios4-4.4.6/tap/tests/ok/ok-numeric/Makefile.in-393-	  case $$file in \
nagios4-4.4.6/tap/tests/ok/ok-numeric/Makefile.in:394:	    $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
nagios4-4.4.6/tap/tests/ok/ok-numeric/Makefile.in:395:	    $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
nagios4-4.4.6/tap/tests/ok/ok-numeric/Makefile.in-396-	  esac; \
nagios4-4.4.6/tap/tests/ok/ok-numeric/Makefile.in-397-	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
nagios4-4.4.6/tap/tests/ok/ok-numeric/Makefile.in:398:	  dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
nagios4-4.4.6/tap/tests/ok/ok-numeric/Makefile.in-399-	  if test "$$dir" != "$$file" && test "$$dir" != "."; then \
##############################################
nagios4-4.4.6/tap/tests/ok/ok-numeric/test.t-2-
nagios4-4.4.6/tap/tests/ok/ok-numeric/test.t:3:cd `dirname $0`
nagios4-4.4.6/tap/tests/ok/ok-numeric/test.t-4-
##############################################
nagios4-4.4.6/tap/tests/ok/ok/Makefile.in-206-	@list='$(check_PROGRAMS)'; for p in $$list; do \
nagios4-4.4.6/tap/tests/ok/ok/Makefile.in:207:	  f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
nagios4-4.4.6/tap/tests/ok/ok/Makefile.in-208-	  echo " rm -f $$p $$f"; \
##############################################
nagios4-4.4.6/tap/tests/ok/ok/Makefile.in-230-.c.obj:
nagios4-4.4.6/tap/tests/ok/ok/Makefile.in:231:@am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
nagios4-4.4.6/tap/tests/ok/ok/Makefile.in-232-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
##############################################
nagios4-4.4.6/tap/tests/ok/ok/Makefile.in-234-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
nagios4-4.4.6/tap/tests/ok/ok/Makefile.in:235:@am__fastdepCC_FALSE@	$(COMPILE) -c `$(CYGPATH_W) '$<'`
nagios4-4.4.6/tap/tests/ok/ok/Makefile.in-236-
##############################################
nagios4-4.4.6/tap/tests/ok/ok/Makefile.in-244-test-test.o: test.c
nagios4-4.4.6/tap/tests/ok/ok/Makefile.in:245:@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_CFLAGS) $(CFLAGS) -MT test-test.o -MD -MP -MF "$(DEPDIR)/test-test.Tpo" -c -o test-test.o `test -f 'test.c' || echo '$(srcdir)/'`test.c; \
nagios4-4.4.6/tap/tests/ok/ok/Makefile.in-246-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test-test.Tpo" "$(DEPDIR)/test-test.Po"; else rm -f "$(DEPDIR)/test-test.Tpo"; exit 1; fi
##############################################
nagios4-4.4.6/tap/tests/ok/ok/Makefile.in-248-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
nagios4-4.4.6/tap/tests/ok/ok/Makefile.in:249:@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_CFLAGS) $(CFLAGS) -c -o test-test.o `test -f 'test.c' || echo '$(srcdir)/'`test.c
nagios4-4.4.6/tap/tests/ok/ok/Makefile.in-250-
nagios4-4.4.6/tap/tests/ok/ok/Makefile.in-251-test-test.obj: test.c
nagios4-4.4.6/tap/tests/ok/ok/Makefile.in:252:@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_CFLAGS) $(CFLAGS) -MT test-test.obj -MD -MP -MF "$(DEPDIR)/test-test.Tpo" -c -o test-test.obj `if test -f 'test.c'; then $(CYGPATH_W) 'test.c'; else $(CYGPATH_W) '$(srcdir)/test.c'; fi`; \
nagios4-4.4.6/tap/tests/ok/ok/Makefile.in-253-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test-test.Tpo" "$(DEPDIR)/test-test.Po"; else rm -f "$(DEPDIR)/test-test.Tpo"; exit 1; fi
##############################################
nagios4-4.4.6/tap/tests/ok/ok/Makefile.in-255-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
nagios4-4.4.6/tap/tests/ok/ok/Makefile.in:256:@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_CFLAGS) $(CFLAGS) -c -o test-test.obj `if test -f 'test.c'; then $(CYGPATH_W) 'test.c'; else $(CYGPATH_W) '$(srcdir)/test.c'; fi`
nagios4-4.4.6/tap/tests/ok/ok/Makefile.in-257-
##############################################
nagios4-4.4.6/tap/tests/ok/ok/Makefile.in-308-GTAGS:
nagios4-4.4.6/tap/tests/ok/ok/Makefile.in:309:	here=`$(am__cd) $(top_builddir) && pwd` \
nagios4-4.4.6/tap/tests/ok/ok/Makefile.in-310-	  && cd $(top_srcdir) \
##############################################
nagios4-4.4.6/tap/tests/ok/ok/Makefile.in-325-	    if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \
nagios4-4.4.6/tap/tests/ok/ok/Makefile.in:326:	      all=`expr $$all + 1`; \
nagios4-4.4.6/tap/tests/ok/ok/Makefile.in-327-	      case " $(XFAIL_TESTS) " in \
nagios4-4.4.6/tap/tests/ok/ok/Makefile.in-328-	      *" $$tst "*) \
nagios4-4.4.6/tap/tests/ok/ok/Makefile.in:329:		xpass=`expr $$xpass + 1`; \
nagios4-4.4.6/tap/tests/ok/ok/Makefile.in:330:		failed=`expr $$failed + 1`; \
nagios4-4.4.6/tap/tests/ok/ok/Makefile.in-331-		echo "XPASS: $$tst"; \
##############################################
nagios4-4.4.6/tap/tests/ok/ok/Makefile.in-337-	    elif test $$? -ne 77; then \
nagios4-4.4.6/tap/tests/ok/ok/Makefile.in:338:	      all=`expr $$all + 1`; \
nagios4-4.4.6/tap/tests/ok/ok/Makefile.in-339-	      case " $(XFAIL_TESTS) " in \
nagios4-4.4.6/tap/tests/ok/ok/Makefile.in-340-	      *" $$tst "*) \
nagios4-4.4.6/tap/tests/ok/ok/Makefile.in:341:		xfail=`expr $$xfail + 1`; \
nagios4-4.4.6/tap/tests/ok/ok/Makefile.in-342-		echo "XFAIL: $$tst"; \
##############################################
nagios4-4.4.6/tap/tests/ok/ok/Makefile.in-344-	      *) \
nagios4-4.4.6/tap/tests/ok/ok/Makefile.in:345:		failed=`expr $$failed + 1`; \
nagios4-4.4.6/tap/tests/ok/ok/Makefile.in-346-		echo "FAIL: $$tst"; \
##############################################
nagios4-4.4.6/tap/tests/ok/ok/Makefile.in-349-	    else \
nagios4-4.4.6/tap/tests/ok/ok/Makefile.in:350:	      skip=`expr $$skip + 1`; \
nagios4-4.4.6/tap/tests/ok/ok/Makefile.in-351-	      echo "SKIP: $$tst"; \
##############################################
nagios4-4.4.6/tap/tests/ok/ok/Makefile.in-370-	    skipped="($$skip tests were not run)"; \
nagios4-4.4.6/tap/tests/ok/ok/Makefile.in:371:	    test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \
nagios4-4.4.6/tap/tests/ok/ok/Makefile.in-372-	      dashes="$$skipped"; \
##############################################
nagios4-4.4.6/tap/tests/ok/ok/Makefile.in-376-	    report="Please report to $(PACKAGE_BUGREPORT)"; \
nagios4-4.4.6/tap/tests/ok/ok/Makefile.in:377:	    test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \
nagios4-4.4.6/tap/tests/ok/ok/Makefile.in-378-	      dashes="$$report"; \
nagios4-4.4.6/tap/tests/ok/ok/Makefile.in-379-	  fi; \
nagios4-4.4.6/tap/tests/ok/ok/Makefile.in:380:	  dashes=`echo "$$dashes" | sed s/./=/g`; \
nagios4-4.4.6/tap/tests/ok/ok/Makefile.in-381-	  echo "$$dashes"; \
##############################################
nagios4-4.4.6/tap/tests/ok/ok/Makefile.in-389-distdir: $(DISTFILES)
nagios4-4.4.6/tap/tests/ok/ok/Makefile.in:390:	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
nagios4-4.4.6/tap/tests/ok/ok/Makefile.in:391:	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
nagios4-4.4.6/tap/tests/ok/ok/Makefile.in-392-	list='$(DISTFILES)'; for file in $$list; do \
nagios4-4.4.6/tap/tests/ok/ok/Makefile.in-393-	  case $$file in \
nagios4-4.4.6/tap/tests/ok/ok/Makefile.in:394:	    $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
nagios4-4.4.6/tap/tests/ok/ok/Makefile.in:395:	    $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
nagios4-4.4.6/tap/tests/ok/ok/Makefile.in-396-	  esac; \
nagios4-4.4.6/tap/tests/ok/ok/Makefile.in-397-	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
nagios4-4.4.6/tap/tests/ok/ok/Makefile.in:398:	  dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
nagios4-4.4.6/tap/tests/ok/ok/Makefile.in-399-	  if test "$$dir" != "$$file" && test "$$dir" != "."; then \
##############################################
nagios4-4.4.6/tap/tests/ok/ok/test.t-2-
nagios4-4.4.6/tap/tests/ok/ok/test.t:3:cd `dirname $0`
nagios4-4.4.6/tap/tests/ok/ok/test.t-4-
##############################################
nagios4-4.4.6/tap/tests/pass/Makefile.in-206-	@list='$(check_PROGRAMS)'; for p in $$list; do \
nagios4-4.4.6/tap/tests/pass/Makefile.in:207:	  f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
nagios4-4.4.6/tap/tests/pass/Makefile.in-208-	  echo " rm -f $$p $$f"; \
##############################################
nagios4-4.4.6/tap/tests/pass/Makefile.in-230-.c.obj:
nagios4-4.4.6/tap/tests/pass/Makefile.in:231:@am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
nagios4-4.4.6/tap/tests/pass/Makefile.in-232-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
##############################################
nagios4-4.4.6/tap/tests/pass/Makefile.in-234-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
nagios4-4.4.6/tap/tests/pass/Makefile.in:235:@am__fastdepCC_FALSE@	$(COMPILE) -c `$(CYGPATH_W) '$<'`
nagios4-4.4.6/tap/tests/pass/Makefile.in-236-
##############################################
nagios4-4.4.6/tap/tests/pass/Makefile.in-244-test-test.o: test.c
nagios4-4.4.6/tap/tests/pass/Makefile.in:245:@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_CFLAGS) $(CFLAGS) -MT test-test.o -MD -MP -MF "$(DEPDIR)/test-test.Tpo" -c -o test-test.o `test -f 'test.c' || echo '$(srcdir)/'`test.c; \
nagios4-4.4.6/tap/tests/pass/Makefile.in-246-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test-test.Tpo" "$(DEPDIR)/test-test.Po"; else rm -f "$(DEPDIR)/test-test.Tpo"; exit 1; fi
##############################################
nagios4-4.4.6/tap/tests/pass/Makefile.in-248-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
nagios4-4.4.6/tap/tests/pass/Makefile.in:249:@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_CFLAGS) $(CFLAGS) -c -o test-test.o `test -f 'test.c' || echo '$(srcdir)/'`test.c
nagios4-4.4.6/tap/tests/pass/Makefile.in-250-
nagios4-4.4.6/tap/tests/pass/Makefile.in-251-test-test.obj: test.c
nagios4-4.4.6/tap/tests/pass/Makefile.in:252:@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_CFLAGS) $(CFLAGS) -MT test-test.obj -MD -MP -MF "$(DEPDIR)/test-test.Tpo" -c -o test-test.obj `if test -f 'test.c'; then $(CYGPATH_W) 'test.c'; else $(CYGPATH_W) '$(srcdir)/test.c'; fi`; \
nagios4-4.4.6/tap/tests/pass/Makefile.in-253-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test-test.Tpo" "$(DEPDIR)/test-test.Po"; else rm -f "$(DEPDIR)/test-test.Tpo"; exit 1; fi
##############################################
nagios4-4.4.6/tap/tests/pass/Makefile.in-255-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
nagios4-4.4.6/tap/tests/pass/Makefile.in:256:@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_CFLAGS) $(CFLAGS) -c -o test-test.obj `if test -f 'test.c'; then $(CYGPATH_W) 'test.c'; else $(CYGPATH_W) '$(srcdir)/test.c'; fi`
nagios4-4.4.6/tap/tests/pass/Makefile.in-257-
##############################################
nagios4-4.4.6/tap/tests/pass/Makefile.in-308-GTAGS:
nagios4-4.4.6/tap/tests/pass/Makefile.in:309:	here=`$(am__cd) $(top_builddir) && pwd` \
nagios4-4.4.6/tap/tests/pass/Makefile.in-310-	  && cd $(top_srcdir) \
##############################################
nagios4-4.4.6/tap/tests/pass/Makefile.in-325-	    if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \
nagios4-4.4.6/tap/tests/pass/Makefile.in:326:	      all=`expr $$all + 1`; \
nagios4-4.4.6/tap/tests/pass/Makefile.in-327-	      case " $(XFAIL_TESTS) " in \
nagios4-4.4.6/tap/tests/pass/Makefile.in-328-	      *" $$tst "*) \
nagios4-4.4.6/tap/tests/pass/Makefile.in:329:		xpass=`expr $$xpass + 1`; \
nagios4-4.4.6/tap/tests/pass/Makefile.in:330:		failed=`expr $$failed + 1`; \
nagios4-4.4.6/tap/tests/pass/Makefile.in-331-		echo "XPASS: $$tst"; \
##############################################
nagios4-4.4.6/tap/tests/pass/Makefile.in-337-	    elif test $$? -ne 77; then \
nagios4-4.4.6/tap/tests/pass/Makefile.in:338:	      all=`expr $$all + 1`; \
nagios4-4.4.6/tap/tests/pass/Makefile.in-339-	      case " $(XFAIL_TESTS) " in \
nagios4-4.4.6/tap/tests/pass/Makefile.in-340-	      *" $$tst "*) \
nagios4-4.4.6/tap/tests/pass/Makefile.in:341:		xfail=`expr $$xfail + 1`; \
nagios4-4.4.6/tap/tests/pass/Makefile.in-342-		echo "XFAIL: $$tst"; \
##############################################
nagios4-4.4.6/tap/tests/pass/Makefile.in-344-	      *) \
nagios4-4.4.6/tap/tests/pass/Makefile.in:345:		failed=`expr $$failed + 1`; \
nagios4-4.4.6/tap/tests/pass/Makefile.in-346-		echo "FAIL: $$tst"; \
##############################################
nagios4-4.4.6/tap/tests/pass/Makefile.in-349-	    else \
nagios4-4.4.6/tap/tests/pass/Makefile.in:350:	      skip=`expr $$skip + 1`; \
nagios4-4.4.6/tap/tests/pass/Makefile.in-351-	      echo "SKIP: $$tst"; \
##############################################
nagios4-4.4.6/tap/tests/pass/Makefile.in-370-	    skipped="($$skip tests were not run)"; \
nagios4-4.4.6/tap/tests/pass/Makefile.in:371:	    test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \
nagios4-4.4.6/tap/tests/pass/Makefile.in-372-	      dashes="$$skipped"; \
##############################################
nagios4-4.4.6/tap/tests/pass/Makefile.in-376-	    report="Please report to $(PACKAGE_BUGREPORT)"; \
nagios4-4.4.6/tap/tests/pass/Makefile.in:377:	    test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \
nagios4-4.4.6/tap/tests/pass/Makefile.in-378-	      dashes="$$report"; \
nagios4-4.4.6/tap/tests/pass/Makefile.in-379-	  fi; \
nagios4-4.4.6/tap/tests/pass/Makefile.in:380:	  dashes=`echo "$$dashes" | sed s/./=/g`; \
nagios4-4.4.6/tap/tests/pass/Makefile.in-381-	  echo "$$dashes"; \
##############################################
nagios4-4.4.6/tap/tests/pass/Makefile.in-389-distdir: $(DISTFILES)
nagios4-4.4.6/tap/tests/pass/Makefile.in:390:	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
nagios4-4.4.6/tap/tests/pass/Makefile.in:391:	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
nagios4-4.4.6/tap/tests/pass/Makefile.in-392-	list='$(DISTFILES)'; for file in $$list; do \
nagios4-4.4.6/tap/tests/pass/Makefile.in-393-	  case $$file in \
nagios4-4.4.6/tap/tests/pass/Makefile.in:394:	    $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
nagios4-4.4.6/tap/tests/pass/Makefile.in:395:	    $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
nagios4-4.4.6/tap/tests/pass/Makefile.in-396-	  esac; \
nagios4-4.4.6/tap/tests/pass/Makefile.in-397-	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
nagios4-4.4.6/tap/tests/pass/Makefile.in:398:	  dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
nagios4-4.4.6/tap/tests/pass/Makefile.in-399-	  if test "$$dir" != "$$file" && test "$$dir" != "."; then \
##############################################
nagios4-4.4.6/tap/tests/pass/test.t-2-
nagios4-4.4.6/tap/tests/pass/test.t:3:cd `dirname $0`
nagios4-4.4.6/tap/tests/pass/test.t-4-
##############################################
nagios4-4.4.6/tap/tests/plan/Makefile.in-207-	dot_seen=no; \
nagios4-4.4.6/tap/tests/plan/Makefile.in:208:	target=`echo $@ | sed s/-recursive//`; \
nagios4-4.4.6/tap/tests/plan/Makefile.in-209-	list='$(SUBDIRS)'; for subdir in $$list; do \
##############################################
nagios4-4.4.6/tap/tests/plan/Makefile.in-237-	rev="$$rev ."; \
nagios4-4.4.6/tap/tests/plan/Makefile.in:238:	target=`echo $@ | sed s/-recursive//`; \
nagios4-4.4.6/tap/tests/plan/Makefile.in-239-	for subdir in $$rev; do \
##############################################
nagios4-4.4.6/tap/tests/plan/Makefile.in-311-GTAGS:
nagios4-4.4.6/tap/tests/plan/Makefile.in:312:	here=`$(am__cd) $(top_builddir) && pwd` \
nagios4-4.4.6/tap/tests/plan/Makefile.in-313-	  && cd $(top_srcdir) \
##############################################
nagios4-4.4.6/tap/tests/plan/Makefile.in-319-distdir: $(DISTFILES)
nagios4-4.4.6/tap/tests/plan/Makefile.in:320:	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
nagios4-4.4.6/tap/tests/plan/Makefile.in:321:	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
nagios4-4.4.6/tap/tests/plan/Makefile.in-322-	list='$(DISTFILES)'; for file in $$list; do \
nagios4-4.4.6/tap/tests/plan/Makefile.in-323-	  case $$file in \
nagios4-4.4.6/tap/tests/plan/Makefile.in:324:	    $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
nagios4-4.4.6/tap/tests/plan/Makefile.in:325:	    $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
nagios4-4.4.6/tap/tests/plan/Makefile.in-326-	  esac; \
nagios4-4.4.6/tap/tests/plan/Makefile.in-327-	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
nagios4-4.4.6/tap/tests/plan/Makefile.in:328:	  dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
nagios4-4.4.6/tap/tests/plan/Makefile.in-329-	  if test "$$dir" != "$$file" && test "$$dir" != "."; then \
##############################################
nagios4-4.4.6/tap/tests/plan/Makefile.in-350-	    || exit 1; \
nagios4-4.4.6/tap/tests/plan/Makefile.in:351:	    distdir=`$(am__cd) $(distdir) && pwd`; \
nagios4-4.4.6/tap/tests/plan/Makefile.in:352:	    top_distdir=`$(am__cd) $(top_distdir) && pwd`; \
nagios4-4.4.6/tap/tests/plan/Makefile.in-353-	    (cd $$subdir && \
##############################################
nagios4-4.4.6/tap/tests/plan/no-tests/Makefile.in-206-	@list='$(check_PROGRAMS)'; for p in $$list; do \
nagios4-4.4.6/tap/tests/plan/no-tests/Makefile.in:207:	  f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
nagios4-4.4.6/tap/tests/plan/no-tests/Makefile.in-208-	  echo " rm -f $$p $$f"; \
##############################################
nagios4-4.4.6/tap/tests/plan/no-tests/Makefile.in-230-.c.obj:
nagios4-4.4.6/tap/tests/plan/no-tests/Makefile.in:231:@am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
nagios4-4.4.6/tap/tests/plan/no-tests/Makefile.in-232-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
##############################################
nagios4-4.4.6/tap/tests/plan/no-tests/Makefile.in-234-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
nagios4-4.4.6/tap/tests/plan/no-tests/Makefile.in:235:@am__fastdepCC_FALSE@	$(COMPILE) -c `$(CYGPATH_W) '$<'`
nagios4-4.4.6/tap/tests/plan/no-tests/Makefile.in-236-
##############################################
nagios4-4.4.6/tap/tests/plan/no-tests/Makefile.in-244-test-test.o: test.c
nagios4-4.4.6/tap/tests/plan/no-tests/Makefile.in:245:@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_CFLAGS) $(CFLAGS) -MT test-test.o -MD -MP -MF "$(DEPDIR)/test-test.Tpo" -c -o test-test.o `test -f 'test.c' || echo '$(srcdir)/'`test.c; \
nagios4-4.4.6/tap/tests/plan/no-tests/Makefile.in-246-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test-test.Tpo" "$(DEPDIR)/test-test.Po"; else rm -f "$(DEPDIR)/test-test.Tpo"; exit 1; fi
##############################################
nagios4-4.4.6/tap/tests/plan/no-tests/Makefile.in-248-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
nagios4-4.4.6/tap/tests/plan/no-tests/Makefile.in:249:@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_CFLAGS) $(CFLAGS) -c -o test-test.o `test -f 'test.c' || echo '$(srcdir)/'`test.c
nagios4-4.4.6/tap/tests/plan/no-tests/Makefile.in-250-
nagios4-4.4.6/tap/tests/plan/no-tests/Makefile.in-251-test-test.obj: test.c
nagios4-4.4.6/tap/tests/plan/no-tests/Makefile.in:252:@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_CFLAGS) $(CFLAGS) -MT test-test.obj -MD -MP -MF "$(DEPDIR)/test-test.Tpo" -c -o test-test.obj `if test -f 'test.c'; then $(CYGPATH_W) 'test.c'; else $(CYGPATH_W) '$(srcdir)/test.c'; fi`; \
nagios4-4.4.6/tap/tests/plan/no-tests/Makefile.in-253-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test-test.Tpo" "$(DEPDIR)/test-test.Po"; else rm -f "$(DEPDIR)/test-test.Tpo"; exit 1; fi
##############################################
nagios4-4.4.6/tap/tests/plan/no-tests/Makefile.in-255-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
nagios4-4.4.6/tap/tests/plan/no-tests/Makefile.in:256:@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_CFLAGS) $(CFLAGS) -c -o test-test.obj `if test -f 'test.c'; then $(CYGPATH_W) 'test.c'; else $(CYGPATH_W) '$(srcdir)/test.c'; fi`
nagios4-4.4.6/tap/tests/plan/no-tests/Makefile.in-257-
##############################################
nagios4-4.4.6/tap/tests/plan/no-tests/Makefile.in-308-GTAGS:
nagios4-4.4.6/tap/tests/plan/no-tests/Makefile.in:309:	here=`$(am__cd) $(top_builddir) && pwd` \
nagios4-4.4.6/tap/tests/plan/no-tests/Makefile.in-310-	  && cd $(top_srcdir) \
##############################################
nagios4-4.4.6/tap/tests/plan/no-tests/Makefile.in-325-	    if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \
nagios4-4.4.6/tap/tests/plan/no-tests/Makefile.in:326:	      all=`expr $$all + 1`; \
nagios4-4.4.6/tap/tests/plan/no-tests/Makefile.in-327-	      case " $(XFAIL_TESTS) " in \
nagios4-4.4.6/tap/tests/plan/no-tests/Makefile.in-328-	      *" $$tst "*) \
nagios4-4.4.6/tap/tests/plan/no-tests/Makefile.in:329:		xpass=`expr $$xpass + 1`; \
nagios4-4.4.6/tap/tests/plan/no-tests/Makefile.in:330:		failed=`expr $$failed + 1`; \
nagios4-4.4.6/tap/tests/plan/no-tests/Makefile.in-331-		echo "XPASS: $$tst"; \
##############################################
nagios4-4.4.6/tap/tests/plan/no-tests/Makefile.in-337-	    elif test $$? -ne 77; then \
nagios4-4.4.6/tap/tests/plan/no-tests/Makefile.in:338:	      all=`expr $$all + 1`; \
nagios4-4.4.6/tap/tests/plan/no-tests/Makefile.in-339-	      case " $(XFAIL_TESTS) " in \
nagios4-4.4.6/tap/tests/plan/no-tests/Makefile.in-340-	      *" $$tst "*) \
nagios4-4.4.6/tap/tests/plan/no-tests/Makefile.in:341:		xfail=`expr $$xfail + 1`; \
nagios4-4.4.6/tap/tests/plan/no-tests/Makefile.in-342-		echo "XFAIL: $$tst"; \
##############################################
nagios4-4.4.6/tap/tests/plan/no-tests/Makefile.in-344-	      *) \
nagios4-4.4.6/tap/tests/plan/no-tests/Makefile.in:345:		failed=`expr $$failed + 1`; \
nagios4-4.4.6/tap/tests/plan/no-tests/Makefile.in-346-		echo "FAIL: $$tst"; \
##############################################
nagios4-4.4.6/tap/tests/plan/no-tests/Makefile.in-349-	    else \
nagios4-4.4.6/tap/tests/plan/no-tests/Makefile.in:350:	      skip=`expr $$skip + 1`; \
nagios4-4.4.6/tap/tests/plan/no-tests/Makefile.in-351-	      echo "SKIP: $$tst"; \
##############################################
nagios4-4.4.6/tap/tests/plan/no-tests/Makefile.in-370-	    skipped="($$skip tests were not run)"; \
nagios4-4.4.6/tap/tests/plan/no-tests/Makefile.in:371:	    test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \
nagios4-4.4.6/tap/tests/plan/no-tests/Makefile.in-372-	      dashes="$$skipped"; \
##############################################
nagios4-4.4.6/tap/tests/plan/no-tests/Makefile.in-376-	    report="Please report to $(PACKAGE_BUGREPORT)"; \
nagios4-4.4.6/tap/tests/plan/no-tests/Makefile.in:377:	    test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \
nagios4-4.4.6/tap/tests/plan/no-tests/Makefile.in-378-	      dashes="$$report"; \
nagios4-4.4.6/tap/tests/plan/no-tests/Makefile.in-379-	  fi; \
nagios4-4.4.6/tap/tests/plan/no-tests/Makefile.in:380:	  dashes=`echo "$$dashes" | sed s/./=/g`; \
nagios4-4.4.6/tap/tests/plan/no-tests/Makefile.in-381-	  echo "$$dashes"; \
##############################################
nagios4-4.4.6/tap/tests/plan/no-tests/Makefile.in-389-distdir: $(DISTFILES)
nagios4-4.4.6/tap/tests/plan/no-tests/Makefile.in:390:	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
nagios4-4.4.6/tap/tests/plan/no-tests/Makefile.in:391:	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
nagios4-4.4.6/tap/tests/plan/no-tests/Makefile.in-392-	list='$(DISTFILES)'; for file in $$list; do \
nagios4-4.4.6/tap/tests/plan/no-tests/Makefile.in-393-	  case $$file in \
nagios4-4.4.6/tap/tests/plan/no-tests/Makefile.in:394:	    $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
nagios4-4.4.6/tap/tests/plan/no-tests/Makefile.in:395:	    $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
nagios4-4.4.6/tap/tests/plan/no-tests/Makefile.in-396-	  esac; \
nagios4-4.4.6/tap/tests/plan/no-tests/Makefile.in-397-	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
nagios4-4.4.6/tap/tests/plan/no-tests/Makefile.in:398:	  dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
nagios4-4.4.6/tap/tests/plan/no-tests/Makefile.in-399-	  if test "$$dir" != "$$file" && test "$$dir" != "."; then \
##############################################
nagios4-4.4.6/tap/tests/plan/no-tests/test.t-2-
nagios4-4.4.6/tap/tests/plan/no-tests/test.t:3:cd `dirname $0`
nagios4-4.4.6/tap/tests/plan/no-tests/test.t-4-
##############################################
nagios4-4.4.6/tap/tests/plan/no_plan/Makefile.in-206-	@list='$(check_PROGRAMS)'; for p in $$list; do \
nagios4-4.4.6/tap/tests/plan/no_plan/Makefile.in:207:	  f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
nagios4-4.4.6/tap/tests/plan/no_plan/Makefile.in-208-	  echo " rm -f $$p $$f"; \
##############################################
nagios4-4.4.6/tap/tests/plan/no_plan/Makefile.in-230-.c.obj:
nagios4-4.4.6/tap/tests/plan/no_plan/Makefile.in:231:@am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
nagios4-4.4.6/tap/tests/plan/no_plan/Makefile.in-232-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
##############################################
nagios4-4.4.6/tap/tests/plan/no_plan/Makefile.in-234-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
nagios4-4.4.6/tap/tests/plan/no_plan/Makefile.in:235:@am__fastdepCC_FALSE@	$(COMPILE) -c `$(CYGPATH_W) '$<'`
nagios4-4.4.6/tap/tests/plan/no_plan/Makefile.in-236-
##############################################
nagios4-4.4.6/tap/tests/plan/no_plan/Makefile.in-244-test-test.o: test.c
nagios4-4.4.6/tap/tests/plan/no_plan/Makefile.in:245:@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_CFLAGS) $(CFLAGS) -MT test-test.o -MD -MP -MF "$(DEPDIR)/test-test.Tpo" -c -o test-test.o `test -f 'test.c' || echo '$(srcdir)/'`test.c; \
nagios4-4.4.6/tap/tests/plan/no_plan/Makefile.in-246-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test-test.Tpo" "$(DEPDIR)/test-test.Po"; else rm -f "$(DEPDIR)/test-test.Tpo"; exit 1; fi
##############################################
nagios4-4.4.6/tap/tests/plan/no_plan/Makefile.in-248-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
nagios4-4.4.6/tap/tests/plan/no_plan/Makefile.in:249:@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_CFLAGS) $(CFLAGS) -c -o test-test.o `test -f 'test.c' || echo '$(srcdir)/'`test.c
nagios4-4.4.6/tap/tests/plan/no_plan/Makefile.in-250-
nagios4-4.4.6/tap/tests/plan/no_plan/Makefile.in-251-test-test.obj: test.c
nagios4-4.4.6/tap/tests/plan/no_plan/Makefile.in:252:@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_CFLAGS) $(CFLAGS) -MT test-test.obj -MD -MP -MF "$(DEPDIR)/test-test.Tpo" -c -o test-test.obj `if test -f 'test.c'; then $(CYGPATH_W) 'test.c'; else $(CYGPATH_W) '$(srcdir)/test.c'; fi`; \
nagios4-4.4.6/tap/tests/plan/no_plan/Makefile.in-253-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test-test.Tpo" "$(DEPDIR)/test-test.Po"; else rm -f "$(DEPDIR)/test-test.Tpo"; exit 1; fi
##############################################
nagios4-4.4.6/tap/tests/plan/no_plan/Makefile.in-255-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
nagios4-4.4.6/tap/tests/plan/no_plan/Makefile.in:256:@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_CFLAGS) $(CFLAGS) -c -o test-test.obj `if test -f 'test.c'; then $(CYGPATH_W) 'test.c'; else $(CYGPATH_W) '$(srcdir)/test.c'; fi`
nagios4-4.4.6/tap/tests/plan/no_plan/Makefile.in-257-
##############################################
nagios4-4.4.6/tap/tests/plan/no_plan/Makefile.in-308-GTAGS:
nagios4-4.4.6/tap/tests/plan/no_plan/Makefile.in:309:	here=`$(am__cd) $(top_builddir) && pwd` \
nagios4-4.4.6/tap/tests/plan/no_plan/Makefile.in-310-	  && cd $(top_srcdir) \
##############################################
nagios4-4.4.6/tap/tests/plan/no_plan/Makefile.in-325-	    if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \
nagios4-4.4.6/tap/tests/plan/no_plan/Makefile.in:326:	      all=`expr $$all + 1`; \
nagios4-4.4.6/tap/tests/plan/no_plan/Makefile.in-327-	      case " $(XFAIL_TESTS) " in \
nagios4-4.4.6/tap/tests/plan/no_plan/Makefile.in-328-	      *" $$tst "*) \
nagios4-4.4.6/tap/tests/plan/no_plan/Makefile.in:329:		xpass=`expr $$xpass + 1`; \
nagios4-4.4.6/tap/tests/plan/no_plan/Makefile.in:330:		failed=`expr $$failed + 1`; \
nagios4-4.4.6/tap/tests/plan/no_plan/Makefile.in-331-		echo "XPASS: $$tst"; \
##############################################
nagios4-4.4.6/tap/tests/plan/no_plan/Makefile.in-337-	    elif test $$? -ne 77; then \
nagios4-4.4.6/tap/tests/plan/no_plan/Makefile.in:338:	      all=`expr $$all + 1`; \
nagios4-4.4.6/tap/tests/plan/no_plan/Makefile.in-339-	      case " $(XFAIL_TESTS) " in \
nagios4-4.4.6/tap/tests/plan/no_plan/Makefile.in-340-	      *" $$tst "*) \
nagios4-4.4.6/tap/tests/plan/no_plan/Makefile.in:341:		xfail=`expr $$xfail + 1`; \
nagios4-4.4.6/tap/tests/plan/no_plan/Makefile.in-342-		echo "XFAIL: $$tst"; \
##############################################
nagios4-4.4.6/tap/tests/plan/no_plan/Makefile.in-344-	      *) \
nagios4-4.4.6/tap/tests/plan/no_plan/Makefile.in:345:		failed=`expr $$failed + 1`; \
nagios4-4.4.6/tap/tests/plan/no_plan/Makefile.in-346-		echo "FAIL: $$tst"; \
##############################################
nagios4-4.4.6/tap/tests/plan/no_plan/Makefile.in-349-	    else \
nagios4-4.4.6/tap/tests/plan/no_plan/Makefile.in:350:	      skip=`expr $$skip + 1`; \
nagios4-4.4.6/tap/tests/plan/no_plan/Makefile.in-351-	      echo "SKIP: $$tst"; \
##############################################
nagios4-4.4.6/tap/tests/plan/no_plan/Makefile.in-370-	    skipped="($$skip tests were not run)"; \
nagios4-4.4.6/tap/tests/plan/no_plan/Makefile.in:371:	    test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \
nagios4-4.4.6/tap/tests/plan/no_plan/Makefile.in-372-	      dashes="$$skipped"; \
##############################################
nagios4-4.4.6/tap/tests/plan/no_plan/Makefile.in-376-	    report="Please report to $(PACKAGE_BUGREPORT)"; \
nagios4-4.4.6/tap/tests/plan/no_plan/Makefile.in:377:	    test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \
nagios4-4.4.6/tap/tests/plan/no_plan/Makefile.in-378-	      dashes="$$report"; \
nagios4-4.4.6/tap/tests/plan/no_plan/Makefile.in-379-	  fi; \
nagios4-4.4.6/tap/tests/plan/no_plan/Makefile.in:380:	  dashes=`echo "$$dashes" | sed s/./=/g`; \
nagios4-4.4.6/tap/tests/plan/no_plan/Makefile.in-381-	  echo "$$dashes"; \
##############################################
nagios4-4.4.6/tap/tests/plan/no_plan/Makefile.in-389-distdir: $(DISTFILES)
nagios4-4.4.6/tap/tests/plan/no_plan/Makefile.in:390:	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
nagios4-4.4.6/tap/tests/plan/no_plan/Makefile.in:391:	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
nagios4-4.4.6/tap/tests/plan/no_plan/Makefile.in-392-	list='$(DISTFILES)'; for file in $$list; do \
nagios4-4.4.6/tap/tests/plan/no_plan/Makefile.in-393-	  case $$file in \
nagios4-4.4.6/tap/tests/plan/no_plan/Makefile.in:394:	    $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
nagios4-4.4.6/tap/tests/plan/no_plan/Makefile.in:395:	    $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
nagios4-4.4.6/tap/tests/plan/no_plan/Makefile.in-396-	  esac; \
nagios4-4.4.6/tap/tests/plan/no_plan/Makefile.in-397-	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
nagios4-4.4.6/tap/tests/plan/no_plan/Makefile.in:398:	  dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
nagios4-4.4.6/tap/tests/plan/no_plan/Makefile.in-399-	  if test "$$dir" != "$$file" && test "$$dir" != "."; then \
##############################################
nagios4-4.4.6/tap/tests/plan/no_plan/test.t-2-
nagios4-4.4.6/tap/tests/plan/no_plan/test.t:3:cd `dirname $0`
nagios4-4.4.6/tap/tests/plan/no_plan/test.t-4-
##############################################
nagios4-4.4.6/tap/tests/plan/not-enough-tests/Makefile.in-206-	@list='$(check_PROGRAMS)'; for p in $$list; do \
nagios4-4.4.6/tap/tests/plan/not-enough-tests/Makefile.in:207:	  f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
nagios4-4.4.6/tap/tests/plan/not-enough-tests/Makefile.in-208-	  echo " rm -f $$p $$f"; \
##############################################
nagios4-4.4.6/tap/tests/plan/not-enough-tests/Makefile.in-230-.c.obj:
nagios4-4.4.6/tap/tests/plan/not-enough-tests/Makefile.in:231:@am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
nagios4-4.4.6/tap/tests/plan/not-enough-tests/Makefile.in-232-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
##############################################
nagios4-4.4.6/tap/tests/plan/not-enough-tests/Makefile.in-234-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
nagios4-4.4.6/tap/tests/plan/not-enough-tests/Makefile.in:235:@am__fastdepCC_FALSE@	$(COMPILE) -c `$(CYGPATH_W) '$<'`
nagios4-4.4.6/tap/tests/plan/not-enough-tests/Makefile.in-236-
##############################################
nagios4-4.4.6/tap/tests/plan/not-enough-tests/Makefile.in-244-test-test.o: test.c
nagios4-4.4.6/tap/tests/plan/not-enough-tests/Makefile.in:245:@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_CFLAGS) $(CFLAGS) -MT test-test.o -MD -MP -MF "$(DEPDIR)/test-test.Tpo" -c -o test-test.o `test -f 'test.c' || echo '$(srcdir)/'`test.c; \
nagios4-4.4.6/tap/tests/plan/not-enough-tests/Makefile.in-246-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test-test.Tpo" "$(DEPDIR)/test-test.Po"; else rm -f "$(DEPDIR)/test-test.Tpo"; exit 1; fi
##############################################
nagios4-4.4.6/tap/tests/plan/not-enough-tests/Makefile.in-248-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
nagios4-4.4.6/tap/tests/plan/not-enough-tests/Makefile.in:249:@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_CFLAGS) $(CFLAGS) -c -o test-test.o `test -f 'test.c' || echo '$(srcdir)/'`test.c
nagios4-4.4.6/tap/tests/plan/not-enough-tests/Makefile.in-250-
nagios4-4.4.6/tap/tests/plan/not-enough-tests/Makefile.in-251-test-test.obj: test.c
nagios4-4.4.6/tap/tests/plan/not-enough-tests/Makefile.in:252:@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_CFLAGS) $(CFLAGS) -MT test-test.obj -MD -MP -MF "$(DEPDIR)/test-test.Tpo" -c -o test-test.obj `if test -f 'test.c'; then $(CYGPATH_W) 'test.c'; else $(CYGPATH_W) '$(srcdir)/test.c'; fi`; \
nagios4-4.4.6/tap/tests/plan/not-enough-tests/Makefile.in-253-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test-test.Tpo" "$(DEPDIR)/test-test.Po"; else rm -f "$(DEPDIR)/test-test.Tpo"; exit 1; fi
##############################################
nagios4-4.4.6/tap/tests/plan/not-enough-tests/Makefile.in-255-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
nagios4-4.4.6/tap/tests/plan/not-enough-tests/Makefile.in:256:@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_CFLAGS) $(CFLAGS) -c -o test-test.obj `if test -f 'test.c'; then $(CYGPATH_W) 'test.c'; else $(CYGPATH_W) '$(srcdir)/test.c'; fi`
nagios4-4.4.6/tap/tests/plan/not-enough-tests/Makefile.in-257-
##############################################
nagios4-4.4.6/tap/tests/plan/not-enough-tests/Makefile.in-308-GTAGS:
nagios4-4.4.6/tap/tests/plan/not-enough-tests/Makefile.in:309:	here=`$(am__cd) $(top_builddir) && pwd` \
nagios4-4.4.6/tap/tests/plan/not-enough-tests/Makefile.in-310-	  && cd $(top_srcdir) \
##############################################
nagios4-4.4.6/tap/tests/plan/not-enough-tests/Makefile.in-325-	    if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \
nagios4-4.4.6/tap/tests/plan/not-enough-tests/Makefile.in:326:	      all=`expr $$all + 1`; \
nagios4-4.4.6/tap/tests/plan/not-enough-tests/Makefile.in-327-	      case " $(XFAIL_TESTS) " in \
nagios4-4.4.6/tap/tests/plan/not-enough-tests/Makefile.in-328-	      *" $$tst "*) \
nagios4-4.4.6/tap/tests/plan/not-enough-tests/Makefile.in:329:		xpass=`expr $$xpass + 1`; \
nagios4-4.4.6/tap/tests/plan/not-enough-tests/Makefile.in:330:		failed=`expr $$failed + 1`; \
nagios4-4.4.6/tap/tests/plan/not-enough-tests/Makefile.in-331-		echo "XPASS: $$tst"; \
##############################################
nagios4-4.4.6/tap/tests/plan/not-enough-tests/Makefile.in-337-	    elif test $$? -ne 77; then \
nagios4-4.4.6/tap/tests/plan/not-enough-tests/Makefile.in:338:	      all=`expr $$all + 1`; \
nagios4-4.4.6/tap/tests/plan/not-enough-tests/Makefile.in-339-	      case " $(XFAIL_TESTS) " in \
nagios4-4.4.6/tap/tests/plan/not-enough-tests/Makefile.in-340-	      *" $$tst "*) \
nagios4-4.4.6/tap/tests/plan/not-enough-tests/Makefile.in:341:		xfail=`expr $$xfail + 1`; \
nagios4-4.4.6/tap/tests/plan/not-enough-tests/Makefile.in-342-		echo "XFAIL: $$tst"; \
##############################################
nagios4-4.4.6/tap/tests/plan/not-enough-tests/Makefile.in-344-	      *) \
nagios4-4.4.6/tap/tests/plan/not-enough-tests/Makefile.in:345:		failed=`expr $$failed + 1`; \
nagios4-4.4.6/tap/tests/plan/not-enough-tests/Makefile.in-346-		echo "FAIL: $$tst"; \
##############################################
nagios4-4.4.6/tap/tests/plan/not-enough-tests/Makefile.in-349-	    else \
nagios4-4.4.6/tap/tests/plan/not-enough-tests/Makefile.in:350:	      skip=`expr $$skip + 1`; \
nagios4-4.4.6/tap/tests/plan/not-enough-tests/Makefile.in-351-	      echo "SKIP: $$tst"; \
##############################################
nagios4-4.4.6/tap/tests/plan/not-enough-tests/Makefile.in-370-	    skipped="($$skip tests were not run)"; \
nagios4-4.4.6/tap/tests/plan/not-enough-tests/Makefile.in:371:	    test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \
nagios4-4.4.6/tap/tests/plan/not-enough-tests/Makefile.in-372-	      dashes="$$skipped"; \
##############################################
nagios4-4.4.6/tap/tests/plan/not-enough-tests/Makefile.in-376-	    report="Please report to $(PACKAGE_BUGREPORT)"; \
nagios4-4.4.6/tap/tests/plan/not-enough-tests/Makefile.in:377:	    test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \
nagios4-4.4.6/tap/tests/plan/not-enough-tests/Makefile.in-378-	      dashes="$$report"; \
nagios4-4.4.6/tap/tests/plan/not-enough-tests/Makefile.in-379-	  fi; \
nagios4-4.4.6/tap/tests/plan/not-enough-tests/Makefile.in:380:	  dashes=`echo "$$dashes" | sed s/./=/g`; \
nagios4-4.4.6/tap/tests/plan/not-enough-tests/Makefile.in-381-	  echo "$$dashes"; \
##############################################
nagios4-4.4.6/tap/tests/plan/not-enough-tests/Makefile.in-389-distdir: $(DISTFILES)
nagios4-4.4.6/tap/tests/plan/not-enough-tests/Makefile.in:390:	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
nagios4-4.4.6/tap/tests/plan/not-enough-tests/Makefile.in:391:	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
nagios4-4.4.6/tap/tests/plan/not-enough-tests/Makefile.in-392-	list='$(DISTFILES)'; for file in $$list; do \
nagios4-4.4.6/tap/tests/plan/not-enough-tests/Makefile.in-393-	  case $$file in \
nagios4-4.4.6/tap/tests/plan/not-enough-tests/Makefile.in:394:	    $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
nagios4-4.4.6/tap/tests/plan/not-enough-tests/Makefile.in:395:	    $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
nagios4-4.4.6/tap/tests/plan/not-enough-tests/Makefile.in-396-	  esac; \
nagios4-4.4.6/tap/tests/plan/not-enough-tests/Makefile.in-397-	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
nagios4-4.4.6/tap/tests/plan/not-enough-tests/Makefile.in:398:	  dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
nagios4-4.4.6/tap/tests/plan/not-enough-tests/Makefile.in-399-	  if test "$$dir" != "$$file" && test "$$dir" != "."; then \
##############################################
nagios4-4.4.6/tap/tests/plan/not-enough-tests/test.t-2-
nagios4-4.4.6/tap/tests/plan/not-enough-tests/test.t:3:cd `dirname $0`
nagios4-4.4.6/tap/tests/plan/not-enough-tests/test.t-4-
##############################################
nagios4-4.4.6/tap/tests/plan/sane/Makefile.in-206-	@list='$(check_PROGRAMS)'; for p in $$list; do \
nagios4-4.4.6/tap/tests/plan/sane/Makefile.in:207:	  f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
nagios4-4.4.6/tap/tests/plan/sane/Makefile.in-208-	  echo " rm -f $$p $$f"; \
##############################################
nagios4-4.4.6/tap/tests/plan/sane/Makefile.in-230-.c.obj:
nagios4-4.4.6/tap/tests/plan/sane/Makefile.in:231:@am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
nagios4-4.4.6/tap/tests/plan/sane/Makefile.in-232-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
##############################################
nagios4-4.4.6/tap/tests/plan/sane/Makefile.in-234-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
nagios4-4.4.6/tap/tests/plan/sane/Makefile.in:235:@am__fastdepCC_FALSE@	$(COMPILE) -c `$(CYGPATH_W) '$<'`
nagios4-4.4.6/tap/tests/plan/sane/Makefile.in-236-
##############################################
nagios4-4.4.6/tap/tests/plan/sane/Makefile.in-244-test-test.o: test.c
nagios4-4.4.6/tap/tests/plan/sane/Makefile.in:245:@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_CFLAGS) $(CFLAGS) -MT test-test.o -MD -MP -MF "$(DEPDIR)/test-test.Tpo" -c -o test-test.o `test -f 'test.c' || echo '$(srcdir)/'`test.c; \
nagios4-4.4.6/tap/tests/plan/sane/Makefile.in-246-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test-test.Tpo" "$(DEPDIR)/test-test.Po"; else rm -f "$(DEPDIR)/test-test.Tpo"; exit 1; fi
##############################################
nagios4-4.4.6/tap/tests/plan/sane/Makefile.in-248-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
nagios4-4.4.6/tap/tests/plan/sane/Makefile.in:249:@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_CFLAGS) $(CFLAGS) -c -o test-test.o `test -f 'test.c' || echo '$(srcdir)/'`test.c
nagios4-4.4.6/tap/tests/plan/sane/Makefile.in-250-
nagios4-4.4.6/tap/tests/plan/sane/Makefile.in-251-test-test.obj: test.c
nagios4-4.4.6/tap/tests/plan/sane/Makefile.in:252:@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_CFLAGS) $(CFLAGS) -MT test-test.obj -MD -MP -MF "$(DEPDIR)/test-test.Tpo" -c -o test-test.obj `if test -f 'test.c'; then $(CYGPATH_W) 'test.c'; else $(CYGPATH_W) '$(srcdir)/test.c'; fi`; \
nagios4-4.4.6/tap/tests/plan/sane/Makefile.in-253-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test-test.Tpo" "$(DEPDIR)/test-test.Po"; else rm -f "$(DEPDIR)/test-test.Tpo"; exit 1; fi
##############################################
nagios4-4.4.6/tap/tests/plan/sane/Makefile.in-255-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
nagios4-4.4.6/tap/tests/plan/sane/Makefile.in:256:@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_CFLAGS) $(CFLAGS) -c -o test-test.obj `if test -f 'test.c'; then $(CYGPATH_W) 'test.c'; else $(CYGPATH_W) '$(srcdir)/test.c'; fi`
nagios4-4.4.6/tap/tests/plan/sane/Makefile.in-257-
##############################################
nagios4-4.4.6/tap/tests/plan/sane/Makefile.in-308-GTAGS:
nagios4-4.4.6/tap/tests/plan/sane/Makefile.in:309:	here=`$(am__cd) $(top_builddir) && pwd` \
nagios4-4.4.6/tap/tests/plan/sane/Makefile.in-310-	  && cd $(top_srcdir) \
##############################################
nagios4-4.4.6/tap/tests/plan/sane/Makefile.in-325-	    if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \
nagios4-4.4.6/tap/tests/plan/sane/Makefile.in:326:	      all=`expr $$all + 1`; \
nagios4-4.4.6/tap/tests/plan/sane/Makefile.in-327-	      case " $(XFAIL_TESTS) " in \
nagios4-4.4.6/tap/tests/plan/sane/Makefile.in-328-	      *" $$tst "*) \
nagios4-4.4.6/tap/tests/plan/sane/Makefile.in:329:		xpass=`expr $$xpass + 1`; \
nagios4-4.4.6/tap/tests/plan/sane/Makefile.in:330:		failed=`expr $$failed + 1`; \
nagios4-4.4.6/tap/tests/plan/sane/Makefile.in-331-		echo "XPASS: $$tst"; \
##############################################
nagios4-4.4.6/tap/tests/plan/sane/Makefile.in-337-	    elif test $$? -ne 77; then \
nagios4-4.4.6/tap/tests/plan/sane/Makefile.in:338:	      all=`expr $$all + 1`; \
nagios4-4.4.6/tap/tests/plan/sane/Makefile.in-339-	      case " $(XFAIL_TESTS) " in \
nagios4-4.4.6/tap/tests/plan/sane/Makefile.in-340-	      *" $$tst "*) \
nagios4-4.4.6/tap/tests/plan/sane/Makefile.in:341:		xfail=`expr $$xfail + 1`; \
nagios4-4.4.6/tap/tests/plan/sane/Makefile.in-342-		echo "XFAIL: $$tst"; \
##############################################
nagios4-4.4.6/tap/tests/plan/sane/Makefile.in-344-	      *) \
nagios4-4.4.6/tap/tests/plan/sane/Makefile.in:345:		failed=`expr $$failed + 1`; \
nagios4-4.4.6/tap/tests/plan/sane/Makefile.in-346-		echo "FAIL: $$tst"; \
##############################################
nagios4-4.4.6/tap/tests/plan/sane/Makefile.in-349-	    else \
nagios4-4.4.6/tap/tests/plan/sane/Makefile.in:350:	      skip=`expr $$skip + 1`; \
nagios4-4.4.6/tap/tests/plan/sane/Makefile.in-351-	      echo "SKIP: $$tst"; \
##############################################
nagios4-4.4.6/tap/tests/plan/sane/Makefile.in-370-	    skipped="($$skip tests were not run)"; \
nagios4-4.4.6/tap/tests/plan/sane/Makefile.in:371:	    test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \
nagios4-4.4.6/tap/tests/plan/sane/Makefile.in-372-	      dashes="$$skipped"; \
##############################################
nagios4-4.4.6/tap/tests/plan/sane/Makefile.in-376-	    report="Please report to $(PACKAGE_BUGREPORT)"; \
nagios4-4.4.6/tap/tests/plan/sane/Makefile.in:377:	    test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \
nagios4-4.4.6/tap/tests/plan/sane/Makefile.in-378-	      dashes="$$report"; \
nagios4-4.4.6/tap/tests/plan/sane/Makefile.in-379-	  fi; \
nagios4-4.4.6/tap/tests/plan/sane/Makefile.in:380:	  dashes=`echo "$$dashes" | sed s/./=/g`; \
nagios4-4.4.6/tap/tests/plan/sane/Makefile.in-381-	  echo "$$dashes"; \
##############################################
nagios4-4.4.6/tap/tests/plan/sane/Makefile.in-389-distdir: $(DISTFILES)
nagios4-4.4.6/tap/tests/plan/sane/Makefile.in:390:	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
nagios4-4.4.6/tap/tests/plan/sane/Makefile.in:391:	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
nagios4-4.4.6/tap/tests/plan/sane/Makefile.in-392-	list='$(DISTFILES)'; for file in $$list; do \
nagios4-4.4.6/tap/tests/plan/sane/Makefile.in-393-	  case $$file in \
nagios4-4.4.6/tap/tests/plan/sane/Makefile.in:394:	    $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
nagios4-4.4.6/tap/tests/plan/sane/Makefile.in:395:	    $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
nagios4-4.4.6/tap/tests/plan/sane/Makefile.in-396-	  esac; \
nagios4-4.4.6/tap/tests/plan/sane/Makefile.in-397-	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
nagios4-4.4.6/tap/tests/plan/sane/Makefile.in:398:	  dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
nagios4-4.4.6/tap/tests/plan/sane/Makefile.in-399-	  if test "$$dir" != "$$file" && test "$$dir" != "."; then \
##############################################
nagios4-4.4.6/tap/tests/plan/sane/test.t-2-
nagios4-4.4.6/tap/tests/plan/sane/test.t:3:cd `dirname $0`
nagios4-4.4.6/tap/tests/plan/sane/test.t-4-
##############################################
nagios4-4.4.6/tap/tests/plan/skip_all/Makefile.in-206-	@list='$(check_PROGRAMS)'; for p in $$list; do \
nagios4-4.4.6/tap/tests/plan/skip_all/Makefile.in:207:	  f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
nagios4-4.4.6/tap/tests/plan/skip_all/Makefile.in-208-	  echo " rm -f $$p $$f"; \
##############################################
nagios4-4.4.6/tap/tests/plan/skip_all/Makefile.in-230-.c.obj:
nagios4-4.4.6/tap/tests/plan/skip_all/Makefile.in:231:@am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
nagios4-4.4.6/tap/tests/plan/skip_all/Makefile.in-232-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
##############################################
nagios4-4.4.6/tap/tests/plan/skip_all/Makefile.in-234-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
nagios4-4.4.6/tap/tests/plan/skip_all/Makefile.in:235:@am__fastdepCC_FALSE@	$(COMPILE) -c `$(CYGPATH_W) '$<'`
nagios4-4.4.6/tap/tests/plan/skip_all/Makefile.in-236-
##############################################
nagios4-4.4.6/tap/tests/plan/skip_all/Makefile.in-244-test-test.o: test.c
nagios4-4.4.6/tap/tests/plan/skip_all/Makefile.in:245:@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_CFLAGS) $(CFLAGS) -MT test-test.o -MD -MP -MF "$(DEPDIR)/test-test.Tpo" -c -o test-test.o `test -f 'test.c' || echo '$(srcdir)/'`test.c; \
nagios4-4.4.6/tap/tests/plan/skip_all/Makefile.in-246-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test-test.Tpo" "$(DEPDIR)/test-test.Po"; else rm -f "$(DEPDIR)/test-test.Tpo"; exit 1; fi
##############################################
nagios4-4.4.6/tap/tests/plan/skip_all/Makefile.in-248-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
nagios4-4.4.6/tap/tests/plan/skip_all/Makefile.in:249:@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_CFLAGS) $(CFLAGS) -c -o test-test.o `test -f 'test.c' || echo '$(srcdir)/'`test.c
nagios4-4.4.6/tap/tests/plan/skip_all/Makefile.in-250-
nagios4-4.4.6/tap/tests/plan/skip_all/Makefile.in-251-test-test.obj: test.c
nagios4-4.4.6/tap/tests/plan/skip_all/Makefile.in:252:@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_CFLAGS) $(CFLAGS) -MT test-test.obj -MD -MP -MF "$(DEPDIR)/test-test.Tpo" -c -o test-test.obj `if test -f 'test.c'; then $(CYGPATH_W) 'test.c'; else $(CYGPATH_W) '$(srcdir)/test.c'; fi`; \
nagios4-4.4.6/tap/tests/plan/skip_all/Makefile.in-253-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test-test.Tpo" "$(DEPDIR)/test-test.Po"; else rm -f "$(DEPDIR)/test-test.Tpo"; exit 1; fi
##############################################
nagios4-4.4.6/tap/tests/plan/skip_all/Makefile.in-255-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
nagios4-4.4.6/tap/tests/plan/skip_all/Makefile.in:256:@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_CFLAGS) $(CFLAGS) -c -o test-test.obj `if test -f 'test.c'; then $(CYGPATH_W) 'test.c'; else $(CYGPATH_W) '$(srcdir)/test.c'; fi`
nagios4-4.4.6/tap/tests/plan/skip_all/Makefile.in-257-
##############################################
nagios4-4.4.6/tap/tests/plan/skip_all/Makefile.in-308-GTAGS:
nagios4-4.4.6/tap/tests/plan/skip_all/Makefile.in:309:	here=`$(am__cd) $(top_builddir) && pwd` \
nagios4-4.4.6/tap/tests/plan/skip_all/Makefile.in-310-	  && cd $(top_srcdir) \
##############################################
nagios4-4.4.6/tap/tests/plan/skip_all/Makefile.in-325-	    if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \
nagios4-4.4.6/tap/tests/plan/skip_all/Makefile.in:326:	      all=`expr $$all + 1`; \
nagios4-4.4.6/tap/tests/plan/skip_all/Makefile.in-327-	      case " $(XFAIL_TESTS) " in \
nagios4-4.4.6/tap/tests/plan/skip_all/Makefile.in-328-	      *" $$tst "*) \
nagios4-4.4.6/tap/tests/plan/skip_all/Makefile.in:329:		xpass=`expr $$xpass + 1`; \
nagios4-4.4.6/tap/tests/plan/skip_all/Makefile.in:330:		failed=`expr $$failed + 1`; \
nagios4-4.4.6/tap/tests/plan/skip_all/Makefile.in-331-		echo "XPASS: $$tst"; \
##############################################
nagios4-4.4.6/tap/tests/plan/skip_all/Makefile.in-337-	    elif test $$? -ne 77; then \
nagios4-4.4.6/tap/tests/plan/skip_all/Makefile.in:338:	      all=`expr $$all + 1`; \
nagios4-4.4.6/tap/tests/plan/skip_all/Makefile.in-339-	      case " $(XFAIL_TESTS) " in \
nagios4-4.4.6/tap/tests/plan/skip_all/Makefile.in-340-	      *" $$tst "*) \
nagios4-4.4.6/tap/tests/plan/skip_all/Makefile.in:341:		xfail=`expr $$xfail + 1`; \
nagios4-4.4.6/tap/tests/plan/skip_all/Makefile.in-342-		echo "XFAIL: $$tst"; \
##############################################
nagios4-4.4.6/tap/tests/plan/skip_all/Makefile.in-344-	      *) \
nagios4-4.4.6/tap/tests/plan/skip_all/Makefile.in:345:		failed=`expr $$failed + 1`; \
nagios4-4.4.6/tap/tests/plan/skip_all/Makefile.in-346-		echo "FAIL: $$tst"; \
##############################################
nagios4-4.4.6/tap/tests/plan/skip_all/Makefile.in-349-	    else \
nagios4-4.4.6/tap/tests/plan/skip_all/Makefile.in:350:	      skip=`expr $$skip + 1`; \
nagios4-4.4.6/tap/tests/plan/skip_all/Makefile.in-351-	      echo "SKIP: $$tst"; \
##############################################
nagios4-4.4.6/tap/tests/plan/skip_all/Makefile.in-370-	    skipped="($$skip tests were not run)"; \
nagios4-4.4.6/tap/tests/plan/skip_all/Makefile.in:371:	    test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \
nagios4-4.4.6/tap/tests/plan/skip_all/Makefile.in-372-	      dashes="$$skipped"; \
##############################################
nagios4-4.4.6/tap/tests/plan/skip_all/Makefile.in-376-	    report="Please report to $(PACKAGE_BUGREPORT)"; \
nagios4-4.4.6/tap/tests/plan/skip_all/Makefile.in:377:	    test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \
nagios4-4.4.6/tap/tests/plan/skip_all/Makefile.in-378-	      dashes="$$report"; \
nagios4-4.4.6/tap/tests/plan/skip_all/Makefile.in-379-	  fi; \
nagios4-4.4.6/tap/tests/plan/skip_all/Makefile.in:380:	  dashes=`echo "$$dashes" | sed s/./=/g`; \
nagios4-4.4.6/tap/tests/plan/skip_all/Makefile.in-381-	  echo "$$dashes"; \
##############################################
nagios4-4.4.6/tap/tests/plan/skip_all/Makefile.in-389-distdir: $(DISTFILES)
nagios4-4.4.6/tap/tests/plan/skip_all/Makefile.in:390:	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
nagios4-4.4.6/tap/tests/plan/skip_all/Makefile.in:391:	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
nagios4-4.4.6/tap/tests/plan/skip_all/Makefile.in-392-	list='$(DISTFILES)'; for file in $$list; do \
nagios4-4.4.6/tap/tests/plan/skip_all/Makefile.in-393-	  case $$file in \
nagios4-4.4.6/tap/tests/plan/skip_all/Makefile.in:394:	    $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
nagios4-4.4.6/tap/tests/plan/skip_all/Makefile.in:395:	    $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
nagios4-4.4.6/tap/tests/plan/skip_all/Makefile.in-396-	  esac; \
nagios4-4.4.6/tap/tests/plan/skip_all/Makefile.in-397-	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
nagios4-4.4.6/tap/tests/plan/skip_all/Makefile.in:398:	  dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
nagios4-4.4.6/tap/tests/plan/skip_all/Makefile.in-399-	  if test "$$dir" != "$$file" && test "$$dir" != "."; then \
##############################################
nagios4-4.4.6/tap/tests/plan/skip_all/test.t-2-
nagios4-4.4.6/tap/tests/plan/skip_all/test.t:3:cd `dirname $0`
nagios4-4.4.6/tap/tests/plan/skip_all/test.t-4-
##############################################
nagios4-4.4.6/tap/tests/plan/too-many-plans/Makefile.in-206-	@list='$(check_PROGRAMS)'; for p in $$list; do \
nagios4-4.4.6/tap/tests/plan/too-many-plans/Makefile.in:207:	  f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
nagios4-4.4.6/tap/tests/plan/too-many-plans/Makefile.in-208-	  echo " rm -f $$p $$f"; \
##############################################
nagios4-4.4.6/tap/tests/plan/too-many-plans/Makefile.in-230-.c.obj:
nagios4-4.4.6/tap/tests/plan/too-many-plans/Makefile.in:231:@am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
nagios4-4.4.6/tap/tests/plan/too-many-plans/Makefile.in-232-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
##############################################
nagios4-4.4.6/tap/tests/plan/too-many-plans/Makefile.in-234-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
nagios4-4.4.6/tap/tests/plan/too-many-plans/Makefile.in:235:@am__fastdepCC_FALSE@	$(COMPILE) -c `$(CYGPATH_W) '$<'`
nagios4-4.4.6/tap/tests/plan/too-many-plans/Makefile.in-236-
##############################################
nagios4-4.4.6/tap/tests/plan/too-many-plans/Makefile.in-244-test-test.o: test.c
nagios4-4.4.6/tap/tests/plan/too-many-plans/Makefile.in:245:@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_CFLAGS) $(CFLAGS) -MT test-test.o -MD -MP -MF "$(DEPDIR)/test-test.Tpo" -c -o test-test.o `test -f 'test.c' || echo '$(srcdir)/'`test.c; \
nagios4-4.4.6/tap/tests/plan/too-many-plans/Makefile.in-246-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test-test.Tpo" "$(DEPDIR)/test-test.Po"; else rm -f "$(DEPDIR)/test-test.Tpo"; exit 1; fi
##############################################
nagios4-4.4.6/tap/tests/plan/too-many-plans/Makefile.in-248-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
nagios4-4.4.6/tap/tests/plan/too-many-plans/Makefile.in:249:@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_CFLAGS) $(CFLAGS) -c -o test-test.o `test -f 'test.c' || echo '$(srcdir)/'`test.c
nagios4-4.4.6/tap/tests/plan/too-many-plans/Makefile.in-250-
nagios4-4.4.6/tap/tests/plan/too-many-plans/Makefile.in-251-test-test.obj: test.c
nagios4-4.4.6/tap/tests/plan/too-many-plans/Makefile.in:252:@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_CFLAGS) $(CFLAGS) -MT test-test.obj -MD -MP -MF "$(DEPDIR)/test-test.Tpo" -c -o test-test.obj `if test -f 'test.c'; then $(CYGPATH_W) 'test.c'; else $(CYGPATH_W) '$(srcdir)/test.c'; fi`; \
nagios4-4.4.6/tap/tests/plan/too-many-plans/Makefile.in-253-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test-test.Tpo" "$(DEPDIR)/test-test.Po"; else rm -f "$(DEPDIR)/test-test.Tpo"; exit 1; fi
##############################################
nagios4-4.4.6/tap/tests/plan/too-many-plans/Makefile.in-255-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
nagios4-4.4.6/tap/tests/plan/too-many-plans/Makefile.in:256:@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_CFLAGS) $(CFLAGS) -c -o test-test.obj `if test -f 'test.c'; then $(CYGPATH_W) 'test.c'; else $(CYGPATH_W) '$(srcdir)/test.c'; fi`
nagios4-4.4.6/tap/tests/plan/too-many-plans/Makefile.in-257-
##############################################
nagios4-4.4.6/tap/tests/plan/too-many-plans/Makefile.in-308-GTAGS:
nagios4-4.4.6/tap/tests/plan/too-many-plans/Makefile.in:309:	here=`$(am__cd) $(top_builddir) && pwd` \
nagios4-4.4.6/tap/tests/plan/too-many-plans/Makefile.in-310-	  && cd $(top_srcdir) \
##############################################
nagios4-4.4.6/tap/tests/plan/too-many-plans/Makefile.in-325-	    if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \
nagios4-4.4.6/tap/tests/plan/too-many-plans/Makefile.in:326:	      all=`expr $$all + 1`; \
nagios4-4.4.6/tap/tests/plan/too-many-plans/Makefile.in-327-	      case " $(XFAIL_TESTS) " in \
nagios4-4.4.6/tap/tests/plan/too-many-plans/Makefile.in-328-	      *" $$tst "*) \
nagios4-4.4.6/tap/tests/plan/too-many-plans/Makefile.in:329:		xpass=`expr $$xpass + 1`; \
nagios4-4.4.6/tap/tests/plan/too-many-plans/Makefile.in:330:		failed=`expr $$failed + 1`; \
nagios4-4.4.6/tap/tests/plan/too-many-plans/Makefile.in-331-		echo "XPASS: $$tst"; \
##############################################
nagios4-4.4.6/tap/tests/plan/too-many-plans/Makefile.in-337-	    elif test $$? -ne 77; then \
nagios4-4.4.6/tap/tests/plan/too-many-plans/Makefile.in:338:	      all=`expr $$all + 1`; \
nagios4-4.4.6/tap/tests/plan/too-many-plans/Makefile.in-339-	      case " $(XFAIL_TESTS) " in \
nagios4-4.4.6/tap/tests/plan/too-many-plans/Makefile.in-340-	      *" $$tst "*) \
nagios4-4.4.6/tap/tests/plan/too-many-plans/Makefile.in:341:		xfail=`expr $$xfail + 1`; \
nagios4-4.4.6/tap/tests/plan/too-many-plans/Makefile.in-342-		echo "XFAIL: $$tst"; \
##############################################
nagios4-4.4.6/tap/tests/plan/too-many-plans/Makefile.in-344-	      *) \
nagios4-4.4.6/tap/tests/plan/too-many-plans/Makefile.in:345:		failed=`expr $$failed + 1`; \
nagios4-4.4.6/tap/tests/plan/too-many-plans/Makefile.in-346-		echo "FAIL: $$tst"; \
##############################################
nagios4-4.4.6/tap/tests/plan/too-many-plans/Makefile.in-349-	    else \
nagios4-4.4.6/tap/tests/plan/too-many-plans/Makefile.in:350:	      skip=`expr $$skip + 1`; \
nagios4-4.4.6/tap/tests/plan/too-many-plans/Makefile.in-351-	      echo "SKIP: $$tst"; \
##############################################
nagios4-4.4.6/tap/tests/plan/too-many-plans/Makefile.in-370-	    skipped="($$skip tests were not run)"; \
nagios4-4.4.6/tap/tests/plan/too-many-plans/Makefile.in:371:	    test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \
nagios4-4.4.6/tap/tests/plan/too-many-plans/Makefile.in-372-	      dashes="$$skipped"; \
##############################################
nagios4-4.4.6/tap/tests/plan/too-many-plans/Makefile.in-376-	    report="Please report to $(PACKAGE_BUGREPORT)"; \
nagios4-4.4.6/tap/tests/plan/too-many-plans/Makefile.in:377:	    test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \
nagios4-4.4.6/tap/tests/plan/too-many-plans/Makefile.in-378-	      dashes="$$report"; \
nagios4-4.4.6/tap/tests/plan/too-many-plans/Makefile.in-379-	  fi; \
nagios4-4.4.6/tap/tests/plan/too-many-plans/Makefile.in:380:	  dashes=`echo "$$dashes" | sed s/./=/g`; \
nagios4-4.4.6/tap/tests/plan/too-many-plans/Makefile.in-381-	  echo "$$dashes"; \
##############################################
nagios4-4.4.6/tap/tests/plan/too-many-plans/Makefile.in-389-distdir: $(DISTFILES)
nagios4-4.4.6/tap/tests/plan/too-many-plans/Makefile.in:390:	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
nagios4-4.4.6/tap/tests/plan/too-many-plans/Makefile.in:391:	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
nagios4-4.4.6/tap/tests/plan/too-many-plans/Makefile.in-392-	list='$(DISTFILES)'; for file in $$list; do \
nagios4-4.4.6/tap/tests/plan/too-many-plans/Makefile.in-393-	  case $$file in \
nagios4-4.4.6/tap/tests/plan/too-many-plans/Makefile.in:394:	    $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
nagios4-4.4.6/tap/tests/plan/too-many-plans/Makefile.in:395:	    $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
nagios4-4.4.6/tap/tests/plan/too-many-plans/Makefile.in-396-	  esac; \
nagios4-4.4.6/tap/tests/plan/too-many-plans/Makefile.in-397-	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
nagios4-4.4.6/tap/tests/plan/too-many-plans/Makefile.in:398:	  dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
nagios4-4.4.6/tap/tests/plan/too-many-plans/Makefile.in-399-	  if test "$$dir" != "$$file" && test "$$dir" != "."; then \
##############################################
nagios4-4.4.6/tap/tests/plan/too-many-plans/test.t-2-
nagios4-4.4.6/tap/tests/plan/too-many-plans/test.t:3:cd `dirname $0`
nagios4-4.4.6/tap/tests/plan/too-many-plans/test.t-4-
##############################################
nagios4-4.4.6/tap/tests/plan/too-many-tests/Makefile.in-206-	@list='$(check_PROGRAMS)'; for p in $$list; do \
nagios4-4.4.6/tap/tests/plan/too-many-tests/Makefile.in:207:	  f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
nagios4-4.4.6/tap/tests/plan/too-many-tests/Makefile.in-208-	  echo " rm -f $$p $$f"; \
##############################################
nagios4-4.4.6/tap/tests/plan/too-many-tests/Makefile.in-230-.c.obj:
nagios4-4.4.6/tap/tests/plan/too-many-tests/Makefile.in:231:@am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
nagios4-4.4.6/tap/tests/plan/too-many-tests/Makefile.in-232-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
##############################################
nagios4-4.4.6/tap/tests/plan/too-many-tests/Makefile.in-234-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
nagios4-4.4.6/tap/tests/plan/too-many-tests/Makefile.in:235:@am__fastdepCC_FALSE@	$(COMPILE) -c `$(CYGPATH_W) '$<'`
nagios4-4.4.6/tap/tests/plan/too-many-tests/Makefile.in-236-
##############################################
nagios4-4.4.6/tap/tests/plan/too-many-tests/Makefile.in-244-test-test.o: test.c
nagios4-4.4.6/tap/tests/plan/too-many-tests/Makefile.in:245:@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_CFLAGS) $(CFLAGS) -MT test-test.o -MD -MP -MF "$(DEPDIR)/test-test.Tpo" -c -o test-test.o `test -f 'test.c' || echo '$(srcdir)/'`test.c; \
nagios4-4.4.6/tap/tests/plan/too-many-tests/Makefile.in-246-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test-test.Tpo" "$(DEPDIR)/test-test.Po"; else rm -f "$(DEPDIR)/test-test.Tpo"; exit 1; fi
##############################################
nagios4-4.4.6/tap/tests/plan/too-many-tests/Makefile.in-248-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
nagios4-4.4.6/tap/tests/plan/too-many-tests/Makefile.in:249:@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_CFLAGS) $(CFLAGS) -c -o test-test.o `test -f 'test.c' || echo '$(srcdir)/'`test.c
nagios4-4.4.6/tap/tests/plan/too-many-tests/Makefile.in-250-
nagios4-4.4.6/tap/tests/plan/too-many-tests/Makefile.in-251-test-test.obj: test.c
nagios4-4.4.6/tap/tests/plan/too-many-tests/Makefile.in:252:@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_CFLAGS) $(CFLAGS) -MT test-test.obj -MD -MP -MF "$(DEPDIR)/test-test.Tpo" -c -o test-test.obj `if test -f 'test.c'; then $(CYGPATH_W) 'test.c'; else $(CYGPATH_W) '$(srcdir)/test.c'; fi`; \
nagios4-4.4.6/tap/tests/plan/too-many-tests/Makefile.in-253-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test-test.Tpo" "$(DEPDIR)/test-test.Po"; else rm -f "$(DEPDIR)/test-test.Tpo"; exit 1; fi
##############################################
nagios4-4.4.6/tap/tests/plan/too-many-tests/Makefile.in-255-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
nagios4-4.4.6/tap/tests/plan/too-many-tests/Makefile.in:256:@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_CFLAGS) $(CFLAGS) -c -o test-test.obj `if test -f 'test.c'; then $(CYGPATH_W) 'test.c'; else $(CYGPATH_W) '$(srcdir)/test.c'; fi`
nagios4-4.4.6/tap/tests/plan/too-many-tests/Makefile.in-257-
##############################################
nagios4-4.4.6/tap/tests/plan/too-many-tests/Makefile.in-308-GTAGS:
nagios4-4.4.6/tap/tests/plan/too-many-tests/Makefile.in:309:	here=`$(am__cd) $(top_builddir) && pwd` \
nagios4-4.4.6/tap/tests/plan/too-many-tests/Makefile.in-310-	  && cd $(top_srcdir) \
##############################################
nagios4-4.4.6/tap/tests/plan/too-many-tests/Makefile.in-325-	    if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \
nagios4-4.4.6/tap/tests/plan/too-many-tests/Makefile.in:326:	      all=`expr $$all + 1`; \
nagios4-4.4.6/tap/tests/plan/too-many-tests/Makefile.in-327-	      case " $(XFAIL_TESTS) " in \
nagios4-4.4.6/tap/tests/plan/too-many-tests/Makefile.in-328-	      *" $$tst "*) \
nagios4-4.4.6/tap/tests/plan/too-many-tests/Makefile.in:329:		xpass=`expr $$xpass + 1`; \
nagios4-4.4.6/tap/tests/plan/too-many-tests/Makefile.in:330:		failed=`expr $$failed + 1`; \
nagios4-4.4.6/tap/tests/plan/too-many-tests/Makefile.in-331-		echo "XPASS: $$tst"; \
##############################################
nagios4-4.4.6/tap/tests/plan/too-many-tests/Makefile.in-337-	    elif test $$? -ne 77; then \
nagios4-4.4.6/tap/tests/plan/too-many-tests/Makefile.in:338:	      all=`expr $$all + 1`; \
nagios4-4.4.6/tap/tests/plan/too-many-tests/Makefile.in-339-	      case " $(XFAIL_TESTS) " in \
nagios4-4.4.6/tap/tests/plan/too-many-tests/Makefile.in-340-	      *" $$tst "*) \
nagios4-4.4.6/tap/tests/plan/too-many-tests/Makefile.in:341:		xfail=`expr $$xfail + 1`; \
nagios4-4.4.6/tap/tests/plan/too-many-tests/Makefile.in-342-		echo "XFAIL: $$tst"; \
##############################################
nagios4-4.4.6/tap/tests/plan/too-many-tests/Makefile.in-344-	      *) \
nagios4-4.4.6/tap/tests/plan/too-many-tests/Makefile.in:345:		failed=`expr $$failed + 1`; \
nagios4-4.4.6/tap/tests/plan/too-many-tests/Makefile.in-346-		echo "FAIL: $$tst"; \
##############################################
nagios4-4.4.6/tap/tests/plan/too-many-tests/Makefile.in-349-	    else \
nagios4-4.4.6/tap/tests/plan/too-many-tests/Makefile.in:350:	      skip=`expr $$skip + 1`; \
nagios4-4.4.6/tap/tests/plan/too-many-tests/Makefile.in-351-	      echo "SKIP: $$tst"; \
##############################################
nagios4-4.4.6/tap/tests/plan/too-many-tests/Makefile.in-370-	    skipped="($$skip tests were not run)"; \
nagios4-4.4.6/tap/tests/plan/too-many-tests/Makefile.in:371:	    test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \
nagios4-4.4.6/tap/tests/plan/too-many-tests/Makefile.in-372-	      dashes="$$skipped"; \
##############################################
nagios4-4.4.6/tap/tests/plan/too-many-tests/Makefile.in-376-	    report="Please report to $(PACKAGE_BUGREPORT)"; \
nagios4-4.4.6/tap/tests/plan/too-many-tests/Makefile.in:377:	    test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \
nagios4-4.4.6/tap/tests/plan/too-many-tests/Makefile.in-378-	      dashes="$$report"; \
nagios4-4.4.6/tap/tests/plan/too-many-tests/Makefile.in-379-	  fi; \
nagios4-4.4.6/tap/tests/plan/too-many-tests/Makefile.in:380:	  dashes=`echo "$$dashes" | sed s/./=/g`; \
nagios4-4.4.6/tap/tests/plan/too-many-tests/Makefile.in-381-	  echo "$$dashes"; \
##############################################
nagios4-4.4.6/tap/tests/plan/too-many-tests/Makefile.in-389-distdir: $(DISTFILES)
nagios4-4.4.6/tap/tests/plan/too-many-tests/Makefile.in:390:	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
nagios4-4.4.6/tap/tests/plan/too-many-tests/Makefile.in:391:	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
nagios4-4.4.6/tap/tests/plan/too-many-tests/Makefile.in-392-	list='$(DISTFILES)'; for file in $$list; do \
nagios4-4.4.6/tap/tests/plan/too-many-tests/Makefile.in-393-	  case $$file in \
nagios4-4.4.6/tap/tests/plan/too-many-tests/Makefile.in:394:	    $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
nagios4-4.4.6/tap/tests/plan/too-many-tests/Makefile.in:395:	    $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
nagios4-4.4.6/tap/tests/plan/too-many-tests/Makefile.in-396-	  esac; \
nagios4-4.4.6/tap/tests/plan/too-many-tests/Makefile.in-397-	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
nagios4-4.4.6/tap/tests/plan/too-many-tests/Makefile.in:398:	  dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
nagios4-4.4.6/tap/tests/plan/too-many-tests/Makefile.in-399-	  if test "$$dir" != "$$file" && test "$$dir" != "."; then \
##############################################
nagios4-4.4.6/tap/tests/plan/too-many-tests/test.t-2-
nagios4-4.4.6/tap/tests/plan/too-many-tests/test.t:3:cd `dirname $0`
nagios4-4.4.6/tap/tests/plan/too-many-tests/test.t-4-
##############################################
nagios4-4.4.6/tap/tests/skip/Makefile.in-206-	@list='$(check_PROGRAMS)'; for p in $$list; do \
nagios4-4.4.6/tap/tests/skip/Makefile.in:207:	  f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
nagios4-4.4.6/tap/tests/skip/Makefile.in-208-	  echo " rm -f $$p $$f"; \
##############################################
nagios4-4.4.6/tap/tests/skip/Makefile.in-230-.c.obj:
nagios4-4.4.6/tap/tests/skip/Makefile.in:231:@am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
nagios4-4.4.6/tap/tests/skip/Makefile.in-232-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
##############################################
nagios4-4.4.6/tap/tests/skip/Makefile.in-234-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
nagios4-4.4.6/tap/tests/skip/Makefile.in:235:@am__fastdepCC_FALSE@	$(COMPILE) -c `$(CYGPATH_W) '$<'`
nagios4-4.4.6/tap/tests/skip/Makefile.in-236-
##############################################
nagios4-4.4.6/tap/tests/skip/Makefile.in-244-test-test.o: test.c
nagios4-4.4.6/tap/tests/skip/Makefile.in:245:@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_CFLAGS) $(CFLAGS) -MT test-test.o -MD -MP -MF "$(DEPDIR)/test-test.Tpo" -c -o test-test.o `test -f 'test.c' || echo '$(srcdir)/'`test.c; \
nagios4-4.4.6/tap/tests/skip/Makefile.in-246-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test-test.Tpo" "$(DEPDIR)/test-test.Po"; else rm -f "$(DEPDIR)/test-test.Tpo"; exit 1; fi
##############################################
nagios4-4.4.6/tap/tests/skip/Makefile.in-248-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
nagios4-4.4.6/tap/tests/skip/Makefile.in:249:@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_CFLAGS) $(CFLAGS) -c -o test-test.o `test -f 'test.c' || echo '$(srcdir)/'`test.c
nagios4-4.4.6/tap/tests/skip/Makefile.in-250-
nagios4-4.4.6/tap/tests/skip/Makefile.in-251-test-test.obj: test.c
nagios4-4.4.6/tap/tests/skip/Makefile.in:252:@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_CFLAGS) $(CFLAGS) -MT test-test.obj -MD -MP -MF "$(DEPDIR)/test-test.Tpo" -c -o test-test.obj `if test -f 'test.c'; then $(CYGPATH_W) 'test.c'; else $(CYGPATH_W) '$(srcdir)/test.c'; fi`; \
nagios4-4.4.6/tap/tests/skip/Makefile.in-253-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test-test.Tpo" "$(DEPDIR)/test-test.Po"; else rm -f "$(DEPDIR)/test-test.Tpo"; exit 1; fi
##############################################
nagios4-4.4.6/tap/tests/skip/Makefile.in-255-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
nagios4-4.4.6/tap/tests/skip/Makefile.in:256:@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_CFLAGS) $(CFLAGS) -c -o test-test.obj `if test -f 'test.c'; then $(CYGPATH_W) 'test.c'; else $(CYGPATH_W) '$(srcdir)/test.c'; fi`
nagios4-4.4.6/tap/tests/skip/Makefile.in-257-
##############################################
nagios4-4.4.6/tap/tests/skip/Makefile.in-308-GTAGS:
nagios4-4.4.6/tap/tests/skip/Makefile.in:309:	here=`$(am__cd) $(top_builddir) && pwd` \
nagios4-4.4.6/tap/tests/skip/Makefile.in-310-	  && cd $(top_srcdir) \
##############################################
nagios4-4.4.6/tap/tests/skip/Makefile.in-325-	    if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \
nagios4-4.4.6/tap/tests/skip/Makefile.in:326:	      all=`expr $$all + 1`; \
nagios4-4.4.6/tap/tests/skip/Makefile.in-327-	      case " $(XFAIL_TESTS) " in \
nagios4-4.4.6/tap/tests/skip/Makefile.in-328-	      *" $$tst "*) \
nagios4-4.4.6/tap/tests/skip/Makefile.in:329:		xpass=`expr $$xpass + 1`; \
nagios4-4.4.6/tap/tests/skip/Makefile.in:330:		failed=`expr $$failed + 1`; \
nagios4-4.4.6/tap/tests/skip/Makefile.in-331-		echo "XPASS: $$tst"; \
##############################################
nagios4-4.4.6/tap/tests/skip/Makefile.in-337-	    elif test $$? -ne 77; then \
nagios4-4.4.6/tap/tests/skip/Makefile.in:338:	      all=`expr $$all + 1`; \
nagios4-4.4.6/tap/tests/skip/Makefile.in-339-	      case " $(XFAIL_TESTS) " in \
nagios4-4.4.6/tap/tests/skip/Makefile.in-340-	      *" $$tst "*) \
nagios4-4.4.6/tap/tests/skip/Makefile.in:341:		xfail=`expr $$xfail + 1`; \
nagios4-4.4.6/tap/tests/skip/Makefile.in-342-		echo "XFAIL: $$tst"; \
##############################################
nagios4-4.4.6/tap/tests/skip/Makefile.in-344-	      *) \
nagios4-4.4.6/tap/tests/skip/Makefile.in:345:		failed=`expr $$failed + 1`; \
nagios4-4.4.6/tap/tests/skip/Makefile.in-346-		echo "FAIL: $$tst"; \
##############################################
nagios4-4.4.6/tap/tests/skip/Makefile.in-349-	    else \
nagios4-4.4.6/tap/tests/skip/Makefile.in:350:	      skip=`expr $$skip + 1`; \
nagios4-4.4.6/tap/tests/skip/Makefile.in-351-	      echo "SKIP: $$tst"; \
##############################################
nagios4-4.4.6/tap/tests/skip/Makefile.in-370-	    skipped="($$skip tests were not run)"; \
nagios4-4.4.6/tap/tests/skip/Makefile.in:371:	    test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \
nagios4-4.4.6/tap/tests/skip/Makefile.in-372-	      dashes="$$skipped"; \
##############################################
nagios4-4.4.6/tap/tests/skip/Makefile.in-376-	    report="Please report to $(PACKAGE_BUGREPORT)"; \
nagios4-4.4.6/tap/tests/skip/Makefile.in:377:	    test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \
nagios4-4.4.6/tap/tests/skip/Makefile.in-378-	      dashes="$$report"; \
nagios4-4.4.6/tap/tests/skip/Makefile.in-379-	  fi; \
nagios4-4.4.6/tap/tests/skip/Makefile.in:380:	  dashes=`echo "$$dashes" | sed s/./=/g`; \
nagios4-4.4.6/tap/tests/skip/Makefile.in-381-	  echo "$$dashes"; \
##############################################
nagios4-4.4.6/tap/tests/skip/Makefile.in-389-distdir: $(DISTFILES)
nagios4-4.4.6/tap/tests/skip/Makefile.in:390:	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
nagios4-4.4.6/tap/tests/skip/Makefile.in:391:	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
nagios4-4.4.6/tap/tests/skip/Makefile.in-392-	list='$(DISTFILES)'; for file in $$list; do \
nagios4-4.4.6/tap/tests/skip/Makefile.in-393-	  case $$file in \
nagios4-4.4.6/tap/tests/skip/Makefile.in:394:	    $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
nagios4-4.4.6/tap/tests/skip/Makefile.in:395:	    $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
nagios4-4.4.6/tap/tests/skip/Makefile.in-396-	  esac; \
nagios4-4.4.6/tap/tests/skip/Makefile.in-397-	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
nagios4-4.4.6/tap/tests/skip/Makefile.in:398:	  dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
nagios4-4.4.6/tap/tests/skip/Makefile.in-399-	  if test "$$dir" != "$$file" && test "$$dir" != "."; then \
##############################################
nagios4-4.4.6/tap/tests/skip/test.t-2-
nagios4-4.4.6/tap/tests/skip/test.t:3:cd `dirname $0`
nagios4-4.4.6/tap/tests/skip/test.t-4-
##############################################
nagios4-4.4.6/tap/tests/todo/Makefile.in-206-	@list='$(check_PROGRAMS)'; for p in $$list; do \
nagios4-4.4.6/tap/tests/todo/Makefile.in:207:	  f=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
nagios4-4.4.6/tap/tests/todo/Makefile.in-208-	  echo " rm -f $$p $$f"; \
##############################################
nagios4-4.4.6/tap/tests/todo/Makefile.in-230-.c.obj:
nagios4-4.4.6/tap/tests/todo/Makefile.in:231:@am__fastdepCC_TRUE@	if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
nagios4-4.4.6/tap/tests/todo/Makefile.in-232-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
##############################################
nagios4-4.4.6/tap/tests/todo/Makefile.in-234-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
nagios4-4.4.6/tap/tests/todo/Makefile.in:235:@am__fastdepCC_FALSE@	$(COMPILE) -c `$(CYGPATH_W) '$<'`
nagios4-4.4.6/tap/tests/todo/Makefile.in-236-
##############################################
nagios4-4.4.6/tap/tests/todo/Makefile.in-244-test-test.o: test.c
nagios4-4.4.6/tap/tests/todo/Makefile.in:245:@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_CFLAGS) $(CFLAGS) -MT test-test.o -MD -MP -MF "$(DEPDIR)/test-test.Tpo" -c -o test-test.o `test -f 'test.c' || echo '$(srcdir)/'`test.c; \
nagios4-4.4.6/tap/tests/todo/Makefile.in-246-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test-test.Tpo" "$(DEPDIR)/test-test.Po"; else rm -f "$(DEPDIR)/test-test.Tpo"; exit 1; fi
##############################################
nagios4-4.4.6/tap/tests/todo/Makefile.in-248-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
nagios4-4.4.6/tap/tests/todo/Makefile.in:249:@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_CFLAGS) $(CFLAGS) -c -o test-test.o `test -f 'test.c' || echo '$(srcdir)/'`test.c
nagios4-4.4.6/tap/tests/todo/Makefile.in-250-
nagios4-4.4.6/tap/tests/todo/Makefile.in-251-test-test.obj: test.c
nagios4-4.4.6/tap/tests/todo/Makefile.in:252:@am__fastdepCC_TRUE@	if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_CFLAGS) $(CFLAGS) -MT test-test.obj -MD -MP -MF "$(DEPDIR)/test-test.Tpo" -c -o test-test.obj `if test -f 'test.c'; then $(CYGPATH_W) 'test.c'; else $(CYGPATH_W) '$(srcdir)/test.c'; fi`; \
nagios4-4.4.6/tap/tests/todo/Makefile.in-253-@am__fastdepCC_TRUE@	then mv -f "$(DEPDIR)/test-test.Tpo" "$(DEPDIR)/test-test.Po"; else rm -f "$(DEPDIR)/test-test.Tpo"; exit 1; fi
##############################################
nagios4-4.4.6/tap/tests/todo/Makefile.in-255-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
nagios4-4.4.6/tap/tests/todo/Makefile.in:256:@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_CFLAGS) $(CFLAGS) -c -o test-test.obj `if test -f 'test.c'; then $(CYGPATH_W) 'test.c'; else $(CYGPATH_W) '$(srcdir)/test.c'; fi`
nagios4-4.4.6/tap/tests/todo/Makefile.in-257-
##############################################
nagios4-4.4.6/tap/tests/todo/Makefile.in-308-GTAGS:
nagios4-4.4.6/tap/tests/todo/Makefile.in:309:	here=`$(am__cd) $(top_builddir) && pwd` \
nagios4-4.4.6/tap/tests/todo/Makefile.in-310-	  && cd $(top_srcdir) \
##############################################
nagios4-4.4.6/tap/tests/todo/Makefile.in-325-	    if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \
nagios4-4.4.6/tap/tests/todo/Makefile.in:326:	      all=`expr $$all + 1`; \
nagios4-4.4.6/tap/tests/todo/Makefile.in-327-	      case " $(XFAIL_TESTS) " in \
nagios4-4.4.6/tap/tests/todo/Makefile.in-328-	      *" $$tst "*) \
nagios4-4.4.6/tap/tests/todo/Makefile.in:329:		xpass=`expr $$xpass + 1`; \
nagios4-4.4.6/tap/tests/todo/Makefile.in:330:		failed=`expr $$failed + 1`; \
nagios4-4.4.6/tap/tests/todo/Makefile.in-331-		echo "XPASS: $$tst"; \
##############################################
nagios4-4.4.6/tap/tests/todo/Makefile.in-337-	    elif test $$? -ne 77; then \
nagios4-4.4.6/tap/tests/todo/Makefile.in:338:	      all=`expr $$all + 1`; \
nagios4-4.4.6/tap/tests/todo/Makefile.in-339-	      case " $(XFAIL_TESTS) " in \
nagios4-4.4.6/tap/tests/todo/Makefile.in-340-	      *" $$tst "*) \
nagios4-4.4.6/tap/tests/todo/Makefile.in:341:		xfail=`expr $$xfail + 1`; \
nagios4-4.4.6/tap/tests/todo/Makefile.in-342-		echo "XFAIL: $$tst"; \
##############################################
nagios4-4.4.6/tap/tests/todo/Makefile.in-344-	      *) \
nagios4-4.4.6/tap/tests/todo/Makefile.in:345:		failed=`expr $$failed + 1`; \
nagios4-4.4.6/tap/tests/todo/Makefile.in-346-		echo "FAIL: $$tst"; \
##############################################
nagios4-4.4.6/tap/tests/todo/Makefile.in-349-	    else \
nagios4-4.4.6/tap/tests/todo/Makefile.in:350:	      skip=`expr $$skip + 1`; \
nagios4-4.4.6/tap/tests/todo/Makefile.in-351-	      echo "SKIP: $$tst"; \
##############################################
nagios4-4.4.6/tap/tests/todo/Makefile.in-370-	    skipped="($$skip tests were not run)"; \
nagios4-4.4.6/tap/tests/todo/Makefile.in:371:	    test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \
nagios4-4.4.6/tap/tests/todo/Makefile.in-372-	      dashes="$$skipped"; \
##############################################
nagios4-4.4.6/tap/tests/todo/Makefile.in-376-	    report="Please report to $(PACKAGE_BUGREPORT)"; \
nagios4-4.4.6/tap/tests/todo/Makefile.in:377:	    test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \
nagios4-4.4.6/tap/tests/todo/Makefile.in-378-	      dashes="$$report"; \
nagios4-4.4.6/tap/tests/todo/Makefile.in-379-	  fi; \
nagios4-4.4.6/tap/tests/todo/Makefile.in:380:	  dashes=`echo "$$dashes" | sed s/./=/g`; \
nagios4-4.4.6/tap/tests/todo/Makefile.in-381-	  echo "$$dashes"; \
##############################################
nagios4-4.4.6/tap/tests/todo/Makefile.in-389-distdir: $(DISTFILES)
nagios4-4.4.6/tap/tests/todo/Makefile.in:390:	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
nagios4-4.4.6/tap/tests/todo/Makefile.in:391:	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
nagios4-4.4.6/tap/tests/todo/Makefile.in-392-	list='$(DISTFILES)'; for file in $$list; do \
nagios4-4.4.6/tap/tests/todo/Makefile.in-393-	  case $$file in \
nagios4-4.4.6/tap/tests/todo/Makefile.in:394:	    $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
nagios4-4.4.6/tap/tests/todo/Makefile.in:395:	    $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
nagios4-4.4.6/tap/tests/todo/Makefile.in-396-	  esac; \
nagios4-4.4.6/tap/tests/todo/Makefile.in-397-	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
nagios4-4.4.6/tap/tests/todo/Makefile.in:398:	  dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
nagios4-4.4.6/tap/tests/todo/Makefile.in-399-	  if test "$$dir" != "$$file" && test "$$dir" != "."; then \
##############################################
nagios4-4.4.6/tap/tests/todo/test.t-2-
nagios4-4.4.6/tap/tests/todo/test.t:3:cd `dirname $0`
nagios4-4.4.6/tap/tests/todo/test.t-4-
##############################################
nagios4-4.4.6/update-version-4-if [ -n "$2" ]; then
nagios4-4.4.6/update-version:5:    LONGDATE=`date -d "$2" "+%B %d, %Y"`
nagios4-4.4.6/update-version:6:    SHORTDATE=`date -d "$2" "+%Y-%m-%d"`
nagios4-4.4.6/update-version:7:    YEAR=`date -d "$2" "+%Y"`
nagios4-4.4.6/update-version-8-else
##############################################
nagios4-4.4.6/debian/httpd.webapps-common-102-	else
nagios4-4.4.6/debian/httpd.webapps-common:103:		httpds=`wc_httpd_installed $wc_httpd_supported`
nagios4-4.4.6/debian/httpd.webapps-common-104-	fi
##############################################
nagios4-4.4.6/debian/httpd.webapps-common-140-	else
nagios4-4.4.6/debian/httpd.webapps-common:141:		httpds=`wc_httpd_installed $wc_httpd_supported`
nagios4-4.4.6/debian/httpd.webapps-common-142-	fi
##############################################
nagios4-4.4.6/debian/httpd.webapps-common-177-	else
nagios4-4.4.6/debian/httpd.webapps-common:178:		httpds=`wc_httpd_installed $wc_httpd_supported`
nagios4-4.4.6/debian/httpd.webapps-common-179-	fi
##############################################
nagios4-4.4.6/debian/nagios4-cgi.prerm-28-	    # find the configured servers
nagios4-4.4.6/debian/nagios4-cgi.prerm:29:	    configured_servers=`wc_httpd_apache_configured "${apacheconf}" nagios4`
nagios4-4.4.6/debian/nagios4-cgi.prerm-30-	    if [ "${configured_servers}" ]
##############################################
nagios4-4.4.6/debian/nagios4-common.nagios4.init-79-  if [ "$2" ]; then
nagios4-4.4.6/debian/nagios4-common.nagios4.init:80:    set -- `grep ^$1 $2 | sed 's@=@ @'`
nagios4-4.4.6/debian/nagios4-common.nagios4.init-81-  else
nagios4-4.4.6/debian/nagios4-common.nagios4.init:82:    set -- `grep ^$1 $NAGIOSCFG | sed 's@=@ @'`
nagios4-4.4.6/debian/nagios4-common.nagios4.init-83-  fi
##############################################
nagios4-4.4.6/debian/nagios4-common.nagios4.init-149-        while [ `pidof nagios4 | wc -l ` -gt 0 ]; do
nagios4-4.4.6/debian/nagios4-common.nagios4.init:150:            cnt=`expr "$cnt" + 1`
nagios4-4.4.6/debian/nagios4-common.nagios4.init-151-            if [ "$cnt" -gt 15 ]; then
##############################################
nagios4-4.4.6/debian/patches/80_no_phone_home.patch-18--	$(document).ready(function() {
nagios4-4.4.6/debian/patches/80_no_phone_home.patch:19:-		var user = "<?php echo htmlspecialchars($_SERVER['REMOTE_USER']); ?>";
nagios4-4.4.6/debian/patches/80_no_phone_home.patch-20--
##############################################
nagios4-4.4.6/.pc/80_no_phone_home.patch/html/main.php-28-	$(document).ready(function() {
nagios4-4.4.6/.pc/80_no_phone_home.patch/html/main.php:29:		var user = "<?php echo htmlspecialchars($_SERVER['REMOTE_USER']); ?>";
nagios4-4.4.6/.pc/80_no_phone_home.patch/html/main.php-30-