===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
monopd-0.10.2/src/player.cpp-1019-	if (m_socket)
monopd-0.10.2/src/player.cpp:1020:		setProperty( "host", socket->ipAddr() );
monopd-0.10.2/src/player.cpp-1021-	else
##############################################
monopd-0.10.2/src/socket.h-51-	int fd() const { return m_fd; }
monopd-0.10.2/src/socket.h:52:	void setIpAddr(const std::string ipAddr) { m_ipAddr = ipAddr; }
monopd-0.10.2/src/socket.h:53:	std::string ipAddr() const { return m_ipAddr; }
monopd-0.10.2/src/socket.h-54-	void setAddrinfoNext(struct addrinfo *next) { m_addrinfoNext = next; }
##############################################
monopd-0.10.2/src/server.cpp-1269-	player->setProperty("game", -1, this);
monopd-0.10.2/src/server.cpp:1270:	player->setProperty("host", player->socket()->ipAddr(), this);
monopd-0.10.2/src/server.cpp-1271-	player->identify(m_nextPlayerId++);
##############################################
monopd-0.10.2/src/listener.cpp-230-					char ip_str[INET6_ADDRSTRLEN];
monopd-0.10.2/src/listener.cpp:231:					syslog( LOG_INFO, "connect() failed: ip=[%s], error=[%s]", (*it)->ipAddr().c_str(), strerror(sockerr) );
monopd-0.10.2/src/listener.cpp-232-
##############################################
monopd-0.10.2/src/listener.cpp-282-					(*it)->setAddrinfoNext(addrinfo->ai_next);
monopd-0.10.2/src/listener.cpp:283:					(*it)->setIpAddr(ip_str);
monopd-0.10.2/src/listener.cpp-284-				}
##############################################
monopd-0.10.2/src/listener.cpp-303-		inet_ntop(clientaddr.ss_family, &(((struct sockaddr_in *)&clientaddr)->sin_addr), ip_str, INET6_ADDRSTRLEN);
monopd-0.10.2/src/listener.cpp:304:		socket->setIpAddr(ip_str);
monopd-0.10.2/src/listener.cpp-305-	} else if(clientaddr.ss_family == AF_INET6) {
monopd-0.10.2/src/listener.cpp-306-		inet_ntop(clientaddr.ss_family, &(((struct sockaddr_in6 *)&clientaddr)->sin6_addr), ip_str, INET6_ADDRSTRLEN);
monopd-0.10.2/src/listener.cpp:307:		socket->setIpAddr(ip_str);
monopd-0.10.2/src/listener.cpp-308-	}
##############################################
monopd-0.10.2/src/listener.cpp-384-	sock->setAddrinfoNext(addrinfo->ai_next);
monopd-0.10.2/src/listener.cpp:385:	sock->setIpAddr(ip_str);
monopd-0.10.2/src/listener.cpp-386-	m_sockets.push_back(sock);
##############################################
monopd-0.10.2/src/listener.cpp-424-		case Socket::New:
monopd-0.10.2/src/listener.cpp:425:			syslog( LOG_INFO, "connection: fd=[%d], ip=[%s]", socket->fd(), socket->ipAddr().c_str() );
monopd-0.10.2/src/listener.cpp-426-			m_server->welcomeNew( socket );
##############################################
monopd-0.10.2/src/listener.cpp-433-		case Socket::Close:
monopd-0.10.2/src/listener.cpp:434:			syslog( LOG_INFO, "disconnect: fd=[%d], ip=[%s]", socket->fd(), socket->ipAddr().c_str() );
monopd-0.10.2/src/listener.cpp-435-			m_server->closedSocket( socket );
##############################################
monopd-0.10.2/src/Makefile.in-215-	@list='$(bin_PROGRAMS)'; for p in $$list; do \
monopd-0.10.2/src/Makefile.in:216:	  p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
monopd-0.10.2/src/Makefile.in-217-	  if test -f $$p \
monopd-0.10.2/src/Makefile.in-218-	  ; then \
monopd-0.10.2/src/Makefile.in:219:	    f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \
monopd-0.10.2/src/Makefile.in-220-	   echo " $(INSTALL_PROGRAM_ENV) $(binPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(bindir)/$$f'"; \
##############################################
monopd-0.10.2/src/Makefile.in-227-	@list='$(bin_PROGRAMS)'; for p in $$list; do \
monopd-0.10.2/src/Makefile.in:228:	  f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \
monopd-0.10.2/src/Makefile.in-229-	  echo " rm -f '$(DESTDIR)$(bindir)/$$f'"; \
##############################################
monopd-0.10.2/src/Makefile.in-273-.cpp.obj:
monopd-0.10.2/src/Makefile.in:274:@am__fastdepCXX_TRUE@	if $(CXXCOMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ `$(CYGPATH_W) '$<'`; \
monopd-0.10.2/src/Makefile.in-275-@am__fastdepCXX_TRUE@	then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
##############################################
monopd-0.10.2/src/Makefile.in-277-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
monopd-0.10.2/src/Makefile.in:278:@am__fastdepCXX_FALSE@	$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
monopd-0.10.2/src/Makefile.in-279-uninstall-info-am:
##############################################
monopd-0.10.2/src/Makefile.in-321-GTAGS:
monopd-0.10.2/src/Makefile.in:322:	here=`$(am__cd) $(top_builddir) && pwd` \
monopd-0.10.2/src/Makefile.in-323-	  && cd $(top_srcdir) \
##############################################
monopd-0.10.2/src/Makefile.in-329-distdir: $(DISTFILES)
monopd-0.10.2/src/Makefile.in:330:	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
monopd-0.10.2/src/Makefile.in:331:	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
monopd-0.10.2/src/Makefile.in-332-	list='$(DISTFILES)'; for file in $$list; do \
monopd-0.10.2/src/Makefile.in-333-	  case $$file in \
monopd-0.10.2/src/Makefile.in:334:	    $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
monopd-0.10.2/src/Makefile.in:335:	    $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
monopd-0.10.2/src/Makefile.in-336-	  esac; \
monopd-0.10.2/src/Makefile.in-337-	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
monopd-0.10.2/src/Makefile.in:338:	  dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
monopd-0.10.2/src/Makefile.in-339-	  if test "$$dir" != "$$file" && test "$$dir" != "."; then \
##############################################
monopd-0.10.2/src/listenport.h-28-	ListenPort(int fd); // for an already bound socket (e.g. using systemd socket activation)
monopd-0.10.2/src/listenport.h:29:	const std::string ipAddr() { return m_ipAddr; }
monopd-0.10.2/src/listenport.h-30-	int port() { return m_port; }
##############################################
monopd-0.10.2/configure-43-if test -z "$BASH_VERSION$ZSH_VERSION" \
monopd-0.10.2/configure:44:    && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
monopd-0.10.2/configure-45-  as_echo='print -r --'
monopd-0.10.2/configure-46-  as_echo_n='print -rn --'
monopd-0.10.2/configure:47:elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
monopd-0.10.2/configure-48-  as_echo='printf %s\n'
##############################################
monopd-0.10.2/configure-50-else
monopd-0.10.2/configure:51:  if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
monopd-0.10.2/configure-52-    as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
##############################################
monopd-0.10.2/configure-60-	expr "X$arg" : "X\\(.*\\)$as_nl";
monopd-0.10.2/configure:61:	arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
monopd-0.10.2/configure-62-      esac;
##############################################
monopd-0.10.2/configure-197-  eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" &&
monopd-0.10.2/configure:198:  test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1
monopd-0.10.2/configure-199-test \$(( 1 + 1 )) = 2 || exit 1"
##############################################
monopd-0.10.2/configure-324-      case $as_dir in #(
monopd-0.10.2/configure:325:      *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
monopd-0.10.2/configure-326-      *) as_qdir=$as_dir;;
##############################################
monopd-0.10.2/configure-397-  {
monopd-0.10.2/configure:398:    as_val=`expr "$@" || test $? -eq 1`
monopd-0.10.2/configure-399-  }
##############################################
monopd-0.10.2/configure-404-# ----------------------------------------
monopd-0.10.2/configure:405:# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
monopd-0.10.2/configure-406-# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
##############################################
monopd-0.10.2/configure-467-  eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" &&
monopd-0.10.2/configure:468:  test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || {
monopd-0.10.2/configure-469-  # Blame Lee E. McMahon (1931-1989) for sed's syntax.  :-)
##############################################
monopd-0.10.2/configure-797-  case $ac_option in
monopd-0.10.2/configure:798:  *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
monopd-0.10.2/configure-799-  *=)   ac_optarg= ;;
##############################################
monopd-0.10.2/configure-841-  -disable-* | --disable-*)
monopd-0.10.2/configure:842:    ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
monopd-0.10.2/configure-843-    # Reject names that are not valid shell variable names.
##############################################
monopd-0.10.2/configure-846-    ac_useropt_orig=$ac_useropt
monopd-0.10.2/configure:847:    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
monopd-0.10.2/configure-848-    case $ac_user_opts in
##############################################
monopd-0.10.2/configure-867-  -enable-* | --enable-*)
monopd-0.10.2/configure:868:    ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
monopd-0.10.2/configure-869-    # Reject names that are not valid shell variable names.
##############################################
monopd-0.10.2/configure-872-    ac_useropt_orig=$ac_useropt
monopd-0.10.2/configure:873:    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
monopd-0.10.2/configure-874-    case $ac_user_opts in
##############################################
monopd-0.10.2/configure-1071-  -with-* | --with-*)
monopd-0.10.2/configure:1072:    ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
monopd-0.10.2/configure-1073-    # Reject names that are not valid shell variable names.
##############################################
monopd-0.10.2/configure-1076-    ac_useropt_orig=$ac_useropt
monopd-0.10.2/configure:1077:    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
monopd-0.10.2/configure-1078-    case $ac_user_opts in
##############################################
monopd-0.10.2/configure-1087-  -without-* | --without-*)
monopd-0.10.2/configure:1088:    ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'`
monopd-0.10.2/configure-1089-    # Reject names that are not valid shell variable names.
##############################################
monopd-0.10.2/configure-1092-    ac_useropt_orig=$ac_useropt
monopd-0.10.2/configure:1093:    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
monopd-0.10.2/configure-1094-    case $ac_user_opts in
##############################################
monopd-0.10.2/configure-1125-  *=*)
monopd-0.10.2/configure:1126:    ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='`
monopd-0.10.2/configure-1127-    # Reject names that are not valid shell variable names.
##############################################
monopd-0.10.2/configure-1146-if test -n "$ac_prev"; then
monopd-0.10.2/configure:1147:  ac_option=--`echo $ac_prev | sed 's/_/-/g'`
monopd-0.10.2/configure-1148-  as_fn_error $? "missing argument to $ac_option"
##############################################
monopd-0.10.2/configure-1168-    */ )
monopd-0.10.2/configure:1169:      ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'`
monopd-0.10.2/configure-1170-      eval $ac_var=\$ac_val;;
##############################################
monopd-0.10.2/configure-1203-ac_ls_di=`ls -di .` &&
monopd-0.10.2/configure:1204:ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` ||
monopd-0.10.2/configure-1205-  as_fn_error $? "working directory cannot be determined"
##############################################
monopd-0.10.2/configure-1259-case $srcdir in
monopd-0.10.2/configure:1260:*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;;
monopd-0.10.2/configure-1261-esac
##############################################
monopd-0.10.2/configure-1302-By default, \`make install' will install all the files in
monopd-0.10.2/configure:1303:\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc.  You can specify
monopd-0.10.2/configure:1304:an installation prefix other than \`$ac_default_prefix' using \`--prefix',
monopd-0.10.2/configure-1305-for instance \`--prefix=\$HOME'.
##############################################
monopd-0.10.2/configure-1396-*)
monopd-0.10.2/configure:1397:  ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
monopd-0.10.2/configure-1398-  # A ".." for each directory in $ac_dir_suffix.
monopd-0.10.2/configure:1399:  ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
monopd-0.10.2/configure-1400-  case $ac_top_builddir_sub in
##############################################
monopd-0.10.2/configure-1851-    *\'*)
monopd-0.10.2/configure:1852:      ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
monopd-0.10.2/configure-1853-    esac
##############################################
monopd-0.10.2/configure-1934-      case $ac_val in
monopd-0.10.2/configure:1935:      *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
monopd-0.10.2/configure-1936-      esac
##############################################
monopd-0.10.2/configure-1949-	case $ac_val in
monopd-0.10.2/configure:1950:	*\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
monopd-0.10.2/configure-1951-	esac
##############################################
monopd-0.10.2/configure-2069-    set,)
monopd-0.10.2/configure:2070:      { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
monopd-0.10.2/configure:2071:$as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
monopd-0.10.2/configure-2072-      ac_cache_corrupted=: ;;
##############################################
monopd-0.10.2/configure-2080-	# differences in whitespace do not lead to failure.
monopd-0.10.2/configure:2081:	ac_old_val_w=`echo x $ac_old_val`
monopd-0.10.2/configure:2082:	ac_new_val_w=`echo x $ac_new_val`
monopd-0.10.2/configure-2083-	if test "$ac_old_val_w" != "$ac_new_val_w"; then
##############################################
monopd-0.10.2/configure-2100-    case $ac_new_val in
monopd-0.10.2/configure:2101:    *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
monopd-0.10.2/configure-2102-    *) ac_arg=$ac_var=$ac_new_val ;;
##############################################
monopd-0.10.2/configure-2261-if (
monopd-0.10.2/configure:2262:   set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null`
monopd-0.10.2/configure-2263-   if test "$*" = "X"; then
monopd-0.10.2/configure-2264-      # -L didn't work.
monopd-0.10.2/configure:2265:      set X `ls -t $srcdir/configure conftest.file`
monopd-0.10.2/configure-2266-   fi
##############################################
monopd-0.10.2/configure-2297-ac_script='s/[\\$]/&&/g;s/;s,x,x,$//'
monopd-0.10.2/configure:2298:program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"`
monopd-0.10.2/configure-2299-
monopd-0.10.2/configure-2300-# expand $ac_aux_dir to an absolute path
monopd-0.10.2/configure:2301:am_aux_dir=`cd $ac_aux_dir && pwd`
monopd-0.10.2/configure-2302-
##############################################
monopd-0.10.2/configure-2390-set x ${MAKE-make}
monopd-0.10.2/configure:2391:ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'`
monopd-0.10.2/configure-2392-if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then :
##############################################
monopd-0.10.2/configure-2400-# GNU make sometimes prints "make[1]: Entering ...", which would confuse us.
monopd-0.10.2/configure:2401:case `${MAKE-make} -f conftest.make 2>/dev/null` in
monopd-0.10.2/configure-2402-  *@@@%%%=?*=@@@%%%*)
##############################################
monopd-0.10.2/configure-2428-# test to see if srcdir already configured
monopd-0.10.2/configure:2429:if test "`cd $srcdir && pwd`" != "`pwd`" &&
monopd-0.10.2/configure-2430-   test -f $srcdir/config.status; then
##############################################
monopd-0.10.2/configure-2621-# case it prints its new name instead of `make'.
monopd-0.10.2/configure:2622:if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then
monopd-0.10.2/configure-2623-   am__include=include
##############################################
monopd-0.10.2/configure-2629-   echo '.include "confinc"' > confmf
monopd-0.10.2/configure:2630:   if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then
monopd-0.10.2/configure-2631-      am__include=.include
##############################################
monopd-0.10.2/configure-2816-$as_echo_n "checking whether the C++ compiler works... " >&6; }
monopd-0.10.2/configure:2817:ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'`
monopd-0.10.2/configure-2818-
##############################################
monopd-0.10.2/configure-2860-	then :; else
monopd-0.10.2/configure:2861:	   ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
monopd-0.10.2/configure-2862-	fi
##############################################
monopd-0.10.2/configure-2920-    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;;
monopd-0.10.2/configure:2921:    *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
monopd-0.10.2/configure-2922-	  break;;
##############################################
monopd-0.10.2/configure-3029-    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;;
monopd-0.10.2/configure:3030:    *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'`
monopd-0.10.2/configure-3031-       break;;
##############################################
monopd-0.10.2/configure-3197-  if test "$am_compiler_list" = ""; then
monopd-0.10.2/configure:3198:     am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp`
monopd-0.10.2/configure-3199-  fi
##############################################
monopd-0.10.2/configure-3904-  if test "$am_compiler_list" = ""; then
monopd-0.10.2/configure:3905:     am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp`
monopd-0.10.2/configure-3906-  fi
##############################################
monopd-0.10.2/configure-4552-  if test "$am_compiler_list" = ""; then
monopd-0.10.2/configure:4553:     am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp`
monopd-0.10.2/configure-4554-  fi
##############################################
monopd-0.10.2/configure-4789-  # Check for GNU $ac_path_GREP
monopd-0.10.2/configure:4790:case `"$ac_path_GREP" --version 2>&1` in
monopd-0.10.2/configure-4791-*GNU*)
##############################################
monopd-0.10.2/configure-4855-  # Check for GNU $ac_path_EGREP
monopd-0.10.2/configure:4856:case `"$ac_path_EGREP" --version 2>&1` in
monopd-0.10.2/configure-4857-*GNU*)
##############################################
monopd-0.10.2/configure-5299-  if test "$am_compiler_list" = ""; then
monopd-0.10.2/configure:5300:     am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp`
monopd-0.10.2/configure-5301-  fi
##############################################
monopd-0.10.2/configure-5388-do :
monopd-0.10.2/configure:5389:  as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
monopd-0.10.2/configure-5390-ac_fn_cxx_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default
##############################################
monopd-0.10.2/configure-5393-  cat >>confdefs.h <<_ACEOF
monopd-0.10.2/configure:5394:#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
monopd-0.10.2/configure-5395-_ACEOF
##############################################
monopd-0.10.2/configure-5576-  test $ac_status = 0; }; then
monopd-0.10.2/configure:5577:  pkg_cv_SYSTEMD_DAEMON_CFLAGS=`$PKG_CONFIG --cflags "libsystemd" 2>/dev/null`
monopd-0.10.2/configure-5578-		      test "x$?" != "x0" && pkg_failed=yes
##############################################
monopd-0.10.2/configure-5593-  test $ac_status = 0; }; then
monopd-0.10.2/configure:5594:  pkg_cv_SYSTEMD_DAEMON_LIBS=`$PKG_CONFIG --libs "libsystemd" 2>/dev/null`
monopd-0.10.2/configure-5595-		      test "x$?" != "x0" && pkg_failed=yes
##############################################
monopd-0.10.2/configure-5614-        if test $_pkg_short_errors_supported = yes; then
monopd-0.10.2/configure:5615:	        SYSTEMD_DAEMON_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "libsystemd" 2>&1`
monopd-0.10.2/configure-5616-        else
monopd-0.10.2/configure:5617:	        SYSTEMD_DAEMON_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "libsystemd" 2>&1`
monopd-0.10.2/configure-5618-        fi
##############################################
monopd-0.10.2/configure-5635-  test $ac_status = 0; }; then
monopd-0.10.2/configure:5636:  pkg_cv_SYSTEMD_DAEMON_CFLAGS=`$PKG_CONFIG --cflags "libsystemd-daemon" 2>/dev/null`
monopd-0.10.2/configure-5637-		      test "x$?" != "x0" && pkg_failed=yes
##############################################
monopd-0.10.2/configure-5652-  test $ac_status = 0; }; then
monopd-0.10.2/configure:5653:  pkg_cv_SYSTEMD_DAEMON_LIBS=`$PKG_CONFIG --libs "libsystemd-daemon" 2>/dev/null`
monopd-0.10.2/configure-5654-		      test "x$?" != "x0" && pkg_failed=yes
##############################################
monopd-0.10.2/configure-5673-        if test $_pkg_short_errors_supported = yes; then
monopd-0.10.2/configure:5674:	        SYSTEMD_DAEMON_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "libsystemd-daemon" 2>&1`
monopd-0.10.2/configure-5675-        else
monopd-0.10.2/configure:5676:	        SYSTEMD_DAEMON_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "libsystemd-daemon" 2>&1`
monopd-0.10.2/configure-5677-        fi
##############################################
monopd-0.10.2/configure-5720-  test $ac_status = 0; }; then
monopd-0.10.2/configure:5721:  pkg_cv_SYSTEMD_DAEMON_CFLAGS=`$PKG_CONFIG --cflags "libsystemd-daemon" 2>/dev/null`
monopd-0.10.2/configure-5722-		      test "x$?" != "x0" && pkg_failed=yes
##############################################
monopd-0.10.2/configure-5737-  test $ac_status = 0; }; then
monopd-0.10.2/configure:5738:  pkg_cv_SYSTEMD_DAEMON_LIBS=`$PKG_CONFIG --libs "libsystemd-daemon" 2>/dev/null`
monopd-0.10.2/configure-5739-		      test "x$?" != "x0" && pkg_failed=yes
##############################################
monopd-0.10.2/configure-5758-        if test $_pkg_short_errors_supported = yes; then
monopd-0.10.2/configure:5759:	        SYSTEMD_DAEMON_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "libsystemd-daemon" 2>&1`
monopd-0.10.2/configure-5760-        else
monopd-0.10.2/configure:5761:	        SYSTEMD_DAEMON_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "libsystemd-daemon" 2>&1`
monopd-0.10.2/configure-5762-        fi
##############################################
monopd-0.10.2/configure-5905-  ac_script='s/\$U\././;s/\.o$//;s/\.obj$//'
monopd-0.10.2/configure:5906:  ac_i=`$as_echo "$ac_i" | sed "$ac_script"`
monopd-0.10.2/configure-5907-  # 2. Prepend LIBOBJDIR.  When used with automake>=1.10 LIBOBJDIR
##############################################
monopd-0.10.2/configure-5992-if test -z "$BASH_VERSION$ZSH_VERSION" \
monopd-0.10.2/configure:5993:    && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
monopd-0.10.2/configure-5994-  as_echo='print -r --'
monopd-0.10.2/configure-5995-  as_echo_n='print -rn --'
monopd-0.10.2/configure:5996:elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
monopd-0.10.2/configure-5997-  as_echo='printf %s\n'
##############################################
monopd-0.10.2/configure-5999-else
monopd-0.10.2/configure:6000:  if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
monopd-0.10.2/configure-6001-    as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
##############################################
monopd-0.10.2/configure-6009-	expr "X$arg" : "X\\(.*\\)$as_nl";
monopd-0.10.2/configure:6010:	arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
monopd-0.10.2/configure-6011-      esac;
##############################################
monopd-0.10.2/configure-6086-# ----------------------------------------
monopd-0.10.2/configure:6087:# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
monopd-0.10.2/configure-6088-# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
##############################################
monopd-0.10.2/configure-6158-  {
monopd-0.10.2/configure:6159:    as_val=`expr "$@" || test $? -eq 1`
monopd-0.10.2/configure-6160-  }
##############################################
monopd-0.10.2/configure-6262-      case $as_dir in #(
monopd-0.10.2/configure:6263:      *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
monopd-0.10.2/configure-6264-      *) as_qdir=$as_dir;;
##############################################
monopd-0.10.2/configure-6397-cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
monopd-0.10.2/configure:6398:ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
monopd-0.10.2/configure-6399-ac_cs_version="\\
##############################################
monopd-0.10.2/configure-6421-  --*=?*)
monopd-0.10.2/configure:6422:    ac_option=`expr "X$1" : 'X\([^=]*\)='`
monopd-0.10.2/configure:6423:    ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
monopd-0.10.2/configure-6424-    ac_shift=:
##############################################
monopd-0.10.2/configure-6426-  --*=)
monopd-0.10.2/configure:6427:    ac_option=`expr "X$1" : 'X\([^=]*\)='`
monopd-0.10.2/configure-6428-    ac_optarg=
##############################################
monopd-0.10.2/configure-6450-    case $ac_optarg in
monopd-0.10.2/configure:6451:    *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
monopd-0.10.2/configure-6452-    '') as_fn_error $? "missing file argument" ;;
##############################################
monopd-0.10.2/configure-6458-    case $ac_optarg in
monopd-0.10.2/configure:6459:    *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
monopd-0.10.2/configure-6460-    esac
##############################################
monopd-0.10.2/configure-6592-fi
monopd-0.10.2/configure:6593:ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
monopd-0.10.2/configure-6594-if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
##############################################
monopd-0.10.2/configure-6609-  as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
monopd-0.10.2/configure:6610:ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'`
monopd-0.10.2/configure-6611-ac_delim='%!_!# '
##############################################
monopd-0.10.2/configure-6615-
monopd-0.10.2/configure:6616:  ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X`
monopd-0.10.2/configure-6617-  if test $ac_delim_n = $ac_delim_num; then
##############################################
monopd-0.10.2/configure-6753-for ac_last_try in false false :; do
monopd-0.10.2/configure:6754:  ac_tt=`sed -n "/$ac_delim/p" confdefs.h`
monopd-0.10.2/configure-6755-  if test -z "$ac_tt"; then
##############################################
monopd-0.10.2/configure-6885-      esac
monopd-0.10.2/configure:6886:      case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
monopd-0.10.2/configure-6887-      as_fn_append ac_file_inputs " '$ac_f'"
##############################################
monopd-0.10.2/configure-6944-*)
monopd-0.10.2/configure:6945:  ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
monopd-0.10.2/configure-6946-  # A ".." for each directory in $ac_dir_suffix.
monopd-0.10.2/configure:6947:  ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
monopd-0.10.2/configure-6948-  case $ac_top_builddir_sub in
##############################################
monopd-0.10.2/configure-7000-/@mandir@/p'
monopd-0.10.2/configure:7001:case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in
monopd-0.10.2/configure-7002-*datarootdir*) ac_datarootdir_seen=yes;;
##############################################
monopd-0.10.2/configure-7017-
monopd-0.10.2/configure:7018:# Neutralize VPATH when `$srcdir' = `.'.
monopd-0.10.2/configure-7019-# Shell code in configure.ac might set extrasub.
##############################################
monopd-0.10.2/configure-7044-test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
monopd-0.10.2/configure:7045:  { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } &&
monopd-0.10.2/configure-7046-  { ac_out=`sed -n '/^[	 ]*datarootdir[	 ]*:*=/p' \
##############################################
monopd-0.10.2/configure-7089-    * )
monopd-0.10.2/configure:7090:      _am_stamp_count=`expr $_am_stamp_count + 1` ;;
monopd-0.10.2/configure-7091-  esac
##############################################
monopd-0.10.2/configure-7126-  # Strip MF so we end up with the name of the file.
monopd-0.10.2/configure:7127:  mf=`echo "$mf" | sed -e 's/:.*$//'`
monopd-0.10.2/configure-7128-  # Check whether this is an Automake generated Makefile or not.
##############################################
monopd-0.10.2/configure-7162-  # from the Makefile without running `make'.
monopd-0.10.2/configure:7163:  DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
monopd-0.10.2/configure-7164-  test -z "$DEPDIR" && continue
monopd-0.10.2/configure:7165:  am__include=`sed -n 's/^am__include = //p' < "$mf"`
monopd-0.10.2/configure-7166-  test -z "am__include" && continue
monopd-0.10.2/configure:7167:  am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
monopd-0.10.2/configure-7168-  # When using ansi2knr, U may be empty or an underscore; expand it
monopd-0.10.2/configure:7169:  U=`sed -n 's/^U = //p' < "$mf"`
monopd-0.10.2/configure-7170-  # Find all dependency output files, they are included files with
##############################################
monopd-0.10.2/install-sh-210-      fi
monopd-0.10.2/install-sh:211:      dst=$dst/`basename "$src"`
monopd-0.10.2/install-sh-212-    fi
##############################################
monopd-0.10.2/install-sh-215-  # This sed command emulates the dirname command.
monopd-0.10.2/install-sh:216:  dstdir=`echo "$dst" | sed -e 's,/*$,,;s,[^/]*$,,;s,/*$,,;s,^$,.,'`
monopd-0.10.2/install-sh-217-
##############################################
monopd-0.10.2/install-sh-228-    IFS='%'
monopd-0.10.2/install-sh:229:    set x `echo "$dstdir" | sed -e 's@/@%@g' -e 's@^%@/@'`
monopd-0.10.2/install-sh-230-    shift
##############################################
monopd-0.10.2/install-sh-256-  else
monopd-0.10.2/install-sh:257:    dstfile=`basename "$dst"`
monopd-0.10.2/install-sh-258-
##############################################
monopd-0.10.2/doc/systemd/Makefile.in-179-distdir: $(DISTFILES)
monopd-0.10.2/doc/systemd/Makefile.in:180:	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
monopd-0.10.2/doc/systemd/Makefile.in:181:	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
monopd-0.10.2/doc/systemd/Makefile.in-182-	list='$(DISTFILES)'; for file in $$list; do \
monopd-0.10.2/doc/systemd/Makefile.in-183-	  case $$file in \
monopd-0.10.2/doc/systemd/Makefile.in:184:	    $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
monopd-0.10.2/doc/systemd/Makefile.in:185:	    $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
monopd-0.10.2/doc/systemd/Makefile.in-186-	  esac; \
monopd-0.10.2/doc/systemd/Makefile.in-187-	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
monopd-0.10.2/doc/systemd/Makefile.in:188:	  dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
monopd-0.10.2/doc/systemd/Makefile.in-189-	  if test "$$dir" != "$$file" && test "$$dir" != "."; then \
##############################################
monopd-0.10.2/doc/api/Makefile.in-179-distdir: $(DISTFILES)
monopd-0.10.2/doc/api/Makefile.in:180:	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
monopd-0.10.2/doc/api/Makefile.in:181:	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
monopd-0.10.2/doc/api/Makefile.in-182-	list='$(DISTFILES)'; for file in $$list; do \
monopd-0.10.2/doc/api/Makefile.in-183-	  case $$file in \
monopd-0.10.2/doc/api/Makefile.in:184:	    $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
monopd-0.10.2/doc/api/Makefile.in:185:	    $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
monopd-0.10.2/doc/api/Makefile.in-186-	  esac; \
monopd-0.10.2/doc/api/Makefile.in-187-	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
monopd-0.10.2/doc/api/Makefile.in:188:	  dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
monopd-0.10.2/doc/api/Makefile.in-189-	  if test "$$dir" != "$$file" && test "$$dir" != "."; then \
##############################################
monopd-0.10.2/doc/Makefile.in-196-	dot_seen=no; \
monopd-0.10.2/doc/Makefile.in:197:	target=`echo $@ | sed s/-recursive//`; \
monopd-0.10.2/doc/Makefile.in-198-	list='$(SUBDIRS)'; for subdir in $$list; do \
##############################################
monopd-0.10.2/doc/Makefile.in-232-	rev="$$rev ."; \
monopd-0.10.2/doc/Makefile.in:233:	target=`echo $@ | sed s/-recursive//`; \
monopd-0.10.2/doc/Makefile.in-234-	for subdir in $$rev; do \
##############################################
monopd-0.10.2/doc/Makefile.in-306-GTAGS:
monopd-0.10.2/doc/Makefile.in:307:	here=`$(am__cd) $(top_builddir) && pwd` \
monopd-0.10.2/doc/Makefile.in-308-	  && cd $(top_srcdir) \
##############################################
monopd-0.10.2/doc/Makefile.in-314-distdir: $(DISTFILES)
monopd-0.10.2/doc/Makefile.in:315:	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
monopd-0.10.2/doc/Makefile.in:316:	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
monopd-0.10.2/doc/Makefile.in-317-	list='$(DISTFILES)'; for file in $$list; do \
monopd-0.10.2/doc/Makefile.in-318-	  case $$file in \
monopd-0.10.2/doc/Makefile.in:319:	    $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
monopd-0.10.2/doc/Makefile.in:320:	    $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
monopd-0.10.2/doc/Makefile.in-321-	  esac; \
monopd-0.10.2/doc/Makefile.in-322-	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
monopd-0.10.2/doc/Makefile.in:323:	  dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
monopd-0.10.2/doc/Makefile.in-324-	  if test "$$dir" != "$$file" && test "$$dir" != "."; then \
##############################################
monopd-0.10.2/doc/Makefile.in-345-	    || exit 1; \
monopd-0.10.2/doc/Makefile.in:346:	    distdir=`$(am__cd) $(distdir) && pwd`; \
monopd-0.10.2/doc/Makefile.in:347:	    top_distdir=`$(am__cd) $(top_distdir) && pwd`; \
monopd-0.10.2/doc/Makefile.in-348-	    (cd $$subdir && \
##############################################
monopd-0.10.2/conf/Makefile.in-47-DIST_SOURCES =
monopd-0.10.2/conf/Makefile.in:48:am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
monopd-0.10.2/conf/Makefile.in-49-am__vpath_adj = case $$p in \
monopd-0.10.2/conf/Makefile.in:50:    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
monopd-0.10.2/conf/Makefile.in-51-    *) f=$$p;; \
monopd-0.10.2/conf/Makefile.in-52-  esac;
monopd-0.10.2/conf/Makefile.in:53:am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
monopd-0.10.2/conf/Makefile.in-54-am__installdirs = "$(DESTDIR)$(configdir)"
##############################################
monopd-0.10.2/conf/Makefile.in-208-distdir: $(DISTFILES)
monopd-0.10.2/conf/Makefile.in:209:	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
monopd-0.10.2/conf/Makefile.in:210:	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
monopd-0.10.2/conf/Makefile.in-211-	list='$(DISTFILES)'; for file in $$list; do \
monopd-0.10.2/conf/Makefile.in-212-	  case $$file in \
monopd-0.10.2/conf/Makefile.in:213:	    $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
monopd-0.10.2/conf/Makefile.in:214:	    $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
monopd-0.10.2/conf/Makefile.in-215-	  esac; \
monopd-0.10.2/conf/Makefile.in-216-	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
monopd-0.10.2/conf/Makefile.in:217:	  dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
monopd-0.10.2/conf/Makefile.in-218-	  if test "$$dir" != "$$file" && test "$$dir" != "."; then \
##############################################
monopd-0.10.2/games/Makefile.in-47-DIST_SOURCES =
monopd-0.10.2/games/Makefile.in:48:am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
monopd-0.10.2/games/Makefile.in-49-am__vpath_adj = case $$p in \
monopd-0.10.2/games/Makefile.in:50:    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
monopd-0.10.2/games/Makefile.in-51-    *) f=$$p;; \
monopd-0.10.2/games/Makefile.in-52-  esac;
monopd-0.10.2/games/Makefile.in:53:am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
monopd-0.10.2/games/Makefile.in-54-am__installdirs = "$(DESTDIR)$(gameconfigdir)"
##############################################
monopd-0.10.2/games/Makefile.in-208-distdir: $(DISTFILES)
monopd-0.10.2/games/Makefile.in:209:	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
monopd-0.10.2/games/Makefile.in:210:	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
monopd-0.10.2/games/Makefile.in-211-	list='$(DISTFILES)'; for file in $$list; do \
monopd-0.10.2/games/Makefile.in-212-	  case $$file in \
monopd-0.10.2/games/Makefile.in:213:	    $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
monopd-0.10.2/games/Makefile.in:214:	    $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
monopd-0.10.2/games/Makefile.in-215-	  esac; \
monopd-0.10.2/games/Makefile.in-216-	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
monopd-0.10.2/games/Makefile.in:217:	  dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
monopd-0.10.2/games/Makefile.in-218-	  if test "$$dir" != "$$file" && test "$$dir" != "."; then \
##############################################
monopd-0.10.2/missing-128-       # Could not run --version or --help.  This is probably someone
monopd-0.10.2/missing:129:       # running `$TOOL --version' or `$TOOL --help' to check whether
monopd-0.10.2/missing-130-       # $TOOL exists and not knowing $TOOL uses missing.
##############################################
monopd-0.10.2/missing-162-         from any GNU archive site."
monopd-0.10.2/missing:163:    files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER(\([^)]*\)).*/\1/p' ${configure_ac}`
monopd-0.10.2/missing-164-    test -z "$files" && files="config.h"
##############################################
monopd-0.10.2/missing-191-         proper tools for further handling them.
monopd-0.10.2/missing:192:         You can get \`$1' as part of \`Autoconf' from any GNU
monopd-0.10.2/missing-193-         archive site."
monopd-0.10.2/missing-194-
monopd-0.10.2/missing:195:    file=`echo "$*" | sed -n 's/.*--output[ =]*\([^ ]*\).*/\1/p'`
monopd-0.10.2/missing:196:    test -z "$file" && file=`echo "$*" | sed -n 's/.*-o[ ]*\([^ ]*\).*/\1/p'`
monopd-0.10.2/missing-197-    if test -f "$file"; then
##############################################
monopd-0.10.2/missing-220-	*.y)
monopd-0.10.2/missing:221:	    SRCFILE=`echo "$LASTARG" | sed 's/y$/c/'`
monopd-0.10.2/missing-222-	    if [ -f "$SRCFILE" ]; then
##############################################
monopd-0.10.2/missing-224-	    fi
monopd-0.10.2/missing:225:	    SRCFILE=`echo "$LASTARG" | sed 's/y$/h/'`
monopd-0.10.2/missing-226-	    if [ -f "$SRCFILE" ]; then
##############################################
monopd-0.10.2/missing-250-	*.l)
monopd-0.10.2/missing:251:	    SRCFILE=`echo "$LASTARG" | sed 's/l$/c/'`
monopd-0.10.2/missing-252-	    if [ -f "$SRCFILE" ]; then
##############################################
monopd-0.10.2/missing-269-
monopd-0.10.2/missing:270:    file=`echo "$*" | sed -n 's/.*-o \([^ ]*\).*/\1/p'`
monopd-0.10.2/missing-271-    if test -z "$file"; then
monopd-0.10.2/missing:272:	file=`echo "$*" | sed -n 's/.*--output=\([^ ]*\).*/\1/p'`
monopd-0.10.2/missing-273-    fi
##############################################
monopd-0.10.2/missing-291-    # The file to touch is that specified with -o ...
monopd-0.10.2/missing:292:    file=`echo "$*" | sed -n 's/.*-o \([^ ]*\).*/\1/p'`
monopd-0.10.2/missing-293-    if test -z "$file"; then
monopd-0.10.2/missing-294-      # ... or it is the one specified with @setfilename ...
monopd-0.10.2/missing:295:      infile=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'`
monopd-0.10.2/missing:296:      file=`sed -n '/^@setfilename/ { s/.* \([^ ]*\) *$/\1/; p; q; }' $infile`
monopd-0.10.2/missing-297-      # ... or it is derived from the source name (dir/f.texi becomes f.info)
monopd-0.10.2/missing:298:      test -z "$file" && file=`echo "$infile" | sed 's,.*/,,;s,.[^.]*$,,'`.info
monopd-0.10.2/missing-299-    fi
##############################################
monopd-0.10.2/missing-321-	*o*)
monopd-0.10.2/missing:322:	    firstarg=`echo "$firstarg" | sed s/o//`
monopd-0.10.2/missing-323-	    tar "$firstarg" "$@" && exit 0
##############################################
monopd-0.10.2/missing-327-	*h*)
monopd-0.10.2/missing:328:	    firstarg=`echo "$firstarg" | sed s/h//`
monopd-0.10.2/missing-329-	    tar "$firstarg" "$@" && exit 0
##############################################
monopd-0.10.2/Makefile.in-234-	dot_seen=no; \
monopd-0.10.2/Makefile.in:235:	target=`echo $@ | sed s/-recursive//`; \
monopd-0.10.2/Makefile.in-236-	list='$(SUBDIRS)'; for subdir in $$list; do \
##############################################
monopd-0.10.2/Makefile.in-270-	rev="$$rev ."; \
monopd-0.10.2/Makefile.in:271:	target=`echo $@ | sed s/-recursive//`; \
monopd-0.10.2/Makefile.in-272-	for subdir in $$rev; do \
##############################################
monopd-0.10.2/Makefile.in-344-GTAGS:
monopd-0.10.2/Makefile.in:345:	here=`$(am__cd) $(top_builddir) && pwd` \
monopd-0.10.2/Makefile.in-346-	  && cd $(top_srcdir) \
##############################################
monopd-0.10.2/Makefile.in-354-	mkdir $(distdir)
monopd-0.10.2/Makefile.in:355:	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
monopd-0.10.2/Makefile.in:356:	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
monopd-0.10.2/Makefile.in-357-	list='$(DISTFILES)'; for file in $$list; do \
monopd-0.10.2/Makefile.in-358-	  case $$file in \
monopd-0.10.2/Makefile.in:359:	    $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
monopd-0.10.2/Makefile.in:360:	    $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
monopd-0.10.2/Makefile.in-361-	  esac; \
monopd-0.10.2/Makefile.in-362-	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
monopd-0.10.2/Makefile.in:363:	  dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
monopd-0.10.2/Makefile.in-364-	  if test "$$dir" != "$$file" && test "$$dir" != "."; then \
##############################################
monopd-0.10.2/Makefile.in-385-	    || exit 1; \
monopd-0.10.2/Makefile.in:386:	    distdir=`$(am__cd) $(distdir) && pwd`; \
monopd-0.10.2/Makefile.in:387:	    top_distdir=`$(am__cd) $(top_distdir) && pwd`; \
monopd-0.10.2/Makefile.in-388-	    (cd $$subdir && \
##############################################
monopd-0.10.2/Makefile.in-446-	chmod a-w $(distdir)
monopd-0.10.2/Makefile.in:447:	dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
monopd-0.10.2/Makefile.in-448-	  && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
##############################################
monopd-0.10.2/Makefile.in-477-	@cd $(distuninstallcheck_dir) \
monopd-0.10.2/Makefile.in:478:	&& test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \
monopd-0.10.2/Makefile.in-479-	   || { echo "ERROR: files left after uninstall:" ; \
##############################################
monopd-0.10.2/Makefile.in-489-	fi
monopd-0.10.2/Makefile.in:490:	@test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
monopd-0.10.2/Makefile.in-491-	  || { echo "ERROR: files left in build directory after distclean:" ; \
##############################################
monopd-0.10.2/aclocal.m4-88-    PKG_CHECK_EXISTS([$3],
monopd-0.10.2/aclocal.m4:89:                     [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`
monopd-0.10.2/aclocal.m4-90-		      test "x$?" != "x0" && pkg_failed=yes ],
##############################################
monopd-0.10.2/aclocal.m4-137-        if test $_pkg_short_errors_supported = yes; then
monopd-0.10.2/aclocal.m4:138:	        $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$2" 2>&1`
monopd-0.10.2/aclocal.m4-139-        else 
monopd-0.10.2/aclocal.m4:140:	        $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$2" 2>&1`
monopd-0.10.2/aclocal.m4-141-        fi
##############################################
monopd-0.10.2/aclocal.m4-257-# $ac_aux_dir to `$srcdir/foo'.  In other projects, it is set to
monopd-0.10.2/aclocal.m4:258:# `$srcdir', `$srcdir/..', or `$srcdir/../..'.
monopd-0.10.2/aclocal.m4-259-#
##############################################
monopd-0.10.2/aclocal.m4-281-# iff we strip the leading $srcdir from $ac_aux_dir.  That would be:
monopd-0.10.2/aclocal.m4:282:#   am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"`
monopd-0.10.2/aclocal.m4-283-# and then we would define $MISSING as
##############################################
monopd-0.10.2/aclocal.m4-297-# expand $ac_aux_dir to an absolute path
monopd-0.10.2/aclocal.m4:298:am_aux_dir=`cd $ac_aux_dir && pwd`
monopd-0.10.2/aclocal.m4-299-])
##############################################
monopd-0.10.2/aclocal.m4-418-  if test "$am_compiler_list" = ""; then
monopd-0.10.2/aclocal.m4:419:     am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp`
monopd-0.10.2/aclocal.m4-420-  fi
##############################################
monopd-0.10.2/aclocal.m4-528-  # Strip MF so we end up with the name of the file.
monopd-0.10.2/aclocal.m4:529:  mf=`echo "$mf" | sed -e 's/:.*$//'`
monopd-0.10.2/aclocal.m4-530-  # Check whether this is an Automake generated Makefile or not.
##############################################
monopd-0.10.2/aclocal.m4-536-  if grep '^#.*generated by automake' $mf > /dev/null 2>&1; then
monopd-0.10.2/aclocal.m4:537:    dirpart=`AS_DIRNAME("$mf")`
monopd-0.10.2/aclocal.m4-538-  else
##############################################
monopd-0.10.2/aclocal.m4-542-  # from the Makefile without running `make'.
monopd-0.10.2/aclocal.m4:543:  DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
monopd-0.10.2/aclocal.m4-544-  test -z "$DEPDIR" && continue
monopd-0.10.2/aclocal.m4:545:  am__include=`sed -n 's/^am__include = //p' < "$mf"`
monopd-0.10.2/aclocal.m4-546-  test -z "am__include" && continue
monopd-0.10.2/aclocal.m4:547:  am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
monopd-0.10.2/aclocal.m4-548-  # When using ansi2knr, U may be empty or an underscore; expand it
monopd-0.10.2/aclocal.m4:549:  U=`sed -n 's/^U = //p' < "$mf"`
monopd-0.10.2/aclocal.m4-550-  # Find all dependency output files, they are included files with
##############################################
monopd-0.10.2/aclocal.m4-558-    test -f "$dirpart/$file" && continue
monopd-0.10.2/aclocal.m4:559:    fdir=`AS_DIRNAME(["$file"])`
monopd-0.10.2/aclocal.m4-560-    AS_MKDIR_P([$dirpart/$fdir])
##############################################
monopd-0.10.2/aclocal.m4-625-# test to see if srcdir already configured
monopd-0.10.2/aclocal.m4:626:if test "`cd $srcdir && pwd`" != "`pwd`" &&
monopd-0.10.2/aclocal.m4-627-   test -f $srcdir/config.status; then
##############################################
monopd-0.10.2/aclocal.m4-701-    * )
monopd-0.10.2/aclocal.m4:702:      _am_stamp_count=`expr $_am_stamp_count + 1` ;;
monopd-0.10.2/aclocal.m4-703-  esac
monopd-0.10.2/aclocal.m4-704-done
monopd-0.10.2/aclocal.m4:705:echo "timestamp for $1" >`AS_DIRNAME([$1])`/stamp-h[]$_am_stamp_count])
monopd-0.10.2/aclocal.m4-706-
##############################################
monopd-0.10.2/aclocal.m4-773-# case it prints its new name instead of `make'.
monopd-0.10.2/aclocal.m4:774:if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then
monopd-0.10.2/aclocal.m4-775-   am__include=include
##############################################
monopd-0.10.2/aclocal.m4-781-   echo '.include "confinc"' > confmf
monopd-0.10.2/aclocal.m4:782:   if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then
monopd-0.10.2/aclocal.m4-783-      am__include=.include
##############################################
monopd-0.10.2/aclocal.m4-948-if (
monopd-0.10.2/aclocal.m4:949:   set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null`
monopd-0.10.2/aclocal.m4-950-   if test "$[*]" = "X"; then
monopd-0.10.2/aclocal.m4-951-      # -L didn't work.
monopd-0.10.2/aclocal.m4:952:      set X `ls -t $srcdir/configure conftest.file`
monopd-0.10.2/aclocal.m4-953-   fi
##############################################
monopd-0.10.2/depcomp-68-  sed 's|[^\\/]*$|'${DEPDIR-.deps}'/&|;s|\.\([^.]*\)$|.P\1|;s|Pobj$|Po|'`}
monopd-0.10.2/depcomp:69:tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`}
monopd-0.10.2/depcomp-70-
##############################################
monopd-0.10.2/depcomp-203-  # Version 6 uses the directory in both cases.
monopd-0.10.2/depcomp:204:  stripped=`echo "$object" | sed 's/\(.*\)\..*$/\1/'`
monopd-0.10.2/depcomp-205-  tmpdepfile="$stripped.u"
##############################################
monopd-0.10.2/depcomp-214-  else
monopd-0.10.2/depcomp:215:    stripped=`echo "$stripped" | sed 's,^.*/,,'`
monopd-0.10.2/depcomp-216-    tmpdepfile="$stripped.u"
##############################################
monopd-0.10.2/depcomp-228-    # Do two passes, one to just change these to
monopd-0.10.2/depcomp:229:    # `$object: dependent.h' and one to simply `dependent.h:'.
monopd-0.10.2/depcomp-230-    sed -e "s,^$outname:,$object :," < "$tmpdepfile" > "$depfile"
##############################################
monopd-0.10.2/depcomp-269-  # Do two passes, one to just change these to
monopd-0.10.2/depcomp:270:  # `$object: dependent.h' and one to simply `dependent.h:'.
monopd-0.10.2/depcomp-271-  sed "s,^[^:]*:,$object :," < "$tmpdepfile" > "$depfile"
##############################################
monopd-0.10.2/depcomp-284-   # Subdirectories are respected.
monopd-0.10.2/depcomp:285:   dir=`echo "$object" | sed -e 's|/[^/]*$|/|'`
monopd-0.10.2/depcomp-286-   test "x$dir" = "x$object" && dir=
monopd-0.10.2/depcomp:287:   base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'`
monopd-0.10.2/depcomp-288-
##############################################
monopd-0.10.2/depcomp-423-  done
monopd-0.10.2/depcomp:424:  obj_suffix="`echo $object | sed 's/^.*\././'`"
monopd-0.10.2/depcomp-425-  touch "$tmpdepfile"