===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
systemtap-4.4/EXAMPLES/io/mbrwatch.meta-12-test_check: stap -p4 mbrwatch.stp
systemtap-4.4/EXAMPLES/io/mbrwatch.meta:13:test_installcheck: stap mbrwatch.stp -c "dd of=/dev/null count=1 if=/dev/`grep -v major /proc/partitions | grep . | grep -v 'sr[0-9]' | awk '{print $4}' | head -1`"
##############################################
systemtap-4.4/EXAMPLES/memory/hw_watch_addr.meta-11-description: The script will watch accesses to a single kernel address and prints a traceback each time the address is accessed. This script needs to be run as root to allow access to the breakpoint hardware.
systemtap-4.4/EXAMPLES/memory/hw_watch_addr.meta:12:test_support: perf stat -a --event=mem:0x`grep "vm_dirty_ratio" /proc/kallsyms | awk '{print $1}'` /bin/true
systemtap-4.4/EXAMPLES/memory/hw_watch_addr.meta:13:test_check: stap --all-modules -p4 hw_watch_addr.stp 0x`grep "vm_dirty_ratio" /proc/kallsyms | awk '{print $1}'`
systemtap-4.4/EXAMPLES/memory/hw_watch_addr.meta:14:test_installcheck: stap --all-modules hw_watch_addr.stp 0x`grep "vm_dirty_ratio" /proc/kallsyms | awk '{print $1}'` -T 5
##############################################
systemtap-4.4/EXAMPLES/memory/hw_watch_sym.meta-11-description: The script will watch accesses to the starting address of a single kernel symbol and prints a traceback each time the symbol is accessed. This script needs to be run as root to allow access to the breakpoint hardware.
systemtap-4.4/EXAMPLES/memory/hw_watch_sym.meta:12:test_support: perf stat -a --event=mem:0x`grep "vm_dirty_ratio" /proc/kallsyms | awk '{print $1}'` /bin/true
systemtap-4.4/EXAMPLES/memory/hw_watch_sym.meta-13-test_check: stap --all-modules -p4 hw_watch_sym.stp vm_dirty_ratio
##############################################
systemtap-4.4/EXAMPLES/network/socktop-77-	        F_TYPESTR=$OPTARG$DELIM$F_TYPESTR ;;
systemtap-4.4/EXAMPLES/network/socktop:78:	u)      uid=`awk -F: '$1 == name {print $3}' name=$OPTARG /etc/passwd`
systemtap-4.4/EXAMPLES/network/socktop-79-	        if [[ $uid != "" ]]; then
##############################################
systemtap-4.4/EXAMPLES/network/socktop-105-TZ=`date "+%z"`
systemtap-4.4/EXAMPLES/network/socktop:106:TZ_SIGN=`echo $TZ | cut -c1`
systemtap-4.4/EXAMPLES/network/socktop:107:TZ_HOURS=`echo $TZ | cut -c2-3`
systemtap-4.4/EXAMPLES/network/socktop:108:TZ_MINS=`echo $TZ | cut -c4-5`
systemtap-4.4/EXAMPLES/network/socktop-109-TZ_ADJUST=$TZ_SIGN$((10#$TZ_HOURS*60*60+10#$TZ_MINS*60))
##############################################
systemtap-4.4/EXAMPLES/network/tcp_retransmission.stp-16-    rto = tcp_get_info_rto($sk)
systemtap-4.4/EXAMPLES/network/tcp_retransmission.stp:17:    saddr   = format_ipaddr(__ip_sock_saddr($sk), __ip_sock_family($sk))
systemtap-4.4/EXAMPLES/network/tcp_retransmission.stp:18:    daddr   = format_ipaddr(__ip_sock_daddr($sk), __ip_sock_family($sk))
systemtap-4.4/EXAMPLES/network/tcp_retransmission.stp-19-    sport   = __tcp_sock_sport($sk)
##############################################
systemtap-4.4/EXAMPLES/network/tcp_trace.stp-691-{
systemtap-4.4/EXAMPLES/network/tcp_trace.stp:692:	laddr = tcpmib_local_addr(sk);
systemtap-4.4/EXAMPLES/network/tcp_trace.stp:693:	raddr = tcpmib_remote_addr(sk);
systemtap-4.4/EXAMPLES/network/tcp_trace.stp-694-	lport = tcpmib_local_port(sk);
##############################################
systemtap-4.4/EXAMPLES/network/tcpipstat.stp-40- *		individual element of the tuple can be used as the index.
systemtap-4.4/EXAMPLES/network/tcpipstat.stp:41: *		Valid values for index are laddr (local address), raddr
systemtap-4.4/EXAMPLES/network/tcpipstat.stp-42- *		(remote address) , lport, rport or tuple.  For example if
##############################################
systemtap-4.4/EXAMPLES/network/tcpipstat.stp-376-	if( !(ipmib_get_proto(skb) == 6) ) return 0;
systemtap-4.4/EXAMPLES/network/tcpipstat.stp:377:	raddr = ipmib_remote_addr(skb, SourceIsLocal);
systemtap-4.4/EXAMPLES/network/tcpipstat.stp:378:	laddr = ipmib_local_addr(skb, SourceIsLocal);
systemtap-4.4/EXAMPLES/network/tcpipstat.stp-379-	rport = ipmib_tcp_remote_port(skb, SourceIsLocal);
##############################################
systemtap-4.4/EXAMPLES/network/tcpipstat.stp-390-        if ( !sk ) return 0;
systemtap-4.4/EXAMPLES/network/tcpipstat.stp:391:        laddr = tcpmib_local_addr(sk);
systemtap-4.4/EXAMPLES/network/tcpipstat.stp:392:        raddr = tcpmib_remote_addr(sk);
systemtap-4.4/EXAMPLES/network/tcpipstat.stp-393-        lport = tcpmib_local_port(sk);
##############################################
systemtap-4.4/EXAMPLES/network/tcpipstat.stp-578-
systemtap-4.4/EXAMPLES/network/tcpipstat.stp:579:        laddr = tcpmib_local_addr(sk);
systemtap-4.4/EXAMPLES/network/tcpipstat.stp:580:        raddr = tcpmib_remote_addr(sk);
systemtap-4.4/EXAMPLES/network/tcpipstat.stp-581-        lport = tcpmib_local_port(sk);
##############################################
systemtap-4.4/EXAMPLES/process/syscalltimes-55-
systemtap-4.4/EXAMPLES/process/syscalltimes:56:	u)	uid=`awk -F: '$1 == name {print $3}' name=$OPTARG /etc/passwd`
systemtap-4.4/EXAMPLES/process/syscalltimes-57-		if [[ $uid != "" ]]; then
##############################################
systemtap-4.4/EXAMPLES/profiling/fileline-profile.stp-18-  if (user_mode()) {
systemtap-4.4/EXAMPLES/profiling/fileline-profile.stp:19:    ufileline = usymfileline(uaddr())
systemtap-4.4/EXAMPLES/profiling/fileline-profile.stp-20-    if (strtol(ufileline, 16))
systemtap-4.4/EXAMPLES/profiling/fileline-profile.stp:21:      uaddrinfo = usymdata(uaddr())
systemtap-4.4/EXAMPLES/profiling/fileline-profile.stp-22-    else {
systemtap-4.4/EXAMPLES/profiling/fileline-profile.stp-23-      if (symbolname != "")
systemtap-4.4/EXAMPLES/profiling/fileline-profile.stp:24:        uaddrinfo = usymname(uaddr())."@"
systemtap-4.4/EXAMPLES/profiling/fileline-profile.stp-25-      uaddrinfo .= ufileline
##############################################
systemtap-4.4/EXAMPLES/profiling/fileline-profile.stp-28-  } else {
systemtap-4.4/EXAMPLES/profiling/fileline-profile.stp:29:     profile["", addr()] <<< 1
systemtap-4.4/EXAMPLES/profiling/fileline-profile.stp-30-  }
##############################################
systemtap-4.4/EXAMPLES/profiling/pf2.stp-5-  pcount <<< 1
systemtap-4.4/EXAMPLES/profiling/pf2.stp:6:  fn = user_mode() ? "<user>" : symname(addr())
systemtap-4.4/EXAMPLES/profiling/pf2.stp-7-  if (fn != "") profile[fn] <<< 1
##############################################
systemtap-4.4/EXAMPLES/profiling/pf3.stp-16-    try { // modname() can throw
systemtap-4.4/EXAMPLES/profiling/pf3.stp:17:      fn = "k:".modname(addr()).":".symname(addr())
systemtap-4.4/EXAMPLES/profiling/pf3.stp-18-    } catch {
systemtap-4.4/EXAMPLES/profiling/pf3.stp:19:      fn = "k:<unknown>:".symname(addr())
systemtap-4.4/EXAMPLES/profiling/pf3.stp-20-    }
##############################################
systemtap-4.4/EXAMPLES/profiling/pf3.stp-22-    try { // umodname() can throw
systemtap-4.4/EXAMPLES/profiling/pf3.stp:23:      fn = "u:".umodname(uaddr()).":".usymname(uaddr())
systemtap-4.4/EXAMPLES/profiling/pf3.stp-24-    } catch {
systemtap-4.4/EXAMPLES/profiling/pf3.stp:25:      fn = "u:<unknown>:".usymname(uaddr())
systemtap-4.4/EXAMPLES/profiling/pf3.stp-26-    }
##############################################
systemtap-4.4/EXAMPLES/stapgames/2048.stp-1-#!/bin/bash
systemtap-4.4/EXAMPLES/stapgames/2048.stp:2://usr/bin/env stty -echo; sudo staprun -T 30 `stap -p4 "$0"`; stty echo; exit
systemtap-4.4/EXAMPLES/stapgames/2048.stp-3-
##############################################
systemtap-4.4/Makefile.am-309-	-rm -rf $(DESTDIR)$(localstatedir)/cache/$(PACKAGE)
systemtap-4.4/Makefile.am:310:	@list='$(EXAMPLE_SRC)'; for f in $$list; do p=`basename $$f`; \
systemtap-4.4/Makefile.am-311-	  echo " rm -f '$(EXAMPLE_INSTALL_DIR)/$$p'"; \
##############################################
systemtap-4.4/Makefile.am-313-	done
systemtap-4.4/Makefile.am:314:	@list='$(DEMO_SRC)'; for f in $$list; do p=`basename $$f`; \
systemtap-4.4/Makefile.am-315-	  echo " rm -f '$(DEMO_INSTALL_DIR)/$$p'"; \
##############################################
systemtap-4.4/Makefile.am-317-	done
systemtap-4.4/Makefile.am:318:	@list='$(SAMPLE_SRC)'; for f in $$list; do p=`basename $$f`; \
systemtap-4.4/Makefile.am-319-	  echo " rm -f '$(SAMPLE_INSTALL_DIR)/$$p'"; \
##############################################
systemtap-4.4/Makefile.am-334-check-local:
systemtap-4.4/Makefile.am:335:	SRCDIR=`cd $(srcdir); pwd`; \
systemtap-4.4/Makefile.am-336-        PWD=`pwd`; \
##############################################
systemtap-4.4/Makefile.am-377-		SYSTEMTAP_PATH="`cd testsuite; pwd`" \
systemtap-4.4/Makefile.am:378:		SYSTEMTAP_RUNTIME="`cd $(srcdir)/runtime; pwd`"
systemtap-4.4/Makefile.am-379-testsuite/stap: run-stap
##############################################
systemtap-4.4/Makefile.in-54-  { \
systemtap-4.4/Makefile.in:55:    flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
systemtap-4.4/Makefile.in-56-  }; \
##############################################
systemtap-4.4/Makefile.in-279-	$(stapvirt_LDFLAGS) $(LDFLAGS) -o $@
systemtap-4.4/Makefile.in:280:am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
systemtap-4.4/Makefile.in-281-am__vpath_adj = case $$p in \
systemtap-4.4/Makefile.in:282:    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
systemtap-4.4/Makefile.in-283-    *) f=$$p;; \
systemtap-4.4/Makefile.in-284-  esac;
systemtap-4.4/Makefile.in:285:am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
systemtap-4.4/Makefile.in-286-am__install_max = 40
systemtap-4.4/Makefile.in-287-am__nobase_strip_setup = \
systemtap-4.4/Makefile.in:288:  srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
systemtap-4.4/Makefile.in-289-am__nobase_strip = \
##############################################
systemtap-4.4/Makefile.in-1132-.c.obj:
systemtap-4.4/Makefile.in:1133:@am__fastdepCC_TRUE@	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
systemtap-4.4/Makefile.in-1134-@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
##############################################
systemtap-4.4/Makefile.in-1136-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1137:@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
systemtap-4.4/Makefile.in-1138-
systemtap-4.4/Makefile.in-1139-stap-mdfour.o: mdfour.c
systemtap-4.4/Makefile.in:1140:@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CFLAGS) $(CFLAGS) -MT stap-mdfour.o -MD -MP -MF $(DEPDIR)/stap-mdfour.Tpo -c -o stap-mdfour.o `test -f 'mdfour.c' || echo '$(srcdir)/'`mdfour.c
systemtap-4.4/Makefile.in-1141-@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-mdfour.Tpo $(DEPDIR)/stap-mdfour.Po
##############################################
systemtap-4.4/Makefile.in-1143-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1144:@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CFLAGS) $(CFLAGS) -c -o stap-mdfour.o `test -f 'mdfour.c' || echo '$(srcdir)/'`mdfour.c
systemtap-4.4/Makefile.in-1145-
systemtap-4.4/Makefile.in-1146-stap-mdfour.obj: mdfour.c
systemtap-4.4/Makefile.in:1147:@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CFLAGS) $(CFLAGS) -MT stap-mdfour.obj -MD -MP -MF $(DEPDIR)/stap-mdfour.Tpo -c -o stap-mdfour.obj `if test -f 'mdfour.c'; then $(CYGPATH_W) 'mdfour.c'; else $(CYGPATH_W) '$(srcdir)/mdfour.c'; fi`
systemtap-4.4/Makefile.in-1148-@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-mdfour.Tpo $(DEPDIR)/stap-mdfour.Po
##############################################
systemtap-4.4/Makefile.in-1150-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1151:@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CFLAGS) $(CFLAGS) -c -o stap-mdfour.obj `if test -f 'mdfour.c'; then $(CYGPATH_W) 'mdfour.c'; else $(CYGPATH_W) '$(srcdir)/mdfour.c'; fi`
systemtap-4.4/Makefile.in-1152-
systemtap-4.4/Makefile.in-1153-stapvirt-stapvirt.o: stapvirt.c
systemtap-4.4/Makefile.in:1154:@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(stapvirt_CFLAGS) $(CFLAGS) -MT stapvirt-stapvirt.o -MD -MP -MF $(DEPDIR)/stapvirt-stapvirt.Tpo -c -o stapvirt-stapvirt.o `test -f 'stapvirt.c' || echo '$(srcdir)/'`stapvirt.c
systemtap-4.4/Makefile.in-1155-@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stapvirt-stapvirt.Tpo $(DEPDIR)/stapvirt-stapvirt.Po
##############################################
systemtap-4.4/Makefile.in-1157-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1158:@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(stapvirt_CFLAGS) $(CFLAGS) -c -o stapvirt-stapvirt.o `test -f 'stapvirt.c' || echo '$(srcdir)/'`stapvirt.c
systemtap-4.4/Makefile.in-1159-
systemtap-4.4/Makefile.in-1160-stapvirt-stapvirt.obj: stapvirt.c
systemtap-4.4/Makefile.in:1161:@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(stapvirt_CFLAGS) $(CFLAGS) -MT stapvirt-stapvirt.obj -MD -MP -MF $(DEPDIR)/stapvirt-stapvirt.Tpo -c -o stapvirt-stapvirt.obj `if test -f 'stapvirt.c'; then $(CYGPATH_W) 'stapvirt.c'; else $(CYGPATH_W) '$(srcdir)/stapvirt.c'; fi`
systemtap-4.4/Makefile.in-1162-@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stapvirt-stapvirt.Tpo $(DEPDIR)/stapvirt-stapvirt.Po
##############################################
systemtap-4.4/Makefile.in-1164-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1165:@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(stapvirt_CFLAGS) $(CFLAGS) -c -o stapvirt-stapvirt.obj `if test -f 'stapvirt.c'; then $(CYGPATH_W) 'stapvirt.c'; else $(CYGPATH_W) '$(srcdir)/stapvirt.c'; fi`
systemtap-4.4/Makefile.in-1166-
##############################################
systemtap-4.4/Makefile.in-1174-.cxx.obj:
systemtap-4.4/Makefile.in:1175:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
systemtap-4.4/Makefile.in-1176-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
##############################################
systemtap-4.4/Makefile.in-1178-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1179:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
systemtap-4.4/Makefile.in-1180-
systemtap-4.4/Makefile.in-1181-stap-main.o: main.cxx
systemtap-4.4/Makefile.in:1182:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-main.o -MD -MP -MF $(DEPDIR)/stap-main.Tpo -c -o stap-main.o `test -f 'main.cxx' || echo '$(srcdir)/'`main.cxx
systemtap-4.4/Makefile.in-1183-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-main.Tpo $(DEPDIR)/stap-main.Po
##############################################
systemtap-4.4/Makefile.in-1185-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1186:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-main.o `test -f 'main.cxx' || echo '$(srcdir)/'`main.cxx
systemtap-4.4/Makefile.in-1187-
systemtap-4.4/Makefile.in-1188-stap-main.obj: main.cxx
systemtap-4.4/Makefile.in:1189:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-main.obj -MD -MP -MF $(DEPDIR)/stap-main.Tpo -c -o stap-main.obj `if test -f 'main.cxx'; then $(CYGPATH_W) 'main.cxx'; else $(CYGPATH_W) '$(srcdir)/main.cxx'; fi`
systemtap-4.4/Makefile.in-1190-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-main.Tpo $(DEPDIR)/stap-main.Po
##############################################
systemtap-4.4/Makefile.in-1192-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1193:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-main.obj `if test -f 'main.cxx'; then $(CYGPATH_W) 'main.cxx'; else $(CYGPATH_W) '$(srcdir)/main.cxx'; fi`
systemtap-4.4/Makefile.in-1194-
systemtap-4.4/Makefile.in-1195-stap-session.o: session.cxx
systemtap-4.4/Makefile.in:1196:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-session.o -MD -MP -MF $(DEPDIR)/stap-session.Tpo -c -o stap-session.o `test -f 'session.cxx' || echo '$(srcdir)/'`session.cxx
systemtap-4.4/Makefile.in-1197-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-session.Tpo $(DEPDIR)/stap-session.Po
##############################################
systemtap-4.4/Makefile.in-1199-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1200:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-session.o `test -f 'session.cxx' || echo '$(srcdir)/'`session.cxx
systemtap-4.4/Makefile.in-1201-
systemtap-4.4/Makefile.in-1202-stap-session.obj: session.cxx
systemtap-4.4/Makefile.in:1203:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-session.obj -MD -MP -MF $(DEPDIR)/stap-session.Tpo -c -o stap-session.obj `if test -f 'session.cxx'; then $(CYGPATH_W) 'session.cxx'; else $(CYGPATH_W) '$(srcdir)/session.cxx'; fi`
systemtap-4.4/Makefile.in-1204-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-session.Tpo $(DEPDIR)/stap-session.Po
##############################################
systemtap-4.4/Makefile.in-1206-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1207:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-session.obj `if test -f 'session.cxx'; then $(CYGPATH_W) 'session.cxx'; else $(CYGPATH_W) '$(srcdir)/session.cxx'; fi`
systemtap-4.4/Makefile.in-1208-
systemtap-4.4/Makefile.in-1209-stap-parse.o: parse.cxx
systemtap-4.4/Makefile.in:1210:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-parse.o -MD -MP -MF $(DEPDIR)/stap-parse.Tpo -c -o stap-parse.o `test -f 'parse.cxx' || echo '$(srcdir)/'`parse.cxx
systemtap-4.4/Makefile.in-1211-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-parse.Tpo $(DEPDIR)/stap-parse.Po
##############################################
systemtap-4.4/Makefile.in-1213-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1214:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-parse.o `test -f 'parse.cxx' || echo '$(srcdir)/'`parse.cxx
systemtap-4.4/Makefile.in-1215-
systemtap-4.4/Makefile.in-1216-stap-parse.obj: parse.cxx
systemtap-4.4/Makefile.in:1217:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-parse.obj -MD -MP -MF $(DEPDIR)/stap-parse.Tpo -c -o stap-parse.obj `if test -f 'parse.cxx'; then $(CYGPATH_W) 'parse.cxx'; else $(CYGPATH_W) '$(srcdir)/parse.cxx'; fi`
systemtap-4.4/Makefile.in-1218-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-parse.Tpo $(DEPDIR)/stap-parse.Po
##############################################
systemtap-4.4/Makefile.in-1220-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1221:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-parse.obj `if test -f 'parse.cxx'; then $(CYGPATH_W) 'parse.cxx'; else $(CYGPATH_W) '$(srcdir)/parse.cxx'; fi`
systemtap-4.4/Makefile.in-1222-
systemtap-4.4/Makefile.in-1223-stap-staptree.o: staptree.cxx
systemtap-4.4/Makefile.in:1224:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-staptree.o -MD -MP -MF $(DEPDIR)/stap-staptree.Tpo -c -o stap-staptree.o `test -f 'staptree.cxx' || echo '$(srcdir)/'`staptree.cxx
systemtap-4.4/Makefile.in-1225-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-staptree.Tpo $(DEPDIR)/stap-staptree.Po
##############################################
systemtap-4.4/Makefile.in-1227-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1228:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-staptree.o `test -f 'staptree.cxx' || echo '$(srcdir)/'`staptree.cxx
systemtap-4.4/Makefile.in-1229-
systemtap-4.4/Makefile.in-1230-stap-staptree.obj: staptree.cxx
systemtap-4.4/Makefile.in:1231:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-staptree.obj -MD -MP -MF $(DEPDIR)/stap-staptree.Tpo -c -o stap-staptree.obj `if test -f 'staptree.cxx'; then $(CYGPATH_W) 'staptree.cxx'; else $(CYGPATH_W) '$(srcdir)/staptree.cxx'; fi`
systemtap-4.4/Makefile.in-1232-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-staptree.Tpo $(DEPDIR)/stap-staptree.Po
##############################################
systemtap-4.4/Makefile.in-1234-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1235:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-staptree.obj `if test -f 'staptree.cxx'; then $(CYGPATH_W) 'staptree.cxx'; else $(CYGPATH_W) '$(srcdir)/staptree.cxx'; fi`
systemtap-4.4/Makefile.in-1236-
systemtap-4.4/Makefile.in-1237-stap-elaborate.o: elaborate.cxx
systemtap-4.4/Makefile.in:1238:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-elaborate.o -MD -MP -MF $(DEPDIR)/stap-elaborate.Tpo -c -o stap-elaborate.o `test -f 'elaborate.cxx' || echo '$(srcdir)/'`elaborate.cxx
systemtap-4.4/Makefile.in-1239-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-elaborate.Tpo $(DEPDIR)/stap-elaborate.Po
##############################################
systemtap-4.4/Makefile.in-1241-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1242:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-elaborate.o `test -f 'elaborate.cxx' || echo '$(srcdir)/'`elaborate.cxx
systemtap-4.4/Makefile.in-1243-
systemtap-4.4/Makefile.in-1244-stap-elaborate.obj: elaborate.cxx
systemtap-4.4/Makefile.in:1245:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-elaborate.obj -MD -MP -MF $(DEPDIR)/stap-elaborate.Tpo -c -o stap-elaborate.obj `if test -f 'elaborate.cxx'; then $(CYGPATH_W) 'elaborate.cxx'; else $(CYGPATH_W) '$(srcdir)/elaborate.cxx'; fi`
systemtap-4.4/Makefile.in-1246-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-elaborate.Tpo $(DEPDIR)/stap-elaborate.Po
##############################################
systemtap-4.4/Makefile.in-1248-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1249:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-elaborate.obj `if test -f 'elaborate.cxx'; then $(CYGPATH_W) 'elaborate.cxx'; else $(CYGPATH_W) '$(srcdir)/elaborate.cxx'; fi`
systemtap-4.4/Makefile.in-1250-
systemtap-4.4/Makefile.in-1251-stap-translate.o: translate.cxx
systemtap-4.4/Makefile.in:1252:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-translate.o -MD -MP -MF $(DEPDIR)/stap-translate.Tpo -c -o stap-translate.o `test -f 'translate.cxx' || echo '$(srcdir)/'`translate.cxx
systemtap-4.4/Makefile.in-1253-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-translate.Tpo $(DEPDIR)/stap-translate.Po
##############################################
systemtap-4.4/Makefile.in-1255-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1256:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-translate.o `test -f 'translate.cxx' || echo '$(srcdir)/'`translate.cxx
systemtap-4.4/Makefile.in-1257-
systemtap-4.4/Makefile.in-1258-stap-translate.obj: translate.cxx
systemtap-4.4/Makefile.in:1259:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-translate.obj -MD -MP -MF $(DEPDIR)/stap-translate.Tpo -c -o stap-translate.obj `if test -f 'translate.cxx'; then $(CYGPATH_W) 'translate.cxx'; else $(CYGPATH_W) '$(srcdir)/translate.cxx'; fi`
systemtap-4.4/Makefile.in-1260-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-translate.Tpo $(DEPDIR)/stap-translate.Po
##############################################
systemtap-4.4/Makefile.in-1262-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1263:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-translate.obj `if test -f 'translate.cxx'; then $(CYGPATH_W) 'translate.cxx'; else $(CYGPATH_W) '$(srcdir)/translate.cxx'; fi`
systemtap-4.4/Makefile.in-1264-
systemtap-4.4/Makefile.in-1265-stap-tapsets.o: tapsets.cxx
systemtap-4.4/Makefile.in:1266:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-tapsets.o -MD -MP -MF $(DEPDIR)/stap-tapsets.Tpo -c -o stap-tapsets.o `test -f 'tapsets.cxx' || echo '$(srcdir)/'`tapsets.cxx
systemtap-4.4/Makefile.in-1267-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-tapsets.Tpo $(DEPDIR)/stap-tapsets.Po
##############################################
systemtap-4.4/Makefile.in-1269-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1270:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-tapsets.o `test -f 'tapsets.cxx' || echo '$(srcdir)/'`tapsets.cxx
systemtap-4.4/Makefile.in-1271-
systemtap-4.4/Makefile.in-1272-stap-tapsets.obj: tapsets.cxx
systemtap-4.4/Makefile.in:1273:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-tapsets.obj -MD -MP -MF $(DEPDIR)/stap-tapsets.Tpo -c -o stap-tapsets.obj `if test -f 'tapsets.cxx'; then $(CYGPATH_W) 'tapsets.cxx'; else $(CYGPATH_W) '$(srcdir)/tapsets.cxx'; fi`
systemtap-4.4/Makefile.in-1274-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-tapsets.Tpo $(DEPDIR)/stap-tapsets.Po
##############################################
systemtap-4.4/Makefile.in-1276-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1277:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-tapsets.obj `if test -f 'tapsets.cxx'; then $(CYGPATH_W) 'tapsets.cxx'; else $(CYGPATH_W) '$(srcdir)/tapsets.cxx'; fi`
systemtap-4.4/Makefile.in-1278-
systemtap-4.4/Makefile.in-1279-stap-buildrun.o: buildrun.cxx
systemtap-4.4/Makefile.in:1280:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-buildrun.o -MD -MP -MF $(DEPDIR)/stap-buildrun.Tpo -c -o stap-buildrun.o `test -f 'buildrun.cxx' || echo '$(srcdir)/'`buildrun.cxx
systemtap-4.4/Makefile.in-1281-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-buildrun.Tpo $(DEPDIR)/stap-buildrun.Po
##############################################
systemtap-4.4/Makefile.in-1283-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1284:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-buildrun.o `test -f 'buildrun.cxx' || echo '$(srcdir)/'`buildrun.cxx
systemtap-4.4/Makefile.in-1285-
systemtap-4.4/Makefile.in-1286-stap-buildrun.obj: buildrun.cxx
systemtap-4.4/Makefile.in:1287:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-buildrun.obj -MD -MP -MF $(DEPDIR)/stap-buildrun.Tpo -c -o stap-buildrun.obj `if test -f 'buildrun.cxx'; then $(CYGPATH_W) 'buildrun.cxx'; else $(CYGPATH_W) '$(srcdir)/buildrun.cxx'; fi`
systemtap-4.4/Makefile.in-1288-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-buildrun.Tpo $(DEPDIR)/stap-buildrun.Po
##############################################
systemtap-4.4/Makefile.in-1290-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1291:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-buildrun.obj `if test -f 'buildrun.cxx'; then $(CYGPATH_W) 'buildrun.cxx'; else $(CYGPATH_W) '$(srcdir)/buildrun.cxx'; fi`
systemtap-4.4/Makefile.in-1292-
systemtap-4.4/Makefile.in-1293-stap-loc2stap.o: loc2stap.cxx
systemtap-4.4/Makefile.in:1294:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-loc2stap.o -MD -MP -MF $(DEPDIR)/stap-loc2stap.Tpo -c -o stap-loc2stap.o `test -f 'loc2stap.cxx' || echo '$(srcdir)/'`loc2stap.cxx
systemtap-4.4/Makefile.in-1295-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-loc2stap.Tpo $(DEPDIR)/stap-loc2stap.Po
##############################################
systemtap-4.4/Makefile.in-1297-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1298:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-loc2stap.o `test -f 'loc2stap.cxx' || echo '$(srcdir)/'`loc2stap.cxx
systemtap-4.4/Makefile.in-1299-
systemtap-4.4/Makefile.in-1300-stap-loc2stap.obj: loc2stap.cxx
systemtap-4.4/Makefile.in:1301:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-loc2stap.obj -MD -MP -MF $(DEPDIR)/stap-loc2stap.Tpo -c -o stap-loc2stap.obj `if test -f 'loc2stap.cxx'; then $(CYGPATH_W) 'loc2stap.cxx'; else $(CYGPATH_W) '$(srcdir)/loc2stap.cxx'; fi`
systemtap-4.4/Makefile.in-1302-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-loc2stap.Tpo $(DEPDIR)/stap-loc2stap.Po
##############################################
systemtap-4.4/Makefile.in-1304-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1305:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-loc2stap.obj `if test -f 'loc2stap.cxx'; then $(CYGPATH_W) 'loc2stap.cxx'; else $(CYGPATH_W) '$(srcdir)/loc2stap.cxx'; fi`
systemtap-4.4/Makefile.in-1306-
systemtap-4.4/Makefile.in-1307-stap-hash.o: hash.cxx
systemtap-4.4/Makefile.in:1308:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-hash.o -MD -MP -MF $(DEPDIR)/stap-hash.Tpo -c -o stap-hash.o `test -f 'hash.cxx' || echo '$(srcdir)/'`hash.cxx
systemtap-4.4/Makefile.in-1309-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-hash.Tpo $(DEPDIR)/stap-hash.Po
##############################################
systemtap-4.4/Makefile.in-1311-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1312:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-hash.o `test -f 'hash.cxx' || echo '$(srcdir)/'`hash.cxx
systemtap-4.4/Makefile.in-1313-
systemtap-4.4/Makefile.in-1314-stap-hash.obj: hash.cxx
systemtap-4.4/Makefile.in:1315:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-hash.obj -MD -MP -MF $(DEPDIR)/stap-hash.Tpo -c -o stap-hash.obj `if test -f 'hash.cxx'; then $(CYGPATH_W) 'hash.cxx'; else $(CYGPATH_W) '$(srcdir)/hash.cxx'; fi`
systemtap-4.4/Makefile.in-1316-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-hash.Tpo $(DEPDIR)/stap-hash.Po
##############################################
systemtap-4.4/Makefile.in-1318-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1319:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-hash.obj `if test -f 'hash.cxx'; then $(CYGPATH_W) 'hash.cxx'; else $(CYGPATH_W) '$(srcdir)/hash.cxx'; fi`
systemtap-4.4/Makefile.in-1320-
systemtap-4.4/Makefile.in-1321-stap-cache.o: cache.cxx
systemtap-4.4/Makefile.in:1322:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-cache.o -MD -MP -MF $(DEPDIR)/stap-cache.Tpo -c -o stap-cache.o `test -f 'cache.cxx' || echo '$(srcdir)/'`cache.cxx
systemtap-4.4/Makefile.in-1323-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-cache.Tpo $(DEPDIR)/stap-cache.Po
##############################################
systemtap-4.4/Makefile.in-1325-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1326:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-cache.o `test -f 'cache.cxx' || echo '$(srcdir)/'`cache.cxx
systemtap-4.4/Makefile.in-1327-
systemtap-4.4/Makefile.in-1328-stap-cache.obj: cache.cxx
systemtap-4.4/Makefile.in:1329:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-cache.obj -MD -MP -MF $(DEPDIR)/stap-cache.Tpo -c -o stap-cache.obj `if test -f 'cache.cxx'; then $(CYGPATH_W) 'cache.cxx'; else $(CYGPATH_W) '$(srcdir)/cache.cxx'; fi`
systemtap-4.4/Makefile.in-1330-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-cache.Tpo $(DEPDIR)/stap-cache.Po
##############################################
systemtap-4.4/Makefile.in-1332-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1333:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-cache.obj `if test -f 'cache.cxx'; then $(CYGPATH_W) 'cache.cxx'; else $(CYGPATH_W) '$(srcdir)/cache.cxx'; fi`
systemtap-4.4/Makefile.in-1334-
systemtap-4.4/Makefile.in-1335-stap-util.o: util.cxx
systemtap-4.4/Makefile.in:1336:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-util.o -MD -MP -MF $(DEPDIR)/stap-util.Tpo -c -o stap-util.o `test -f 'util.cxx' || echo '$(srcdir)/'`util.cxx
systemtap-4.4/Makefile.in-1337-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-util.Tpo $(DEPDIR)/stap-util.Po
##############################################
systemtap-4.4/Makefile.in-1339-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1340:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-util.o `test -f 'util.cxx' || echo '$(srcdir)/'`util.cxx
systemtap-4.4/Makefile.in-1341-
systemtap-4.4/Makefile.in-1342-stap-util.obj: util.cxx
systemtap-4.4/Makefile.in:1343:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-util.obj -MD -MP -MF $(DEPDIR)/stap-util.Tpo -c -o stap-util.obj `if test -f 'util.cxx'; then $(CYGPATH_W) 'util.cxx'; else $(CYGPATH_W) '$(srcdir)/util.cxx'; fi`
systemtap-4.4/Makefile.in-1344-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-util.Tpo $(DEPDIR)/stap-util.Po
##############################################
systemtap-4.4/Makefile.in-1346-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1347:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-util.obj `if test -f 'util.cxx'; then $(CYGPATH_W) 'util.cxx'; else $(CYGPATH_W) '$(srcdir)/util.cxx'; fi`
systemtap-4.4/Makefile.in-1348-
systemtap-4.4/Makefile.in-1349-stap-coveragedb.o: coveragedb.cxx
systemtap-4.4/Makefile.in:1350:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-coveragedb.o -MD -MP -MF $(DEPDIR)/stap-coveragedb.Tpo -c -o stap-coveragedb.o `test -f 'coveragedb.cxx' || echo '$(srcdir)/'`coveragedb.cxx
systemtap-4.4/Makefile.in-1351-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-coveragedb.Tpo $(DEPDIR)/stap-coveragedb.Po
##############################################
systemtap-4.4/Makefile.in-1353-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1354:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-coveragedb.o `test -f 'coveragedb.cxx' || echo '$(srcdir)/'`coveragedb.cxx
systemtap-4.4/Makefile.in-1355-
systemtap-4.4/Makefile.in-1356-stap-coveragedb.obj: coveragedb.cxx
systemtap-4.4/Makefile.in:1357:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-coveragedb.obj -MD -MP -MF $(DEPDIR)/stap-coveragedb.Tpo -c -o stap-coveragedb.obj `if test -f 'coveragedb.cxx'; then $(CYGPATH_W) 'coveragedb.cxx'; else $(CYGPATH_W) '$(srcdir)/coveragedb.cxx'; fi`
systemtap-4.4/Makefile.in-1358-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-coveragedb.Tpo $(DEPDIR)/stap-coveragedb.Po
##############################################
systemtap-4.4/Makefile.in-1360-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1361:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-coveragedb.obj `if test -f 'coveragedb.cxx'; then $(CYGPATH_W) 'coveragedb.cxx'; else $(CYGPATH_W) '$(srcdir)/coveragedb.cxx'; fi`
systemtap-4.4/Makefile.in-1362-
systemtap-4.4/Makefile.in-1363-stap-dwarf_wrappers.o: dwarf_wrappers.cxx
systemtap-4.4/Makefile.in:1364:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-dwarf_wrappers.o -MD -MP -MF $(DEPDIR)/stap-dwarf_wrappers.Tpo -c -o stap-dwarf_wrappers.o `test -f 'dwarf_wrappers.cxx' || echo '$(srcdir)/'`dwarf_wrappers.cxx
systemtap-4.4/Makefile.in-1365-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-dwarf_wrappers.Tpo $(DEPDIR)/stap-dwarf_wrappers.Po
##############################################
systemtap-4.4/Makefile.in-1367-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1368:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-dwarf_wrappers.o `test -f 'dwarf_wrappers.cxx' || echo '$(srcdir)/'`dwarf_wrappers.cxx
systemtap-4.4/Makefile.in-1369-
systemtap-4.4/Makefile.in-1370-stap-dwarf_wrappers.obj: dwarf_wrappers.cxx
systemtap-4.4/Makefile.in:1371:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-dwarf_wrappers.obj -MD -MP -MF $(DEPDIR)/stap-dwarf_wrappers.Tpo -c -o stap-dwarf_wrappers.obj `if test -f 'dwarf_wrappers.cxx'; then $(CYGPATH_W) 'dwarf_wrappers.cxx'; else $(CYGPATH_W) '$(srcdir)/dwarf_wrappers.cxx'; fi`
systemtap-4.4/Makefile.in-1372-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-dwarf_wrappers.Tpo $(DEPDIR)/stap-dwarf_wrappers.Po
##############################################
systemtap-4.4/Makefile.in-1374-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1375:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-dwarf_wrappers.obj `if test -f 'dwarf_wrappers.cxx'; then $(CYGPATH_W) 'dwarf_wrappers.cxx'; else $(CYGPATH_W) '$(srcdir)/dwarf_wrappers.cxx'; fi`
systemtap-4.4/Makefile.in-1376-
systemtap-4.4/Makefile.in-1377-stap-tapset-been.o: tapset-been.cxx
systemtap-4.4/Makefile.in:1378:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-tapset-been.o -MD -MP -MF $(DEPDIR)/stap-tapset-been.Tpo -c -o stap-tapset-been.o `test -f 'tapset-been.cxx' || echo '$(srcdir)/'`tapset-been.cxx
systemtap-4.4/Makefile.in-1379-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-tapset-been.Tpo $(DEPDIR)/stap-tapset-been.Po
##############################################
systemtap-4.4/Makefile.in-1381-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1382:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-tapset-been.o `test -f 'tapset-been.cxx' || echo '$(srcdir)/'`tapset-been.cxx
systemtap-4.4/Makefile.in-1383-
systemtap-4.4/Makefile.in-1384-stap-tapset-been.obj: tapset-been.cxx
systemtap-4.4/Makefile.in:1385:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-tapset-been.obj -MD -MP -MF $(DEPDIR)/stap-tapset-been.Tpo -c -o stap-tapset-been.obj `if test -f 'tapset-been.cxx'; then $(CYGPATH_W) 'tapset-been.cxx'; else $(CYGPATH_W) '$(srcdir)/tapset-been.cxx'; fi`
systemtap-4.4/Makefile.in-1386-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-tapset-been.Tpo $(DEPDIR)/stap-tapset-been.Po
##############################################
systemtap-4.4/Makefile.in-1388-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1389:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-tapset-been.obj `if test -f 'tapset-been.cxx'; then $(CYGPATH_W) 'tapset-been.cxx'; else $(CYGPATH_W) '$(srcdir)/tapset-been.cxx'; fi`
systemtap-4.4/Makefile.in-1390-
systemtap-4.4/Makefile.in-1391-stap-tapset-procfs.o: tapset-procfs.cxx
systemtap-4.4/Makefile.in:1392:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-tapset-procfs.o -MD -MP -MF $(DEPDIR)/stap-tapset-procfs.Tpo -c -o stap-tapset-procfs.o `test -f 'tapset-procfs.cxx' || echo '$(srcdir)/'`tapset-procfs.cxx
systemtap-4.4/Makefile.in-1393-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-tapset-procfs.Tpo $(DEPDIR)/stap-tapset-procfs.Po
##############################################
systemtap-4.4/Makefile.in-1395-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1396:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-tapset-procfs.o `test -f 'tapset-procfs.cxx' || echo '$(srcdir)/'`tapset-procfs.cxx
systemtap-4.4/Makefile.in-1397-
systemtap-4.4/Makefile.in-1398-stap-tapset-procfs.obj: tapset-procfs.cxx
systemtap-4.4/Makefile.in:1399:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-tapset-procfs.obj -MD -MP -MF $(DEPDIR)/stap-tapset-procfs.Tpo -c -o stap-tapset-procfs.obj `if test -f 'tapset-procfs.cxx'; then $(CYGPATH_W) 'tapset-procfs.cxx'; else $(CYGPATH_W) '$(srcdir)/tapset-procfs.cxx'; fi`
systemtap-4.4/Makefile.in-1400-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-tapset-procfs.Tpo $(DEPDIR)/stap-tapset-procfs.Po
##############################################
systemtap-4.4/Makefile.in-1402-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1403:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-tapset-procfs.obj `if test -f 'tapset-procfs.cxx'; then $(CYGPATH_W) 'tapset-procfs.cxx'; else $(CYGPATH_W) '$(srcdir)/tapset-procfs.cxx'; fi`
systemtap-4.4/Makefile.in-1404-
systemtap-4.4/Makefile.in-1405-stap-tapset-timers.o: tapset-timers.cxx
systemtap-4.4/Makefile.in:1406:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-tapset-timers.o -MD -MP -MF $(DEPDIR)/stap-tapset-timers.Tpo -c -o stap-tapset-timers.o `test -f 'tapset-timers.cxx' || echo '$(srcdir)/'`tapset-timers.cxx
systemtap-4.4/Makefile.in-1407-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-tapset-timers.Tpo $(DEPDIR)/stap-tapset-timers.Po
##############################################
systemtap-4.4/Makefile.in-1409-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1410:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-tapset-timers.o `test -f 'tapset-timers.cxx' || echo '$(srcdir)/'`tapset-timers.cxx
systemtap-4.4/Makefile.in-1411-
systemtap-4.4/Makefile.in-1412-stap-tapset-timers.obj: tapset-timers.cxx
systemtap-4.4/Makefile.in:1413:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-tapset-timers.obj -MD -MP -MF $(DEPDIR)/stap-tapset-timers.Tpo -c -o stap-tapset-timers.obj `if test -f 'tapset-timers.cxx'; then $(CYGPATH_W) 'tapset-timers.cxx'; else $(CYGPATH_W) '$(srcdir)/tapset-timers.cxx'; fi`
systemtap-4.4/Makefile.in-1414-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-tapset-timers.Tpo $(DEPDIR)/stap-tapset-timers.Po
##############################################
systemtap-4.4/Makefile.in-1416-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1417:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-tapset-timers.obj `if test -f 'tapset-timers.cxx'; then $(CYGPATH_W) 'tapset-timers.cxx'; else $(CYGPATH_W) '$(srcdir)/tapset-timers.cxx'; fi`
systemtap-4.4/Makefile.in-1418-
systemtap-4.4/Makefile.in-1419-stap-tapset-netfilter.o: tapset-netfilter.cxx
systemtap-4.4/Makefile.in:1420:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-tapset-netfilter.o -MD -MP -MF $(DEPDIR)/stap-tapset-netfilter.Tpo -c -o stap-tapset-netfilter.o `test -f 'tapset-netfilter.cxx' || echo '$(srcdir)/'`tapset-netfilter.cxx
systemtap-4.4/Makefile.in-1421-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-tapset-netfilter.Tpo $(DEPDIR)/stap-tapset-netfilter.Po
##############################################
systemtap-4.4/Makefile.in-1423-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1424:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-tapset-netfilter.o `test -f 'tapset-netfilter.cxx' || echo '$(srcdir)/'`tapset-netfilter.cxx
systemtap-4.4/Makefile.in-1425-
systemtap-4.4/Makefile.in-1426-stap-tapset-netfilter.obj: tapset-netfilter.cxx
systemtap-4.4/Makefile.in:1427:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-tapset-netfilter.obj -MD -MP -MF $(DEPDIR)/stap-tapset-netfilter.Tpo -c -o stap-tapset-netfilter.obj `if test -f 'tapset-netfilter.cxx'; then $(CYGPATH_W) 'tapset-netfilter.cxx'; else $(CYGPATH_W) '$(srcdir)/tapset-netfilter.cxx'; fi`
systemtap-4.4/Makefile.in-1428-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-tapset-netfilter.Tpo $(DEPDIR)/stap-tapset-netfilter.Po
##############################################
systemtap-4.4/Makefile.in-1430-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1431:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-tapset-netfilter.obj `if test -f 'tapset-netfilter.cxx'; then $(CYGPATH_W) 'tapset-netfilter.cxx'; else $(CYGPATH_W) '$(srcdir)/tapset-netfilter.cxx'; fi`
systemtap-4.4/Makefile.in-1432-
systemtap-4.4/Makefile.in-1433-stap-tapset-perfmon.o: tapset-perfmon.cxx
systemtap-4.4/Makefile.in:1434:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-tapset-perfmon.o -MD -MP -MF $(DEPDIR)/stap-tapset-perfmon.Tpo -c -o stap-tapset-perfmon.o `test -f 'tapset-perfmon.cxx' || echo '$(srcdir)/'`tapset-perfmon.cxx
systemtap-4.4/Makefile.in-1435-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-tapset-perfmon.Tpo $(DEPDIR)/stap-tapset-perfmon.Po
##############################################
systemtap-4.4/Makefile.in-1437-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1438:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-tapset-perfmon.o `test -f 'tapset-perfmon.cxx' || echo '$(srcdir)/'`tapset-perfmon.cxx
systemtap-4.4/Makefile.in-1439-
systemtap-4.4/Makefile.in-1440-stap-tapset-perfmon.obj: tapset-perfmon.cxx
systemtap-4.4/Makefile.in:1441:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-tapset-perfmon.obj -MD -MP -MF $(DEPDIR)/stap-tapset-perfmon.Tpo -c -o stap-tapset-perfmon.obj `if test -f 'tapset-perfmon.cxx'; then $(CYGPATH_W) 'tapset-perfmon.cxx'; else $(CYGPATH_W) '$(srcdir)/tapset-perfmon.cxx'; fi`
systemtap-4.4/Makefile.in-1442-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-tapset-perfmon.Tpo $(DEPDIR)/stap-tapset-perfmon.Po
##############################################
systemtap-4.4/Makefile.in-1444-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1445:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-tapset-perfmon.obj `if test -f 'tapset-perfmon.cxx'; then $(CYGPATH_W) 'tapset-perfmon.cxx'; else $(CYGPATH_W) '$(srcdir)/tapset-perfmon.cxx'; fi`
systemtap-4.4/Makefile.in-1446-
systemtap-4.4/Makefile.in-1447-stap-tapset-mark.o: tapset-mark.cxx
systemtap-4.4/Makefile.in:1448:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-tapset-mark.o -MD -MP -MF $(DEPDIR)/stap-tapset-mark.Tpo -c -o stap-tapset-mark.o `test -f 'tapset-mark.cxx' || echo '$(srcdir)/'`tapset-mark.cxx
systemtap-4.4/Makefile.in-1449-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-tapset-mark.Tpo $(DEPDIR)/stap-tapset-mark.Po
##############################################
systemtap-4.4/Makefile.in-1451-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1452:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-tapset-mark.o `test -f 'tapset-mark.cxx' || echo '$(srcdir)/'`tapset-mark.cxx
systemtap-4.4/Makefile.in-1453-
systemtap-4.4/Makefile.in-1454-stap-tapset-mark.obj: tapset-mark.cxx
systemtap-4.4/Makefile.in:1455:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-tapset-mark.obj -MD -MP -MF $(DEPDIR)/stap-tapset-mark.Tpo -c -o stap-tapset-mark.obj `if test -f 'tapset-mark.cxx'; then $(CYGPATH_W) 'tapset-mark.cxx'; else $(CYGPATH_W) '$(srcdir)/tapset-mark.cxx'; fi`
systemtap-4.4/Makefile.in-1456-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-tapset-mark.Tpo $(DEPDIR)/stap-tapset-mark.Po
##############################################
systemtap-4.4/Makefile.in-1458-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1459:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-tapset-mark.obj `if test -f 'tapset-mark.cxx'; then $(CYGPATH_W) 'tapset-mark.cxx'; else $(CYGPATH_W) '$(srcdir)/tapset-mark.cxx'; fi`
systemtap-4.4/Makefile.in-1460-
systemtap-4.4/Makefile.in-1461-stap-tapset-itrace.o: tapset-itrace.cxx
systemtap-4.4/Makefile.in:1462:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-tapset-itrace.o -MD -MP -MF $(DEPDIR)/stap-tapset-itrace.Tpo -c -o stap-tapset-itrace.o `test -f 'tapset-itrace.cxx' || echo '$(srcdir)/'`tapset-itrace.cxx
systemtap-4.4/Makefile.in-1463-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-tapset-itrace.Tpo $(DEPDIR)/stap-tapset-itrace.Po
##############################################
systemtap-4.4/Makefile.in-1465-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1466:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-tapset-itrace.o `test -f 'tapset-itrace.cxx' || echo '$(srcdir)/'`tapset-itrace.cxx
systemtap-4.4/Makefile.in-1467-
systemtap-4.4/Makefile.in-1468-stap-tapset-itrace.obj: tapset-itrace.cxx
systemtap-4.4/Makefile.in:1469:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-tapset-itrace.obj -MD -MP -MF $(DEPDIR)/stap-tapset-itrace.Tpo -c -o stap-tapset-itrace.obj `if test -f 'tapset-itrace.cxx'; then $(CYGPATH_W) 'tapset-itrace.cxx'; else $(CYGPATH_W) '$(srcdir)/tapset-itrace.cxx'; fi`
systemtap-4.4/Makefile.in-1470-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-tapset-itrace.Tpo $(DEPDIR)/stap-tapset-itrace.Po
##############################################
systemtap-4.4/Makefile.in-1472-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1473:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-tapset-itrace.obj `if test -f 'tapset-itrace.cxx'; then $(CYGPATH_W) 'tapset-itrace.cxx'; else $(CYGPATH_W) '$(srcdir)/tapset-itrace.cxx'; fi`
systemtap-4.4/Makefile.in-1474-
systemtap-4.4/Makefile.in-1475-stap-tapset-utrace.o: tapset-utrace.cxx
systemtap-4.4/Makefile.in:1476:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-tapset-utrace.o -MD -MP -MF $(DEPDIR)/stap-tapset-utrace.Tpo -c -o stap-tapset-utrace.o `test -f 'tapset-utrace.cxx' || echo '$(srcdir)/'`tapset-utrace.cxx
systemtap-4.4/Makefile.in-1477-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-tapset-utrace.Tpo $(DEPDIR)/stap-tapset-utrace.Po
##############################################
systemtap-4.4/Makefile.in-1479-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1480:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-tapset-utrace.o `test -f 'tapset-utrace.cxx' || echo '$(srcdir)/'`tapset-utrace.cxx
systemtap-4.4/Makefile.in-1481-
systemtap-4.4/Makefile.in-1482-stap-tapset-utrace.obj: tapset-utrace.cxx
systemtap-4.4/Makefile.in:1483:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-tapset-utrace.obj -MD -MP -MF $(DEPDIR)/stap-tapset-utrace.Tpo -c -o stap-tapset-utrace.obj `if test -f 'tapset-utrace.cxx'; then $(CYGPATH_W) 'tapset-utrace.cxx'; else $(CYGPATH_W) '$(srcdir)/tapset-utrace.cxx'; fi`
systemtap-4.4/Makefile.in-1484-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-tapset-utrace.Tpo $(DEPDIR)/stap-tapset-utrace.Po
##############################################
systemtap-4.4/Makefile.in-1486-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1487:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-tapset-utrace.obj `if test -f 'tapset-utrace.cxx'; then $(CYGPATH_W) 'tapset-utrace.cxx'; else $(CYGPATH_W) '$(srcdir)/tapset-utrace.cxx'; fi`
systemtap-4.4/Makefile.in-1488-
systemtap-4.4/Makefile.in-1489-stap-task_finder.o: task_finder.cxx
systemtap-4.4/Makefile.in:1490:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-task_finder.o -MD -MP -MF $(DEPDIR)/stap-task_finder.Tpo -c -o stap-task_finder.o `test -f 'task_finder.cxx' || echo '$(srcdir)/'`task_finder.cxx
systemtap-4.4/Makefile.in-1491-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-task_finder.Tpo $(DEPDIR)/stap-task_finder.Po
##############################################
systemtap-4.4/Makefile.in-1493-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1494:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-task_finder.o `test -f 'task_finder.cxx' || echo '$(srcdir)/'`task_finder.cxx
systemtap-4.4/Makefile.in-1495-
systemtap-4.4/Makefile.in-1496-stap-task_finder.obj: task_finder.cxx
systemtap-4.4/Makefile.in:1497:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-task_finder.obj -MD -MP -MF $(DEPDIR)/stap-task_finder.Tpo -c -o stap-task_finder.obj `if test -f 'task_finder.cxx'; then $(CYGPATH_W) 'task_finder.cxx'; else $(CYGPATH_W) '$(srcdir)/task_finder.cxx'; fi`
systemtap-4.4/Makefile.in-1498-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-task_finder.Tpo $(DEPDIR)/stap-task_finder.Po
##############################################
systemtap-4.4/Makefile.in-1500-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1501:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-task_finder.obj `if test -f 'task_finder.cxx'; then $(CYGPATH_W) 'task_finder.cxx'; else $(CYGPATH_W) '$(srcdir)/task_finder.cxx'; fi`
systemtap-4.4/Makefile.in-1502-
systemtap-4.4/Makefile.in-1503-stap-dwflpp.o: dwflpp.cxx
systemtap-4.4/Makefile.in:1504:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-dwflpp.o -MD -MP -MF $(DEPDIR)/stap-dwflpp.Tpo -c -o stap-dwflpp.o `test -f 'dwflpp.cxx' || echo '$(srcdir)/'`dwflpp.cxx
systemtap-4.4/Makefile.in-1505-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-dwflpp.Tpo $(DEPDIR)/stap-dwflpp.Po
##############################################
systemtap-4.4/Makefile.in-1507-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1508:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-dwflpp.o `test -f 'dwflpp.cxx' || echo '$(srcdir)/'`dwflpp.cxx
systemtap-4.4/Makefile.in-1509-
systemtap-4.4/Makefile.in-1510-stap-dwflpp.obj: dwflpp.cxx
systemtap-4.4/Makefile.in:1511:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-dwflpp.obj -MD -MP -MF $(DEPDIR)/stap-dwflpp.Tpo -c -o stap-dwflpp.obj `if test -f 'dwflpp.cxx'; then $(CYGPATH_W) 'dwflpp.cxx'; else $(CYGPATH_W) '$(srcdir)/dwflpp.cxx'; fi`
systemtap-4.4/Makefile.in-1512-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-dwflpp.Tpo $(DEPDIR)/stap-dwflpp.Po
##############################################
systemtap-4.4/Makefile.in-1514-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1515:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-dwflpp.obj `if test -f 'dwflpp.cxx'; then $(CYGPATH_W) 'dwflpp.cxx'; else $(CYGPATH_W) '$(srcdir)/dwflpp.cxx'; fi`
systemtap-4.4/Makefile.in-1516-
systemtap-4.4/Makefile.in-1517-stap-rpm_finder.o: rpm_finder.cxx
systemtap-4.4/Makefile.in:1518:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-rpm_finder.o -MD -MP -MF $(DEPDIR)/stap-rpm_finder.Tpo -c -o stap-rpm_finder.o `test -f 'rpm_finder.cxx' || echo '$(srcdir)/'`rpm_finder.cxx
systemtap-4.4/Makefile.in-1519-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-rpm_finder.Tpo $(DEPDIR)/stap-rpm_finder.Po
##############################################
systemtap-4.4/Makefile.in-1521-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1522:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-rpm_finder.o `test -f 'rpm_finder.cxx' || echo '$(srcdir)/'`rpm_finder.cxx
systemtap-4.4/Makefile.in-1523-
systemtap-4.4/Makefile.in-1524-stap-rpm_finder.obj: rpm_finder.cxx
systemtap-4.4/Makefile.in:1525:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-rpm_finder.obj -MD -MP -MF $(DEPDIR)/stap-rpm_finder.Tpo -c -o stap-rpm_finder.obj `if test -f 'rpm_finder.cxx'; then $(CYGPATH_W) 'rpm_finder.cxx'; else $(CYGPATH_W) '$(srcdir)/rpm_finder.cxx'; fi`
systemtap-4.4/Makefile.in-1526-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-rpm_finder.Tpo $(DEPDIR)/stap-rpm_finder.Po
##############################################
systemtap-4.4/Makefile.in-1528-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1529:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-rpm_finder.obj `if test -f 'rpm_finder.cxx'; then $(CYGPATH_W) 'rpm_finder.cxx'; else $(CYGPATH_W) '$(srcdir)/rpm_finder.cxx'; fi`
systemtap-4.4/Makefile.in-1530-
systemtap-4.4/Makefile.in-1531-stap-setupdwfl.o: setupdwfl.cxx
systemtap-4.4/Makefile.in:1532:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-setupdwfl.o -MD -MP -MF $(DEPDIR)/stap-setupdwfl.Tpo -c -o stap-setupdwfl.o `test -f 'setupdwfl.cxx' || echo '$(srcdir)/'`setupdwfl.cxx
systemtap-4.4/Makefile.in-1533-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-setupdwfl.Tpo $(DEPDIR)/stap-setupdwfl.Po
##############################################
systemtap-4.4/Makefile.in-1535-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1536:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-setupdwfl.o `test -f 'setupdwfl.cxx' || echo '$(srcdir)/'`setupdwfl.cxx
systemtap-4.4/Makefile.in-1537-
systemtap-4.4/Makefile.in-1538-stap-setupdwfl.obj: setupdwfl.cxx
systemtap-4.4/Makefile.in:1539:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-setupdwfl.obj -MD -MP -MF $(DEPDIR)/stap-setupdwfl.Tpo -c -o stap-setupdwfl.obj `if test -f 'setupdwfl.cxx'; then $(CYGPATH_W) 'setupdwfl.cxx'; else $(CYGPATH_W) '$(srcdir)/setupdwfl.cxx'; fi`
systemtap-4.4/Makefile.in-1540-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-setupdwfl.Tpo $(DEPDIR)/stap-setupdwfl.Po
##############################################
systemtap-4.4/Makefile.in-1542-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1543:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-setupdwfl.obj `if test -f 'setupdwfl.cxx'; then $(CYGPATH_W) 'setupdwfl.cxx'; else $(CYGPATH_W) '$(srcdir)/setupdwfl.cxx'; fi`
systemtap-4.4/Makefile.in-1544-
systemtap-4.4/Makefile.in-1545-stap-remote.o: remote.cxx
systemtap-4.4/Makefile.in:1546:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-remote.o -MD -MP -MF $(DEPDIR)/stap-remote.Tpo -c -o stap-remote.o `test -f 'remote.cxx' || echo '$(srcdir)/'`remote.cxx
systemtap-4.4/Makefile.in-1547-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-remote.Tpo $(DEPDIR)/stap-remote.Po
##############################################
systemtap-4.4/Makefile.in-1549-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1550:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-remote.o `test -f 'remote.cxx' || echo '$(srcdir)/'`remote.cxx
systemtap-4.4/Makefile.in-1551-
systemtap-4.4/Makefile.in-1552-stap-remote.obj: remote.cxx
systemtap-4.4/Makefile.in:1553:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-remote.obj -MD -MP -MF $(DEPDIR)/stap-remote.Tpo -c -o stap-remote.obj `if test -f 'remote.cxx'; then $(CYGPATH_W) 'remote.cxx'; else $(CYGPATH_W) '$(srcdir)/remote.cxx'; fi`
systemtap-4.4/Makefile.in-1554-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-remote.Tpo $(DEPDIR)/stap-remote.Po
##############################################
systemtap-4.4/Makefile.in-1556-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1557:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-remote.obj `if test -f 'remote.cxx'; then $(CYGPATH_W) 'remote.cxx'; else $(CYGPATH_W) '$(srcdir)/remote.cxx'; fi`
systemtap-4.4/Makefile.in-1558-
systemtap-4.4/Makefile.in-1559-stap-privilege.o: privilege.cxx
systemtap-4.4/Makefile.in:1560:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-privilege.o -MD -MP -MF $(DEPDIR)/stap-privilege.Tpo -c -o stap-privilege.o `test -f 'privilege.cxx' || echo '$(srcdir)/'`privilege.cxx
systemtap-4.4/Makefile.in-1561-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-privilege.Tpo $(DEPDIR)/stap-privilege.Po
##############################################
systemtap-4.4/Makefile.in-1563-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1564:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-privilege.o `test -f 'privilege.cxx' || echo '$(srcdir)/'`privilege.cxx
systemtap-4.4/Makefile.in-1565-
systemtap-4.4/Makefile.in-1566-stap-privilege.obj: privilege.cxx
systemtap-4.4/Makefile.in:1567:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-privilege.obj -MD -MP -MF $(DEPDIR)/stap-privilege.Tpo -c -o stap-privilege.obj `if test -f 'privilege.cxx'; then $(CYGPATH_W) 'privilege.cxx'; else $(CYGPATH_W) '$(srcdir)/privilege.cxx'; fi`
systemtap-4.4/Makefile.in-1568-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-privilege.Tpo $(DEPDIR)/stap-privilege.Po
##############################################
systemtap-4.4/Makefile.in-1570-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1571:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-privilege.obj `if test -f 'privilege.cxx'; then $(CYGPATH_W) 'privilege.cxx'; else $(CYGPATH_W) '$(srcdir)/privilege.cxx'; fi`
systemtap-4.4/Makefile.in-1572-
systemtap-4.4/Makefile.in-1573-stap-cmdline.o: cmdline.cxx
systemtap-4.4/Makefile.in:1574:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-cmdline.o -MD -MP -MF $(DEPDIR)/stap-cmdline.Tpo -c -o stap-cmdline.o `test -f 'cmdline.cxx' || echo '$(srcdir)/'`cmdline.cxx
systemtap-4.4/Makefile.in-1575-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-cmdline.Tpo $(DEPDIR)/stap-cmdline.Po
##############################################
systemtap-4.4/Makefile.in-1577-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1578:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-cmdline.o `test -f 'cmdline.cxx' || echo '$(srcdir)/'`cmdline.cxx
systemtap-4.4/Makefile.in-1579-
systemtap-4.4/Makefile.in-1580-stap-cmdline.obj: cmdline.cxx
systemtap-4.4/Makefile.in:1581:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-cmdline.obj -MD -MP -MF $(DEPDIR)/stap-cmdline.Tpo -c -o stap-cmdline.obj `if test -f 'cmdline.cxx'; then $(CYGPATH_W) 'cmdline.cxx'; else $(CYGPATH_W) '$(srcdir)/cmdline.cxx'; fi`
systemtap-4.4/Makefile.in-1582-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-cmdline.Tpo $(DEPDIR)/stap-cmdline.Po
##############################################
systemtap-4.4/Makefile.in-1584-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1585:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-cmdline.obj `if test -f 'cmdline.cxx'; then $(CYGPATH_W) 'cmdline.cxx'; else $(CYGPATH_W) '$(srcdir)/cmdline.cxx'; fi`
systemtap-4.4/Makefile.in-1586-
systemtap-4.4/Makefile.in-1587-stap-tapset-dynprobe.o: tapset-dynprobe.cxx
systemtap-4.4/Makefile.in:1588:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-tapset-dynprobe.o -MD -MP -MF $(DEPDIR)/stap-tapset-dynprobe.Tpo -c -o stap-tapset-dynprobe.o `test -f 'tapset-dynprobe.cxx' || echo '$(srcdir)/'`tapset-dynprobe.cxx
systemtap-4.4/Makefile.in-1589-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-tapset-dynprobe.Tpo $(DEPDIR)/stap-tapset-dynprobe.Po
##############################################
systemtap-4.4/Makefile.in-1591-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1592:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-tapset-dynprobe.o `test -f 'tapset-dynprobe.cxx' || echo '$(srcdir)/'`tapset-dynprobe.cxx
systemtap-4.4/Makefile.in-1593-
systemtap-4.4/Makefile.in-1594-stap-tapset-dynprobe.obj: tapset-dynprobe.cxx
systemtap-4.4/Makefile.in:1595:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-tapset-dynprobe.obj -MD -MP -MF $(DEPDIR)/stap-tapset-dynprobe.Tpo -c -o stap-tapset-dynprobe.obj `if test -f 'tapset-dynprobe.cxx'; then $(CYGPATH_W) 'tapset-dynprobe.cxx'; else $(CYGPATH_W) '$(srcdir)/tapset-dynprobe.cxx'; fi`
systemtap-4.4/Makefile.in-1596-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-tapset-dynprobe.Tpo $(DEPDIR)/stap-tapset-dynprobe.Po
##############################################
systemtap-4.4/Makefile.in-1598-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1599:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-tapset-dynprobe.obj `if test -f 'tapset-dynprobe.cxx'; then $(CYGPATH_W) 'tapset-dynprobe.cxx'; else $(CYGPATH_W) '$(srcdir)/tapset-dynprobe.cxx'; fi`
systemtap-4.4/Makefile.in-1600-
systemtap-4.4/Makefile.in-1601-stap-tapset-method.o: tapset-method.cxx
systemtap-4.4/Makefile.in:1602:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-tapset-method.o -MD -MP -MF $(DEPDIR)/stap-tapset-method.Tpo -c -o stap-tapset-method.o `test -f 'tapset-method.cxx' || echo '$(srcdir)/'`tapset-method.cxx
systemtap-4.4/Makefile.in-1603-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-tapset-method.Tpo $(DEPDIR)/stap-tapset-method.Po
##############################################
systemtap-4.4/Makefile.in-1605-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1606:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-tapset-method.o `test -f 'tapset-method.cxx' || echo '$(srcdir)/'`tapset-method.cxx
systemtap-4.4/Makefile.in-1607-
systemtap-4.4/Makefile.in-1608-stap-tapset-method.obj: tapset-method.cxx
systemtap-4.4/Makefile.in:1609:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-tapset-method.obj -MD -MP -MF $(DEPDIR)/stap-tapset-method.Tpo -c -o stap-tapset-method.obj `if test -f 'tapset-method.cxx'; then $(CYGPATH_W) 'tapset-method.cxx'; else $(CYGPATH_W) '$(srcdir)/tapset-method.cxx'; fi`
systemtap-4.4/Makefile.in-1610-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-tapset-method.Tpo $(DEPDIR)/stap-tapset-method.Po
##############################################
systemtap-4.4/Makefile.in-1612-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1613:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-tapset-method.obj `if test -f 'tapset-method.cxx'; then $(CYGPATH_W) 'tapset-method.cxx'; else $(CYGPATH_W) '$(srcdir)/tapset-method.cxx'; fi`
systemtap-4.4/Makefile.in-1614-
systemtap-4.4/Makefile.in-1615-stap-translator-output.o: translator-output.cxx
systemtap-4.4/Makefile.in:1616:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-translator-output.o -MD -MP -MF $(DEPDIR)/stap-translator-output.Tpo -c -o stap-translator-output.o `test -f 'translator-output.cxx' || echo '$(srcdir)/'`translator-output.cxx
systemtap-4.4/Makefile.in-1617-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-translator-output.Tpo $(DEPDIR)/stap-translator-output.Po
##############################################
systemtap-4.4/Makefile.in-1619-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1620:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-translator-output.o `test -f 'translator-output.cxx' || echo '$(srcdir)/'`translator-output.cxx
systemtap-4.4/Makefile.in-1621-
systemtap-4.4/Makefile.in-1622-stap-translator-output.obj: translator-output.cxx
systemtap-4.4/Makefile.in:1623:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-translator-output.obj -MD -MP -MF $(DEPDIR)/stap-translator-output.Tpo -c -o stap-translator-output.obj `if test -f 'translator-output.cxx'; then $(CYGPATH_W) 'translator-output.cxx'; else $(CYGPATH_W) '$(srcdir)/translator-output.cxx'; fi`
systemtap-4.4/Makefile.in-1624-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-translator-output.Tpo $(DEPDIR)/stap-translator-output.Po
##############################################
systemtap-4.4/Makefile.in-1626-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1627:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-translator-output.obj `if test -f 'translator-output.cxx'; then $(CYGPATH_W) 'translator-output.cxx'; else $(CYGPATH_W) '$(srcdir)/translator-output.cxx'; fi`
systemtap-4.4/Makefile.in-1628-
systemtap-4.4/Makefile.in-1629-stap-stapregex.o: stapregex.cxx
systemtap-4.4/Makefile.in:1630:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-stapregex.o -MD -MP -MF $(DEPDIR)/stap-stapregex.Tpo -c -o stap-stapregex.o `test -f 'stapregex.cxx' || echo '$(srcdir)/'`stapregex.cxx
systemtap-4.4/Makefile.in-1631-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-stapregex.Tpo $(DEPDIR)/stap-stapregex.Po
##############################################
systemtap-4.4/Makefile.in-1633-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1634:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-stapregex.o `test -f 'stapregex.cxx' || echo '$(srcdir)/'`stapregex.cxx
systemtap-4.4/Makefile.in-1635-
systemtap-4.4/Makefile.in-1636-stap-stapregex.obj: stapregex.cxx
systemtap-4.4/Makefile.in:1637:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-stapregex.obj -MD -MP -MF $(DEPDIR)/stap-stapregex.Tpo -c -o stap-stapregex.obj `if test -f 'stapregex.cxx'; then $(CYGPATH_W) 'stapregex.cxx'; else $(CYGPATH_W) '$(srcdir)/stapregex.cxx'; fi`
systemtap-4.4/Makefile.in-1638-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-stapregex.Tpo $(DEPDIR)/stap-stapregex.Po
##############################################
systemtap-4.4/Makefile.in-1640-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1641:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-stapregex.obj `if test -f 'stapregex.cxx'; then $(CYGPATH_W) 'stapregex.cxx'; else $(CYGPATH_W) '$(srcdir)/stapregex.cxx'; fi`
systemtap-4.4/Makefile.in-1642-
systemtap-4.4/Makefile.in-1643-stap-stapregex-tree.o: stapregex-tree.cxx
systemtap-4.4/Makefile.in:1644:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-stapregex-tree.o -MD -MP -MF $(DEPDIR)/stap-stapregex-tree.Tpo -c -o stap-stapregex-tree.o `test -f 'stapregex-tree.cxx' || echo '$(srcdir)/'`stapregex-tree.cxx
systemtap-4.4/Makefile.in-1645-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-stapregex-tree.Tpo $(DEPDIR)/stap-stapregex-tree.Po
##############################################
systemtap-4.4/Makefile.in-1647-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1648:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-stapregex-tree.o `test -f 'stapregex-tree.cxx' || echo '$(srcdir)/'`stapregex-tree.cxx
systemtap-4.4/Makefile.in-1649-
systemtap-4.4/Makefile.in-1650-stap-stapregex-tree.obj: stapregex-tree.cxx
systemtap-4.4/Makefile.in:1651:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-stapregex-tree.obj -MD -MP -MF $(DEPDIR)/stap-stapregex-tree.Tpo -c -o stap-stapregex-tree.obj `if test -f 'stapregex-tree.cxx'; then $(CYGPATH_W) 'stapregex-tree.cxx'; else $(CYGPATH_W) '$(srcdir)/stapregex-tree.cxx'; fi`
systemtap-4.4/Makefile.in-1652-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-stapregex-tree.Tpo $(DEPDIR)/stap-stapregex-tree.Po
##############################################
systemtap-4.4/Makefile.in-1654-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1655:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-stapregex-tree.obj `if test -f 'stapregex-tree.cxx'; then $(CYGPATH_W) 'stapregex-tree.cxx'; else $(CYGPATH_W) '$(srcdir)/stapregex-tree.cxx'; fi`
systemtap-4.4/Makefile.in-1656-
systemtap-4.4/Makefile.in-1657-stap-stapregex-parse.o: stapregex-parse.cxx
systemtap-4.4/Makefile.in:1658:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-stapregex-parse.o -MD -MP -MF $(DEPDIR)/stap-stapregex-parse.Tpo -c -o stap-stapregex-parse.o `test -f 'stapregex-parse.cxx' || echo '$(srcdir)/'`stapregex-parse.cxx
systemtap-4.4/Makefile.in-1659-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-stapregex-parse.Tpo $(DEPDIR)/stap-stapregex-parse.Po
##############################################
systemtap-4.4/Makefile.in-1661-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1662:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-stapregex-parse.o `test -f 'stapregex-parse.cxx' || echo '$(srcdir)/'`stapregex-parse.cxx
systemtap-4.4/Makefile.in-1663-
systemtap-4.4/Makefile.in-1664-stap-stapregex-parse.obj: stapregex-parse.cxx
systemtap-4.4/Makefile.in:1665:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-stapregex-parse.obj -MD -MP -MF $(DEPDIR)/stap-stapregex-parse.Tpo -c -o stap-stapregex-parse.obj `if test -f 'stapregex-parse.cxx'; then $(CYGPATH_W) 'stapregex-parse.cxx'; else $(CYGPATH_W) '$(srcdir)/stapregex-parse.cxx'; fi`
systemtap-4.4/Makefile.in-1666-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-stapregex-parse.Tpo $(DEPDIR)/stap-stapregex-parse.Po
##############################################
systemtap-4.4/Makefile.in-1668-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1669:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-stapregex-parse.obj `if test -f 'stapregex-parse.cxx'; then $(CYGPATH_W) 'stapregex-parse.cxx'; else $(CYGPATH_W) '$(srcdir)/stapregex-parse.cxx'; fi`
systemtap-4.4/Makefile.in-1670-
systemtap-4.4/Makefile.in-1671-stap-stapregex-dfa.o: stapregex-dfa.cxx
systemtap-4.4/Makefile.in:1672:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-stapregex-dfa.o -MD -MP -MF $(DEPDIR)/stap-stapregex-dfa.Tpo -c -o stap-stapregex-dfa.o `test -f 'stapregex-dfa.cxx' || echo '$(srcdir)/'`stapregex-dfa.cxx
systemtap-4.4/Makefile.in-1673-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-stapregex-dfa.Tpo $(DEPDIR)/stap-stapregex-dfa.Po
##############################################
systemtap-4.4/Makefile.in-1675-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1676:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-stapregex-dfa.o `test -f 'stapregex-dfa.cxx' || echo '$(srcdir)/'`stapregex-dfa.cxx
systemtap-4.4/Makefile.in-1677-
systemtap-4.4/Makefile.in-1678-stap-stapregex-dfa.obj: stapregex-dfa.cxx
systemtap-4.4/Makefile.in:1679:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-stapregex-dfa.obj -MD -MP -MF $(DEPDIR)/stap-stapregex-dfa.Tpo -c -o stap-stapregex-dfa.obj `if test -f 'stapregex-dfa.cxx'; then $(CYGPATH_W) 'stapregex-dfa.cxx'; else $(CYGPATH_W) '$(srcdir)/stapregex-dfa.cxx'; fi`
systemtap-4.4/Makefile.in-1680-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-stapregex-dfa.Tpo $(DEPDIR)/stap-stapregex-dfa.Po
##############################################
systemtap-4.4/Makefile.in-1682-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1683:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-stapregex-dfa.obj `if test -f 'stapregex-dfa.cxx'; then $(CYGPATH_W) 'stapregex-dfa.cxx'; else $(CYGPATH_W) '$(srcdir)/stapregex-dfa.cxx'; fi`
systemtap-4.4/Makefile.in-1684-
systemtap-4.4/Makefile.in-1685-stap-stringtable.o: stringtable.cxx
systemtap-4.4/Makefile.in:1686:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-stringtable.o -MD -MP -MF $(DEPDIR)/stap-stringtable.Tpo -c -o stap-stringtable.o `test -f 'stringtable.cxx' || echo '$(srcdir)/'`stringtable.cxx
systemtap-4.4/Makefile.in-1687-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-stringtable.Tpo $(DEPDIR)/stap-stringtable.Po
##############################################
systemtap-4.4/Makefile.in-1689-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1690:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-stringtable.o `test -f 'stringtable.cxx' || echo '$(srcdir)/'`stringtable.cxx
systemtap-4.4/Makefile.in-1691-
systemtap-4.4/Makefile.in-1692-stap-stringtable.obj: stringtable.cxx
systemtap-4.4/Makefile.in:1693:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-stringtable.obj -MD -MP -MF $(DEPDIR)/stap-stringtable.Tpo -c -o stap-stringtable.obj `if test -f 'stringtable.cxx'; then $(CYGPATH_W) 'stringtable.cxx'; else $(CYGPATH_W) '$(srcdir)/stringtable.cxx'; fi`
systemtap-4.4/Makefile.in-1694-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-stringtable.Tpo $(DEPDIR)/stap-stringtable.Po
##############################################
systemtap-4.4/Makefile.in-1696-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1697:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-stringtable.obj `if test -f 'stringtable.cxx'; then $(CYGPATH_W) 'stringtable.cxx'; else $(CYGPATH_W) '$(srcdir)/stringtable.cxx'; fi`
systemtap-4.4/Makefile.in-1698-
systemtap-4.4/Makefile.in-1699-stap-tapset-python.o: tapset-python.cxx
systemtap-4.4/Makefile.in:1700:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-tapset-python.o -MD -MP -MF $(DEPDIR)/stap-tapset-python.Tpo -c -o stap-tapset-python.o `test -f 'tapset-python.cxx' || echo '$(srcdir)/'`tapset-python.cxx
systemtap-4.4/Makefile.in-1701-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-tapset-python.Tpo $(DEPDIR)/stap-tapset-python.Po
##############################################
systemtap-4.4/Makefile.in-1703-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1704:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-tapset-python.o `test -f 'tapset-python.cxx' || echo '$(srcdir)/'`tapset-python.cxx
systemtap-4.4/Makefile.in-1705-
systemtap-4.4/Makefile.in-1706-stap-tapset-python.obj: tapset-python.cxx
systemtap-4.4/Makefile.in:1707:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-tapset-python.obj -MD -MP -MF $(DEPDIR)/stap-tapset-python.Tpo -c -o stap-tapset-python.obj `if test -f 'tapset-python.cxx'; then $(CYGPATH_W) 'tapset-python.cxx'; else $(CYGPATH_W) '$(srcdir)/tapset-python.cxx'; fi`
systemtap-4.4/Makefile.in-1708-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-tapset-python.Tpo $(DEPDIR)/stap-tapset-python.Po
##############################################
systemtap-4.4/Makefile.in-1710-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1711:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-tapset-python.obj `if test -f 'tapset-python.cxx'; then $(CYGPATH_W) 'tapset-python.cxx'; else $(CYGPATH_W) '$(srcdir)/tapset-python.cxx'; fi`
systemtap-4.4/Makefile.in-1712-
systemtap-4.4/Makefile.in-1713-stap-interactive.o: interactive.cxx
systemtap-4.4/Makefile.in:1714:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-interactive.o -MD -MP -MF $(DEPDIR)/stap-interactive.Tpo -c -o stap-interactive.o `test -f 'interactive.cxx' || echo '$(srcdir)/'`interactive.cxx
systemtap-4.4/Makefile.in-1715-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-interactive.Tpo $(DEPDIR)/stap-interactive.Po
##############################################
systemtap-4.4/Makefile.in-1717-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1718:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-interactive.o `test -f 'interactive.cxx' || echo '$(srcdir)/'`interactive.cxx
systemtap-4.4/Makefile.in-1719-
systemtap-4.4/Makefile.in-1720-stap-interactive.obj: interactive.cxx
systemtap-4.4/Makefile.in:1721:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-interactive.obj -MD -MP -MF $(DEPDIR)/stap-interactive.Tpo -c -o stap-interactive.obj `if test -f 'interactive.cxx'; then $(CYGPATH_W) 'interactive.cxx'; else $(CYGPATH_W) '$(srcdir)/interactive.cxx'; fi`
systemtap-4.4/Makefile.in-1722-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-interactive.Tpo $(DEPDIR)/stap-interactive.Po
##############################################
systemtap-4.4/Makefile.in-1724-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1725:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-interactive.obj `if test -f 'interactive.cxx'; then $(CYGPATH_W) 'interactive.cxx'; else $(CYGPATH_W) '$(srcdir)/interactive.cxx'; fi`
systemtap-4.4/Makefile.in-1726-
systemtap-4.4/Makefile.in-1727-stap-bpf-base.o: bpf-base.cxx
systemtap-4.4/Makefile.in:1728:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-bpf-base.o -MD -MP -MF $(DEPDIR)/stap-bpf-base.Tpo -c -o stap-bpf-base.o `test -f 'bpf-base.cxx' || echo '$(srcdir)/'`bpf-base.cxx
systemtap-4.4/Makefile.in-1729-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-bpf-base.Tpo $(DEPDIR)/stap-bpf-base.Po
##############################################
systemtap-4.4/Makefile.in-1731-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1732:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-bpf-base.o `test -f 'bpf-base.cxx' || echo '$(srcdir)/'`bpf-base.cxx
systemtap-4.4/Makefile.in-1733-
systemtap-4.4/Makefile.in-1734-stap-bpf-base.obj: bpf-base.cxx
systemtap-4.4/Makefile.in:1735:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-bpf-base.obj -MD -MP -MF $(DEPDIR)/stap-bpf-base.Tpo -c -o stap-bpf-base.obj `if test -f 'bpf-base.cxx'; then $(CYGPATH_W) 'bpf-base.cxx'; else $(CYGPATH_W) '$(srcdir)/bpf-base.cxx'; fi`
systemtap-4.4/Makefile.in-1736-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-bpf-base.Tpo $(DEPDIR)/stap-bpf-base.Po
##############################################
systemtap-4.4/Makefile.in-1738-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1739:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-bpf-base.obj `if test -f 'bpf-base.cxx'; then $(CYGPATH_W) 'bpf-base.cxx'; else $(CYGPATH_W) '$(srcdir)/bpf-base.cxx'; fi`
systemtap-4.4/Makefile.in-1740-
systemtap-4.4/Makefile.in-1741-stap-bpf-bitset.o: bpf-bitset.cxx
systemtap-4.4/Makefile.in:1742:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-bpf-bitset.o -MD -MP -MF $(DEPDIR)/stap-bpf-bitset.Tpo -c -o stap-bpf-bitset.o `test -f 'bpf-bitset.cxx' || echo '$(srcdir)/'`bpf-bitset.cxx
systemtap-4.4/Makefile.in-1743-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-bpf-bitset.Tpo $(DEPDIR)/stap-bpf-bitset.Po
##############################################
systemtap-4.4/Makefile.in-1745-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1746:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-bpf-bitset.o `test -f 'bpf-bitset.cxx' || echo '$(srcdir)/'`bpf-bitset.cxx
systemtap-4.4/Makefile.in-1747-
systemtap-4.4/Makefile.in-1748-stap-bpf-bitset.obj: bpf-bitset.cxx
systemtap-4.4/Makefile.in:1749:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-bpf-bitset.obj -MD -MP -MF $(DEPDIR)/stap-bpf-bitset.Tpo -c -o stap-bpf-bitset.obj `if test -f 'bpf-bitset.cxx'; then $(CYGPATH_W) 'bpf-bitset.cxx'; else $(CYGPATH_W) '$(srcdir)/bpf-bitset.cxx'; fi`
systemtap-4.4/Makefile.in-1750-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-bpf-bitset.Tpo $(DEPDIR)/stap-bpf-bitset.Po
##############################################
systemtap-4.4/Makefile.in-1752-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1753:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-bpf-bitset.obj `if test -f 'bpf-bitset.cxx'; then $(CYGPATH_W) 'bpf-bitset.cxx'; else $(CYGPATH_W) '$(srcdir)/bpf-bitset.cxx'; fi`
systemtap-4.4/Makefile.in-1754-
systemtap-4.4/Makefile.in-1755-stap-bpf-translate.o: bpf-translate.cxx
systemtap-4.4/Makefile.in:1756:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-bpf-translate.o -MD -MP -MF $(DEPDIR)/stap-bpf-translate.Tpo -c -o stap-bpf-translate.o `test -f 'bpf-translate.cxx' || echo '$(srcdir)/'`bpf-translate.cxx
systemtap-4.4/Makefile.in-1757-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-bpf-translate.Tpo $(DEPDIR)/stap-bpf-translate.Po
##############################################
systemtap-4.4/Makefile.in-1759-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1760:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-bpf-translate.o `test -f 'bpf-translate.cxx' || echo '$(srcdir)/'`bpf-translate.cxx
systemtap-4.4/Makefile.in-1761-
systemtap-4.4/Makefile.in-1762-stap-bpf-translate.obj: bpf-translate.cxx
systemtap-4.4/Makefile.in:1763:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-bpf-translate.obj -MD -MP -MF $(DEPDIR)/stap-bpf-translate.Tpo -c -o stap-bpf-translate.obj `if test -f 'bpf-translate.cxx'; then $(CYGPATH_W) 'bpf-translate.cxx'; else $(CYGPATH_W) '$(srcdir)/bpf-translate.cxx'; fi`
systemtap-4.4/Makefile.in-1764-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-bpf-translate.Tpo $(DEPDIR)/stap-bpf-translate.Po
##############################################
systemtap-4.4/Makefile.in-1766-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1767:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-bpf-translate.obj `if test -f 'bpf-translate.cxx'; then $(CYGPATH_W) 'bpf-translate.cxx'; else $(CYGPATH_W) '$(srcdir)/bpf-translate.cxx'; fi`
systemtap-4.4/Makefile.in-1768-
systemtap-4.4/Makefile.in-1769-stap-bpf-opt.o: bpf-opt.cxx
systemtap-4.4/Makefile.in:1770:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-bpf-opt.o -MD -MP -MF $(DEPDIR)/stap-bpf-opt.Tpo -c -o stap-bpf-opt.o `test -f 'bpf-opt.cxx' || echo '$(srcdir)/'`bpf-opt.cxx
systemtap-4.4/Makefile.in-1771-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-bpf-opt.Tpo $(DEPDIR)/stap-bpf-opt.Po
##############################################
systemtap-4.4/Makefile.in-1773-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1774:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-bpf-opt.o `test -f 'bpf-opt.cxx' || echo '$(srcdir)/'`bpf-opt.cxx
systemtap-4.4/Makefile.in-1775-
systemtap-4.4/Makefile.in-1776-stap-bpf-opt.obj: bpf-opt.cxx
systemtap-4.4/Makefile.in:1777:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-bpf-opt.obj -MD -MP -MF $(DEPDIR)/stap-bpf-opt.Tpo -c -o stap-bpf-opt.obj `if test -f 'bpf-opt.cxx'; then $(CYGPATH_W) 'bpf-opt.cxx'; else $(CYGPATH_W) '$(srcdir)/bpf-opt.cxx'; fi`
systemtap-4.4/Makefile.in-1778-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-bpf-opt.Tpo $(DEPDIR)/stap-bpf-opt.Po
##############################################
systemtap-4.4/Makefile.in-1780-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1781:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-bpf-opt.obj `if test -f 'bpf-opt.cxx'; then $(CYGPATH_W) 'bpf-opt.cxx'; else $(CYGPATH_W) '$(srcdir)/bpf-opt.cxx'; fi`
systemtap-4.4/Makefile.in-1782-
systemtap-4.4/Makefile.in-1783-stap-csclient.o: csclient.cxx
systemtap-4.4/Makefile.in:1784:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-csclient.o -MD -MP -MF $(DEPDIR)/stap-csclient.Tpo -c -o stap-csclient.o `test -f 'csclient.cxx' || echo '$(srcdir)/'`csclient.cxx
systemtap-4.4/Makefile.in-1785-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-csclient.Tpo $(DEPDIR)/stap-csclient.Po
##############################################
systemtap-4.4/Makefile.in-1787-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1788:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-csclient.o `test -f 'csclient.cxx' || echo '$(srcdir)/'`csclient.cxx
systemtap-4.4/Makefile.in-1789-
systemtap-4.4/Makefile.in-1790-stap-csclient.obj: csclient.cxx
systemtap-4.4/Makefile.in:1791:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-csclient.obj -MD -MP -MF $(DEPDIR)/stap-csclient.Tpo -c -o stap-csclient.obj `if test -f 'csclient.cxx'; then $(CYGPATH_W) 'csclient.cxx'; else $(CYGPATH_W) '$(srcdir)/csclient.cxx'; fi`
systemtap-4.4/Makefile.in-1792-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-csclient.Tpo $(DEPDIR)/stap-csclient.Po
##############################################
systemtap-4.4/Makefile.in-1794-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1795:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-csclient.obj `if test -f 'csclient.cxx'; then $(CYGPATH_W) 'csclient.cxx'; else $(CYGPATH_W) '$(srcdir)/csclient.cxx'; fi`
systemtap-4.4/Makefile.in-1796-
systemtap-4.4/Makefile.in-1797-stap-nsscommon.o: nsscommon.cxx
systemtap-4.4/Makefile.in:1798:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-nsscommon.o -MD -MP -MF $(DEPDIR)/stap-nsscommon.Tpo -c -o stap-nsscommon.o `test -f 'nsscommon.cxx' || echo '$(srcdir)/'`nsscommon.cxx
systemtap-4.4/Makefile.in-1799-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-nsscommon.Tpo $(DEPDIR)/stap-nsscommon.Po
##############################################
systemtap-4.4/Makefile.in-1801-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1802:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-nsscommon.o `test -f 'nsscommon.cxx' || echo '$(srcdir)/'`nsscommon.cxx
systemtap-4.4/Makefile.in-1803-
systemtap-4.4/Makefile.in-1804-stap-nsscommon.obj: nsscommon.cxx
systemtap-4.4/Makefile.in:1805:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-nsscommon.obj -MD -MP -MF $(DEPDIR)/stap-nsscommon.Tpo -c -o stap-nsscommon.obj `if test -f 'nsscommon.cxx'; then $(CYGPATH_W) 'nsscommon.cxx'; else $(CYGPATH_W) '$(srcdir)/nsscommon.cxx'; fi`
systemtap-4.4/Makefile.in-1806-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-nsscommon.Tpo $(DEPDIR)/stap-nsscommon.Po
##############################################
systemtap-4.4/Makefile.in-1808-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1809:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-nsscommon.obj `if test -f 'nsscommon.cxx'; then $(CYGPATH_W) 'nsscommon.cxx'; else $(CYGPATH_W) '$(srcdir)/nsscommon.cxx'; fi`
systemtap-4.4/Makefile.in-1810-
systemtap-4.4/Makefile.in-1811-stap-client-nss.o: client-nss.cxx
systemtap-4.4/Makefile.in:1812:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-client-nss.o -MD -MP -MF $(DEPDIR)/stap-client-nss.Tpo -c -o stap-client-nss.o `test -f 'client-nss.cxx' || echo '$(srcdir)/'`client-nss.cxx
systemtap-4.4/Makefile.in-1813-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-client-nss.Tpo $(DEPDIR)/stap-client-nss.Po
##############################################
systemtap-4.4/Makefile.in-1815-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1816:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-client-nss.o `test -f 'client-nss.cxx' || echo '$(srcdir)/'`client-nss.cxx
systemtap-4.4/Makefile.in-1817-
systemtap-4.4/Makefile.in-1818-stap-client-nss.obj: client-nss.cxx
systemtap-4.4/Makefile.in:1819:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-client-nss.obj -MD -MP -MF $(DEPDIR)/stap-client-nss.Tpo -c -o stap-client-nss.obj `if test -f 'client-nss.cxx'; then $(CYGPATH_W) 'client-nss.cxx'; else $(CYGPATH_W) '$(srcdir)/client-nss.cxx'; fi`
systemtap-4.4/Makefile.in-1820-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-client-nss.Tpo $(DEPDIR)/stap-client-nss.Po
##############################################
systemtap-4.4/Makefile.in-1822-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1823:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-client-nss.obj `if test -f 'client-nss.cxx'; then $(CYGPATH_W) 'client-nss.cxx'; else $(CYGPATH_W) '$(srcdir)/client-nss.cxx'; fi`
systemtap-4.4/Makefile.in-1824-
systemtap-4.4/Makefile.in-1825-stap-cscommon.o: cscommon.cxx
systemtap-4.4/Makefile.in:1826:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-cscommon.o -MD -MP -MF $(DEPDIR)/stap-cscommon.Tpo -c -o stap-cscommon.o `test -f 'cscommon.cxx' || echo '$(srcdir)/'`cscommon.cxx
systemtap-4.4/Makefile.in-1827-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-cscommon.Tpo $(DEPDIR)/stap-cscommon.Po
##############################################
systemtap-4.4/Makefile.in-1829-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1830:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-cscommon.o `test -f 'cscommon.cxx' || echo '$(srcdir)/'`cscommon.cxx
systemtap-4.4/Makefile.in-1831-
systemtap-4.4/Makefile.in-1832-stap-cscommon.obj: cscommon.cxx
systemtap-4.4/Makefile.in:1833:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-cscommon.obj -MD -MP -MF $(DEPDIR)/stap-cscommon.Tpo -c -o stap-cscommon.obj `if test -f 'cscommon.cxx'; then $(CYGPATH_W) 'cscommon.cxx'; else $(CYGPATH_W) '$(srcdir)/cscommon.cxx'; fi`
systemtap-4.4/Makefile.in-1834-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-cscommon.Tpo $(DEPDIR)/stap-cscommon.Po
##############################################
systemtap-4.4/Makefile.in-1836-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1837:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-cscommon.obj `if test -f 'cscommon.cxx'; then $(CYGPATH_W) 'cscommon.cxx'; else $(CYGPATH_W) '$(srcdir)/cscommon.cxx'; fi`
systemtap-4.4/Makefile.in-1838-
systemtap-4.4/Makefile.in-1839-stap-nss-server-info.o: nss-server-info.cxx
systemtap-4.4/Makefile.in:1840:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-nss-server-info.o -MD -MP -MF $(DEPDIR)/stap-nss-server-info.Tpo -c -o stap-nss-server-info.o `test -f 'nss-server-info.cxx' || echo '$(srcdir)/'`nss-server-info.cxx
systemtap-4.4/Makefile.in-1841-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-nss-server-info.Tpo $(DEPDIR)/stap-nss-server-info.Po
##############################################
systemtap-4.4/Makefile.in-1843-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1844:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-nss-server-info.o `test -f 'nss-server-info.cxx' || echo '$(srcdir)/'`nss-server-info.cxx
systemtap-4.4/Makefile.in-1845-
systemtap-4.4/Makefile.in-1846-stap-nss-server-info.obj: nss-server-info.cxx
systemtap-4.4/Makefile.in:1847:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-nss-server-info.obj -MD -MP -MF $(DEPDIR)/stap-nss-server-info.Tpo -c -o stap-nss-server-info.obj `if test -f 'nss-server-info.cxx'; then $(CYGPATH_W) 'nss-server-info.cxx'; else $(CYGPATH_W) '$(srcdir)/nss-server-info.cxx'; fi`
systemtap-4.4/Makefile.in-1848-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-nss-server-info.Tpo $(DEPDIR)/stap-nss-server-info.Po
##############################################
systemtap-4.4/Makefile.in-1850-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1851:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-nss-server-info.obj `if test -f 'nss-server-info.cxx'; then $(CYGPATH_W) 'nss-server-info.cxx'; else $(CYGPATH_W) '$(srcdir)/nss-server-info.cxx'; fi`
systemtap-4.4/Makefile.in-1852-
systemtap-4.4/Makefile.in-1853-stap-client-http.o: client-http.cxx
systemtap-4.4/Makefile.in:1854:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-client-http.o -MD -MP -MF $(DEPDIR)/stap-client-http.Tpo -c -o stap-client-http.o `test -f 'client-http.cxx' || echo '$(srcdir)/'`client-http.cxx
systemtap-4.4/Makefile.in-1855-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-client-http.Tpo $(DEPDIR)/stap-client-http.Po
##############################################
systemtap-4.4/Makefile.in-1857-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1858:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-client-http.o `test -f 'client-http.cxx' || echo '$(srcdir)/'`client-http.cxx
systemtap-4.4/Makefile.in-1859-
systemtap-4.4/Makefile.in-1860-stap-client-http.obj: client-http.cxx
systemtap-4.4/Makefile.in:1861:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -MT stap-client-http.obj -MD -MP -MF $(DEPDIR)/stap-client-http.Tpo -c -o stap-client-http.obj `if test -f 'client-http.cxx'; then $(CYGPATH_W) 'client-http.cxx'; else $(CYGPATH_W) '$(srcdir)/client-http.cxx'; fi`
systemtap-4.4/Makefile.in-1862-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap-client-http.Tpo $(DEPDIR)/stap-client-http.Po
##############################################
systemtap-4.4/Makefile.in-1864-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1865:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_CPPFLAGS) $(CPPFLAGS) $(stap_CXXFLAGS) $(CXXFLAGS) -c -o stap-client-http.obj `if test -f 'client-http.cxx'; then $(CYGPATH_W) 'client-http.cxx'; else $(CYGPATH_W) '$(srcdir)/client-http.cxx'; fi`
systemtap-4.4/Makefile.in-1866-
systemtap-4.4/Makefile.in-1867-stap_authorize_cert-stap-authorize-cert.o: stap-authorize-cert.cxx
systemtap-4.4/Makefile.in:1868:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_authorize_cert_CPPFLAGS) $(CPPFLAGS) $(stap_authorize_cert_CXXFLAGS) $(CXXFLAGS) -MT stap_authorize_cert-stap-authorize-cert.o -MD -MP -MF $(DEPDIR)/stap_authorize_cert-stap-authorize-cert.Tpo -c -o stap_authorize_cert-stap-authorize-cert.o `test -f 'stap-authorize-cert.cxx' || echo '$(srcdir)/'`stap-authorize-cert.cxx
systemtap-4.4/Makefile.in-1869-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap_authorize_cert-stap-authorize-cert.Tpo $(DEPDIR)/stap_authorize_cert-stap-authorize-cert.Po
##############################################
systemtap-4.4/Makefile.in-1871-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1872:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_authorize_cert_CPPFLAGS) $(CPPFLAGS) $(stap_authorize_cert_CXXFLAGS) $(CXXFLAGS) -c -o stap_authorize_cert-stap-authorize-cert.o `test -f 'stap-authorize-cert.cxx' || echo '$(srcdir)/'`stap-authorize-cert.cxx
systemtap-4.4/Makefile.in-1873-
systemtap-4.4/Makefile.in-1874-stap_authorize_cert-stap-authorize-cert.obj: stap-authorize-cert.cxx
systemtap-4.4/Makefile.in:1875:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_authorize_cert_CPPFLAGS) $(CPPFLAGS) $(stap_authorize_cert_CXXFLAGS) $(CXXFLAGS) -MT stap_authorize_cert-stap-authorize-cert.obj -MD -MP -MF $(DEPDIR)/stap_authorize_cert-stap-authorize-cert.Tpo -c -o stap_authorize_cert-stap-authorize-cert.obj `if test -f 'stap-authorize-cert.cxx'; then $(CYGPATH_W) 'stap-authorize-cert.cxx'; else $(CYGPATH_W) '$(srcdir)/stap-authorize-cert.cxx'; fi`
systemtap-4.4/Makefile.in-1876-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap_authorize_cert-stap-authorize-cert.Tpo $(DEPDIR)/stap_authorize_cert-stap-authorize-cert.Po
##############################################
systemtap-4.4/Makefile.in-1878-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1879:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_authorize_cert_CPPFLAGS) $(CPPFLAGS) $(stap_authorize_cert_CXXFLAGS) $(CXXFLAGS) -c -o stap_authorize_cert-stap-authorize-cert.obj `if test -f 'stap-authorize-cert.cxx'; then $(CYGPATH_W) 'stap-authorize-cert.cxx'; else $(CYGPATH_W) '$(srcdir)/stap-authorize-cert.cxx'; fi`
systemtap-4.4/Makefile.in-1880-
systemtap-4.4/Makefile.in-1881-stap_authorize_cert-nsscommon.o: nsscommon.cxx
systemtap-4.4/Makefile.in:1882:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_authorize_cert_CPPFLAGS) $(CPPFLAGS) $(stap_authorize_cert_CXXFLAGS) $(CXXFLAGS) -MT stap_authorize_cert-nsscommon.o -MD -MP -MF $(DEPDIR)/stap_authorize_cert-nsscommon.Tpo -c -o stap_authorize_cert-nsscommon.o `test -f 'nsscommon.cxx' || echo '$(srcdir)/'`nsscommon.cxx
systemtap-4.4/Makefile.in-1883-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap_authorize_cert-nsscommon.Tpo $(DEPDIR)/stap_authorize_cert-nsscommon.Po
##############################################
systemtap-4.4/Makefile.in-1885-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1886:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_authorize_cert_CPPFLAGS) $(CPPFLAGS) $(stap_authorize_cert_CXXFLAGS) $(CXXFLAGS) -c -o stap_authorize_cert-nsscommon.o `test -f 'nsscommon.cxx' || echo '$(srcdir)/'`nsscommon.cxx
systemtap-4.4/Makefile.in-1887-
systemtap-4.4/Makefile.in-1888-stap_authorize_cert-nsscommon.obj: nsscommon.cxx
systemtap-4.4/Makefile.in:1889:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_authorize_cert_CPPFLAGS) $(CPPFLAGS) $(stap_authorize_cert_CXXFLAGS) $(CXXFLAGS) -MT stap_authorize_cert-nsscommon.obj -MD -MP -MF $(DEPDIR)/stap_authorize_cert-nsscommon.Tpo -c -o stap_authorize_cert-nsscommon.obj `if test -f 'nsscommon.cxx'; then $(CYGPATH_W) 'nsscommon.cxx'; else $(CYGPATH_W) '$(srcdir)/nsscommon.cxx'; fi`
systemtap-4.4/Makefile.in-1890-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap_authorize_cert-nsscommon.Tpo $(DEPDIR)/stap_authorize_cert-nsscommon.Po
##############################################
systemtap-4.4/Makefile.in-1892-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1893:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_authorize_cert_CPPFLAGS) $(CPPFLAGS) $(stap_authorize_cert_CXXFLAGS) $(CXXFLAGS) -c -o stap_authorize_cert-nsscommon.obj `if test -f 'nsscommon.cxx'; then $(CYGPATH_W) 'nsscommon.cxx'; else $(CYGPATH_W) '$(srcdir)/nsscommon.cxx'; fi`
systemtap-4.4/Makefile.in-1894-
systemtap-4.4/Makefile.in-1895-stap_authorize_cert-util.o: util.cxx
systemtap-4.4/Makefile.in:1896:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_authorize_cert_CPPFLAGS) $(CPPFLAGS) $(stap_authorize_cert_CXXFLAGS) $(CXXFLAGS) -MT stap_authorize_cert-util.o -MD -MP -MF $(DEPDIR)/stap_authorize_cert-util.Tpo -c -o stap_authorize_cert-util.o `test -f 'util.cxx' || echo '$(srcdir)/'`util.cxx
systemtap-4.4/Makefile.in-1897-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap_authorize_cert-util.Tpo $(DEPDIR)/stap_authorize_cert-util.Po
##############################################
systemtap-4.4/Makefile.in-1899-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1900:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_authorize_cert_CPPFLAGS) $(CPPFLAGS) $(stap_authorize_cert_CXXFLAGS) $(CXXFLAGS) -c -o stap_authorize_cert-util.o `test -f 'util.cxx' || echo '$(srcdir)/'`util.cxx
systemtap-4.4/Makefile.in-1901-
systemtap-4.4/Makefile.in-1902-stap_authorize_cert-util.obj: util.cxx
systemtap-4.4/Makefile.in:1903:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_authorize_cert_CPPFLAGS) $(CPPFLAGS) $(stap_authorize_cert_CXXFLAGS) $(CXXFLAGS) -MT stap_authorize_cert-util.obj -MD -MP -MF $(DEPDIR)/stap_authorize_cert-util.Tpo -c -o stap_authorize_cert-util.obj `if test -f 'util.cxx'; then $(CYGPATH_W) 'util.cxx'; else $(CYGPATH_W) '$(srcdir)/util.cxx'; fi`
systemtap-4.4/Makefile.in-1904-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap_authorize_cert-util.Tpo $(DEPDIR)/stap_authorize_cert-util.Po
##############################################
systemtap-4.4/Makefile.in-1906-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1907:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_authorize_cert_CPPFLAGS) $(CPPFLAGS) $(stap_authorize_cert_CXXFLAGS) $(CXXFLAGS) -c -o stap_authorize_cert-util.obj `if test -f 'util.cxx'; then $(CYGPATH_W) 'util.cxx'; else $(CYGPATH_W) '$(srcdir)/util.cxx'; fi`
systemtap-4.4/Makefile.in-1908-
systemtap-4.4/Makefile.in-1909-stap_gen_cert-stap-gen-cert.o: stap-gen-cert.cxx
systemtap-4.4/Makefile.in:1910:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(stap_gen_cert_CXXFLAGS) $(CXXFLAGS) -MT stap_gen_cert-stap-gen-cert.o -MD -MP -MF $(DEPDIR)/stap_gen_cert-stap-gen-cert.Tpo -c -o stap_gen_cert-stap-gen-cert.o `test -f 'stap-gen-cert.cxx' || echo '$(srcdir)/'`stap-gen-cert.cxx
systemtap-4.4/Makefile.in-1911-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap_gen_cert-stap-gen-cert.Tpo $(DEPDIR)/stap_gen_cert-stap-gen-cert.Po
##############################################
systemtap-4.4/Makefile.in-1913-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1914:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(stap_gen_cert_CXXFLAGS) $(CXXFLAGS) -c -o stap_gen_cert-stap-gen-cert.o `test -f 'stap-gen-cert.cxx' || echo '$(srcdir)/'`stap-gen-cert.cxx
systemtap-4.4/Makefile.in-1915-
systemtap-4.4/Makefile.in-1916-stap_gen_cert-stap-gen-cert.obj: stap-gen-cert.cxx
systemtap-4.4/Makefile.in:1917:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(stap_gen_cert_CXXFLAGS) $(CXXFLAGS) -MT stap_gen_cert-stap-gen-cert.obj -MD -MP -MF $(DEPDIR)/stap_gen_cert-stap-gen-cert.Tpo -c -o stap_gen_cert-stap-gen-cert.obj `if test -f 'stap-gen-cert.cxx'; then $(CYGPATH_W) 'stap-gen-cert.cxx'; else $(CYGPATH_W) '$(srcdir)/stap-gen-cert.cxx'; fi`
systemtap-4.4/Makefile.in-1918-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap_gen_cert-stap-gen-cert.Tpo $(DEPDIR)/stap_gen_cert-stap-gen-cert.Po
##############################################
systemtap-4.4/Makefile.in-1920-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1921:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(stap_gen_cert_CXXFLAGS) $(CXXFLAGS) -c -o stap_gen_cert-stap-gen-cert.obj `if test -f 'stap-gen-cert.cxx'; then $(CYGPATH_W) 'stap-gen-cert.cxx'; else $(CYGPATH_W) '$(srcdir)/stap-gen-cert.cxx'; fi`
systemtap-4.4/Makefile.in-1922-
systemtap-4.4/Makefile.in-1923-stap_gen_cert-util.o: util.cxx
systemtap-4.4/Makefile.in:1924:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(stap_gen_cert_CXXFLAGS) $(CXXFLAGS) -MT stap_gen_cert-util.o -MD -MP -MF $(DEPDIR)/stap_gen_cert-util.Tpo -c -o stap_gen_cert-util.o `test -f 'util.cxx' || echo '$(srcdir)/'`util.cxx
systemtap-4.4/Makefile.in-1925-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap_gen_cert-util.Tpo $(DEPDIR)/stap_gen_cert-util.Po
##############################################
systemtap-4.4/Makefile.in-1927-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1928:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(stap_gen_cert_CXXFLAGS) $(CXXFLAGS) -c -o stap_gen_cert-util.o `test -f 'util.cxx' || echo '$(srcdir)/'`util.cxx
systemtap-4.4/Makefile.in-1929-
systemtap-4.4/Makefile.in-1930-stap_gen_cert-util.obj: util.cxx
systemtap-4.4/Makefile.in:1931:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(stap_gen_cert_CXXFLAGS) $(CXXFLAGS) -MT stap_gen_cert-util.obj -MD -MP -MF $(DEPDIR)/stap_gen_cert-util.Tpo -c -o stap_gen_cert-util.obj `if test -f 'util.cxx'; then $(CYGPATH_W) 'util.cxx'; else $(CYGPATH_W) '$(srcdir)/util.cxx'; fi`
systemtap-4.4/Makefile.in-1932-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap_gen_cert-util.Tpo $(DEPDIR)/stap_gen_cert-util.Po
##############################################
systemtap-4.4/Makefile.in-1934-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1935:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(stap_gen_cert_CXXFLAGS) $(CXXFLAGS) -c -o stap_gen_cert-util.obj `if test -f 'util.cxx'; then $(CYGPATH_W) 'util.cxx'; else $(CYGPATH_W) '$(srcdir)/util.cxx'; fi`
systemtap-4.4/Makefile.in-1936-
systemtap-4.4/Makefile.in-1937-stap_gen_cert-nsscommon.o: nsscommon.cxx
systemtap-4.4/Makefile.in:1938:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(stap_gen_cert_CXXFLAGS) $(CXXFLAGS) -MT stap_gen_cert-nsscommon.o -MD -MP -MF $(DEPDIR)/stap_gen_cert-nsscommon.Tpo -c -o stap_gen_cert-nsscommon.o `test -f 'nsscommon.cxx' || echo '$(srcdir)/'`nsscommon.cxx
systemtap-4.4/Makefile.in-1939-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap_gen_cert-nsscommon.Tpo $(DEPDIR)/stap_gen_cert-nsscommon.Po
##############################################
systemtap-4.4/Makefile.in-1941-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1942:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(stap_gen_cert_CXXFLAGS) $(CXXFLAGS) -c -o stap_gen_cert-nsscommon.o `test -f 'nsscommon.cxx' || echo '$(srcdir)/'`nsscommon.cxx
systemtap-4.4/Makefile.in-1943-
systemtap-4.4/Makefile.in-1944-stap_gen_cert-nsscommon.obj: nsscommon.cxx
systemtap-4.4/Makefile.in:1945:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(stap_gen_cert_CXXFLAGS) $(CXXFLAGS) -MT stap_gen_cert-nsscommon.obj -MD -MP -MF $(DEPDIR)/stap_gen_cert-nsscommon.Tpo -c -o stap_gen_cert-nsscommon.obj `if test -f 'nsscommon.cxx'; then $(CYGPATH_W) 'nsscommon.cxx'; else $(CYGPATH_W) '$(srcdir)/nsscommon.cxx'; fi`
systemtap-4.4/Makefile.in-1946-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap_gen_cert-nsscommon.Tpo $(DEPDIR)/stap_gen_cert-nsscommon.Po
##############################################
systemtap-4.4/Makefile.in-1948-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1949:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(stap_gen_cert_CXXFLAGS) $(CXXFLAGS) -c -o stap_gen_cert-nsscommon.obj `if test -f 'nsscommon.cxx'; then $(CYGPATH_W) 'nsscommon.cxx'; else $(CYGPATH_W) '$(srcdir)/nsscommon.cxx'; fi`
systemtap-4.4/Makefile.in-1950-
systemtap-4.4/Makefile.in-1951-stap_serverd-stap-serverd.o: stap-serverd.cxx
systemtap-4.4/Makefile.in:1952:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(stap_serverd_CXXFLAGS) $(CXXFLAGS) -MT stap_serverd-stap-serverd.o -MD -MP -MF $(DEPDIR)/stap_serverd-stap-serverd.Tpo -c -o stap_serverd-stap-serverd.o `test -f 'stap-serverd.cxx' || echo '$(srcdir)/'`stap-serverd.cxx
systemtap-4.4/Makefile.in-1953-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap_serverd-stap-serverd.Tpo $(DEPDIR)/stap_serverd-stap-serverd.Po
##############################################
systemtap-4.4/Makefile.in-1955-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1956:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(stap_serverd_CXXFLAGS) $(CXXFLAGS) -c -o stap_serverd-stap-serverd.o `test -f 'stap-serverd.cxx' || echo '$(srcdir)/'`stap-serverd.cxx
systemtap-4.4/Makefile.in-1957-
systemtap-4.4/Makefile.in-1958-stap_serverd-stap-serverd.obj: stap-serverd.cxx
systemtap-4.4/Makefile.in:1959:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(stap_serverd_CXXFLAGS) $(CXXFLAGS) -MT stap_serverd-stap-serverd.obj -MD -MP -MF $(DEPDIR)/stap_serverd-stap-serverd.Tpo -c -o stap_serverd-stap-serverd.obj `if test -f 'stap-serverd.cxx'; then $(CYGPATH_W) 'stap-serverd.cxx'; else $(CYGPATH_W) '$(srcdir)/stap-serverd.cxx'; fi`
systemtap-4.4/Makefile.in-1960-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap_serverd-stap-serverd.Tpo $(DEPDIR)/stap_serverd-stap-serverd.Po
##############################################
systemtap-4.4/Makefile.in-1962-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1963:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(stap_serverd_CXXFLAGS) $(CXXFLAGS) -c -o stap_serverd-stap-serverd.obj `if test -f 'stap-serverd.cxx'; then $(CYGPATH_W) 'stap-serverd.cxx'; else $(CYGPATH_W) '$(srcdir)/stap-serverd.cxx'; fi`
systemtap-4.4/Makefile.in-1964-
systemtap-4.4/Makefile.in-1965-stap_serverd-cscommon.o: cscommon.cxx
systemtap-4.4/Makefile.in:1966:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(stap_serverd_CXXFLAGS) $(CXXFLAGS) -MT stap_serverd-cscommon.o -MD -MP -MF $(DEPDIR)/stap_serverd-cscommon.Tpo -c -o stap_serverd-cscommon.o `test -f 'cscommon.cxx' || echo '$(srcdir)/'`cscommon.cxx
systemtap-4.4/Makefile.in-1967-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap_serverd-cscommon.Tpo $(DEPDIR)/stap_serverd-cscommon.Po
##############################################
systemtap-4.4/Makefile.in-1969-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1970:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(stap_serverd_CXXFLAGS) $(CXXFLAGS) -c -o stap_serverd-cscommon.o `test -f 'cscommon.cxx' || echo '$(srcdir)/'`cscommon.cxx
systemtap-4.4/Makefile.in-1971-
systemtap-4.4/Makefile.in-1972-stap_serverd-cscommon.obj: cscommon.cxx
systemtap-4.4/Makefile.in:1973:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(stap_serverd_CXXFLAGS) $(CXXFLAGS) -MT stap_serverd-cscommon.obj -MD -MP -MF $(DEPDIR)/stap_serverd-cscommon.Tpo -c -o stap_serverd-cscommon.obj `if test -f 'cscommon.cxx'; then $(CYGPATH_W) 'cscommon.cxx'; else $(CYGPATH_W) '$(srcdir)/cscommon.cxx'; fi`
systemtap-4.4/Makefile.in-1974-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap_serverd-cscommon.Tpo $(DEPDIR)/stap_serverd-cscommon.Po
##############################################
systemtap-4.4/Makefile.in-1976-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1977:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(stap_serverd_CXXFLAGS) $(CXXFLAGS) -c -o stap_serverd-cscommon.obj `if test -f 'cscommon.cxx'; then $(CYGPATH_W) 'cscommon.cxx'; else $(CYGPATH_W) '$(srcdir)/cscommon.cxx'; fi`
systemtap-4.4/Makefile.in-1978-
systemtap-4.4/Makefile.in-1979-stap_serverd-util.o: util.cxx
systemtap-4.4/Makefile.in:1980:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(stap_serverd_CXXFLAGS) $(CXXFLAGS) -MT stap_serverd-util.o -MD -MP -MF $(DEPDIR)/stap_serverd-util.Tpo -c -o stap_serverd-util.o `test -f 'util.cxx' || echo '$(srcdir)/'`util.cxx
systemtap-4.4/Makefile.in-1981-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap_serverd-util.Tpo $(DEPDIR)/stap_serverd-util.Po
##############################################
systemtap-4.4/Makefile.in-1983-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1984:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(stap_serverd_CXXFLAGS) $(CXXFLAGS) -c -o stap_serverd-util.o `test -f 'util.cxx' || echo '$(srcdir)/'`util.cxx
systemtap-4.4/Makefile.in-1985-
systemtap-4.4/Makefile.in-1986-stap_serverd-util.obj: util.cxx
systemtap-4.4/Makefile.in:1987:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(stap_serverd_CXXFLAGS) $(CXXFLAGS) -MT stap_serverd-util.obj -MD -MP -MF $(DEPDIR)/stap_serverd-util.Tpo -c -o stap_serverd-util.obj `if test -f 'util.cxx'; then $(CYGPATH_W) 'util.cxx'; else $(CYGPATH_W) '$(srcdir)/util.cxx'; fi`
systemtap-4.4/Makefile.in-1988-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap_serverd-util.Tpo $(DEPDIR)/stap_serverd-util.Po
##############################################
systemtap-4.4/Makefile.in-1990-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1991:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(stap_serverd_CXXFLAGS) $(CXXFLAGS) -c -o stap_serverd-util.obj `if test -f 'util.cxx'; then $(CYGPATH_W) 'util.cxx'; else $(CYGPATH_W) '$(srcdir)/util.cxx'; fi`
systemtap-4.4/Makefile.in-1992-
systemtap-4.4/Makefile.in-1993-stap_serverd-privilege.o: privilege.cxx
systemtap-4.4/Makefile.in:1994:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(stap_serverd_CXXFLAGS) $(CXXFLAGS) -MT stap_serverd-privilege.o -MD -MP -MF $(DEPDIR)/stap_serverd-privilege.Tpo -c -o stap_serverd-privilege.o `test -f 'privilege.cxx' || echo '$(srcdir)/'`privilege.cxx
systemtap-4.4/Makefile.in-1995-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap_serverd-privilege.Tpo $(DEPDIR)/stap_serverd-privilege.Po
##############################################
systemtap-4.4/Makefile.in-1997-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:1998:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(stap_serverd_CXXFLAGS) $(CXXFLAGS) -c -o stap_serverd-privilege.o `test -f 'privilege.cxx' || echo '$(srcdir)/'`privilege.cxx
systemtap-4.4/Makefile.in-1999-
systemtap-4.4/Makefile.in-2000-stap_serverd-privilege.obj: privilege.cxx
systemtap-4.4/Makefile.in:2001:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(stap_serverd_CXXFLAGS) $(CXXFLAGS) -MT stap_serverd-privilege.obj -MD -MP -MF $(DEPDIR)/stap_serverd-privilege.Tpo -c -o stap_serverd-privilege.obj `if test -f 'privilege.cxx'; then $(CYGPATH_W) 'privilege.cxx'; else $(CYGPATH_W) '$(srcdir)/privilege.cxx'; fi`
systemtap-4.4/Makefile.in-2002-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap_serverd-privilege.Tpo $(DEPDIR)/stap_serverd-privilege.Po
##############################################
systemtap-4.4/Makefile.in-2004-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:2005:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(stap_serverd_CXXFLAGS) $(CXXFLAGS) -c -o stap_serverd-privilege.obj `if test -f 'privilege.cxx'; then $(CYGPATH_W) 'privilege.cxx'; else $(CYGPATH_W) '$(srcdir)/privilege.cxx'; fi`
systemtap-4.4/Makefile.in-2006-
systemtap-4.4/Makefile.in-2007-stap_serverd-nsscommon.o: nsscommon.cxx
systemtap-4.4/Makefile.in:2008:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(stap_serverd_CXXFLAGS) $(CXXFLAGS) -MT stap_serverd-nsscommon.o -MD -MP -MF $(DEPDIR)/stap_serverd-nsscommon.Tpo -c -o stap_serverd-nsscommon.o `test -f 'nsscommon.cxx' || echo '$(srcdir)/'`nsscommon.cxx
systemtap-4.4/Makefile.in-2009-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap_serverd-nsscommon.Tpo $(DEPDIR)/stap_serverd-nsscommon.Po
##############################################
systemtap-4.4/Makefile.in-2011-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:2012:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(stap_serverd_CXXFLAGS) $(CXXFLAGS) -c -o stap_serverd-nsscommon.o `test -f 'nsscommon.cxx' || echo '$(srcdir)/'`nsscommon.cxx
systemtap-4.4/Makefile.in-2013-
systemtap-4.4/Makefile.in-2014-stap_serverd-nsscommon.obj: nsscommon.cxx
systemtap-4.4/Makefile.in:2015:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(stap_serverd_CXXFLAGS) $(CXXFLAGS) -MT stap_serverd-nsscommon.obj -MD -MP -MF $(DEPDIR)/stap_serverd-nsscommon.Tpo -c -o stap_serverd-nsscommon.obj `if test -f 'nsscommon.cxx'; then $(CYGPATH_W) 'nsscommon.cxx'; else $(CYGPATH_W) '$(srcdir)/nsscommon.cxx'; fi`
systemtap-4.4/Makefile.in-2016-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap_serverd-nsscommon.Tpo $(DEPDIR)/stap_serverd-nsscommon.Po
##############################################
systemtap-4.4/Makefile.in-2018-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:2019:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(stap_serverd_CXXFLAGS) $(CXXFLAGS) -c -o stap_serverd-nsscommon.obj `if test -f 'nsscommon.cxx'; then $(CYGPATH_W) 'nsscommon.cxx'; else $(CYGPATH_W) '$(srcdir)/nsscommon.cxx'; fi`
systemtap-4.4/Makefile.in-2020-
systemtap-4.4/Makefile.in-2021-stap_serverd-cmdline.o: cmdline.cxx
systemtap-4.4/Makefile.in:2022:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(stap_serverd_CXXFLAGS) $(CXXFLAGS) -MT stap_serverd-cmdline.o -MD -MP -MF $(DEPDIR)/stap_serverd-cmdline.Tpo -c -o stap_serverd-cmdline.o `test -f 'cmdline.cxx' || echo '$(srcdir)/'`cmdline.cxx
systemtap-4.4/Makefile.in-2023-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap_serverd-cmdline.Tpo $(DEPDIR)/stap_serverd-cmdline.Po
##############################################
systemtap-4.4/Makefile.in-2025-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:2026:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(stap_serverd_CXXFLAGS) $(CXXFLAGS) -c -o stap_serverd-cmdline.o `test -f 'cmdline.cxx' || echo '$(srcdir)/'`cmdline.cxx
systemtap-4.4/Makefile.in-2027-
systemtap-4.4/Makefile.in-2028-stap_serverd-cmdline.obj: cmdline.cxx
systemtap-4.4/Makefile.in:2029:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(stap_serverd_CXXFLAGS) $(CXXFLAGS) -MT stap_serverd-cmdline.obj -MD -MP -MF $(DEPDIR)/stap_serverd-cmdline.Tpo -c -o stap_serverd-cmdline.obj `if test -f 'cmdline.cxx'; then $(CYGPATH_W) 'cmdline.cxx'; else $(CYGPATH_W) '$(srcdir)/cmdline.cxx'; fi`
systemtap-4.4/Makefile.in-2030-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap_serverd-cmdline.Tpo $(DEPDIR)/stap_serverd-cmdline.Po
##############################################
systemtap-4.4/Makefile.in-2032-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:2033:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(stap_serverd_CXXFLAGS) $(CXXFLAGS) -c -o stap_serverd-cmdline.obj `if test -f 'cmdline.cxx'; then $(CYGPATH_W) 'cmdline.cxx'; else $(CYGPATH_W) '$(srcdir)/cmdline.cxx'; fi`
systemtap-4.4/Makefile.in-2034-
systemtap-4.4/Makefile.in-2035-stap_sign_module-stap-sign-module.o: stap-sign-module.cxx
systemtap-4.4/Makefile.in:2036:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_sign_module_CPPFLAGS) $(CPPFLAGS) $(stap_sign_module_CXXFLAGS) $(CXXFLAGS) -MT stap_sign_module-stap-sign-module.o -MD -MP -MF $(DEPDIR)/stap_sign_module-stap-sign-module.Tpo -c -o stap_sign_module-stap-sign-module.o `test -f 'stap-sign-module.cxx' || echo '$(srcdir)/'`stap-sign-module.cxx
systemtap-4.4/Makefile.in-2037-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap_sign_module-stap-sign-module.Tpo $(DEPDIR)/stap_sign_module-stap-sign-module.Po
##############################################
systemtap-4.4/Makefile.in-2039-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:2040:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_sign_module_CPPFLAGS) $(CPPFLAGS) $(stap_sign_module_CXXFLAGS) $(CXXFLAGS) -c -o stap_sign_module-stap-sign-module.o `test -f 'stap-sign-module.cxx' || echo '$(srcdir)/'`stap-sign-module.cxx
systemtap-4.4/Makefile.in-2041-
systemtap-4.4/Makefile.in-2042-stap_sign_module-stap-sign-module.obj: stap-sign-module.cxx
systemtap-4.4/Makefile.in:2043:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_sign_module_CPPFLAGS) $(CPPFLAGS) $(stap_sign_module_CXXFLAGS) $(CXXFLAGS) -MT stap_sign_module-stap-sign-module.obj -MD -MP -MF $(DEPDIR)/stap_sign_module-stap-sign-module.Tpo -c -o stap_sign_module-stap-sign-module.obj `if test -f 'stap-sign-module.cxx'; then $(CYGPATH_W) 'stap-sign-module.cxx'; else $(CYGPATH_W) '$(srcdir)/stap-sign-module.cxx'; fi`
systemtap-4.4/Makefile.in-2044-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap_sign_module-stap-sign-module.Tpo $(DEPDIR)/stap_sign_module-stap-sign-module.Po
##############################################
systemtap-4.4/Makefile.in-2046-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:2047:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_sign_module_CPPFLAGS) $(CPPFLAGS) $(stap_sign_module_CXXFLAGS) $(CXXFLAGS) -c -o stap_sign_module-stap-sign-module.obj `if test -f 'stap-sign-module.cxx'; then $(CYGPATH_W) 'stap-sign-module.cxx'; else $(CYGPATH_W) '$(srcdir)/stap-sign-module.cxx'; fi`
systemtap-4.4/Makefile.in-2048-
systemtap-4.4/Makefile.in-2049-stap_sign_module-nsscommon.o: nsscommon.cxx
systemtap-4.4/Makefile.in:2050:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_sign_module_CPPFLAGS) $(CPPFLAGS) $(stap_sign_module_CXXFLAGS) $(CXXFLAGS) -MT stap_sign_module-nsscommon.o -MD -MP -MF $(DEPDIR)/stap_sign_module-nsscommon.Tpo -c -o stap_sign_module-nsscommon.o `test -f 'nsscommon.cxx' || echo '$(srcdir)/'`nsscommon.cxx
systemtap-4.4/Makefile.in-2051-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap_sign_module-nsscommon.Tpo $(DEPDIR)/stap_sign_module-nsscommon.Po
##############################################
systemtap-4.4/Makefile.in-2053-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:2054:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_sign_module_CPPFLAGS) $(CPPFLAGS) $(stap_sign_module_CXXFLAGS) $(CXXFLAGS) -c -o stap_sign_module-nsscommon.o `test -f 'nsscommon.cxx' || echo '$(srcdir)/'`nsscommon.cxx
systemtap-4.4/Makefile.in-2055-
systemtap-4.4/Makefile.in-2056-stap_sign_module-nsscommon.obj: nsscommon.cxx
systemtap-4.4/Makefile.in:2057:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_sign_module_CPPFLAGS) $(CPPFLAGS) $(stap_sign_module_CXXFLAGS) $(CXXFLAGS) -MT stap_sign_module-nsscommon.obj -MD -MP -MF $(DEPDIR)/stap_sign_module-nsscommon.Tpo -c -o stap_sign_module-nsscommon.obj `if test -f 'nsscommon.cxx'; then $(CYGPATH_W) 'nsscommon.cxx'; else $(CYGPATH_W) '$(srcdir)/nsscommon.cxx'; fi`
systemtap-4.4/Makefile.in-2058-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap_sign_module-nsscommon.Tpo $(DEPDIR)/stap_sign_module-nsscommon.Po
##############################################
systemtap-4.4/Makefile.in-2060-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:2061:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_sign_module_CPPFLAGS) $(CPPFLAGS) $(stap_sign_module_CXXFLAGS) $(CXXFLAGS) -c -o stap_sign_module-nsscommon.obj `if test -f 'nsscommon.cxx'; then $(CYGPATH_W) 'nsscommon.cxx'; else $(CYGPATH_W) '$(srcdir)/nsscommon.cxx'; fi`
systemtap-4.4/Makefile.in-2062-
systemtap-4.4/Makefile.in-2063-stap_sign_module-util.o: util.cxx
systemtap-4.4/Makefile.in:2064:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_sign_module_CPPFLAGS) $(CPPFLAGS) $(stap_sign_module_CXXFLAGS) $(CXXFLAGS) -MT stap_sign_module-util.o -MD -MP -MF $(DEPDIR)/stap_sign_module-util.Tpo -c -o stap_sign_module-util.o `test -f 'util.cxx' || echo '$(srcdir)/'`util.cxx
systemtap-4.4/Makefile.in-2065-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap_sign_module-util.Tpo $(DEPDIR)/stap_sign_module-util.Po
##############################################
systemtap-4.4/Makefile.in-2067-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:2068:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_sign_module_CPPFLAGS) $(CPPFLAGS) $(stap_sign_module_CXXFLAGS) $(CXXFLAGS) -c -o stap_sign_module-util.o `test -f 'util.cxx' || echo '$(srcdir)/'`util.cxx
systemtap-4.4/Makefile.in-2069-
systemtap-4.4/Makefile.in-2070-stap_sign_module-util.obj: util.cxx
systemtap-4.4/Makefile.in:2071:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_sign_module_CPPFLAGS) $(CPPFLAGS) $(stap_sign_module_CXXFLAGS) $(CXXFLAGS) -MT stap_sign_module-util.obj -MD -MP -MF $(DEPDIR)/stap_sign_module-util.Tpo -c -o stap_sign_module-util.obj `if test -f 'util.cxx'; then $(CYGPATH_W) 'util.cxx'; else $(CYGPATH_W) '$(srcdir)/util.cxx'; fi`
systemtap-4.4/Makefile.in-2072-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap_sign_module-util.Tpo $(DEPDIR)/stap_sign_module-util.Po
##############################################
systemtap-4.4/Makefile.in-2074-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/Makefile.in:2075:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_sign_module_CPPFLAGS) $(CPPFLAGS) $(stap_sign_module_CXXFLAGS) $(CXXFLAGS) -c -o stap_sign_module-util.obj `if test -f 'util.cxx'; then $(CYGPATH_W) 'util.cxx'; else $(CYGPATH_W) '$(srcdir)/util.cxx'; fi`
systemtap-4.4/Makefile.in-2076-install-oldincludeHEADERS: $(oldinclude_HEADERS)
##############################################
systemtap-4.4/Makefile.in-2094-	@list='$(oldinclude_HEADERS)'; test -n "$(oldincludedir)" || list=; \
systemtap-4.4/Makefile.in:2095:	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
systemtap-4.4/Makefile.in-2096-	dir='$(DESTDIR)$(oldincludedir)'; $(am__uninstall_files_from_dir)
##############################################
systemtap-4.4/Makefile.in-2111-	dot_seen=no; \
systemtap-4.4/Makefile.in:2112:	target=`echo $@ | sed s/-recursive//`; \
systemtap-4.4/Makefile.in-2113-	case "$@" in \
##############################################
systemtap-4.4/Makefile.in-2174-GTAGS:
systemtap-4.4/Makefile.in:2175:	here=`$(am__cd) $(top_builddir) && pwd` \
systemtap-4.4/Makefile.in-2176-	  && $(am__cd) $(top_srcdir) \
##############################################
systemtap-4.4/Makefile.in-2584-	-rm -rf $(DESTDIR)$(localstatedir)/cache/$(PACKAGE)
systemtap-4.4/Makefile.in:2585:	@list='$(EXAMPLE_SRC)'; for f in $$list; do p=`basename $$f`; \
systemtap-4.4/Makefile.in-2586-	  echo " rm -f '$(EXAMPLE_INSTALL_DIR)/$$p'"; \
##############################################
systemtap-4.4/Makefile.in-2588-	done
systemtap-4.4/Makefile.in:2589:	@list='$(DEMO_SRC)'; for f in $$list; do p=`basename $$f`; \
systemtap-4.4/Makefile.in-2590-	  echo " rm -f '$(DEMO_INSTALL_DIR)/$$p'"; \
##############################################
systemtap-4.4/Makefile.in-2592-	done
systemtap-4.4/Makefile.in:2593:	@list='$(SAMPLE_SRC)'; for f in $$list; do p=`basename $$f`; \
systemtap-4.4/Makefile.in-2594-	  echo " rm -f '$(SAMPLE_INSTALL_DIR)/$$p'"; \
##############################################
systemtap-4.4/Makefile.in-2602-check-local:
systemtap-4.4/Makefile.in:2603:	SRCDIR=`cd $(srcdir); pwd`; \
systemtap-4.4/Makefile.in-2604-        PWD=`pwd`; \
##############################################
systemtap-4.4/Makefile.in-2643-		SYSTEMTAP_PATH="`cd testsuite; pwd`" \
systemtap-4.4/Makefile.in:2644:		SYSTEMTAP_RUNTIME="`cd $(srcdir)/runtime; pwd`"
systemtap-4.4/Makefile.in-2645-testsuite/stap: run-stap
##############################################
systemtap-4.4/NEWS-1654-
systemtap-4.4/NEWS:1655:- The new addr() function returns the probe's instruction pointer.
systemtap-4.4/NEWS-1656-
##############################################
systemtap-4.4/aclocal.m4-152-# iff we strip the leading $srcdir from $ac_aux_dir.  That would be:
systemtap-4.4/aclocal.m4:153:#   am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"`
systemtap-4.4/aclocal.m4-154-# and then we would define $MISSING as
##############################################
systemtap-4.4/aclocal.m4-167-# Expand $ac_aux_dir to an absolute path.
systemtap-4.4/aclocal.m4:168:am_aux_dir=`cd "$ac_aux_dir" && pwd`
systemtap-4.4/aclocal.m4-169-])
##############################################
systemtap-4.4/aclocal.m4-265-  if test "$am_compiler_list" = ""; then
systemtap-4.4/aclocal.m4:266:     am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp`
systemtap-4.4/aclocal.m4-267-  fi
##############################################
systemtap-4.4/aclocal.m4-418-    # Strip MF so we end up with the name of the file.
systemtap-4.4/aclocal.m4:419:    am_mf=`AS_ECHO(["$am_mf"]) | sed -e 's/:.*$//'`
systemtap-4.4/aclocal.m4-420-    # Check whether this is an Automake generated Makefile which includes
##############################################
systemtap-4.4/aclocal.m4-425-      || continue
systemtap-4.4/aclocal.m4:426:    am_dirpart=`AS_DIRNAME(["$am_mf"])`
systemtap-4.4/aclocal.m4:427:    am_filepart=`AS_BASENAME(["$am_mf"])`
systemtap-4.4/aclocal.m4-428-    AM_RUN_LOG([cd "$am_dirpart" \
##############################################
systemtap-4.4/aclocal.m4-493-AC_REQUIRE([AC_PROG_INSTALL])dnl
systemtap-4.4/aclocal.m4:494:if test "`cd $srcdir && pwd`" != "`pwd`"; then
systemtap-4.4/aclocal.m4-495-  # Use -I$(srcdir) only when $(srcdir) != ., so that make's output
##############################################
systemtap-4.4/aclocal.m4-652-    * )
systemtap-4.4/aclocal.m4:653:      _am_stamp_count=`expr $_am_stamp_count + 1` ;;
systemtap-4.4/aclocal.m4-654-  esac
systemtap-4.4/aclocal.m4-655-done
systemtap-4.4/aclocal.m4:656:echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
systemtap-4.4/aclocal.m4-657-
##############################################
systemtap-4.4/aclocal.m4-981-  AC_CACHE_CHECK([for $am_display_PYTHON version], [am_cv_python_version],
systemtap-4.4/aclocal.m4:982:    [am_cv_python_version=`$PYTHON -c "import sys; sys.stdout.write(sys.version[[:3]])"`])
systemtap-4.4/aclocal.m4-983-  AC_SUBST([PYTHON_VERSION], [$am_cv_python_version])
##############################################
systemtap-4.4/aclocal.m4-996-  AC_CACHE_CHECK([for $am_display_PYTHON platform], [am_cv_python_platform],
systemtap-4.4/aclocal.m4:997:    [am_cv_python_platform=`$PYTHON -c "import sys; sys.stdout.write(sys.platform)"`])
systemtap-4.4/aclocal.m4-998-  AC_SUBST([PYTHON_PLATFORM], [$am_cv_python_platform])
##############################################
systemtap-4.4/aclocal.m4-1044-     $am_py_prefix*)
systemtap-4.4/aclocal.m4:1045:       am__strip_prefix=`echo "$am_py_prefix" | sed 's|.|.|g'`
systemtap-4.4/aclocal.m4:1046:       am_cv_python_pythondir=`echo "$am_cv_python_pythondir" | sed "s,^$am__strip_prefix,$PYTHON_PREFIX,"`
systemtap-4.4/aclocal.m4-1047-       ;;
##############################################
systemtap-4.4/aclocal.m4-1086-     $am_py_exec_prefix*)
systemtap-4.4/aclocal.m4:1087:       am__strip_prefix=`echo "$am_py_exec_prefix" | sed 's|.|.|g'`
systemtap-4.4/aclocal.m4:1088:       am_cv_python_pyexecdir=`echo "$am_cv_python_pyexecdir" | sed "s,^$am__strip_prefix,$PYTHON_EXEC_PREFIX,"`
systemtap-4.4/aclocal.m4-1089-       ;;
##############################################
systemtap-4.4/aclocal.m4-1182-     echo "timestamp, slept: $am_has_slept" > conftest.file
systemtap-4.4/aclocal.m4:1183:     set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null`
systemtap-4.4/aclocal.m4-1184-     if test "$[*]" = "X"; then
systemtap-4.4/aclocal.m4-1185-	# -L didn't work.
systemtap-4.4/aclocal.m4:1186:	set X `ls -t "$srcdir/configure" conftest.file`
systemtap-4.4/aclocal.m4-1187-     fi
##############################################
systemtap-4.4/ar-lib-65-	mingw)
systemtap-4.4/ar-lib:66:	  file=`cmd //C echo "$file " | sed -e 's/"\(.*\) " *$/\1/'`
systemtap-4.4/ar-lib-67-	  ;;
systemtap-4.4/ar-lib-68-	cygwin)
systemtap-4.4/ar-lib:69:	  file=`cygpath -m "$file" || echo "$file"`
systemtap-4.4/ar-lib-70-	  ;;
systemtap-4.4/ar-lib-71-	wine)
systemtap-4.4/ar-lib:72:	  file=`winepath -w "$file" || echo "$file"`
systemtap-4.4/ar-lib-73-	  ;;
##############################################
systemtap-4.4/ar-lib-88-  archive=$3
systemtap-4.4/ar-lib:89:  at_file_contents=`cat "$1"`
systemtap-4.4/ar-lib-90-  eval set x "$at_file_contents"
##############################################
systemtap-4.4/bpf-translate.cxx-1047-#ifdef BPF_ASM_DEBUG
systemtap-4.4/bpf-translate.cxx:1048:  std::cerr << "bpf_asm parse_asm_stmt: tokenizer got ";
systemtap-4.4/bpf-translate.cxx-1049-  for (unsigned k = 0; k < args.size(); k++)
##############################################
systemtap-4.4/bpf-translate.cxx-1576-#ifdef BPF_ASM_DEBUG
systemtap-4.4/bpf-translate.cxx:1577:      std::cerr << "bpf_asm visit_embeddedcode: " << stmt << std::endl;
systemtap-4.4/bpf-translate.cxx-1578-#endif
##############################################
systemtap-4.4/buildrun.cxx-551-  // if (s.keep_tmpdir)
systemtap-4.4/buildrun.cxx:552:  // o << "CFLAGS += -fverbose-asm -save-temps" << endl;
systemtap-4.4/buildrun.cxx-553-
##############################################
systemtap-4.4/buildrun.cxx-1145-  // cwd in this case will be the cwd of stap itself though, which may be
systemtap-4.4/buildrun.cxx:1146:  // trickier to deal with.  It might be better to "cd `dirname $script`"
systemtap-4.4/buildrun.cxx-1147-  // first...
##############################################
systemtap-4.4/compile-67-	mingw/*)
systemtap-4.4/compile:68:	  file=`cmd //C echo "$file " | sed -e 's/"\(.*\) " *$/\1/'`
systemtap-4.4/compile-69-	  ;;
systemtap-4.4/compile-70-	cygwin/*)
systemtap-4.4/compile:71:	  file=`cygpath -m "$file" || echo "$file"`
systemtap-4.4/compile-72-	  ;;
systemtap-4.4/compile-73-	wine/*)
systemtap-4.4/compile:74:	  file=`winepath -w "$file" || echo "$file"`
systemtap-4.4/compile-75-	  ;;
##############################################
systemtap-4.4/compile-309-# Name of file we expect compiler to create.
systemtap-4.4/compile:310:cofile=`echo "$cfile" | sed 's|^.*[\\/]||; s|^[a-zA-Z]:||; s/\.c$/.o/'`
systemtap-4.4/compile-311-
##############################################
systemtap-4.4/compile-315-# object file name, since that is what matters with a parallel build.
systemtap-4.4/compile:316:lockdir=`echo "$cofile" | sed -e 's|[/\\:.-]|_|g'`.d
systemtap-4.4/compile-317-while true; do
##############################################
systemtap-4.4/config.guess-34-
systemtap-4.4/config.guess:35:me=`echo "$0" | sed -e 's,.*/,,'`
systemtap-4.4/config.guess-36-
##############################################
systemtap-4.4/config.guess-102-: ${TMPDIR=/tmp} ;
systemtap-4.4/config.guess:103: { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } ||
systemtap-4.4/config.guess-104- { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } ||
##############################################
systemtap-4.4/config.guess-151-	EOF
systemtap-4.4/config.guess:152:	eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC' | sed 's, ,,g'`
systemtap-4.4/config.guess-153-	;;
##############################################
systemtap-4.4/config.guess-209-	    *)
systemtap-4.4/config.guess:210:		release=`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'`
systemtap-4.4/config.guess-211-		;;
##############################################
systemtap-4.4/config.guess-240-	*4.0)
systemtap-4.4/config.guess:241:		UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'`
systemtap-4.4/config.guess-242-		;;
systemtap-4.4/config.guess-243-	*5.*)
systemtap-4.4/config.guess:244:		UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'`
systemtap-4.4/config.guess-245-		;;
##############################################
systemtap-4.4/config.guess-250-	# types through head -n 1, so we only detect the type of CPU 0.
systemtap-4.4/config.guess:251:	ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^  The alpha \(.*\) processor.*$/\1/p' | head -n 1`
systemtap-4.4/config.guess-252-	case "$ALPHA_CPU_TYPE" in
##############################################
systemtap-4.4/config.guess-288-	# 1.2 uses "1.2" for uname -r.
systemtap-4.4/config.guess:289:	echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'`
systemtap-4.4/config.guess-290-	# Reset EXIT trap before exiting to avoid spurious non-zero exit code.
##############################################
systemtap-4.4/config.guess-348-    s390x:SunOS:*:*)
systemtap-4.4/config.guess:349:	echo ${UNAME_MACHINE}-ibm-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
systemtap-4.4/config.guess-350-	exit ;;
systemtap-4.4/config.guess-351-    sun4H:SunOS:5.*:*)
systemtap-4.4/config.guess:352:	echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
systemtap-4.4/config.guess-353-	exit ;;
systemtap-4.4/config.guess-354-    sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*)
systemtap-4.4/config.guess:355:	echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
systemtap-4.4/config.guess-356-	exit ;;
##############################################
systemtap-4.4/config.guess-373-	fi
systemtap-4.4/config.guess:374:	echo ${SUN_ARCH}-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
systemtap-4.4/config.guess-375-	exit ;;
##############################################
systemtap-4.4/config.guess-379-	# it's likely to be more like Solaris than SunOS4.
systemtap-4.4/config.guess:380:	echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
systemtap-4.4/config.guess-381-	exit ;;
##############################################
systemtap-4.4/config.guess-388-	# Japanese Language versions have a version number like `4.1.3-JL'.
systemtap-4.4/config.guess:389:	echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'`
systemtap-4.4/config.guess-390-	exit ;;
##############################################
systemtap-4.4/config.guess-394-    sun*:*:4.2BSD:*)
systemtap-4.4/config.guess:395:	UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null`
systemtap-4.4/config.guess-396-	test "x${UNAME_RELEASE}" = "x" && UNAME_RELEASE=3
##############################################
systemtap-4.4/config.guess-476-	$CC_FOR_BUILD -o $dummy $dummy.c &&
systemtap-4.4/config.guess:477:	  dummyarg=`echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` &&
systemtap-4.4/config.guess:478:	  SYSTEM_NAME=`$dummy $dummyarg` &&
systemtap-4.4/config.guess-479-	    { echo "$SYSTEM_NAME"; exit; }
##############################################
systemtap-4.4/config.guess-532-    *:IRIX*:*:*)
systemtap-4.4/config.guess:533:	echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'`
systemtap-4.4/config.guess-534-	exit ;;
##############################################
systemtap-4.4/config.guess-562-EOF
systemtap-4.4/config.guess:563:		if $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy`
systemtap-4.4/config.guess-564-		then
##############################################
systemtap-4.4/config.guess-575-    *:AIX:*:[4567])
systemtap-4.4/config.guess:576:	IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'`
systemtap-4.4/config.guess-577-	if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then
##############################################
systemtap-4.4/config.guess-611-    9000/[34678]??:HP-UX:*:*)
systemtap-4.4/config.guess:612:	HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'`
systemtap-4.4/config.guess-613-	case "${UNAME_MACHINE}" in
##############################################
systemtap-4.4/config.guess-665-EOF
systemtap-4.4/config.guess:666:		    (CCOPTS= $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy`
systemtap-4.4/config.guess-667-		    test -z "$HP_ARCH" && HP_ARCH=hppa
##############################################
systemtap-4.4/config.guess-693-    ia64:HP-UX:*:*)
systemtap-4.4/config.guess:694:	HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'`
systemtap-4.4/config.guess-695-	echo ia64-hp-hpux${HPUX_REV}
##############################################
systemtap-4.4/config.guess-723-EOF
systemtap-4.4/config.guess:724:	$CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` &&
systemtap-4.4/config.guess-725-		{ echo "$SYSTEM_NAME"; exit; }
##############################################
systemtap-4.4/config.guess-794-	FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'`
systemtap-4.4/config.guess:795:	FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'`
systemtap-4.4/config.guess-796-	echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}"
##############################################
systemtap-4.4/config.guess-799-	FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'`
systemtap-4.4/config.guess:800:	FUJITSU_REL=`echo ${UNAME_RELEASE} | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/ /_/'`
systemtap-4.4/config.guess-801-	echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}"
##############################################
systemtap-4.4/config.guess-815-	    amd64)
systemtap-4.4/config.guess:816:		echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;;
systemtap-4.4/config.guess-817-	    *)
systemtap-4.4/config.guess:818:		echo ${UNAME_PROCESSOR}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;;
systemtap-4.4/config.guess-819-	esac
##############################################
systemtap-4.4/config.guess-873-    prep*:SunOS:5.*:*)
systemtap-4.4/config.guess:874:	echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
systemtap-4.4/config.guess-875-	exit ;;
##############################################
systemtap-4.4/config.guess-877-	# the GNU system
systemtap-4.4/config.guess:878:	echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-${LIBC}`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'`
systemtap-4.4/config.guess-879-	exit ;;
##############################################
systemtap-4.4/config.guess-881-	# other systems with GNU libc and userland
systemtap-4.4/config.guess:882:	echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-${LIBC}
systemtap-4.4/config.guess-883-	exit ;;
##############################################
systemtap-4.4/config.guess-969-EOF
systemtap-4.4/config.guess:970:	eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'`
systemtap-4.4/config.guess-971-	test x"${CPU}" != x && { echo "${CPU}-unknown-linux-${LIBC}"; exit; }
##############################################
systemtap-4.4/config.guess-1063-    i*86:*:4.*:* | i*86:SYSTEM_V:4.*:*)
systemtap-4.4/config.guess:1064:	UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'`
systemtap-4.4/config.guess-1065-	if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then
##############################################
systemtap-4.4/config.guess-1263-	fi
systemtap-4.4/config.guess:1264:	if test `echo "$UNAME_RELEASE" | sed -e 's/\..*//'` -le 10 ; then
systemtap-4.4/config.guess-1265-	    if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then
##############################################
systemtap-4.4/config.guess-1348-    *:DragonFly:*:*)
systemtap-4.4/config.guess:1349:	echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`
systemtap-4.4/config.guess-1350-	exit ;;
##############################################
systemtap-4.4/config.guess-1361-    i*86:skyos:*:*)
systemtap-4.4/config.guess:1362:	echo ${UNAME_MACHINE}-pc-skyos`echo ${UNAME_RELEASE}` | sed -e 's/ .*$//'
systemtap-4.4/config.guess-1363-	exit ;;
##############################################
systemtap-4.4/config.rpath-33-host="$1"
systemtap-4.4/config.rpath:34:host_cpu=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
systemtap-4.4/config.rpath:35:host_vendor=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
systemtap-4.4/config.rpath:36:host_os=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
systemtap-4.4/config.rpath-37-
##############################################
systemtap-4.4/config.rpath-47-done
systemtap-4.4/config.rpath:48:cc_basename=`echo "$cc_temp" | sed -e 's%^.*/%%'`
systemtap-4.4/config.rpath-49-
##############################################
systemtap-4.4/config.rpath-94-        *)
systemtap-4.4/config.rpath:95:          case `$CC -V 2>&1 | sed 5q` in
systemtap-4.4/config.rpath-96-            *Sun\ F* | *Sun*Fortran*)
##############################################
systemtap-4.4/config.rpath-235-    sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*)
systemtap-4.4/config.rpath:236:      case `$LD -v 2>&1` in
systemtap-4.4/config.rpath-237-        *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*)
##############################################
systemtap-4.4/config.rpath-241-          if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
systemtap-4.4/config.rpath:242:            hardcode_libdir_flag_spec='`test -z "$SCOABSPATH" && echo ${wl}-rpath,$libdir`'
systemtap-4.4/config.rpath-243-          else
##############################################
systemtap-4.4/config.rpath-298-        case $host_os in aix4.[012]|aix4.[012].*)
systemtap-4.4/config.rpath:299:          collect2name=`${CC} -print-prog-name=collect2`
systemtap-4.4/config.rpath-300-          if test -f "$collect2name" && \
##############################################
systemtap-4.4/config.rpath-430-        hardcode_direct=yes
systemtap-4.4/config.rpath:431:        if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
systemtap-4.4/config.rpath-432-          hardcode_libdir_flag_spec='${wl}-rpath,$libdir'
##############################################
systemtap-4.4/config.rpath-494-    sysv5* | sco3.2v5* | sco5v6*)
systemtap-4.4/config.rpath:495:      hardcode_libdir_flag_spec='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`'
systemtap-4.4/config.rpath-496-      hardcode_libdir_separator=':'
##############################################
systemtap-4.4/config.rpath-645-sed_quote_subst='s/\(["`$\\]\)/\\\1/g'
systemtap-4.4/config.rpath:646:escaped_wl=`echo "X$wl" | sed -e 's/^X//' -e "$sed_quote_subst"`
systemtap-4.4/config.rpath:647:shlibext=`echo "$shrext" | sed -e 's,^\.,,'`
systemtap-4.4/config.rpath:648:escaped_libname_spec=`echo "X$libname_spec" | sed -e 's/^X//' -e "$sed_quote_subst"`
systemtap-4.4/config.rpath:649:escaped_library_names_spec=`echo "X$library_names_spec" | sed -e 's/^X//' -e "$sed_quote_subst"`
systemtap-4.4/config.rpath:650:escaped_hardcode_libdir_flag_spec=`echo "X$hardcode_libdir_flag_spec" | sed -e 's/^X//' -e "$sed_quote_subst"`
systemtap-4.4/config.rpath-651-
##############################################
systemtap-4.4/config.sub-52-
systemtap-4.4/config.sub:53:me=`echo "$0" | sed -e 's,.*/,,'`
systemtap-4.4/config.sub-54-
##############################################
systemtap-4.4/config.sub-115-# Here we must recognize all the valid KERNEL-OS combinations.
systemtap-4.4/config.sub:116:maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'`
systemtap-4.4/config.sub-117-case $maybe_os in
##############################################
systemtap-4.4/config.sub-123-    os=-$maybe_os
systemtap-4.4/config.sub:124:    basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`
systemtap-4.4/config.sub-125-    ;;
##############################################
systemtap-4.4/config.sub-127-    os=-linux-android
systemtap-4.4/config.sub:128:    basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`-unknown
systemtap-4.4/config.sub-129-    ;;
systemtap-4.4/config.sub-130-  *)
systemtap-4.4/config.sub:131:    basic_machine=`echo $1 | sed 's/-[^-]*$//'`
systemtap-4.4/config.sub-132-    if [ $basic_machine != $1 ]
systemtap-4.4/config.sub:133:    then os=`echo $1 | sed 's/.*-/-/'`
systemtap-4.4/config.sub-134-    else os=; fi
##############################################
systemtap-4.4/config.sub-181-		os=-sco5v6
systemtap-4.4/config.sub:182:		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
systemtap-4.4/config.sub-183-		;;
##############################################
systemtap-4.4/config.sub-185-		os=-sco3.2v5
systemtap-4.4/config.sub:186:		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
systemtap-4.4/config.sub-187-		;;
##############################################
systemtap-4.4/config.sub-189-		os=-sco3.2v4
systemtap-4.4/config.sub:190:		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
systemtap-4.4/config.sub-191-		;;
systemtap-4.4/config.sub-192-	-sco3.2.[4-9]*)
systemtap-4.4/config.sub:193:		os=`echo $os | sed -e 's/sco3.2./sco3.2v/'`
systemtap-4.4/config.sub:194:		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
systemtap-4.4/config.sub-195-		;;
##############################################
systemtap-4.4/config.sub-197-		# Don't forget version if it is 3.2v4 or newer.
systemtap-4.4/config.sub:198:		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
systemtap-4.4/config.sub-199-		;;
##############################################
systemtap-4.4/config.sub-201-		# Don't forget version if it is 3.2v4 or newer.
systemtap-4.4/config.sub:202:		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
systemtap-4.4/config.sub-203-		;;
##############################################
systemtap-4.4/config.sub-205-		os=-sco3.2v2
systemtap-4.4/config.sub:206:		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
systemtap-4.4/config.sub-207-		;;
systemtap-4.4/config.sub-208-	-udk*)
systemtap-4.4/config.sub:209:		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
systemtap-4.4/config.sub-210-		;;
##############################################
systemtap-4.4/config.sub-212-		os=-isc2.2
systemtap-4.4/config.sub:213:		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
systemtap-4.4/config.sub-214-		;;
##############################################
systemtap-4.4/config.sub-218-	-isc*)
systemtap-4.4/config.sub:219:		basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'`
systemtap-4.4/config.sub-220-		;;
##############################################
systemtap-4.4/config.sub-230-	-ptx*)
systemtap-4.4/config.sub:231:		basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'`
systemtap-4.4/config.sub-232-		;;
systemtap-4.4/config.sub-233-	-windowsnt*)
systemtap-4.4/config.sub:234:		os=`echo $os | sed -e 's/windowsnt/winnt/'`
systemtap-4.4/config.sub-235-		;;
##############################################
systemtap-4.4/config.sub-366-	*-*-*)
systemtap-4.4/config.sub:367:		echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2
systemtap-4.4/config.sub-368-		exit 1
##############################################
systemtap-4.4/config.sub-491-	amd64-*)
systemtap-4.4/config.sub:492:		basic_machine=x86_64-`echo $basic_machine | sed 's/^[^-]*-//'`
systemtap-4.4/config.sub-493-		;;
##############################################
systemtap-4.4/config.sub-533-	blackfin-*)
systemtap-4.4/config.sub:534:		basic_machine=bfin-`echo $basic_machine | sed 's/^[^-]*-//'`
systemtap-4.4/config.sub-535-		os=-linux
##############################################
systemtap-4.4/config.sub-541-	c54x-*)
systemtap-4.4/config.sub:542:		basic_machine=tic54x-`echo $basic_machine | sed 's/^[^-]*-//'`
systemtap-4.4/config.sub-543-		;;
systemtap-4.4/config.sub-544-	c55x-*)
systemtap-4.4/config.sub:545:		basic_machine=tic55x-`echo $basic_machine | sed 's/^[^-]*-//'`
systemtap-4.4/config.sub-546-		;;
systemtap-4.4/config.sub-547-	c6x-*)
systemtap-4.4/config.sub:548:		basic_machine=tic6x-`echo $basic_machine | sed 's/^[^-]*-//'`
systemtap-4.4/config.sub-549-		;;
##############################################
systemtap-4.4/config.sub-744-	i*86v32)
systemtap-4.4/config.sub:745:		basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
systemtap-4.4/config.sub-746-		os=-sysv32
##############################################
systemtap-4.4/config.sub-748-	i*86v4*)
systemtap-4.4/config.sub:749:		basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
systemtap-4.4/config.sub-750-		os=-sysv4
##############################################
systemtap-4.4/config.sub-752-	i*86v)
systemtap-4.4/config.sub:753:		basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
systemtap-4.4/config.sub-754-		os=-sysv
##############################################
systemtap-4.4/config.sub-756-	i*86sol2)
systemtap-4.4/config.sub:757:		basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
systemtap-4.4/config.sub-758-		os=-solaris2
##############################################
systemtap-4.4/config.sub-782-	leon-*|leon[3-9]-*)
systemtap-4.4/config.sub:783:		basic_machine=sparc-`echo $basic_machine | sed 's/-.*//'`
systemtap-4.4/config.sub-784-		;;
##############################################
systemtap-4.4/config.sub-789-	m68knommu-*)
systemtap-4.4/config.sub:790:		basic_machine=m68k-`echo $basic_machine | sed 's/^[^-]*-//'`
systemtap-4.4/config.sub-791-		os=-linux
##############################################
systemtap-4.4/config.sub-826-	mips3*-*)
systemtap-4.4/config.sub:827:		basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`
systemtap-4.4/config.sub-828-		;;
systemtap-4.4/config.sub-829-	mips3*)
systemtap-4.4/config.sub:830:		basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown
systemtap-4.4/config.sub-831-		;;
##############################################
systemtap-4.4/config.sub-848-	ms1-*)
systemtap-4.4/config.sub:849:		basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'`
systemtap-4.4/config.sub-850-		;;
##############################################
systemtap-4.4/config.sub-967-	parisc-*)
systemtap-4.4/config.sub:968:		basic_machine=hppa-`echo $basic_machine | sed 's/^[^-]*-//'`
systemtap-4.4/config.sub-969-		os=-linux
##############################################
systemtap-4.4/config.sub-983-	pc98-*)
systemtap-4.4/config.sub:984:		basic_machine=i386-`echo $basic_machine | sed 's/^[^-]*-//'`
systemtap-4.4/config.sub-985-		;;
##############################################
systemtap-4.4/config.sub-998-	pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*)
systemtap-4.4/config.sub:999:		basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'`
systemtap-4.4/config.sub-1000-		;;
systemtap-4.4/config.sub-1001-	pentiumpro-* | p6-* | 6x86-* | athlon-*)
systemtap-4.4/config.sub:1002:		basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'`
systemtap-4.4/config.sub-1003-		;;
systemtap-4.4/config.sub-1004-	pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*)
systemtap-4.4/config.sub:1005:		basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'`
systemtap-4.4/config.sub-1006-		;;
systemtap-4.4/config.sub-1007-	pentium4-*)
systemtap-4.4/config.sub:1008:		basic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'`
systemtap-4.4/config.sub-1009-		;;
##############################################
systemtap-4.4/config.sub-1017-	ppc-* | ppcbe-*)
systemtap-4.4/config.sub:1018:		basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'`
systemtap-4.4/config.sub-1019-		;;
##############################################
systemtap-4.4/config.sub-1023-	ppcle-* | powerpclittle-*)
systemtap-4.4/config.sub:1024:		basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'`
systemtap-4.4/config.sub-1025-		;;
##############################################
systemtap-4.4/config.sub-1027-		;;
systemtap-4.4/config.sub:1028:	ppc64-* | ppc64p7-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'`
systemtap-4.4/config.sub-1029-		;;
##############################################
systemtap-4.4/config.sub-1033-	ppc64le-* | powerpc64little-*)
systemtap-4.4/config.sub:1034:		basic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-//'`
systemtap-4.4/config.sub-1035-		;;
##############################################
systemtap-4.4/config.sub-1116-	strongarm-* | thumb-*)
systemtap-4.4/config.sub:1117:		basic_machine=arm-`echo $basic_machine | sed 's/^[^-]*-//'`
systemtap-4.4/config.sub-1118-		;;
##############################################
systemtap-4.4/config.sub-1246-	xscale-* | xscalee[bl]-*)
systemtap-4.4/config.sub:1247:		basic_machine=`echo $basic_machine | sed 's/^xscale/arm/'`
systemtap-4.4/config.sub-1248-		;;
##############################################
systemtap-4.4/config.sub-1323-	*)
systemtap-4.4/config.sub:1324:		echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2
systemtap-4.4/config.sub-1325-		exit 1
##############################################
systemtap-4.4/config.sub-1331-	*-digital*)
systemtap-4.4/config.sub:1332:		basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'`
systemtap-4.4/config.sub-1333-		;;
systemtap-4.4/config.sub-1334-	*-commodore*)
systemtap-4.4/config.sub:1335:		basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'`
systemtap-4.4/config.sub-1336-		;;
##############################################
systemtap-4.4/config.sub-1352-	-solaris1 | -solaris1.*)
systemtap-4.4/config.sub:1353:		os=`echo $os | sed -e 's|solaris1|sunos4|'`
systemtap-4.4/config.sub-1354-		;;
##############################################
systemtap-4.4/config.sub-1364-	-gnu/linux*)
systemtap-4.4/config.sub:1365:		os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'`
systemtap-4.4/config.sub-1366-		;;
##############################################
systemtap-4.4/config.sub-1410-	-nto*)
systemtap-4.4/config.sub:1411:		os=`echo $os | sed -e 's|nto|nto-qnx|'`
systemtap-4.4/config.sub-1412-		;;
##############################################
systemtap-4.4/config.sub-1417-	-mac*)
systemtap-4.4/config.sub:1418:		os=`echo $os | sed -e 's|mac|macos|'`
systemtap-4.4/config.sub-1419-		;;
##############################################
systemtap-4.4/config.sub-1423-	-linux*)
systemtap-4.4/config.sub:1424:		os=`echo $os | sed -e 's|linux|linux-gnu|'`
systemtap-4.4/config.sub-1425-		;;
systemtap-4.4/config.sub-1426-	-sunos5*)
systemtap-4.4/config.sub:1427:		os=`echo $os | sed -e 's|sunos5|solaris2|'`
systemtap-4.4/config.sub-1428-		;;
systemtap-4.4/config.sub-1429-	-sunos6*)
systemtap-4.4/config.sub:1430:		os=`echo $os | sed -e 's|sunos6|solaris3|'`
systemtap-4.4/config.sub-1431-		;;
##############################################
systemtap-4.4/config.sub-1478-	-sinix5.*)
systemtap-4.4/config.sub:1479:		os=`echo $os | sed -e 's|sinix|sysv|'`
systemtap-4.4/config.sub-1480-		;;
##############################################
systemtap-4.4/config.sub-1531-		# Get rid of the `-' at the beginning of $os.
systemtap-4.4/config.sub:1532:		os=`echo $os | sed 's/[^-]*-//'`
systemtap-4.4/config.sub:1533:		echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2
systemtap-4.4/config.sub-1534-		exit 1
##############################################
systemtap-4.4/config.sub-1794-		esac
systemtap-4.4/config.sub:1795:		basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"`
systemtap-4.4/config.sub-1796-		;;
##############################################
systemtap-4.4/configure-45-if test -z "$BASH_VERSION$ZSH_VERSION" \
systemtap-4.4/configure:46:    && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
systemtap-4.4/configure-47-  as_echo='print -r --'
systemtap-4.4/configure-48-  as_echo_n='print -rn --'
systemtap-4.4/configure:49:elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
systemtap-4.4/configure-50-  as_echo='printf %s\n'
##############################################
systemtap-4.4/configure-52-else
systemtap-4.4/configure:53:  if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
systemtap-4.4/configure-54-    as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
##############################################
systemtap-4.4/configure-62-	expr "X$arg" : "X\\(.*\\)$as_nl";
systemtap-4.4/configure:63:	arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
systemtap-4.4/configure-64-      esac;
##############################################
systemtap-4.4/configure-199-  eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" &&
systemtap-4.4/configure:200:  test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1
systemtap-4.4/configure-201-test \$(( 1 + 1 )) = 2 || exit 1"
##############################################
systemtap-4.4/configure-327-      case $as_dir in #(
systemtap-4.4/configure:328:      *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
systemtap-4.4/configure-329-      *) as_qdir=$as_dir;;
##############################################
systemtap-4.4/configure-400-  {
systemtap-4.4/configure:401:    as_val=`expr "$@" || test $? -eq 1`
systemtap-4.4/configure-402-  }
##############################################
systemtap-4.4/configure-407-# ----------------------------------------
systemtap-4.4/configure:408:# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
systemtap-4.4/configure-409-# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
##############################################
systemtap-4.4/configure-470-  eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" &&
systemtap-4.4/configure:471:  test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || {
systemtap-4.4/configure-472-  # Blame Lee E. McMahon (1931-1989) for sed's syntax.  :-)
##############################################
systemtap-4.4/configure-1039-  case $ac_option in
systemtap-4.4/configure:1040:  *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
systemtap-4.4/configure-1041-  *=)   ac_optarg= ;;
##############################################
systemtap-4.4/configure-1083-  -disable-* | --disable-*)
systemtap-4.4/configure:1084:    ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
systemtap-4.4/configure-1085-    # Reject names that are not valid shell variable names.
##############################################
systemtap-4.4/configure-1088-    ac_useropt_orig=$ac_useropt
systemtap-4.4/configure:1089:    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
systemtap-4.4/configure-1090-    case $ac_user_opts in
##############################################
systemtap-4.4/configure-1109-  -enable-* | --enable-*)
systemtap-4.4/configure:1110:    ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
systemtap-4.4/configure-1111-    # Reject names that are not valid shell variable names.
##############################################
systemtap-4.4/configure-1114-    ac_useropt_orig=$ac_useropt
systemtap-4.4/configure:1115:    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
systemtap-4.4/configure-1116-    case $ac_user_opts in
##############################################
systemtap-4.4/configure-1313-  -with-* | --with-*)
systemtap-4.4/configure:1314:    ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
systemtap-4.4/configure-1315-    # Reject names that are not valid shell variable names.
##############################################
systemtap-4.4/configure-1318-    ac_useropt_orig=$ac_useropt
systemtap-4.4/configure:1319:    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
systemtap-4.4/configure-1320-    case $ac_user_opts in
##############################################
systemtap-4.4/configure-1329-  -without-* | --without-*)
systemtap-4.4/configure:1330:    ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'`
systemtap-4.4/configure-1331-    # Reject names that are not valid shell variable names.
##############################################
systemtap-4.4/configure-1334-    ac_useropt_orig=$ac_useropt
systemtap-4.4/configure:1335:    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
systemtap-4.4/configure-1336-    case $ac_user_opts in
##############################################
systemtap-4.4/configure-1367-  *=*)
systemtap-4.4/configure:1368:    ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='`
systemtap-4.4/configure-1369-    # Reject names that are not valid shell variable names.
##############################################
systemtap-4.4/configure-1388-if test -n "$ac_prev"; then
systemtap-4.4/configure:1389:  ac_option=--`echo $ac_prev | sed 's/_/-/g'`
systemtap-4.4/configure-1390-  as_fn_error $? "missing argument to $ac_option"
##############################################
systemtap-4.4/configure-1410-    */ )
systemtap-4.4/configure:1411:      ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'`
systemtap-4.4/configure-1412-      eval $ac_var=\$ac_val;;
##############################################
systemtap-4.4/configure-1445-ac_ls_di=`ls -di .` &&
systemtap-4.4/configure:1446:ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` ||
systemtap-4.4/configure-1447-  as_fn_error $? "working directory cannot be determined"
##############################################
systemtap-4.4/configure-1501-case $srcdir in
systemtap-4.4/configure:1502:*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;;
systemtap-4.4/configure-1503-esac
##############################################
systemtap-4.4/configure-1544-By default, \`make install' will install all the files in
systemtap-4.4/configure:1545:\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc.  You can specify
systemtap-4.4/configure:1546:an installation prefix other than \`$ac_default_prefix' using \`--prefix',
systemtap-4.4/configure-1547-for instance \`--prefix=\$HOME'.
##############################################
systemtap-4.4/configure-1749-*)
systemtap-4.4/configure:1750:  ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
systemtap-4.4/configure-1751-  # A ".." for each directory in $ac_dir_suffix.
systemtap-4.4/configure:1752:  ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
systemtap-4.4/configure-1753-  case $ac_top_builddir_sub in
##############################################
systemtap-4.4/configure-2381-  as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack
systemtap-4.4/configure:2382:  as_decl_name=`echo $2|sed 's/ *(.*//'`
systemtap-4.4/configure:2383:  as_decl_use=`echo $2|sed -e 's/(/((/' -e 's/)/) 0&/' -e 's/,/) 0& (/g'`
systemtap-4.4/configure-2384-  { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $as_decl_name is declared" >&5
##############################################
systemtap-4.4/configure-2495-    *\'*)
systemtap-4.4/configure:2496:      ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
systemtap-4.4/configure-2497-    esac
##############################################
systemtap-4.4/configure-2578-      case $ac_val in
systemtap-4.4/configure:2579:      *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
systemtap-4.4/configure-2580-      esac
##############################################
systemtap-4.4/configure-2593-	case $ac_val in
systemtap-4.4/configure:2594:	*\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
systemtap-4.4/configure-2595-	esac
##############################################
systemtap-4.4/configure-2714-    set,)
systemtap-4.4/configure:2715:      { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
systemtap-4.4/configure:2716:$as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
systemtap-4.4/configure-2717-      ac_cache_corrupted=: ;;
##############################################
systemtap-4.4/configure-2725-	# differences in whitespace do not lead to failure.
systemtap-4.4/configure:2726:	ac_old_val_w=`echo x $ac_old_val`
systemtap-4.4/configure:2727:	ac_new_val_w=`echo x $ac_new_val`
systemtap-4.4/configure-2728-	if test "$ac_old_val_w" != "$ac_new_val_w"; then
##############################################
systemtap-4.4/configure-2745-    case $ac_new_val in
systemtap-4.4/configure:2746:    *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
systemtap-4.4/configure-2747-    *) ac_arg=$ac_var=$ac_new_val ;;
##############################################
systemtap-4.4/configure-2813-test "x$ac_build_alias" = x &&
systemtap-4.4/configure:2814:  ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"`
systemtap-4.4/configure-2815-test "x$ac_build_alias" = x &&
systemtap-4.4/configure-2816-  as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5
systemtap-4.4/configure:2817:ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` ||
systemtap-4.4/configure-2818-  as_fn_error $? "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5
##############################################
systemtap-4.4/configure-2837-IFS=$ac_save_IFS
systemtap-4.4/configure:2838:case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac
systemtap-4.4/configure-2839-
##############################################
systemtap-4.4/configure-2848-else
systemtap-4.4/configure:2849:  ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` ||
systemtap-4.4/configure-2850-    as_fn_error $? "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5
##############################################
systemtap-4.4/configure-2870-IFS=$ac_save_IFS
systemtap-4.4/configure:2871:case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac
systemtap-4.4/configure-2872-
##############################################
systemtap-4.4/configure-2881-else
systemtap-4.4/configure:2882:  ac_cv_target=`$SHELL "$ac_aux_dir/config.sub" $target_alias` ||
systemtap-4.4/configure-2883-    as_fn_error $? "$SHELL $ac_aux_dir/config.sub $target_alias failed" "$LINENO" 5
##############################################
systemtap-4.4/configure-2903-IFS=$ac_save_IFS
systemtap-4.4/configure:2904:case $target_os in *\ *) target_os=`echo "$target_os" | sed 's/ /-/g'`;; esac
systemtap-4.4/configure-2905-
##############################################
systemtap-4.4/configure-3033-     echo "timestamp, slept: $am_has_slept" > conftest.file
systemtap-4.4/configure:3034:     set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null`
systemtap-4.4/configure-3035-     if test "$*" = "X"; then
systemtap-4.4/configure-3036-	# -L didn't work.
systemtap-4.4/configure:3037:	set X `ls -t "$srcdir/configure" conftest.file`
systemtap-4.4/configure-3038-     fi
##############################################
systemtap-4.4/configure-3084-ac_script='s/[\\$]/&&/g;s/;s,x,x,$//'
systemtap-4.4/configure:3085:program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"`
systemtap-4.4/configure-3086-
systemtap-4.4/configure-3087-# Expand $ac_aux_dir to an absolute path.
systemtap-4.4/configure:3088:am_aux_dir=`cd "$ac_aux_dir" && pwd`
systemtap-4.4/configure-3089-
##############################################
systemtap-4.4/configure-3229-	   as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext" || continue
systemtap-4.4/configure:3230:	   case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #(
systemtap-4.4/configure-3231-	     'mkdir (GNU coreutils) '* | \
##############################################
systemtap-4.4/configure-3302-set x ${MAKE-make}
systemtap-4.4/configure:3303:ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'`
systemtap-4.4/configure-3304-if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then :
##############################################
systemtap-4.4/configure-3312-# GNU make sometimes prints "make[1]: Entering ...", which would confuse us.
systemtap-4.4/configure:3313:case `${MAKE-make} -f conftest.make 2>/dev/null` in
systemtap-4.4/configure-3314-  *@@@%%%=?*=@@@%%%*)
##############################################
systemtap-4.4/configure-3378-
systemtap-4.4/configure:3379:if test "`cd $srcdir && pwd`" != "`pwd`"; then
systemtap-4.4/configure-3380-  # Use -I$(srcdir) only when $(srcdir) != ., so that make's output
##############################################
systemtap-4.4/configure-3966-$as_echo_n "checking whether the C compiler works... " >&6; }
systemtap-4.4/configure:3967:ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'`
systemtap-4.4/configure-3968-
##############################################
systemtap-4.4/configure-4010-	then :; else
systemtap-4.4/configure:4011:	   ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
systemtap-4.4/configure-4012-	fi
##############################################
systemtap-4.4/configure-4070-    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;;
systemtap-4.4/configure:4071:    *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
systemtap-4.4/configure-4072-	  break;;
##############################################
systemtap-4.4/configure-4179-    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;;
systemtap-4.4/configure:4180:    *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'`
systemtap-4.4/configure-4181-       break;;
##############################################
systemtap-4.4/configure-4497-  if test "$am_compiler_list" = ""; then
systemtap-4.4/configure:4498:     am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp`
systemtap-4.4/configure-4499-  fi
##############################################
systemtap-4.4/configure-4754-  # Check for GNU $ac_path_GREP
systemtap-4.4/configure:4755:case `"$ac_path_GREP" --version 2>&1` in
systemtap-4.4/configure-4756-*GNU*)
##############################################
systemtap-4.4/configure-4820-  # Check for GNU $ac_path_EGREP
systemtap-4.4/configure:4821:case `"$ac_path_EGREP" --version 2>&1` in
systemtap-4.4/configure-4822-*GNU*)
##############################################
systemtap-4.4/configure-4981-do :
systemtap-4.4/configure:4982:  as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
systemtap-4.4/configure-4983-ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default
##############################################
systemtap-4.4/configure-4986-  cat >>confdefs.h <<_ACEOF
systemtap-4.4/configure:4987:#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
systemtap-4.4/configure-4988-_ACEOF
##############################################
systemtap-4.4/configure-5695-  if test "$am_compiler_list" = ""; then
systemtap-4.4/configure:5696:     am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp`
systemtap-4.4/configure-5697-  fi
##############################################
systemtap-4.4/configure-6080-  if test "$am_compiler_list" = ""; then
systemtap-4.4/configure:6081:     am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp`
systemtap-4.4/configure-6082-  fi
##############################################
systemtap-4.4/configure-6586-set x ${MAKE-make}
systemtap-4.4/configure:6587:ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'`
systemtap-4.4/configure-6588-if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then :
##############################################
systemtap-4.4/configure-6596-# GNU make sometimes prints "make[1]: Entering ...", which would confuse us.
systemtap-4.4/configure:6597:case `${MAKE-make} -f conftest.make 2>/dev/null` in
systemtap-4.4/configure-6598-  *@@@%%%=?*=@@@%%%*)
##############################################
systemtap-4.4/configure-6863-  # Check for GNU $ac_path_SED
systemtap-4.4/configure:6864:case `"$ac_path_SED" --version 2>&1` in
systemtap-4.4/configure-6865-*GNU*)
##############################################
systemtap-4.4/configure-7038-
systemtap-4.4/configure:7039:    case `$MSGFMT --version | sed 1q | sed -e 's,^[^0-9]*,,'` in
systemtap-4.4/configure-7040-    '' | 0.[0-9] | 0.[0-9].* | 0.1[0-4] | 0.1[0-4].*) MSGFMT_015=: ;;
##############################################
systemtap-4.4/configure-7043-
systemtap-4.4/configure:7044:  case `$GMSGFMT --version | sed 1q | sed -e 's,^[^0-9]*,,'` in
systemtap-4.4/configure-7045-    '' | 0.[0-9] | 0.[0-9].* | 0.1[0-4] | 0.1[0-4].*) GMSGFMT_015=: ;;
##############################################
systemtap-4.4/configure-7120-
systemtap-4.4/configure:7121:    case `$XGETTEXT --version | sed 1q | sed -e 's,^[^0-9]*,,'` in
systemtap-4.4/configure-7122-    '' | 0.[0-9] | 0.[0-9].* | 0.1[0-4] | 0.1[0-4].*) XGETTEXT_015=: ;;
##############################################
systemtap-4.4/configure-7250-    # gcc leaves a trailing carriage return which upsets mingw
systemtap-4.4/configure:7251:    ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;;
systemtap-4.4/configure-7252-  *)
systemtap-4.4/configure:7253:    ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;
systemtap-4.4/configure-7254-  esac
##############################################
systemtap-4.4/configure-7259-      # Canonicalize the pathname of ld
systemtap-4.4/configure:7260:      ac_prog=`echo "$ac_prog"| sed 's%\\\\%/%g'`
systemtap-4.4/configure-7261-      while echo "$ac_prog" | grep "$re_direlt" > /dev/null 2>&1; do
systemtap-4.4/configure:7262:        ac_prog=`echo $ac_prog| sed "s%$re_direlt%/%"`
systemtap-4.4/configure-7263-      done
##############################################
systemtap-4.4/configure-7294-      # Break only if it was the GNU/non-GNU ld that we prefer.
systemtap-4.4/configure:7295:      case `"$acl_cv_path_LD" -v 2>&1 </dev/null` in
systemtap-4.4/configure-7296-      *GNU* | *'with BFD'*)
##############################################
systemtap-4.4/configure-7325-  # I'd rather use --version here, but apparently some GNU lds only accept -v.
systemtap-4.4/configure:7326:case `$LD -v 2>&1 </dev/null` in
systemtap-4.4/configure-7327-*GNU* | *'with BFD'*)
##############################################
systemtap-4.4/configure-7413-    *)
systemtap-4.4/configure:7414:      searchpath=`(LC_ALL=C $CC -print-search-dirs) 2>/dev/null | sed -n -e 's,^libraries: ,,p' | sed -e 's,^=,,'`
systemtap-4.4/configure-7415-      if test -n "$searchpath"; then
##############################################
systemtap-4.4/configure-7423-                ;;
systemtap-4.4/configure:7424:              *) searchdir=`cd "$searchdir" && pwd`
systemtap-4.4/configure-7425-                 case "$searchdir" in
##############################################
systemtap-4.4/configure-7514-        names_already_handled="$names_already_handled $name"
systemtap-4.4/configure:7515:                        uppername=`echo "$name" | sed -e 'y|abcdefghijklmnopqrstuvwxyz./+-|ABCDEFGHIJKLMNOPQRSTUVWXYZ____|'`
systemtap-4.4/configure-7516-        eval value=\"\$HAVE_LIB$uppername\"
##############################################
systemtap-4.4/configure-7590-                -L*)
systemtap-4.4/configure:7591:                  dir=`echo "X$x" | sed -e 's/^X-L//'`
systemtap-4.4/configure-7592-                                    if test -n "$acl_shlibext"; then
##############################################
systemtap-4.4/configure-7707-              */$acl_libdirstem | */$acl_libdirstem/)
systemtap-4.4/configure:7708:                basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e "s,/$acl_libdirstem/"'*$,,'`
systemtap-4.4/configure-7709-                if test "$name" = 'iconv'; then
##############################################
systemtap-4.4/configure-7714-              */$acl_libdirstem2 | */$acl_libdirstem2/)
systemtap-4.4/configure:7715:                basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e "s,/$acl_libdirstem2/"'*$,,'`
systemtap-4.4/configure-7716-                if test "$name" = 'iconv'; then
##############################################
systemtap-4.4/configure-7765-                  -L*)
systemtap-4.4/configure:7766:                    additional_libdir=`echo "X$dep" | sed -e 's/^X-L//'`
systemtap-4.4/configure-7767-                                                                                                                                                                if test "X$additional_libdir" != "X/usr/$acl_libdirstem" \
##############################################
systemtap-4.4/configure-7824-                  -R*)
systemtap-4.4/configure:7825:                    dir=`echo "X$dep" | sed -e 's/^X-R//'`
systemtap-4.4/configure-7826-                    if test "$enable_rpath" != no; then
##############################################
systemtap-4.4/configure-7849-                  -l*)
systemtap-4.4/configure:7850:                                        names_next_round="$names_next_round "`echo "X$dep" | sed -e 's/^X-l//'`
systemtap-4.4/configure-7851-                    ;;
systemtap-4.4/configure-7852-                  *.la)
systemtap-4.4/configure:7853:                                                                                names_next_round="$names_next_round "`echo "X$dep" | sed -e 's,^X.*/,,' -e 's,^lib,,' -e 's,\.la$,,'`
systemtap-4.4/configure-7854-                    ;;
##############################################
systemtap-4.4/configure-8407-        names_already_handled="$names_already_handled $name"
systemtap-4.4/configure:8408:                        uppername=`echo "$name" | sed -e 'y|abcdefghijklmnopqrstuvwxyz./+-|ABCDEFGHIJKLMNOPQRSTUVWXYZ____|'`
systemtap-4.4/configure-8409-        eval value=\"\$HAVE_LIB$uppername\"
##############################################
systemtap-4.4/configure-8483-                -L*)
systemtap-4.4/configure:8484:                  dir=`echo "X$x" | sed -e 's/^X-L//'`
systemtap-4.4/configure-8485-                                    if test -n "$acl_shlibext"; then
##############################################
systemtap-4.4/configure-8600-              */$acl_libdirstem | */$acl_libdirstem/)
systemtap-4.4/configure:8601:                basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e "s,/$acl_libdirstem/"'*$,,'`
systemtap-4.4/configure-8602-                if test "$name" = 'intl'; then
##############################################
systemtap-4.4/configure-8607-              */$acl_libdirstem2 | */$acl_libdirstem2/)
systemtap-4.4/configure:8608:                basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e "s,/$acl_libdirstem2/"'*$,,'`
systemtap-4.4/configure-8609-                if test "$name" = 'intl'; then
##############################################
systemtap-4.4/configure-8658-                  -L*)
systemtap-4.4/configure:8659:                    additional_libdir=`echo "X$dep" | sed -e 's/^X-L//'`
systemtap-4.4/configure-8660-                                                                                                                                                                if test "X$additional_libdir" != "X/usr/$acl_libdirstem" \
##############################################
systemtap-4.4/configure-8717-                  -R*)
systemtap-4.4/configure:8718:                    dir=`echo "X$dep" | sed -e 's/^X-R//'`
systemtap-4.4/configure-8719-                    if test "$enable_rpath" != no; then
##############################################
systemtap-4.4/configure-8742-                  -l*)
systemtap-4.4/configure:8743:                                        names_next_round="$names_next_round "`echo "X$dep" | sed -e 's/^X-l//'`
systemtap-4.4/configure-8744-                    ;;
systemtap-4.4/configure-8745-                  *.la)
systemtap-4.4/configure:8746:                                                                                names_next_round="$names_next_round "`echo "X$dep" | sed -e 's,^X.*/,,' -e 's,^lib,,' -e 's,\.la$,,'`
systemtap-4.4/configure-8747-                    ;;
##############################################
systemtap-4.4/configure-9039-else
systemtap-4.4/configure:9040:  ac_cv_python_unknown_version=`$PYTHON_UNKNOWN -c "import sys; sys.stdout.write(sys.version[:3][0])"`
systemtap-4.4/configure-9041-fi
##############################################
systemtap-4.4/configure-9184-else
systemtap-4.4/configure:9185:  am_cv_python_version=`$PYTHON -c "import sys; sys.stdout.write(sys.version[:3])"`
systemtap-4.4/configure-9186-fi
##############################################
systemtap-4.4/configure-9203-else
systemtap-4.4/configure:9204:  am_cv_python_platform=`$PYTHON -c "import sys; sys.stdout.write(sys.platform)"`
systemtap-4.4/configure-9205-fi
##############################################
systemtap-4.4/configure-9252-     $am_py_prefix*)
systemtap-4.4/configure:9253:       am__strip_prefix=`echo "$am_py_prefix" | sed 's|.|.|g'`
systemtap-4.4/configure:9254:       am_cv_python_pythondir=`echo "$am_cv_python_pythondir" | sed "s,^$am__strip_prefix,$PYTHON_PREFIX,"`
systemtap-4.4/configure-9255-       ;;
##############################################
systemtap-4.4/configure-9296-     $am_py_exec_prefix*)
systemtap-4.4/configure:9297:       am__strip_prefix=`echo "$am_py_exec_prefix" | sed 's|.|.|g'`
systemtap-4.4/configure:9298:       am_cv_python_pyexecdir=`echo "$am_cv_python_pyexecdir" | sed "s,^$am__strip_prefix,$PYTHON_EXEC_PREFIX,"`
systemtap-4.4/configure-9299-       ;;
##############################################
systemtap-4.4/configure-9448-else
systemtap-4.4/configure:9449:  ac_cv_python3_version=`$PYTHON3 -c "import sys; sys.stdout.write(sys.version[:3])"`
systemtap-4.4/configure-9450-fi
##############################################
systemtap-4.4/configure-9463-else
systemtap-4.4/configure:9464:  ac_cv_python3_platform=`$PYTHON3 -c "import sys; sys.stdout.write(sys.platform)"`
systemtap-4.4/configure-9465-fi
##############################################
systemtap-4.4/configure-9475-else
systemtap-4.4/configure:9476:  ac_cv_python3_dir=`$PYTHON3 -c "import distutils.sysconfig; print(distutils.sysconfig.get_python_lib(0,0,prefix='$PYTHON3_PREFIX'))"`
systemtap-4.4/configure-9477-fi
##############################################
systemtap-4.4/configure-9487-else
systemtap-4.4/configure:9488:  ac_cv_py3execdir=`$PYTHON3 -c "import distutils.sysconfig; print(distutils.sysconfig.get_python_lib(1,0,prefix='$PYTHON3_EXEC_PREFIX'))"`
systemtap-4.4/configure-9489-fi
##############################################
systemtap-4.4/configure-9871-                for switch in -std=c++11 -std=c++0x +std=c++11 "-h std=c++11"; do
systemtap-4.4/configure:9872:      cachevar=`$as_echo "ax_cv_cxx_compile_cxx11_$switch" | $as_tr_sh`
systemtap-4.4/configure-9873-      { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CXX supports C++11 features with $switch" >&5
##############################################
systemtap-4.4/configure-10497-  test $ac_status = 0; }; then
systemtap-4.4/configure:10498:  pkg_cv_debuginfod_CFLAGS=`$PKG_CONFIG --cflags "libdebuginfod >= 0.179" 2>/dev/null`
systemtap-4.4/configure-10499-		      test "x$?" != "x0" && pkg_failed=yes
##############################################
systemtap-4.4/configure-10514-  test $ac_status = 0; }; then
systemtap-4.4/configure:10515:  pkg_cv_debuginfod_LIBS=`$PKG_CONFIG --libs "libdebuginfod >= 0.179" 2>/dev/null`
systemtap-4.4/configure-10516-		      test "x$?" != "x0" && pkg_failed=yes
##############################################
systemtap-4.4/configure-10535-        if test $_pkg_short_errors_supported = yes; then
systemtap-4.4/configure:10536:	        debuginfod_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "libdebuginfod >= 0.179" 2>&1`
systemtap-4.4/configure-10537-        else
systemtap-4.4/configure:10538:	        debuginfod_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "libdebuginfod >= 0.179" 2>&1`
systemtap-4.4/configure-10539-        fi
##############################################
systemtap-4.4/configure-10593-  test $ac_status = 0; }; then
systemtap-4.4/configure:10594:  pkg_cv_sqlite3_CFLAGS=`$PKG_CONFIG --cflags "sqlite3 > 3.7" 2>/dev/null`
systemtap-4.4/configure-10595-		      test "x$?" != "x0" && pkg_failed=yes
##############################################
systemtap-4.4/configure-10610-  test $ac_status = 0; }; then
systemtap-4.4/configure:10611:  pkg_cv_sqlite3_LIBS=`$PKG_CONFIG --libs "sqlite3 > 3.7" 2>/dev/null`
systemtap-4.4/configure-10612-		      test "x$?" != "x0" && pkg_failed=yes
##############################################
systemtap-4.4/configure-10631-        if test $_pkg_short_errors_supported = yes; then
systemtap-4.4/configure:10632:	        sqlite3_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "sqlite3 > 3.7" 2>&1`
systemtap-4.4/configure-10633-        else
systemtap-4.4/configure:10634:	        sqlite3_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "sqlite3 > 3.7" 2>&1`
systemtap-4.4/configure-10635-        fi
##############################################
systemtap-4.4/configure-11096-  test $ac_status = 0; }; then
systemtap-4.4/configure:11097:  pkg_cv_nss_CFLAGS=`$PKG_CONFIG --cflags "nss >= 3" 2>/dev/null`
systemtap-4.4/configure-11098-		      test "x$?" != "x0" && pkg_failed=yes
##############################################
systemtap-4.4/configure-11113-  test $ac_status = 0; }; then
systemtap-4.4/configure:11114:  pkg_cv_nss_LIBS=`$PKG_CONFIG --libs "nss >= 3" 2>/dev/null`
systemtap-4.4/configure-11115-		      test "x$?" != "x0" && pkg_failed=yes
##############################################
systemtap-4.4/configure-11134-        if test $_pkg_short_errors_supported = yes; then
systemtap-4.4/configure:11135:	        nss_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "nss >= 3" 2>&1`
systemtap-4.4/configure-11136-        else
systemtap-4.4/configure:11137:	        nss_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "nss >= 3" 2>&1`
systemtap-4.4/configure-11138-        fi
##############################################
systemtap-4.4/configure-11194-  test $ac_status = 0; }; then
systemtap-4.4/configure:11195:  pkg_cv_openssl_CFLAGS=`$PKG_CONFIG --cflags "openssl" 2>/dev/null`
systemtap-4.4/configure-11196-		      test "x$?" != "x0" && pkg_failed=yes
##############################################
systemtap-4.4/configure-11211-  test $ac_status = 0; }; then
systemtap-4.4/configure:11212:  pkg_cv_openssl_LIBS=`$PKG_CONFIG --libs "openssl" 2>/dev/null`
systemtap-4.4/configure-11213-		      test "x$?" != "x0" && pkg_failed=yes
##############################################
systemtap-4.4/configure-11232-        if test $_pkg_short_errors_supported = yes; then
systemtap-4.4/configure:11233:	        openssl_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "openssl" 2>&1`
systemtap-4.4/configure-11234-        else
systemtap-4.4/configure:11235:	        openssl_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "openssl" 2>&1`
systemtap-4.4/configure-11236-        fi
##############################################
systemtap-4.4/configure-11350-  test $ac_status = 0; }; then
systemtap-4.4/configure:11351:  pkg_cv_avahi_CFLAGS=`$PKG_CONFIG --cflags "avahi-client" 2>/dev/null`
systemtap-4.4/configure-11352-		      test "x$?" != "x0" && pkg_failed=yes
##############################################
systemtap-4.4/configure-11367-  test $ac_status = 0; }; then
systemtap-4.4/configure:11368:  pkg_cv_avahi_LIBS=`$PKG_CONFIG --libs "avahi-client" 2>/dev/null`
systemtap-4.4/configure-11369-		      test "x$?" != "x0" && pkg_failed=yes
##############################################
systemtap-4.4/configure-11388-        if test $_pkg_short_errors_supported = yes; then
systemtap-4.4/configure:11389:	        avahi_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "avahi-client" 2>&1`
systemtap-4.4/configure-11390-        else
systemtap-4.4/configure:11391:	        avahi_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "avahi-client" 2>&1`
systemtap-4.4/configure-11392-        fi
##############################################
systemtap-4.4/configure-12192-  test $ac_status = 0; }; then
systemtap-4.4/configure:12193:  pkg_cv_libvirt_CFLAGS=`$PKG_CONFIG --cflags "libvirt >= 1.0.2" 2>/dev/null`
systemtap-4.4/configure-12194-		      test "x$?" != "x0" && pkg_failed=yes
##############################################
systemtap-4.4/configure-12209-  test $ac_status = 0; }; then
systemtap-4.4/configure:12210:  pkg_cv_libvirt_LIBS=`$PKG_CONFIG --libs "libvirt >= 1.0.2" 2>/dev/null`
systemtap-4.4/configure-12211-		      test "x$?" != "x0" && pkg_failed=yes
##############################################
systemtap-4.4/configure-12230-        if test $_pkg_short_errors_supported = yes; then
systemtap-4.4/configure:12231:	        libvirt_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "libvirt >= 1.0.2" 2>&1`
systemtap-4.4/configure-12232-        else
systemtap-4.4/configure:12233:	        libvirt_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "libvirt >= 1.0.2" 2>&1`
systemtap-4.4/configure-12234-        fi
##############################################
systemtap-4.4/configure-12277-  test $ac_status = 0; }; then
systemtap-4.4/configure:12278:  pkg_cv_libxml2_CFLAGS=`$PKG_CONFIG --cflags "libxml-2.0" 2>/dev/null`
systemtap-4.4/configure-12279-		      test "x$?" != "x0" && pkg_failed=yes
##############################################
systemtap-4.4/configure-12294-  test $ac_status = 0; }; then
systemtap-4.4/configure:12295:  pkg_cv_libxml2_LIBS=`$PKG_CONFIG --libs "libxml-2.0" 2>/dev/null`
systemtap-4.4/configure-12296-		      test "x$?" != "x0" && pkg_failed=yes
##############################################
systemtap-4.4/configure-12315-        if test $_pkg_short_errors_supported = yes; then
systemtap-4.4/configure:12316:	        libxml2_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "libxml-2.0" 2>&1`
systemtap-4.4/configure-12317-        else
systemtap-4.4/configure:12318:	        libxml2_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "libxml-2.0" 2>&1`
systemtap-4.4/configure-12319-        fi
##############################################
systemtap-4.4/configure-12423-   if test "x$PYTHON_CONFIG" != "x"; then :
systemtap-4.4/configure:12424:  	  	  PYTHON_CPPFLAGS=`$PYTHON_CONFIG --includes 2> /dev/null`
systemtap-4.4/configure-12425-	  PYTHON_CPPFLAGS=$PYTHON_CPPFLAGS
##############################################
systemtap-4.4/configure-12514-   if test "x$PYTHON3_CONFIG" != "x"; then :
systemtap-4.4/configure:12515:  	  	  PYTHON3_CPPFLAGS=`$PYTHON3_CONFIG --includes 2> /dev/null`
systemtap-4.4/configure-12516-	  PYTHON3_CPPFLAGS=$PYTHON3_CPPFLAGS
##############################################
systemtap-4.4/configure-12583-  test $ac_status = 0; }; then
systemtap-4.4/configure:12584:  pkg_cv_jsonc_CFLAGS=`$PKG_CONFIG --cflags "json-c >= 0.11" 2>/dev/null`
systemtap-4.4/configure-12585-		      test "x$?" != "x0" && pkg_failed=yes
##############################################
systemtap-4.4/configure-12600-  test $ac_status = 0; }; then
systemtap-4.4/configure:12601:  pkg_cv_jsonc_LIBS=`$PKG_CONFIG --libs "json-c >= 0.11" 2>/dev/null`
systemtap-4.4/configure-12602-		      test "x$?" != "x0" && pkg_failed=yes
##############################################
systemtap-4.4/configure-12621-        if test $_pkg_short_errors_supported = yes; then
systemtap-4.4/configure:12622:	        jsonc_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "json-c >= 0.11" 2>&1`
systemtap-4.4/configure-12623-        else
systemtap-4.4/configure:12624:	        jsonc_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "json-c >= 0.11" 2>&1`
systemtap-4.4/configure-12625-        fi
##############################################
systemtap-4.4/configure-12654-  test $ac_status = 0; }; then
systemtap-4.4/configure:12655:  pkg_cv_ncurses_CFLAGS=`$PKG_CONFIG --cflags "ncurses" 2>/dev/null`
systemtap-4.4/configure-12656-		      test "x$?" != "x0" && pkg_failed=yes
##############################################
systemtap-4.4/configure-12671-  test $ac_status = 0; }; then
systemtap-4.4/configure:12672:  pkg_cv_ncurses_LIBS=`$PKG_CONFIG --libs "ncurses" 2>/dev/null`
systemtap-4.4/configure-12673-		      test "x$?" != "x0" && pkg_failed=yes
##############################################
systemtap-4.4/configure-12692-        if test $_pkg_short_errors_supported = yes; then
systemtap-4.4/configure:12693:	        ncurses_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "ncurses" 2>&1`
systemtap-4.4/configure-12694-        else
systemtap-4.4/configure:12695:	        ncurses_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "ncurses" 2>&1`
systemtap-4.4/configure-12696-        fi
##############################################
systemtap-4.4/configure-12843-  test $ac_status = 0; }; then
systemtap-4.4/configure:12844:  pkg_cv_selinux_CFLAGS=`$PKG_CONFIG --cflags "libselinux" 2>/dev/null`
systemtap-4.4/configure-12845-		      test "x$?" != "x0" && pkg_failed=yes
##############################################
systemtap-4.4/configure-12860-  test $ac_status = 0; }; then
systemtap-4.4/configure:12861:  pkg_cv_selinux_LIBS=`$PKG_CONFIG --libs "libselinux" 2>/dev/null`
systemtap-4.4/configure-12862-		      test "x$?" != "x0" && pkg_failed=yes
##############################################
systemtap-4.4/configure-12881-        if test $_pkg_short_errors_supported = yes; then
systemtap-4.4/configure:12882:	        selinux_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "libselinux" 2>&1`
systemtap-4.4/configure-12883-        else
systemtap-4.4/configure:12884:	        selinux_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "libselinux" 2>&1`
systemtap-4.4/configure-12885-        fi
##############################################
systemtap-4.4/configure-13101-  test $ac_status = 0; }; then
systemtap-4.4/configure:13102:  pkg_cv_libmicrohttpd_CFLAGS=`$PKG_CONFIG --cflags "libmicrohttpd > 0.9.0" 2>/dev/null`
systemtap-4.4/configure-13103-		      test "x$?" != "x0" && pkg_failed=yes
##############################################
systemtap-4.4/configure-13118-  test $ac_status = 0; }; then
systemtap-4.4/configure:13119:  pkg_cv_libmicrohttpd_LIBS=`$PKG_CONFIG --libs "libmicrohttpd > 0.9.0" 2>/dev/null`
systemtap-4.4/configure-13120-		      test "x$?" != "x0" && pkg_failed=yes
##############################################
systemtap-4.4/configure-13139-        if test $_pkg_short_errors_supported = yes; then
systemtap-4.4/configure:13140:	        libmicrohttpd_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "libmicrohttpd > 0.9.0" 2>&1`
systemtap-4.4/configure-13141-        else
systemtap-4.4/configure:13142:	        libmicrohttpd_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "libmicrohttpd > 0.9.0" 2>&1`
systemtap-4.4/configure-13143-        fi
##############################################
systemtap-4.4/configure-13173-  test $ac_status = 0; }; then
systemtap-4.4/configure:13174:  pkg_cv_uuid_CFLAGS=`$PKG_CONFIG --cflags "uuid >= 2.17.0" 2>/dev/null`
systemtap-4.4/configure-13175-		      test "x$?" != "x0" && pkg_failed=yes
##############################################
systemtap-4.4/configure-13190-  test $ac_status = 0; }; then
systemtap-4.4/configure:13191:  pkg_cv_uuid_LIBS=`$PKG_CONFIG --libs "uuid >= 2.17.0" 2>/dev/null`
systemtap-4.4/configure-13192-		      test "x$?" != "x0" && pkg_failed=yes
##############################################
systemtap-4.4/configure-13211-        if test $_pkg_short_errors_supported = yes; then
systemtap-4.4/configure:13212:	        uuid_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "uuid >= 2.17.0" 2>&1`
systemtap-4.4/configure-13213-        else
systemtap-4.4/configure:13214:	        uuid_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "uuid >= 2.17.0" 2>&1`
systemtap-4.4/configure-13215-        fi
##############################################
systemtap-4.4/configure-13245-  test $ac_status = 0; }; then
systemtap-4.4/configure:13246:  pkg_cv_libcurl_CFLAGS=`$PKG_CONFIG --cflags "libcurl >= 7.19.7" 2>/dev/null`
systemtap-4.4/configure-13247-		      test "x$?" != "x0" && pkg_failed=yes
##############################################
systemtap-4.4/configure-13262-  test $ac_status = 0; }; then
systemtap-4.4/configure:13263:  pkg_cv_libcurl_LIBS=`$PKG_CONFIG --libs "libcurl >= 7.19.7" 2>/dev/null`
systemtap-4.4/configure-13264-		      test "x$?" != "x0" && pkg_failed=yes
##############################################
systemtap-4.4/configure-13283-        if test $_pkg_short_errors_supported = yes; then
systemtap-4.4/configure:13284:	        libcurl_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "libcurl >= 7.19.7" 2>&1`
systemtap-4.4/configure-13285-        else
systemtap-4.4/configure:13286:	        libcurl_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "libcurl >= 7.19.7" 2>&1`
systemtap-4.4/configure-13287-        fi
##############################################
systemtap-4.4/configure-13501-  ac_script='s/\$U\././;s/\.o$//;s/\.obj$//'
systemtap-4.4/configure:13502:  ac_i=`$as_echo "$ac_i" | sed "$ac_script"`
systemtap-4.4/configure-13503-  # 2. Prepend LIBOBJDIR.  When used with automake>=1.10 LIBOBJDIR
##############################################
systemtap-4.4/configure-13716-if test -z "$BASH_VERSION$ZSH_VERSION" \
systemtap-4.4/configure:13717:    && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
systemtap-4.4/configure-13718-  as_echo='print -r --'
systemtap-4.4/configure-13719-  as_echo_n='print -rn --'
systemtap-4.4/configure:13720:elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
systemtap-4.4/configure-13721-  as_echo='printf %s\n'
##############################################
systemtap-4.4/configure-13723-else
systemtap-4.4/configure:13724:  if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
systemtap-4.4/configure-13725-    as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
##############################################
systemtap-4.4/configure-13733-	expr "X$arg" : "X\\(.*\\)$as_nl";
systemtap-4.4/configure:13734:	arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
systemtap-4.4/configure-13735-      esac;
##############################################
systemtap-4.4/configure-13810-# ----------------------------------------
systemtap-4.4/configure:13811:# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
systemtap-4.4/configure-13812-# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
##############################################
systemtap-4.4/configure-13882-  {
systemtap-4.4/configure:13883:    as_val=`expr "$@" || test $? -eq 1`
systemtap-4.4/configure-13884-  }
##############################################
systemtap-4.4/configure-13986-      case $as_dir in #(
systemtap-4.4/configure:13987:      *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
systemtap-4.4/configure-13988-      *) as_qdir=$as_dir;;
##############################################
systemtap-4.4/configure-14121-cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
systemtap-4.4/configure:14122:ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
systemtap-4.4/configure-14123-ac_cs_version="\\
##############################################
systemtap-4.4/configure-14146-  --*=?*)
systemtap-4.4/configure:14147:    ac_option=`expr "X$1" : 'X\([^=]*\)='`
systemtap-4.4/configure:14148:    ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
systemtap-4.4/configure-14149-    ac_shift=:
##############################################
systemtap-4.4/configure-14151-  --*=)
systemtap-4.4/configure:14152:    ac_option=`expr "X$1" : 'X\([^=]*\)='`
systemtap-4.4/configure-14153-    ac_optarg=
##############################################
systemtap-4.4/configure-14175-    case $ac_optarg in
systemtap-4.4/configure:14176:    *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
systemtap-4.4/configure-14177-    '') as_fn_error $? "missing file argument" ;;
##############################################
systemtap-4.4/configure-14183-    case $ac_optarg in
systemtap-4.4/configure:14184:    *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
systemtap-4.4/configure-14185-    esac
##############################################
systemtap-4.4/configure-14355-fi
systemtap-4.4/configure:14356:ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
systemtap-4.4/configure-14357-if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
##############################################
systemtap-4.4/configure-14372-  as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
systemtap-4.4/configure:14373:ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'`
systemtap-4.4/configure-14374-ac_delim='%!_!# '
##############################################
systemtap-4.4/configure-14378-
systemtap-4.4/configure:14379:  ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X`
systemtap-4.4/configure-14380-  if test $ac_delim_n = $ac_delim_num; then
##############################################
systemtap-4.4/configure-14516-for ac_last_try in false false :; do
systemtap-4.4/configure:14517:  ac_tt=`sed -n "/$ac_delim/p" confdefs.h`
systemtap-4.4/configure-14518-  if test -z "$ac_tt"; then
##############################################
systemtap-4.4/configure-14648-      esac
systemtap-4.4/configure:14649:      case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
systemtap-4.4/configure-14650-      as_fn_append ac_file_inputs " '$ac_f'"
##############################################
systemtap-4.4/configure-14707-*)
systemtap-4.4/configure:14708:  ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
systemtap-4.4/configure-14709-  # A ".." for each directory in $ac_dir_suffix.
systemtap-4.4/configure:14710:  ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
systemtap-4.4/configure-14711-  case $ac_top_builddir_sub in
##############################################
systemtap-4.4/configure-14768-/@mandir@/p'
systemtap-4.4/configure:14769:case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in
systemtap-4.4/configure-14770-*datarootdir*) ac_datarootdir_seen=yes;;
##############################################
systemtap-4.4/configure-14785-
systemtap-4.4/configure:14786:# Neutralize VPATH when `$srcdir' = `.'.
systemtap-4.4/configure-14787-# Shell code in configure.ac might set extrasub.
##############################################
systemtap-4.4/configure-14813-test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
systemtap-4.4/configure:14814:  { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } &&
systemtap-4.4/configure-14815-  { ac_out=`sed -n '/^[	 ]*datarootdir[	 ]*:*=/p' \
##############################################
systemtap-4.4/configure-14859-    * )
systemtap-4.4/configure:14860:      _am_stamp_count=`expr $_am_stamp_count + 1` ;;
systemtap-4.4/configure-14861-  esac
##############################################
systemtap-4.4/configure-14914-    # Strip MF so we end up with the name of the file.
systemtap-4.4/configure:14915:    am_mf=`$as_echo "$am_mf" | sed -e 's/:.*$//'`
systemtap-4.4/configure-14916-    # Check whether this is an Automake generated Makefile which includes
##############################################
systemtap-4.4/configure-14992-      case "$ac_file" in
systemtap-4.4/configure:14993:        *:*) ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;;
systemtap-4.4/configure-14994-      esac
##############################################
systemtap-4.4/configure-14997-        # Adjust a relative srcdir.
systemtap-4.4/configure:14998:        ac_dir=`echo "$ac_file"|sed 's%/[^/][^/]*$%%'`
systemtap-4.4/configure:14999:        ac_dir_suffix=/`echo "$ac_dir"|sed 's%^\./%%'`
systemtap-4.4/configure:15000:        ac_dots=`echo "$ac_dir_suffix"|sed 's%/[^/]*%../%g'`
systemtap-4.4/configure-15001-        # In autoconf-2.13 it is called $ac_given_srcdir.
##############################################
systemtap-4.4/configure-15004-        case "$ac_given_srcdir" in
systemtap-4.4/configure:15005:          .)  top_srcdir=`echo $ac_dots|sed 's%/$%%'` ;;
systemtap-4.4/configure-15006-          /*) top_srcdir="$ac_given_srcdir" ;;
##############################################
systemtap-4.4/configure-15025-            fi
systemtap-4.4/configure:15026:            ALL_LINGUAS_=`sed -e "/^#/d" -e "s/#.*//" "$ac_given_srcdir/$ac_dir/LINGUAS"`
systemtap-4.4/configure-15027-            # Hide the ALL_LINGUAS assignment from automake < 1.5.
##############################################
systemtap-4.4/configure-15182-      case $ac_arg in
systemtap-4.4/configure:15183:      *\'*) ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
systemtap-4.4/configure-15184-      esac
##############################################
systemtap-4.4/configure-15192-  case $ac_arg in
systemtap-4.4/configure:15193:  *\'*) ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
systemtap-4.4/configure-15194-  esac
##############################################
systemtap-4.4/configure-15221-*)
systemtap-4.4/configure:15222:  ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
systemtap-4.4/configure-15223-  # A ".." for each directory in $ac_dir_suffix.
systemtap-4.4/configure:15224:  ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
systemtap-4.4/configure-15225-  case $ac_top_builddir_sub in
##############################################
systemtap-4.4/configure.ac-54-		 [ac_cv_python_unknown_version],
systemtap-4.4/configure.ac:55:		 [ac_cv_python_unknown_version=`$PYTHON_UNKNOWN -c "import sys; sys.stdout.write(sys.version[[:3]][[0]])"`])
systemtap-4.4/configure.ac-56-fi
##############################################
systemtap-4.4/configure.ac-106-   AC_CACHE_CHECK([for python3 version], [ac_cv_python3_version],
systemtap-4.4/configure.ac:107:   		  [ac_cv_python3_version=`$PYTHON3 -c "import sys; sys.stdout.write(sys.version[[:3]])"`])
systemtap-4.4/configure.ac-108-   AC_SUBST([PYTHON3_VERSION], [$ac_cv_python3_version])
##############################################
systemtap-4.4/configure.ac-111-   AC_CACHE_CHECK([for python3 platform], [ac_cv_python3_platform],
systemtap-4.4/configure.ac:112:		  [ac_cv_python3_platform=`$PYTHON3 -c "import sys; sys.stdout.write(sys.platform)"`])
systemtap-4.4/configure.ac-113-   AC_SUBST([PYTHON3_PLATFORM], [$ac_cv_python3_platform])
##############################################
systemtap-4.4/configure.ac-115-   AC_CACHE_CHECK([for python3 script directory], [ac_cv_python3_dir],
systemtap-4.4/configure.ac:116:		  [ac_cv_python3_dir=`$PYTHON3 -c "import distutils.sysconfig; print(distutils.sysconfig.get_python_lib(0,0,prefix='$PYTHON3_PREFIX'))"`])
systemtap-4.4/configure.ac-117-   AC_SUBST([python3dir], [$ac_cv_python3_dir])
##############################################
systemtap-4.4/configure.ac-120-   		  [ac_cv_py3execdir],
systemtap-4.4/configure.ac:121:		  [ac_cv_py3execdir=`$PYTHON3 -c "import distutils.sysconfig; print(distutils.sysconfig.get_python_lib(1,0,prefix='$PYTHON3_EXEC_PREFIX'))"`])
systemtap-4.4/configure.ac-122-   AC_SUBST([py3execdir], [$ac_cv_py3execdir])
##############################################
systemtap-4.4/configure.ac-742-	  dnl include directories.
systemtap-4.4/configure.ac:743:	  PYTHON_CPPFLAGS=`$PYTHON_CONFIG --includes 2> /dev/null`
systemtap-4.4/configure.ac-744-	  AC_SUBST([PYTHON_CPPFLAGS], [$PYTHON_CPPFLAGS])
##############################################
systemtap-4.4/configure.ac-773-	  dnl include directories.
systemtap-4.4/configure.ac:774:	  PYTHON3_CPPFLAGS=`$PYTHON3_CONFIG --includes 2> /dev/null`
systemtap-4.4/configure.ac-775-	  AC_SUBST([PYTHON3_CPPFLAGS], [$PYTHON3_CPPFLAGS])
##############################################
systemtap-4.4/depcomp-64-  case $1 in
systemtap-4.4/depcomp:65:    */*) dir=`echo "$1" | sed -e 's|/[^/]*$|/|'`;;
systemtap-4.4/depcomp-66-      *) dir=;;
##############################################
systemtap-4.4/depcomp-73-{
systemtap-4.4/depcomp:74:  base=`echo "$1" | sed -e 's|^.*/||' -e 's/\.[^.]*$//'`
systemtap-4.4/depcomp-75-}
##############################################
systemtap-4.4/depcomp-126-  sed 's|[^\\/]*$|'${DEPDIR-.deps}'/&|;s|\.\([^.]*\)$|.P\1|;s|Pobj$|Po|'`}
systemtap-4.4/depcomp:127:tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`}
systemtap-4.4/depcomp-128-
##############################################
systemtap-4.4/depcomp-405-        sleep 1
systemtap-4.4/depcomp:406:        i=`expr $i - 1`
systemtap-4.4/depcomp-407-      done
systemtap-4.4/depcomp-408-    fi
systemtap-4.4/depcomp:409:    i=`expr $i - 1`
systemtap-4.4/depcomp-410-  done
##############################################
systemtap-4.4/depcomp-425-  # Do two passes, one to just change these to
systemtap-4.4/depcomp:426:  # `$object: dependent.h' and one to simply `dependent.h:'.
systemtap-4.4/depcomp-427-  sed "s,^[^:]*:,$object :," < "$tmpdepfile" > "$depfile"
##############################################
systemtap-4.4/depcomp-659-  done
systemtap-4.4/depcomp:660:  obj_suffix=`echo "$object" | sed 's/^.*\././'`
systemtap-4.4/depcomp-661-  touch "$tmpdepfile"
##############################################
systemtap-4.4/doc/Makefile.in-51-  { \
systemtap-4.4/doc/Makefile.in:52:    flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
systemtap-4.4/doc/Makefile.in-53-  }; \
##############################################
systemtap-4.4/doc/Makefile.in-421-	dot_seen=no; \
systemtap-4.4/doc/Makefile.in:422:	target=`echo $@ | sed s/-recursive//`; \
systemtap-4.4/doc/Makefile.in-423-	case "$@" in \
##############################################
systemtap-4.4/doc/Makefile.in-484-GTAGS:
systemtap-4.4/doc/Makefile.in:485:	here=`$(am__cd) $(top_builddir) && pwd` \
systemtap-4.4/doc/Makefile.in-486-	  && $(am__cd) $(top_srcdir) \
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/en-US/Useful_Scripts-dropwatch.xml-74-<programlisting>stap -dkernel \
systemtap-4.4/doc/SystemTap_Beginners_Guide/en-US/Useful_Scripts-dropwatch.xml:75:`cat /proc/modules | awk 'BEGIN { ORS = " " } {print "-d"$1}'` \
systemtap-4.4/doc/SystemTap_Beginners_Guide/en-US/Useful_Scripts-dropwatch.xml-76-dropwatch.stp</programlisting>
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/en-US/extras/fedoradebugurl.sh-4-BASE=`uname -m` ; \
systemtap-4.4/doc/SystemTap_Beginners_Guide/en-US/extras/fedoradebugurl.sh:5:NVR=`echo $NVR | sed s/.$BASE//` ; \
systemtap-4.4/doc/SystemTap_Beginners_Guide/en-US/extras/fedoradebugurl.sh:6:VERSION=`echo $NVR | awk -F- '{print $1}'` ; \
systemtap-4.4/doc/SystemTap_Beginners_Guide/en-US/extras/fedoradebugurl.sh:7:RELEASE=`echo $NVR | awk -F- '{print $2}'` ; \
systemtap-4.4/doc/SystemTap_Beginners_Guide/en-US/extras/fedoradebugurl.sh-8-echo "http://kojipkgs.fedoraproject.org/\
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/en-US/extras/rhelchannels.sh-2-pkg=`rpm -q --whatprovides "redhat-release"`
systemtap-4.4/doc/SystemTap_Beginners_Guide/en-US/extras/rhelchannels.sh:3:releasever=`rpm -q --qf "%{version}" $pkg`
systemtap-4.4/doc/SystemTap_Beginners_Guide/en-US/extras/rhelchannels.sh:4:variant=`echo $releasever | tr -d "[:digit:]" | tr "[:upper:]" "[:lower:]" `
systemtap-4.4/doc/SystemTap_Beginners_Guide/en-US/extras/rhelchannels.sh-5-if test -z "$variant"; then
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/en-US/extras/rhelchannels.sh-8-fi
systemtap-4.4/doc/SystemTap_Beginners_Guide/en-US/extras/rhelchannels.sh:9:version=`echo $releasever | tr -cd "[:digit:]"`
systemtap-4.4/doc/SystemTap_Beginners_Guide/en-US/extras/rhelchannels.sh-10-base=`uname -i`
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/en-US/extras/rheldebugurl.sh-2-pkg=`rpm -q --whatprovides "redhat-release"`
systemtap-4.4/doc/SystemTap_Beginners_Guide/en-US/extras/rheldebugurl.sh:3:releasever=`rpm -q --qf "%{version}" $pkg`
systemtap-4.4/doc/SystemTap_Beginners_Guide/en-US/extras/rheldebugurl.sh-4-base=`uname -m`
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/Makefile.am-48-check-local:
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/Makefile.am:49:	if test `( expr "$(DEJAZILLA)" : '.*://.*' )` -ne 0; then \
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/Makefile.am-50-	  curl -F file=@systemtap.sum $(DEJAZILLA); \
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/Makefile.am:51:	elif test `( expr "$(DEJAZILLA)" : '.*@.*' )` -ne 0; then \
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/Makefile.am-52-	  mail $(DEJAZILLA) < systemtap.sum; \
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/Makefile.am-70-	-sed -ne '/systemtap.Summary/,$$ p' < systemtap.sum
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/Makefile.am:71:	if test `( expr "$(DEJAZILLA)" : '.*://.*' )` -ne 0; then \
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/Makefile.am-72-	  curl -F file=@systemtap.sum $(DEJAZILLA); \
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/Makefile.am:73:	elif test `( expr "$(DEJAZILLA)" : '.*@.*' )` -ne 0; then \
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/Makefile.am-74-	  mail $(DEJAZILLA) < systemtap.sum; \
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/Makefile.in-51-  { \
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/Makefile.in:52:    flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/Makefile.in-53-  }; \
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/Makefile.in-350-	  echo "## Begin content included from file $$f.  Do not modify. ##" \
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/Makefile.in:351:	   && cat `test -f "$$f" || echo '$(srcdir)/'`$$f \
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/Makefile.in-352-	   && echo "## End content included from file $$f. ##" \
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/Makefile.in-504-check-local:
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/Makefile.in:505:	if test `( expr "$(DEJAZILLA)" : '.*://.*' )` -ne 0; then \
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/Makefile.in-506-	  curl -F file=@systemtap.sum $(DEJAZILLA); \
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/Makefile.in:507:	elif test `( expr "$(DEJAZILLA)" : '.*@.*' )` -ne 0; then \
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/Makefile.in-508-	  mail $(DEJAZILLA) < systemtap.sum; \
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/Makefile.in-526-	-sed -ne '/systemtap.Summary/,$$ p' < systemtap.sum
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/Makefile.in:527:	if test `( expr "$(DEJAZILLA)" : '.*://.*' )` -ne 0; then \
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/Makefile.in-528-	  curl -F file=@systemtap.sum $(DEJAZILLA); \
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/Makefile.in:529:	elif test `( expr "$(DEJAZILLA)" : '.*@.*' )` -ne 0; then \
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/Makefile.in-530-	  mail $(DEJAZILLA) < systemtap.sum; \
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/aclocal.m4-92-# iff we strip the leading $srcdir from $ac_aux_dir.  That would be:
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/aclocal.m4:93:#   am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"`
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/aclocal.m4-94-# and then we would define $MISSING as
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/aclocal.m4-107-# Expand $ac_aux_dir to an absolute path.
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/aclocal.m4:108:am_aux_dir=`cd "$ac_aux_dir" && pwd`
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/aclocal.m4-109-])
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/aclocal.m4-178-AC_REQUIRE([AC_PROG_INSTALL])dnl
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/aclocal.m4:179:if test "`cd $srcdir && pwd`" != "`pwd`"; then
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/aclocal.m4-180-  # Use -I$(srcdir) only when $(srcdir) != ., so that make's output
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/aclocal.m4-337-    * )
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/aclocal.m4:338:      _am_stamp_count=`expr $_am_stamp_count + 1` ;;
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/aclocal.m4-339-  esac
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/aclocal.m4-340-done
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/aclocal.m4:341:echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/aclocal.m4-342-
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/aclocal.m4-522-     echo "timestamp, slept: $am_has_slept" > conftest.file
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/aclocal.m4:523:     set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null`
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/aclocal.m4-524-     if test "$[*]" = "X"; then
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/aclocal.m4-525-	# -L didn't work.
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/aclocal.m4:526:	set X `ls -t "$srcdir/configure" conftest.file`
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/aclocal.m4-527-     fi
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/buildok/aux_syscalls-embedded.stp-19-%( systemtap_v >= "2.5" %?
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/buildok/aux_syscalls-embedded.stp:20:	print (_struct_sockaddr_u_ip_addr(0,0))
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/buildok/aux_syscalls-embedded.stp-21-	print (_struct_sockaddr_u_tcp_port(0,0))
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/buildok/aux_syscalls-embedded.stp-175-	# Implementation is in arch specific files but with compatible API.
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/buildok/aux_syscalls-embedded.stp:176:	print (_ptrace_return_arch_prctl_addr(0,0,0))
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/buildok/aux_syscalls-embedded.stp-177-
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/buildok/context-embedded.stp-25-	       + stack_unused())
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/buildok/context-embedded.stp:26:	printf("addr: 0x%x\n", addr())
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/buildok/context-embedded.stp:27:	printf("uaddr: 0x%x\n", uaddr())
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/buildok/context-embedded.stp-28-	log(cmdline_args(1, 1, "bar"))
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/buildok/context-unwind-embedded.stp-7-	printf("%s\n", caller())
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/buildok/context-unwind-embedded.stp:8:	printf("%d\n", caller_addr())
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/buildok/context-unwind-embedded.stp-9-}
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/buildok/fortytwo.stp-21-
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/buildok/fortytwo.stp:22:fullfn=`stap $@ -u -wp2 -e 'probe kernel.statement("'$fn'") {}' | grep kernel | cut -f2 -d'"'`
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/buildok/fortytwo.stp:23:lineno=`echo $fullfn | cut -f2 -d:`
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/buildok/fortytwo.stp-24-
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/buildok/fortytwo.stp-28-do
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/buildok/fortytwo.stp:29:    ilineno=`expr $lineno + $i`
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/buildok/fortytwo.stp:30:    errors=`stap $@ -u -p4 -e 'probe kernel.statement("'$fn':'$ilineno'") {$'$var'}' 2>&1 >/dev/null ||true `
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/buildok/fortytwo.stp-31-    if echo "$errors" | grep -q unable.to.find.local
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/buildok/fortytwo.stp-37-
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/buildok/fortytwo.stp:38:errors=`stap $@ -u -p4 -e 'probe kernel.statement("'$fn':'$lineno'").nearest {$'$var'}' 2>&1 >/dev/null ||true `
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/buildok/fortytwo.stp-39-if echo "$errors" | grep -q unable.to.find.local
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/buildok/ip-embedded.stp-4-{
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/buildok/ip-embedded.stp:5:	printf("%s\n", format_ipaddr(0, 0))
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/buildok/ip-embedded.stp-6-	printf("%s\n", ip_ntop(0))
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/buildok/ip-embedded.stp:7:	printf("%d\n", __ip_sock_saddr(0))
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/buildok/ip-embedded.stp:8:	printf("%d\n", __ip_sock_daddr(0))
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/buildok/ip-embedded.stp-9-	printf("%d\n", __ip_sock_family(0))
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/buildok/ip-embedded.stp-11-	printf("%d\n", __ip_skb_proto(0))
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/buildok/ip-embedded.stp:12:	printf("%d\n", __ip_skb_saddr(0))
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/buildok/ip-embedded.stp:13:	printf("%d\n", __ip_skb_daddr(0))
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/buildok/ip-embedded.stp-14-}
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/buildok/ipmib-all-probes.stp-8-	// Insure all these functions will build
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/buildok/ipmib-all-probes.stp:9:	if ( ipmib_remote_addr(skb, SourceIsLocal) ) return 0
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/buildok/ipmib-all-probes.stp:10:	if ( ipmib_local_addr(skb, SourceIsLocal) ) return 0
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/buildok/ipmib-all-probes.stp-11-	if ( ipmib_tcp_remote_port(skb, SourceIsLocal) ) return 0
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/buildok/ipmib-detailed.stp-4-	// Insure all these functions will build
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/buildok/ipmib-detailed.stp:5:	if ( ipmib_remote_addr(skb, SourceIsLocal) ) return 0
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/buildok/ipmib-detailed.stp:6:	if ( ipmib_local_addr(skb, SourceIsLocal) ) return 0
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/buildok/ipmib-detailed.stp-7-	if ( ipmib_tcp_remote_port(skb, SourceIsLocal) ) return 0
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/buildok/ipmib-embedded.stp-4-{
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/buildok/ipmib-embedded.stp:5:	printf("%d\n", ipmib_remote_addr(0, 0))
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/buildok/ipmib-embedded.stp:6:	printf("%d\n", ipmib_local_addr(0, 0))
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/buildok/ipmib-embedded.stp-7-	printf("%d\n", ipmib_tcp_remote_port(0, 0))
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/buildok/socket-embedded.stp-14-		sock_type_str2num ("") +
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/buildok/socket-embedded.stp:15:		_get_sock_addr (0) +
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/buildok/socket-embedded.stp-16-		_get_sock_size (0, 0) +
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/buildok/tcpmib-embedded.stp-4-        print(tcpmib_get_state(0) +
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/buildok/tcpmib-embedded.stp:5:              tcpmib_local_addr(0) +
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/buildok/tcpmib-embedded.stp:6:              tcpmib_remote_addr(0) +
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/buildok/tcpmib-embedded.stp-7-              tcpmib_local_port(0) +
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/buildok/ucontext-embedded.stp-3-probe begin {
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/buildok/ucontext-embedded.stp:4:	log(umodname(uaddr()))
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/buildok/ucontext-embedded.stp-5-}
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-45-if test -z "$BASH_VERSION$ZSH_VERSION" \
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure:46:    && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-47-  as_echo='print -r --'
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-48-  as_echo_n='print -rn --'
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure:49:elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-50-  as_echo='printf %s\n'
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-52-else
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure:53:  if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-54-    as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-62-	expr "X$arg" : "X\\(.*\\)$as_nl";
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure:63:	arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-64-      esac;
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-199-  eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" &&
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure:200:  test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1"
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-201-  if (eval "$as_required") 2>/dev/null; then :
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-326-      case $as_dir in #(
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure:327:      *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-328-      *) as_qdir=$as_dir;;
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-399-  {
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure:400:    as_val=`expr "$@" || test $? -eq 1`
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-401-  }
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-406-# ----------------------------------------
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure:407:# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-408-# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-469-  eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" &&
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure:470:  test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || {
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-471-  # Blame Lee E. McMahon (1931-1989) for sed's syntax.  :-)
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-735-  case $ac_option in
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure:736:  *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-737-  *=)   ac_optarg= ;;
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-779-  -disable-* | --disable-*)
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure:780:    ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-781-    # Reject names that are not valid shell variable names.
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-784-    ac_useropt_orig=$ac_useropt
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure:785:    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-786-    case $ac_user_opts in
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-805-  -enable-* | --enable-*)
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure:806:    ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-807-    # Reject names that are not valid shell variable names.
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-810-    ac_useropt_orig=$ac_useropt
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure:811:    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-812-    case $ac_user_opts in
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-1009-  -with-* | --with-*)
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure:1010:    ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-1011-    # Reject names that are not valid shell variable names.
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-1014-    ac_useropt_orig=$ac_useropt
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure:1015:    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-1016-    case $ac_user_opts in
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-1025-  -without-* | --without-*)
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure:1026:    ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'`
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-1027-    # Reject names that are not valid shell variable names.
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-1030-    ac_useropt_orig=$ac_useropt
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure:1031:    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-1032-    case $ac_user_opts in
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-1063-  *=*)
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure:1064:    ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='`
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-1065-    # Reject names that are not valid shell variable names.
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-1084-if test -n "$ac_prev"; then
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure:1085:  ac_option=--`echo $ac_prev | sed 's/_/-/g'`
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-1086-  as_fn_error $? "missing argument to $ac_option"
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-1106-    */ )
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure:1107:      ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'`
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-1108-      eval $ac_var=\$ac_val;;
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-1141-ac_ls_di=`ls -di .` &&
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure:1142:ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` ||
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-1143-  as_fn_error $? "working directory cannot be determined"
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-1197-case $srcdir in
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure:1198:*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;;
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-1199-esac
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-1240-By default, \`make install' will install all the files in
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure:1241:\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc.  You can specify
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure:1242:an installation prefix other than \`$ac_default_prefix' using \`--prefix',
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-1243-for instance \`--prefix=\$HOME'.
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-1318-*)
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure:1319:  ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-1320-  # A ".." for each directory in $ac_dir_suffix.
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure:1321:  ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-1322-  case $ac_top_builddir_sub in
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-1454-    *\'*)
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure:1455:      ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-1456-    esac
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-1537-      case $ac_val in
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure:1538:      *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-1539-      esac
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-1552-	case $ac_val in
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure:1553:	*\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-1554-	esac
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-1672-    set,)
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure:1673:      { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure:1674:$as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-1675-      ac_cache_corrupted=: ;;
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-1683-	# differences in whitespace do not lead to failure.
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure:1684:	ac_old_val_w=`echo x $ac_old_val`
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure:1685:	ac_new_val_w=`echo x $ac_new_val`
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-1686-	if test "$ac_old_val_w" != "$ac_new_val_w"; then
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-1703-    case $ac_new_val in
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure:1704:    *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-1705-    *) ac_arg=$ac_var=$ac_new_val ;;
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-1880-     echo "timestamp, slept: $am_has_slept" > conftest.file
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure:1881:     set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null`
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-1882-     if test "$*" = "X"; then
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-1883-	# -L didn't work.
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure:1884:	set X `ls -t "$srcdir/configure" conftest.file`
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-1885-     fi
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-1931-ac_script='s/[\\$]/&&/g;s/;s,x,x,$//'
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure:1932:program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"`
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-1933-
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-1934-# Expand $ac_aux_dir to an absolute path.
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure:1935:am_aux_dir=`cd "$ac_aux_dir" && pwd`
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-1936-
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-2076-	   as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext" || continue
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure:2077:	   case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #(
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-2078-	     'mkdir (GNU coreutils) '* | \
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-2149-set x ${MAKE-make}
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure:2150:ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'`
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-2151-if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then :
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-2159-# GNU make sometimes prints "make[1]: Entering ...", which would confuse us.
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure:2160:case `${MAKE-make} -f conftest.make 2>/dev/null` in
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-2161-  *@@@%%%=?*=@@@%%%*)
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-2225-
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure:2226:if test "`cd $srcdir && pwd`" != "`pwd`"; then
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-2227-  # Use -I$(srcdir) only when $(srcdir) != ., so that make's output
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-2394-do
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure:2395:    app=`basename $exp .exp`
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-2396-    apps="$app $apps"
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-2533-'
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure:2534:DEFS=`sed -n "$ac_script" confdefs.h`
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-2535-
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-2542-  ac_script='s/\$U\././;s/\.o$//;s/\.obj$//'
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure:2543:  ac_i=`$as_echo "$ac_i" | sed "$ac_script"`
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-2544-  # 2. Prepend LIBOBJDIR.  When used with automake>=1.10 LIBOBJDIR
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-2622-if test -z "$BASH_VERSION$ZSH_VERSION" \
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure:2623:    && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-2624-  as_echo='print -r --'
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-2625-  as_echo_n='print -rn --'
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure:2626:elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-2627-  as_echo='printf %s\n'
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-2629-else
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure:2630:  if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-2631-    as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-2639-	expr "X$arg" : "X\\(.*\\)$as_nl";
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure:2640:	arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-2641-      esac;
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-2716-# ----------------------------------------
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure:2717:# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-2718-# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-2788-  {
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure:2789:    as_val=`expr "$@" || test $? -eq 1`
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-2790-  }
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-2892-      case $as_dir in #(
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure:2893:      *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-2894-      *) as_qdir=$as_dir;;
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-3014-cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure:3015:ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-3016-ac_cs_version="\\
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-3039-  --*=?*)
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure:3040:    ac_option=`expr "X$1" : 'X\([^=]*\)='`
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure:3041:    ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-3042-    ac_shift=:
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-3044-  --*=)
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure:3045:    ac_option=`expr "X$1" : 'X\([^=]*\)='`
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-3046-    ac_optarg=
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-3068-    case $ac_optarg in
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure:3069:    *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-3070-    '') as_fn_error $? "missing file argument" ;;
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-3184-fi
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure:3185:ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-3186-if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-3201-  as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure:3202:ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'`
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-3203-ac_delim='%!_!# '
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-3207-
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure:3208:  ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X`
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-3209-  if test $ac_delim_n = $ac_delim_num; then
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-3369-      esac
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure:3370:      case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-3371-      as_fn_append ac_file_inputs " '$ac_f'"
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-3428-*)
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure:3429:  ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-3430-  # A ".." for each directory in $ac_dir_suffix.
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure:3431:  ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-3432-  case $ac_top_builddir_sub in
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-3489-/@mandir@/p'
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure:3490:case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-3491-*datarootdir*) ac_datarootdir_seen=yes;;
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-3506-
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure:3507:# Neutralize VPATH when `$srcdir' = `.'.
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-3508-# Shell code in configure.ac might set extrasub.
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-3534-test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure:3535:  { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } &&
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure-3536-  { ac_out=`sed -n '/^[	 ]*datarootdir[	 ]*:*=/p' \
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure.ac-36-do
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure.ac:37:    app=`basename $exp .exp`
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/configure.ac-38-    apps="$app $apps"
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/dg-extract-results.sh-29-# Try to use the python version if possible, since it tends to be faster.
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/dg-extract-results.sh:30:PYTHON_VER=`echo "$0" | sed 's/sh$/py/'`
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/dg-extract-results.sh-31-if test "$PYTHON_VER" != "$0" &&
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/dg-extract-results.sh-76-done
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/dg-extract-results.sh:77:shift `expr ${OPTIND} - 1`
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/dg-extract-results.sh-78-
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/dg-extract-results.sh-90-{
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/dg-extract-results.sh:91:  TMP=`(umask 077 && mktemp -d -q "${TMPDIR}/dg-combine-results-$$-XXXXXX") 2>/dev/null` &&
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/dg-extract-results.sh-92-  test -n "$TMP" && test -d "$TMP"
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/dg-extract-results.sh-146-
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/dg-extract-results.sh:147:  CNT=`$GREP '=== .* tests ===' $SUM_FILES | $AWK '{ print $3 }' | sort -u | wc -l`
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/dg-extract-results.sh-148-  if [ $CNT -eq 1 ]; then
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/dg-extract-results.sh:149:    TOOL=`$GREP '=== .* tests ===' $FIRST_SUM | $AWK '{ print $2 }'`
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/dg-extract-results.sh-150-  else
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/dg-extract-results.sh-159-
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/dg-extract-results.sh:160:  SUM_FILES=`$GREP -l "=== $TOOL" $SUM_FILES`
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/dg-extract-results.sh-161-  if test -z "$SUM_FILES" ; then
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/dg-extract-results.sh-211-END {
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/dg-extract-results.sh:212:  system ("cat ${TMP}/chapter-*")
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/dg-extract-results.sh-213-  print "		=== acats Summary ==="
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/dg-extract-results.sh-242-  done
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/dg-extract-results.sh:243:  VARIANTS="`sort -u ${TMP}/varlist`"
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/dg-extract-results.sh-244-else
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/dg-extract-results.sh-257-do
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/dg-extract-results.sh:258:  VARIANT_COUNT=`expr $VARIANT_COUNT + 1`
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/dg-extract-results.sh-259-done
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/dg-extract-results.sh-353-	if ("$MODE" == "sum")
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/dg-extract-results.sh:354:	  system (cmd" ${TMP}/list"n" | sed -n 's/^[^ ]* [^ |]*|//p'")
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/dg-extract-results.sh-355-	else
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/dg-extract-results.sh:356:	  system ("cat ${TMP}/list"n)
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/dg-extract-results.sh-357-      }
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/dg-extract-results.sh-402-
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/dg-extract-results.sh:403:  PVAR=`echo $VAR | sed 's,/,.,g'`
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/dg-extract-results.sh-404-  TMPFILE=${TMP}/var-$PVAR
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/parseko/bad_tapset.stp-4-
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/parseko/bad_tapset.stp:5:TAPSET=`dirname $0`/bad_tapset/
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/parseko/bad_tapset.stp-6-stap $@ -p1 -e 'probe begin {}' -I $TAPSET -W
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/parseok/bad_tapset.stp-4-
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/parseok/bad_tapset.stp:5:TAPSET=`dirname $0`/../parseko/bad_tapset/
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/parseok/bad_tapset.stp-6-stap $@ -p1 -e 'probe begin {}' -I $TAPSET
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/sys/sdt.h-12-#ifdef __LP64__
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/sys/sdt.h:13: #define STAP_PROBE_ADDR(arg) "\t.quad " arg
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/sys/sdt.h-14-#elif defined (__BIG_ENDIAN__)
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/sys/sdt.h:15: #define STAP_PROBE_ADDR(arg) "\t.long 0\n\t.long " arg
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/sys/sdt.h-16-#else
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/sys/sdt.h:17: #define STAP_PROBE_ADDR(arg) "\t.long " arg
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/sys/sdt.h-18-#endif
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/sys/sdt.h-37-		    "\t.balign 8\n"			\
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/sys/sdt.h:38:		    STAP_PROBE_ADDR("1b\n")             \
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/sys/sdt.h-39-		    "\t.balign 8\n"                     \
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/sys/sdt.h:40:		    STAP_PROBE_ADDR(#arg "\n")		\
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/sys/sdt.h-41-		    "\t.int 0\n"			\
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/sys/sdt.h-51-		    "\t.balign 8\n"			\
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/sys/sdt.h:52:  		    STAP_PROBE_ADDR ("1f\n")		\
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/sys/sdt.h-53-		    "\t.balign 8\n"			\
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/sys/sdt.h:54:  		    STAP_PROBE_ADDR ("2f\n")		\
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/sys/sdt.h-55-		    "\t.balign 8\n"			\
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/sys/sdt.h:56:		    STAP_PROBE_ADDR (#argc "\n")	\
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/sys/sdt.h-57-                    "\t.balign 8\n"                     \
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/sys/sdt.h:58:                    STAP_PROBE_ADDR("3f\n")		\
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/sys/sdt.h-59-                    "\t.balign 8\n"                     \
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/sys/sdt.h:60:                    STAP_PROBE_ADDR("4f\n")          	\
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/sys/sdt.h-61-                    "\t.balign 8\n"                     \
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/sys/sdt.h:62:		    STAP_PROBE_ADDR(semaphore "\n")	\
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/sys/sdt.h-63-  		    "\t.balign 8\n"			\
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.apps/xulrunner.exp-102-cd xul/bld
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.apps/xulrunner.exp:103:JAVA=`yum info available 'java*openjdk' |& awk '/Name/ {print \$3}'`
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.apps/xulrunner.exp-104-for P in glib-devel gtk+ ORBit-devel \$JAVA ; do 
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/atomic.exp-75-	print("systemtap ending probe\n")
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/atomic.exp:76:	printf("%%d\n", atomic_long_read(get_atomic_long_addr() + %s))
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/atomic.exp-77-    }
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/atomic.exp-137-	print("systemtap ending probe\n")
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/atomic.exp:138:	printf("%%d\n", atomic_read(get_atomic_addr() + %s))
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/atomic.exp-139-    }
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/bad-code.c:1:// Testcase for PR14107. Missing kernel asm CFI.
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/bad-code.c-2-
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/bad-code.exp:1:# Testcase for PR14107 missing kernel ASM CFI.
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/bad-code.exp-2-set test "bad-code"
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/bad-code.stp:1:// Testcase for PR14107 missing kernel asm CFI.
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/bad-code.stp-2-probe kernel.function("force_sig_info") {
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/externalvar.c-38-{
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/externalvar.c:39:  asm (""); // dummy method, just to probe and extract and jump into lib.
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/externalvar.c-40-  lib_main ();
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/externalvar.c-50-  stat_exevar_c = exevar_c;
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/externalvar.c:51:  asm ("nop" : "=r"(stat_exevar_c) : "r"(stat_exevar_c));
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/externalvar.c-52-  exevar_i = 2;
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/externalvar.c-53-  stat_exevar_i = exevar_i;
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/externalvar.c:54:  asm ("nop" : "=r"(stat_exevar_i) : "r"(stat_exevar_i));
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/externalvar.c-55-  exevar_l = 21;
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/externalvar.c-56-  stat_exevar_l = exevar_l;
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/externalvar.c:57:  asm ("nop" : "=r"(stat_exevar_l) : "r"(stat_exevar_l));
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/externalvar.c-58-  exe_s = (struct exestruct *) malloc(sizeof(struct exestruct));
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/externalvar.c-64-  stat_exe_s = exe_s;
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/externalvar.c:65:  asm ("nop" : "=r"(stat_exe_s) : "r"(stat_exe_s));
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/externalvar.c-66-  main_call ();
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/externalvar_lib.c-39-  stat_libvar = libvar;
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/externalvar_lib.c:40:  asm ("nop" : "=r"(stat_libvar) : "r"(stat_libvar));
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/externalvar_lib.c-41-  lib_s = (struct libstruct *) malloc(sizeof(struct libstruct));
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/externalvar_lib.c-47-  stat_lib_s = lib_s;
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/externalvar_lib.c:48:  asm ("nop" : "=r"(stat_lib_s) : "r"(stat_lib_s));
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/externalvar_lib.c-49-  lib_call ();
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/hw_breakpoint.exp-105-    eof { }
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/hw_breakpoint.exp:106:    timeout { fail "$test - addr (${script_name} (timeout))" }
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/hw_breakpoint.exp-107-}
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/hw_breakpoint.exp-113-if { $no_hardware_support == 1 } {
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/hw_breakpoint.exp:114:    xfail "$test - addr (kernel support, but no hardware support)"
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/hw_breakpoint.exp-115-} elseif { $rc == 0 && $found == 1 } {
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/hw_breakpoint.exp:116:    pass "$test - addr (hw breakpoint support)"
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/hw_breakpoint.exp-117-} else {
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/hw_breakpoint.exp:118:    fail "$test - addr ($rc, $found)"
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/hw_breakpoint.exp-119-}
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/inlinedvars.c-13-    volatile __typeof__(j) p_j = j;
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/inlinedvars.c:14:    // empty asm to force locals into regs.
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/inlinedvars.c:15:    inlined_label: asm volatile ("" : "=g"(c) : "g"(p_name), "g"(p_i), "g"(p_j));
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/inlinedvars.c-16-    if (c != 0) goto inlined_label;
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/partial-inline.stp-4-{
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/partial-inline.stp:5:  println(usymname(uaddr())) /* "main" for inlined parts of foo(), 
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/partial-inline.stp-6-                              and we don't want to see 
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/process-begin-user_1.stp-2-    printf("rip: 0x%x\n", register("rip"));
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/process-begin-user_1.stp:3:    if (register("rip") != uaddr()) {
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/process-begin-user_1.stp:4:        printf("different uaddr: 0x%x\n", uaddr())
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/process-begin-user_1.stp-5-    } else {
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/process-begin-user_2.stp-2-    printf("rip: 0x%x\n", register("rip"));
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/process-begin-user_2.stp:3:    if (register("rip") != uaddr()) {
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/process-begin-user_2.stp:4:        printf("different uaddr: 0x%x\n", uaddr())
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/process-begin-user_2.stp-5-    } else {
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/sdt.exp-114-	    && [regexp "^(-O)" $extra_mssg]} {
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/sdt.exp:115:	# register name and constant is ambiguous in ppc/s390 asm syntax
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/sdt.exp-116-	# thus constant folding can throw the result off
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/sdt_asm.exp:1:# sdt_asm used to be part of sdt_misc, so keep
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/sdt_asm.exp-2-# the same test name for result comparisons.
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/sdt_asm.exp-6-
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/sdt_asm.exp:7:# Test V3 asm support
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/sdt_asm.exp-8-
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/sdt_asm.exp-17-
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/sdt_asm.exp:18:# 8. Test V3 asm support
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/sdt_asm.exp-19-
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/sdt_asm.exp-50-	    -timeout 180
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/sdt_asm.exp:51:	    -re {^sdt_asm PASS: [^\r]*\r\n} { incr ok; exp_continue }
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/sdt_asm.exp:52:	    -indices -re {^sdt_asm FAIL: ([^\r ]*)[^\r]*\r\n} {
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/sdt_asm.exp-53-	        set s $expect_out(1,string);
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/sdt_asm.stp-3-  if (value == expected)
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/sdt_asm.stp:4:    printf ("sdt_asm PASS: %s\n", name)
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/sdt_asm.stp-5-  else
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/sdt_asm.stp:6:    printf ("sdt_asm FAIL: %s (%#x != %#x)\n", name, value, expected)
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/sdt_asm.stp-7-}
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/sdt_casm.exp-2-
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/sdt_casm.exp:3:# Test SDT in C-asm with STAP_PROBE_ASM, with and without asm operands.
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/sdt_casm.exp-4-#
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/sdt_casm.exp-8-# asm() has operands.  That fix was thus reverted, and we're testing to make
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/sdt_casm.exp:9:# sure STAP_PROBE_ASM doesn't regress again.
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/sdt_casm.exp-10-
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/sdt_global_var.exp-97-	    && [regexp "^(-O)" $extra_mssg]} {
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/sdt_global_var.exp:98:	# register name and constant is ambiguous in ppc/s390 asm syntax
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/sdt_global_var.exp-99-	# thus constant folding can throw the result off
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/setjmp.c-30-{
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/setjmp.c:31:  asm volatile ("");
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/setjmp.c-32-}
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/utf_kernel.stp-32-{
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/utf_kernel.stp:33:  s = utf16_addr();
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/utf_kernel.stp-34-  for (p = s; i = kernel_short(p) & 0xffff; p += 2)
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/utf_kernel.stp-39-
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/utf_kernel.stp:40:  s = utf32_addr();
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/utf_kernel.stp-41-  for (p = s; i = kernel_int(p) & 0xffffffff; p += 4)
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/utf_kernel_trunc.stp-77-{
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/utf_kernel_trunc.stp:78:  for (i = 0; s = utf16_addr(i); ++i)
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/utf_kernel_trunc.stp-79-    println("utf-16:", kernel_string_utf16(s))
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/utf_kernel_trunc.stp-80-
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/utf_kernel_trunc.stp:81:  for (i = 0; s = utf32_addr(i); ++i)
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/utf_kernel_trunc.stp-82-    println("utf-32:", kernel_string_utf32(s))
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/vma_vdso.stp-10-         // (This happens because umodname() is marked as /* pure */)
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/vma_vdso.stp:11:         if (umodname(uaddr()) == "<unknown>")
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/vma_vdso.stp-12-           log(name)
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/vma_vdso.stp-17-      {
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/vma_vdso.stp:18:         printf("%s@%x unknown\n", name, uaddr());
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.base/vma_vdso.stp-19-      }
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/symfileline.stp-9-probe module("systemtap_test_module2").function("yyy_func4") {
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/symfileline.stp:10:  printf("fileline %s \n", symfileline(addr()))
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/symfileline.stp:11:  printf("file %s \n", symfile(addr()))
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/symfileline.stp:12:  printf("line %s \n", symline(addr()))
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/symfileline.stp-13-  exit()
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/symfileline.stp-17-  fileline = "@"
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/symfileline.stp:18:  fileline .= symfileline(addr())
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/symfileline.stp-19-  if (isinstr(pp(), fileline) != 1){
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/systemtap_test_module2.c-24-int noinline yyy_func4 (int foo) {
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/systemtap_test_module2.c:25:        asm ("");
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/systemtap_test_module2.c-26-        return foo + 1;
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/systemtap_test_module2.c-29-	foo = yyy_func4(foo);
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/systemtap_test_module2.c:30:        asm ("");
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/systemtap_test_module2.c-31-        return foo + 1;
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/systemtap_test_module2.c-34-        foo = yyy_func3(foo);
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/systemtap_test_module2.c:35:        asm ("");
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/systemtap_test_module2.c-36-        return foo + 1;
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/systemtap_test_module2.c-40-	foo = yyy_func2(foo);
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/systemtap_test_module2.c:41:        asm ("");
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/systemtap_test_module2.c-42-        return foo + 1;
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/systemtap_test_module2.c-48-{
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/systemtap_test_module2.c:49:        asm ("");
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/systemtap_test_module2.c-50-	return a+b+c;
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/systemtap_test_module2.c-54-{
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/systemtap_test_module2.c:55:        asm ("");
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/systemtap_test_module2.c-56-	return a+b+c;
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/systemtap_test_module2.c-60-{
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/systemtap_test_module2.c:61:        asm ("");
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/systemtap_test_module2.c-62-	return a+b+c;
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/systemtap_test_module2.c-66-{
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/systemtap_test_module2.c:67:        asm ("");
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/systemtap_test_module2.c-68-	return a+b+c;
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/systemtap_test_module2.c-72-{
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/systemtap_test_module2.c:73:        asm ("");
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/systemtap_test_module2.c-74-	return 'Q';
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/systemtap_test_module2.c-78-{
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/systemtap_test_module2.c:79:        asm ("");
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/systemtap_test_module2.c-80-	return "XYZZY";
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/uprobe_stmt_num.exp-57-    puts $fp "{"
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/uprobe_stmt_num.exp:58:    puts $fp "  printf(\"0x%x\\n\", uaddr());"
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/uprobe_stmt_num.exp-59-    puts $fp "}"
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/uprobe_stmt_num.stp-2-{
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/uprobe_stmt_num.stp:3:  printf("0x%x\n", uaddr());
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/uprobe_stmt_num.stp-4-}
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/uprobe_uaddr.stp-1-probe process("uprobe_uaddr").function("main").call {
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/uprobe_uaddr.stp:2:    println(usymdata(uaddr()))
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/uprobe_uaddr.stp-3-}
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/uprobe_uaddr.stp-5-probe process("uprobe_uaddr").function("main").return {
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/uprobe_uaddr.stp:6:    println(usymdata(uaddr()))
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/uprobe_uaddr.stp-7-}
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/uprobe_uaddr.stp-9-probe process("uprobe_uaddr").function("func").call {
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/uprobe_uaddr.stp:10:    println(usymdata(uaddr()))
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/uprobe_uaddr.stp-11-}
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/uprobe_uaddr.stp-13-probe process("uprobe_uaddr").function("func").return {
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/uprobe_uaddr.stp:14:    println(usymdata(uaddr()))
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/uprobe_uaddr.stp-15-}
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/uprobe_uaddr.stp-17-probe process("uprobe_uaddr").function("func2").call {
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/uprobe_uaddr.stp:18:    println(usymdata(uaddr()))
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/uprobe_uaddr.stp-19-}
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/uprobe_uaddr.stp-21-probe process("uprobe_uaddr").function("func2").return {
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/uprobe_uaddr.stp:22:    println(usymdata(uaddr()))
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/uprobe_uaddr.stp-23-}
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/uprobe_uaddr_mark.stp-1-probe process("uprobe_uaddr_mark").mark("uprobe_uaddr_mark") {
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/uprobe_uaddr_mark.stp:2:    // Check that uaddr() is the same address as the pp() statement.
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/uprobe_uaddr_mark.stp:3:    statement = sprintf(".statement(%#x)", uaddr())
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/uprobe_uaddr_mark.stp-4-    if (isinstr(pp(), statement))
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/uprobe_uaddr_mark.stp-6-    else
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/uprobe_uaddr_mark.stp:7:        printf("failure: %#x doesn't match %s\n", uaddr(), pp())
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/uprobe_uaddr_mark.stp-8-}
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/usymfileline.exp-40-  stap_run "$test ()" no_load "0x0\r\n" -e $testscript 0 -c ./usymfileline
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/usymfileline.exp:41:  # test with uaddr()
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/usymfileline.exp:42:  stap_run "$test ()" no_load $eoutput -e $testscript uaddr() -c ./usymfileline
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/usymfileline.exp-43-}
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/usymfileline.exp-51-  ppstring = pp()\
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/usymfileline.exp:52:  symstring = "@".usymfileline(uaddr())\
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/usymfileline.exp-53-  if (isinstr(ppstring, symstring) != 1) {\
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/usymfileline.exp-74-  set testscript [string map "TAPSETFUNCTION $test" $script]
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/usymfileline.exp:75:  # test with uaddr(). check that it can still fail gracefully.
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/usymfileline.exp:76:  stap_run "$test (no debug_line)" no_load "0x\[0-9,a-f]*\r\n" -e $testscript uaddr() -c ./usymfileline 
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.context/usymfileline.exp-77-}
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.examples/io/mbrwatch.meta-12-test_check: stap -p4 mbrwatch.stp
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.examples/io/mbrwatch.meta:13:test_installcheck: stap mbrwatch.stp -c "dd of=/dev/null count=1 if=/dev/`grep -v major /proc/partitions | grep . | grep -v 'sr[0-9]' | awk '{print $4}' | head -1`"
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.examples/memory/hw_watch_addr.meta-11-description: The script will watch accesses to a single kernel address and prints a traceback each time the address is accessed. This script needs to be run as root to allow access to the breakpoint hardware.
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.examples/memory/hw_watch_addr.meta:12:test_support: perf stat -a --event=mem:0x`grep "vm_dirty_ratio" /proc/kallsyms | awk '{print $1}'` /bin/true
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.examples/memory/hw_watch_addr.meta:13:test_check: stap --all-modules -p4 hw_watch_addr.stp 0x`grep "vm_dirty_ratio" /proc/kallsyms | awk '{print $1}'`
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.examples/memory/hw_watch_addr.meta:14:test_installcheck: stap --all-modules hw_watch_addr.stp 0x`grep "vm_dirty_ratio" /proc/kallsyms | awk '{print $1}'` -T 5
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.examples/memory/hw_watch_sym.meta-11-description: The script will watch accesses to the starting address of a single kernel symbol and prints a traceback each time the symbol is accessed. This script needs to be run as root to allow access to the breakpoint hardware.
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.examples/memory/hw_watch_sym.meta:12:test_support: perf stat -a --event=mem:0x`grep "vm_dirty_ratio" /proc/kallsyms | awk '{print $1}'` /bin/true
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.examples/memory/hw_watch_sym.meta-13-test_check: stap --all-modules -p4 hw_watch_sym.stp vm_dirty_ratio
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.examples/network/socktop-77-	        F_TYPESTR=$OPTARG$DELIM$F_TYPESTR ;;
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.examples/network/socktop:78:	u)      uid=`awk -F: '$1 == name {print $3}' name=$OPTARG /etc/passwd`
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.examples/network/socktop-79-	        if [[ $uid != "" ]]; then
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.examples/network/socktop-105-TZ=`date "+%z"`
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.examples/network/socktop:106:TZ_SIGN=`echo $TZ | cut -c1`
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.examples/network/socktop:107:TZ_HOURS=`echo $TZ | cut -c2-3`
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.examples/network/socktop:108:TZ_MINS=`echo $TZ | cut -c4-5`
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.examples/network/socktop-109-TZ_ADJUST=$TZ_SIGN$((10#$TZ_HOURS*60*60+10#$TZ_MINS*60))
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.examples/network/tcp_retransmission.stp-16-    rto = tcp_get_info_rto($sk)
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.examples/network/tcp_retransmission.stp:17:    saddr   = format_ipaddr(__ip_sock_saddr($sk), __ip_sock_family($sk))
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.examples/network/tcp_retransmission.stp:18:    daddr   = format_ipaddr(__ip_sock_daddr($sk), __ip_sock_family($sk))
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.examples/network/tcp_retransmission.stp-19-    sport   = __tcp_sock_sport($sk)
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.examples/network/tcp_trace.stp-691-{
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.examples/network/tcp_trace.stp:692:	laddr = tcpmib_local_addr(sk);
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.examples/network/tcp_trace.stp:693:	raddr = tcpmib_remote_addr(sk);
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.examples/network/tcp_trace.stp-694-	lport = tcpmib_local_port(sk);
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.examples/network/tcpipstat.stp-40- *		individual element of the tuple can be used as the index.
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.examples/network/tcpipstat.stp:41: *		Valid values for index are laddr (local address), raddr
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.examples/network/tcpipstat.stp-42- *		(remote address) , lport, rport or tuple.  For example if
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.examples/network/tcpipstat.stp-376-	if( !(ipmib_get_proto(skb) == 6) ) return 0;
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.examples/network/tcpipstat.stp:377:	raddr = ipmib_remote_addr(skb, SourceIsLocal);
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.examples/network/tcpipstat.stp:378:	laddr = ipmib_local_addr(skb, SourceIsLocal);
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.examples/network/tcpipstat.stp-379-	rport = ipmib_tcp_remote_port(skb, SourceIsLocal);
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.examples/network/tcpipstat.stp-390-        if ( !sk ) return 0;
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.examples/network/tcpipstat.stp:391:        laddr = tcpmib_local_addr(sk);
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.examples/network/tcpipstat.stp:392:        raddr = tcpmib_remote_addr(sk);
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.examples/network/tcpipstat.stp-393-        lport = tcpmib_local_port(sk);
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.examples/network/tcpipstat.stp-578-
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.examples/network/tcpipstat.stp:579:        laddr = tcpmib_local_addr(sk);
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.examples/network/tcpipstat.stp:580:        raddr = tcpmib_remote_addr(sk);
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.examples/network/tcpipstat.stp-581-        lport = tcpmib_local_port(sk);
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.examples/process/syscalltimes-55-
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.examples/process/syscalltimes:56:	u)	uid=`awk -F: '$1 == name {print $3}' name=$OPTARG /etc/passwd`
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.examples/process/syscalltimes-57-		if [[ $uid != "" ]]; then
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.examples/profiling/fileline-profile.stp-18-  if (user_mode()) {
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.examples/profiling/fileline-profile.stp:19:    ufileline = usymfileline(uaddr())
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.examples/profiling/fileline-profile.stp-20-    if (strtol(ufileline, 16))
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.examples/profiling/fileline-profile.stp:21:      uaddrinfo = usymdata(uaddr())
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.examples/profiling/fileline-profile.stp-22-    else {
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.examples/profiling/fileline-profile.stp-23-      if (symbolname != "")
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.examples/profiling/fileline-profile.stp:24:        uaddrinfo = usymname(uaddr())."@"
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.examples/profiling/fileline-profile.stp-25-      uaddrinfo .= ufileline
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.examples/profiling/fileline-profile.stp-28-  } else {
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.examples/profiling/fileline-profile.stp:29:     profile["", addr()] <<< 1
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.examples/profiling/fileline-profile.stp-30-  }
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.examples/profiling/pf2.stp-5-  pcount <<< 1
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.examples/profiling/pf2.stp:6:  fn = user_mode() ? "<user>" : symname(addr())
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.examples/profiling/pf2.stp-7-  if (fn != "") profile[fn] <<< 1
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.examples/profiling/pf3.stp-16-    try { // modname() can throw
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.examples/profiling/pf3.stp:17:      fn = "k:".modname(addr()).":".symname(addr())
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.examples/profiling/pf3.stp-18-    } catch {
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.examples/profiling/pf3.stp:19:      fn = "k:<unknown>:".symname(addr())
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.examples/profiling/pf3.stp-20-    }
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.examples/profiling/pf3.stp-22-    try { // umodname() can throw
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.examples/profiling/pf3.stp:23:      fn = "u:".umodname(uaddr()).":".usymname(uaddr())
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.examples/profiling/pf3.stp-24-    } catch {
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.examples/profiling/pf3.stp:25:      fn = "u:<unknown>:".usymname(uaddr())
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.examples/profiling/pf3.stp-26-    }
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.examples/stapgames/2048.stp-1-#!/bin/bash
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.examples/stapgames/2048.stp:2://usr/bin/env stty -echo; sudo staprun -T 30 `stap -p4 "$0"`; stty echo; exit
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.examples/stapgames/2048.stp-3-
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.exelib/libmarkunamestack.stp-32-      process(@1).function("main_func") {
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.exelib/libmarkunamestack.stp:33:  printf("exe: %s=%s\n",probefunc(), usymname(uaddr()));
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.exelib/libmarkunamestack.stp-34-}
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.exelib/libmarkunamestack.stp-37-      process(@2).function("lib_func") {
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.exelib/libmarkunamestack.stp:38:  printf("lib: %s=%s\n",probefunc(), usymname(uaddr()));
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.exelib/libmarkunamestack.stp-39-}
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.exelib/uname.stp:1:// Prints probefunc() and usymname(uaddr()) to check they are similar.
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.exelib/uname.stp-2-// Arguments: @1 uprobes_exe, @2 libuprobes_lib.so
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.exelib/uname.stp-5-      process(@1).function("main_func") {
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.exelib/uname.stp:6:  printf("exe: %s=%s\n",probefunc(), usymname(uaddr()));
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.exelib/uname.stp-7-}
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.exelib/uname.stp-10-      process(@2).function("lib_func") {
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.exelib/uname.stp:11:  printf("lib: %s=%s\n",probefunc(), usymname(uaddr()));
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.exelib/uname.stp-12-}
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.exelib/uprobes_exe.c-17-
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.exelib/uprobes_exe.c:18:// Marked noinline and has an empty asm statement to prevent inlining
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.exelib/uprobes_exe.c-19-// or optimizing away totally.
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.exelib/uprobes_exe.c-23-{
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.exelib/uprobes_exe.c:24:  asm ("");
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.exelib/uprobes_exe.c-25-  STAP_PROBE1(test, main_count, foo);
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.exelib/uprobes_lib.c-14-
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.exelib/uprobes_lib.c:15:// Marked noinline and has an empty asm statement to prevent inlining
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.exelib/uprobes_lib.c-16-// or optimizing away totally.
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.exelib/uprobes_lib.c-20-{
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.exelib/uprobes_lib.c:21:  asm ("");
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.exelib/uprobes_lib.c-22-  STAP_PROBE1(test, func_count, bar);
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.printf/memory1_module.c-29-{
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.printf/memory1_module.c:30:        asm ("");
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.printf/memory1_module.c-31-	memcpy(buffer, string, bytes);
##############################################
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.printf/memory1_module.c-35-{
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.printf/memory1_module.c:36:        asm ("");
systemtap-4.4/doc/SystemTap_Beginners_Guide/testsuite/systemtap.printf/memory1_module.c-37-	return buffer;
##############################################
systemtap-4.4/doc/SystemTap_Tapset_Reference/Makefile.in-52-  { \
systemtap-4.4/doc/SystemTap_Tapset_Reference/Makefile.in:53:    flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
systemtap-4.4/doc/SystemTap_Tapset_Reference/Makefile.in-54-  }; \
##############################################
systemtap-4.4/doc/SystemTap_Tapset_Reference/Makefile.in-446-.c.obj:
systemtap-4.4/doc/SystemTap_Tapset_Reference/Makefile.in:447:@am__fastdepCC_TRUE@	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
systemtap-4.4/doc/SystemTap_Tapset_Reference/Makefile.in-448-@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
##############################################
systemtap-4.4/doc/SystemTap_Tapset_Reference/Makefile.in-450-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/doc/SystemTap_Tapset_Reference/Makefile.in:451:@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
systemtap-4.4/doc/SystemTap_Tapset_Reference/Makefile.in-452-
##############################################
systemtap-4.4/doc/SystemTap_Tapset_Reference/Makefile.in-482-GTAGS:
systemtap-4.4/doc/SystemTap_Tapset_Reference/Makefile.in:483:	here=`$(am__cd) $(top_builddir) && pwd` \
systemtap-4.4/doc/SystemTap_Tapset_Reference/Makefile.in-484-	  && $(am__cd) $(top_srcdir) \
##############################################
systemtap-4.4/doc/SystemTap_Tapset_Reference/man_pages/tapset::context-caller.3stap-33-See 
systemtap-4.4/doc/SystemTap_Tapset_Reference/man_pages/tapset::context-caller.3stap:34:.IR function::caller_addr (3stap)
systemtap-4.4/doc/SystemTap_Tapset_Reference/man_pages/tapset::context-caller.3stap-35- for details.
##############################################
systemtap-4.4/doc/SystemTap_Tapset_Reference/man_pages/tapset::context-caller.3stap-42-.BR
systemtap-4.4/doc/SystemTap_Tapset_Reference/man_pages/tapset::context-caller.3stap:43:.IR \%function::caller_addr (3stap),
systemtap-4.4/doc/SystemTap_Tapset_Reference/man_pages/tapset::context-caller.3stap-44-.BR
##############################################
systemtap-4.4/doc/SystemTap_Tapset_Reference/man_pages/tapset::context.3stap-330-See 
systemtap-4.4/doc/SystemTap_Tapset_Reference/man_pages/tapset::context.3stap:331:.IR function::addr (3stap)
systemtap-4.4/doc/SystemTap_Tapset_Reference/man_pages/tapset::context.3stap-332- for details.
##############################################
systemtap-4.4/doc/SystemTap_Tapset_Reference/man_pages/tapset::context.3stap-338-See 
systemtap-4.4/doc/SystemTap_Tapset_Reference/man_pages/tapset::context.3stap:339:.IR function::uaddr (3stap)
systemtap-4.4/doc/SystemTap_Tapset_Reference/man_pages/tapset::context.3stap-340- for details.
##############################################
systemtap-4.4/doc/SystemTap_Tapset_Reference/man_pages/tapset::context.3stap-445-.BR
systemtap-4.4/doc/SystemTap_Tapset_Reference/man_pages/tapset::context.3stap:446:.IR \%function::addr (3stap),
systemtap-4.4/doc/SystemTap_Tapset_Reference/man_pages/tapset::context.3stap-447-.BR
systemtap-4.4/doc/SystemTap_Tapset_Reference/man_pages/tapset::context.3stap:448:.IR \%function::uaddr (3stap),
systemtap-4.4/doc/SystemTap_Tapset_Reference/man_pages/tapset::context.3stap-449-.BR
##############################################
systemtap-4.4/doc/SystemTap_Tapset_Reference/man_pages/tapset::ip.3stap-13-See 
systemtap-4.4/doc/SystemTap_Tapset_Reference/man_pages/tapset::ip.3stap:14:.IR function::format_ipaddr (3stap)
systemtap-4.4/doc/SystemTap_Tapset_Reference/man_pages/tapset::ip.3stap-15- for details.
##############################################
systemtap-4.4/doc/SystemTap_Tapset_Reference/man_pages/tapset::ip.3stap-26-.BR
systemtap-4.4/doc/SystemTap_Tapset_Reference/man_pages/tapset::ip.3stap:27:.IR \%function::format_ipaddr (3stap),
systemtap-4.4/doc/SystemTap_Tapset_Reference/man_pages/tapset::ip.3stap-28-.BR
##############################################
systemtap-4.4/doc/SystemTap_Tapset_Reference/man_pages/tapset::ipmib.3stap-13-See 
systemtap-4.4/doc/SystemTap_Tapset_Reference/man_pages/tapset::ipmib.3stap:14:.IR function::ipmib_remote_addr (3stap)
systemtap-4.4/doc/SystemTap_Tapset_Reference/man_pages/tapset::ipmib.3stap-15- for details.
##############################################
systemtap-4.4/doc/SystemTap_Tapset_Reference/man_pages/tapset::ipmib.3stap-21-See 
systemtap-4.4/doc/SystemTap_Tapset_Reference/man_pages/tapset::ipmib.3stap:22:.IR function::ipmib_local_addr (3stap)
systemtap-4.4/doc/SystemTap_Tapset_Reference/man_pages/tapset::ipmib.3stap-23- for details.
##############################################
systemtap-4.4/doc/SystemTap_Tapset_Reference/man_pages/tapset::ipmib.3stap-138-.BR
systemtap-4.4/doc/SystemTap_Tapset_Reference/man_pages/tapset::ipmib.3stap:139:.IR \%function::ipmib_remote_addr (3stap),
systemtap-4.4/doc/SystemTap_Tapset_Reference/man_pages/tapset::ipmib.3stap-140-.BR
systemtap-4.4/doc/SystemTap_Tapset_Reference/man_pages/tapset::ipmib.3stap:141:.IR \%function::ipmib_local_addr (3stap),
systemtap-4.4/doc/SystemTap_Tapset_Reference/man_pages/tapset::ipmib.3stap-142-.BR
##############################################
systemtap-4.4/doc/SystemTap_Tapset_Reference/man_pages/tapset::tcpmib.3stap-21-See 
systemtap-4.4/doc/SystemTap_Tapset_Reference/man_pages/tapset::tcpmib.3stap:22:.IR function::tcpmib_local_addr (3stap)
systemtap-4.4/doc/SystemTap_Tapset_Reference/man_pages/tapset::tcpmib.3stap-23- for details.
##############################################
systemtap-4.4/doc/SystemTap_Tapset_Reference/man_pages/tapset::tcpmib.3stap-29-See 
systemtap-4.4/doc/SystemTap_Tapset_Reference/man_pages/tapset::tcpmib.3stap:30:.IR function::tcpmib_remote_addr (3stap)
systemtap-4.4/doc/SystemTap_Tapset_Reference/man_pages/tapset::tcpmib.3stap-31- for details.
##############################################
systemtap-4.4/doc/SystemTap_Tapset_Reference/man_pages/tapset::tcpmib.3stap-124-.BR
systemtap-4.4/doc/SystemTap_Tapset_Reference/man_pages/tapset::tcpmib.3stap:125:.IR \%function::tcpmib_local_addr (3stap),
systemtap-4.4/doc/SystemTap_Tapset_Reference/man_pages/tapset::tcpmib.3stap-126-.BR
systemtap-4.4/doc/SystemTap_Tapset_Reference/man_pages/tapset::tcpmib.3stap:127:.IR \%function::tcpmib_remote_addr (3stap),
systemtap-4.4/doc/SystemTap_Tapset_Reference/man_pages/tapset::tcpmib.3stap-128-.BR
##############################################
systemtap-4.4/doc/SystemTap_Tapset_Reference/manpager-27-for i in `cat manpageus` ; do
systemtap-4.4/doc/SystemTap_Tapset_Reference/manpager:28:  b=`basename $i | sed -e 's/.stpm$/.stp/'`
systemtap-4.4/doc/SystemTap_Tapset_Reference/manpager-29-  cat $SRCTREE/tapset/$i >>workingdir/$b ;
##############################################
systemtap-4.4/doc/SystemTap_Tapset_Reference/manpager-63-for i in `ls | grep -v .stp | grep -v tapsetdescription` ; do
systemtap-4.4/doc/SystemTap_Tapset_Reference/manpager:64:  icap=`echo $i | tr a-z A-Z`
systemtap-4.4/doc/SystemTap_Tapset_Reference/manpager-65-  echo ".\\\" -*- nroff -*-" >> $i.template ;
##############################################
systemtap-4.4/doc/SystemTap_Tapset_Reference/manpager-67-  echo ".SH NAME" >> $i.template ;
systemtap-4.4/doc/SystemTap_Tapset_Reference/manpager:68:  echo "tapset::"`cat $i.stp`" \- systemtap "`cat $i.stp`" tapset" >> $i.template ;
systemtap-4.4/doc/SystemTap_Tapset_Reference/manpager-69-  echo " " >> $i.template ;
##############################################
systemtap-4.4/doc/SystemTap_Tapset_Reference/manpager-94-  echo ".SH SEE ALSO" >> $i.footer
systemtap-4.4/doc/SystemTap_Tapset_Reference/manpager:95:  for j in `cat $i.funcnames | uniq` ; do
systemtap-4.4/doc/SystemTap_Tapset_Reference/manpager-96-    echo ".BR" >> $i.footer
##############################################
systemtap-4.4/doc/SystemTap_Tapset_Reference/manpager-98-  done
systemtap-4.4/doc/SystemTap_Tapset_Reference/manpager:99:  for j in `cat $i.probenames` ; do
systemtap-4.4/doc/SystemTap_Tapset_Reference/manpager-100-    echo ".BR" >> $i.footer
##############################################
systemtap-4.4/doc/SystemTap_Tapset_Reference/manpager-102-  done
systemtap-4.4/doc/SystemTap_Tapset_Reference/manpager:103:  for j in `cat $i.macros` ; do
systemtap-4.4/doc/SystemTap_Tapset_Reference/manpager-104-    echo ".BR" >> $i.footer
##############################################
systemtap-4.4/doc/SystemTap_Tapset_Reference/manpager-113-for i in `cat ../manpageus` ; do
systemtap-4.4/doc/SystemTap_Tapset_Reference/manpager:114:  for j in `cat $i.funcnames | uniq` ; do
systemtap-4.4/doc/SystemTap_Tapset_Reference/manpager-115-    echo ".SH SEE ALSO\n " >> ../man3/function::$j.3stap
##############################################
systemtap-4.4/doc/SystemTap_Tapset_Reference/manpager-117-  done
systemtap-4.4/doc/SystemTap_Tapset_Reference/manpager:118:  for j in `cat $i.probenames` ; do
systemtap-4.4/doc/SystemTap_Tapset_Reference/manpager-119-    echo ".SH SEE ALSO\n " >> ../man3/probe::$j.3stap
##############################################
systemtap-4.4/doc/SystemTap_Tapset_Reference/manpager-121-  done
systemtap-4.4/doc/SystemTap_Tapset_Reference/manpager:122:  for j in `cat $i.macros` ; do
systemtap-4.4/doc/SystemTap_Tapset_Reference/manpager-123-    echo ".SH SEE ALSO\n " >> ../man3/macro::$j.3stap
##############################################
systemtap-4.4/doc/SystemTap_Tapset_Reference/publicanize.sh-20-do
systemtap-4.4/doc/SystemTap_Tapset_Reference/publicanize.sh:21:	arg=`printf %s $1 | awk -F= '{print $1}'`
systemtap-4.4/doc/SystemTap_Tapset_Reference/publicanize.sh:22:	val=`printf %s $1 | awk -F= '{print $2}'`
systemtap-4.4/doc/SystemTap_Tapset_Reference/publicanize.sh-23-	shift
##############################################
systemtap-4.4/doc/Tapset_Reference_Guide/manpager.sh-48-echo ".SH NAME" >> $i.template ;
systemtap-4.4/doc/Tapset_Reference_Guide/manpager.sh:49:echo "stapprobes."`cat $i.stp`" \- systemtap "`cat $i.stp`" probe points" >> $i.template ;
systemtap-4.4/doc/Tapset_Reference_Guide/manpager.sh-50-echo " " >> $i.template ;
##############################################
systemtap-4.4/doc/Tapset_Reference_Guide/publicanize.sh-20-do
systemtap-4.4/doc/Tapset_Reference_Guide/publicanize.sh:21:	arg=`printf %s $1 | awk -F= '{print $1}'`
systemtap-4.4/doc/Tapset_Reference_Guide/publicanize.sh:22:	val=`printf %s $1 | awk -F= '{print $2}'`
systemtap-4.4/doc/Tapset_Reference_Guide/publicanize.sh-23-	shift
##############################################
systemtap-4.4/doc/beginners/Makefile.in-51-  { \
systemtap-4.4/doc/beginners/Makefile.in:52:    flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
systemtap-4.4/doc/beginners/Makefile.in-53-  }; \
##############################################
systemtap-4.4/dwarf_wrappers.h-89-
systemtap-4.4/dwarf_wrappers.h:90:#define DWARF_LINEADDR(line) \
systemtap-4.4/dwarf_wrappers.h:91:  safe_dwarf_lineaddr(line, __FILE__, __LINE__)
systemtap-4.4/dwarf_wrappers.h-92-
systemtap-4.4/dwarf_wrappers.h-93-inline Dwarf_Addr
systemtap-4.4/dwarf_wrappers.h:94:safe_dwarf_lineaddr(const Dwarf_Line* line,
systemtap-4.4/dwarf_wrappers.h-95-                    const std::string& errfile, int errline)
##############################################
systemtap-4.4/dwarf_wrappers.h-98-  dwarf_assert("dwarf_lineaddr",
systemtap-4.4/dwarf_wrappers.h:99:               dwarf_lineaddr(const_cast<Dwarf_Line*>(line), &addr),
systemtap-4.4/dwarf_wrappers.h-100-               errfile, errline);
##############################################
systemtap-4.4/dwflpp.cxx-1567-  if (lineno_a == lineno_b)
systemtap-4.4/dwflpp.cxx:1568:    return DWARF_LINEADDR(a) < DWARF_LINEADDR(b);
systemtap-4.4/dwflpp.cxx-1569-  return lineno_a < lineno_b;
##############################################
systemtap-4.4/dwflpp.cxx-1637-            cout << DWARF_LINENO(*i) << " = " << hex
systemtap-4.4/dwflpp.cxx:1638:                 << DWARF_LINEADDR(*i) << dec << endl;
systemtap-4.4/dwflpp.cxx-1639-        }
##############################################
systemtap-4.4/dwflpp.cxx-1649-  Dwarf_Line *line = dwarf_getsrc_die(cu, func.entrypc);
systemtap-4.4/dwflpp.cxx:1650:  if (line && DWARF_LINEADDR(line) == func.entrypc)
systemtap-4.4/dwflpp.cxx-1651-    return line;
##############################################
systemtap-4.4/dwflpp.cxx-1664-      line = dwarf_onesrcline(lines, i);
systemtap-4.4/dwflpp.cxx:1665:      if (dwarf_haspc(&func.die, DWARF_LINEADDR(line)))
systemtap-4.4/dwflpp.cxx-1666-        return line;
##############################################
systemtap-4.4/dwflpp.cxx-1675-  for (auto line = range.first; line != range.second; ++line)
systemtap-4.4/dwflpp.cxx:1676:    if (dwarf_haspc(die, DWARF_LINEADDR(*line)))
systemtap-4.4/dwflpp.cxx-1677-      lines_in_die.push_back(*line);
##############################################
systemtap-4.4/dwflpp.cxx-1975-          int lineno = DWARF_LINENO(*line);
systemtap-4.4/dwflpp.cxx:1976:          Dwarf_Addr addr = DWARF_LINEADDR(*line);
systemtap-4.4/dwflpp.cxx-1977-          bool is_new_addr = probed_addrs.insert(addr).second;
##############################################
systemtap-4.4/dwflpp.cxx-2111-  external_function_query(dwflpp* dw, const string& name):
systemtap-4.4/dwflpp.cxx:2112:    dw(dw), name(name), die(), addr(0), resolved(false) {}
systemtap-4.4/dwflpp.cxx-2113-};
##############################################
systemtap-4.4/dwflpp.cxx-2389-      Dwarf_Line* line = dwarf_onesrcline(lines, i);
systemtap-4.4/dwflpp.cxx:2390:      Dwarf_Addr addr = DWARF_LINEADDR(line);
systemtap-4.4/dwflpp.cxx-2391-      if (!addrs.empty() && addr < addrs.back())
##############################################
systemtap-4.4/dwflpp.cxx-2472-                                                  postprologue_srcline_idx);
systemtap-4.4/dwflpp.cxx:2473:          Dwarf_Addr lineaddr   = DWARF_LINEADDR(postprologue_srcline);
systemtap-4.4/dwflpp.cxx-2474-          const char* linesrc   = DWARF_LINESRC(postprologue_srcline);
##############################################
systemtap-4.4/dwflpp.cxx-2507-
systemtap-4.4/dwflpp.cxx:2508:      Dwarf_Addr postprologue_addr = DWARF_LINEADDR(postprologue_srcline);
systemtap-4.4/dwflpp.cxx-2509-      if (dwarf_haspc (& it->die, postprologue_addr) != 1)
##############################################
systemtap-4.4/dwflpp.cxx-2512-          Dwarf_Line *lr = dwarf_onesrcline(lines, postprologue_srcline_idx-1);
systemtap-4.4/dwflpp.cxx:2513:          postprologue_addr = DWARF_LINEADDR(lr);
systemtap-4.4/dwflpp.cxx-2514-        }
##############################################
systemtap-4.4/dwflpp.cxx-2526-          if (dwarf_haspc (& it->die,
systemtap-4.4/dwflpp.cxx:2527:			   DWARF_LINEADDR(postprologue_srcline)) != 1)
systemtap-4.4/dwflpp.cxx-2528-            clog << _(" (tail-call?)");
##############################################
systemtap-4.4/dwflpp.cxx-3194- retry:
systemtap-4.4/dwflpp.cxx:3195:  switch (dwarf_getlocation_addr (attr, pc /*+ module_bias*/, &expr, &len, 1))
systemtap-4.4/dwflpp.cxx-3196-    {
##############################################
systemtap-4.4/dwflpp.cxx-3203-      {
systemtap-4.4/dwflpp.cxx:3204:        Dwarf_Addr pc2 = pr15123_retry_addr (pc, die);
systemtap-4.4/dwflpp.cxx-3205-        if (pc2 != 0) {
##############################################
systemtap-4.4/dwflpp.cxx-4413-
systemtap-4.4/dwflpp.cxx:4414:  /* NOTE all include/asm .h blfile patterns might need "full path"
systemtap-4.4/dwflpp.cxx-4415-     so prefix those with '.*' - see PR13108 and PR13112. */
##############################################
systemtap-4.4/dwflpp.cxx-4873-Dwarf_Addr
systemtap-4.4/dwflpp.cxx:4874:dwflpp::pr15123_retry_addr (Dwarf_Addr pc, Dwarf_Die* die)
systemtap-4.4/dwflpp.cxx-4875-{
##############################################
systemtap-4.4/dwflpp.h-130-    name(name),
systemtap-4.4/dwflpp.h:131:    addr(0),
systemtap-4.4/dwflpp.h-132-    bias(0),
##############################################
systemtap-4.4/dwflpp.h-170-  func_info()
systemtap-4.4/dwflpp.h:171:    : addr(0), prologue_end(0), weak(false), descriptor(false) {}
systemtap-4.4/dwflpp.h-172-  Dwarf_Addr addr;
##############################################
systemtap-4.4/dwflpp.h-701-public:
systemtap-4.4/dwflpp.h:702:  Dwarf_Addr pr15123_retry_addr (Dwarf_Addr pc, Dwarf_Die* var);
systemtap-4.4/dwflpp.h-703-};
##############################################
systemtap-4.4/elaborate.cxx-64-derived_probe::derived_probe (probe *p, probe_point *l, bool rewrite_loc):
systemtap-4.4/elaborate.cxx:65:  base (p), base_pp(l), group(NULL), sdt_semaphore_addr(0),
systemtap-4.4/elaborate.cxx-66-  session_index((unsigned)-1)
##############################################
systemtap-4.4/httpd/Makefile.in-52-  { \
systemtap-4.4/httpd/Makefile.in:53:    flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
systemtap-4.4/httpd/Makefile.in-54-  }; \
##############################################
systemtap-4.4/httpd/Makefile.in-595-.c.o:
systemtap-4.4/httpd/Makefile.in:596:@am__fastdepCC_TRUE@	$(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
systemtap-4.4/httpd/Makefile.in-597-@am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
##############################################
systemtap-4.4/httpd/Makefile.in-603-.c.obj:
systemtap-4.4/httpd/Makefile.in:604:@am__fastdepCC_TRUE@	$(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\
systemtap-4.4/httpd/Makefile.in:605:@am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\
systemtap-4.4/httpd/Makefile.in-606-@am__fastdepCC_TRUE@	$(am__mv) $$depbase.Tpo $$depbase.Po
##############################################
systemtap-4.4/httpd/Makefile.in-608-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/httpd/Makefile.in:609:@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
systemtap-4.4/httpd/Makefile.in-610-
systemtap-4.4/httpd/Makefile.in-611-../stap_httpd-mdfour.o: ../mdfour.c
systemtap-4.4/httpd/Makefile.in:612:@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_httpd_CPPFLAGS) $(CPPFLAGS) $(stap_httpd_CFLAGS) $(CFLAGS) -MT ../stap_httpd-mdfour.o -MD -MP -MF ../$(DEPDIR)/stap_httpd-mdfour.Tpo -c -o ../stap_httpd-mdfour.o `test -f '../mdfour.c' || echo '$(srcdir)/'`../mdfour.c
systemtap-4.4/httpd/Makefile.in-613-@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) ../$(DEPDIR)/stap_httpd-mdfour.Tpo ../$(DEPDIR)/stap_httpd-mdfour.Po
##############################################
systemtap-4.4/httpd/Makefile.in-615-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/httpd/Makefile.in:616:@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_httpd_CPPFLAGS) $(CPPFLAGS) $(stap_httpd_CFLAGS) $(CFLAGS) -c -o ../stap_httpd-mdfour.o `test -f '../mdfour.c' || echo '$(srcdir)/'`../mdfour.c
systemtap-4.4/httpd/Makefile.in-617-
systemtap-4.4/httpd/Makefile.in-618-../stap_httpd-mdfour.obj: ../mdfour.c
systemtap-4.4/httpd/Makefile.in:619:@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_httpd_CPPFLAGS) $(CPPFLAGS) $(stap_httpd_CFLAGS) $(CFLAGS) -MT ../stap_httpd-mdfour.obj -MD -MP -MF ../$(DEPDIR)/stap_httpd-mdfour.Tpo -c -o ../stap_httpd-mdfour.obj `if test -f '../mdfour.c'; then $(CYGPATH_W) '../mdfour.c'; else $(CYGPATH_W) '$(srcdir)/../mdfour.c'; fi`
systemtap-4.4/httpd/Makefile.in-620-@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) ../$(DEPDIR)/stap_httpd-mdfour.Tpo ../$(DEPDIR)/stap_httpd-mdfour.Po
##############################################
systemtap-4.4/httpd/Makefile.in-622-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/httpd/Makefile.in:623:@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_httpd_CPPFLAGS) $(CPPFLAGS) $(stap_httpd_CFLAGS) $(CFLAGS) -c -o ../stap_httpd-mdfour.obj `if test -f '../mdfour.c'; then $(CYGPATH_W) '../mdfour.c'; else $(CYGPATH_W) '$(srcdir)/../mdfour.c'; fi`
systemtap-4.4/httpd/Makefile.in-624-
systemtap-4.4/httpd/Makefile.in-625-.cxx.o:
systemtap-4.4/httpd/Makefile.in:626:@am__fastdepCXX_TRUE@	$(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
systemtap-4.4/httpd/Makefile.in-627-@am__fastdepCXX_TRUE@	$(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
##############################################
systemtap-4.4/httpd/Makefile.in-633-.cxx.obj:
systemtap-4.4/httpd/Makefile.in:634:@am__fastdepCXX_TRUE@	$(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\
systemtap-4.4/httpd/Makefile.in:635:@am__fastdepCXX_TRUE@	$(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\
systemtap-4.4/httpd/Makefile.in-636-@am__fastdepCXX_TRUE@	$(am__mv) $$depbase.Tpo $$depbase.Po
##############################################
systemtap-4.4/httpd/Makefile.in-638-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/httpd/Makefile.in:639:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
systemtap-4.4/httpd/Makefile.in-640-
systemtap-4.4/httpd/Makefile.in-641-stap_httpd-main.o: main.cxx
systemtap-4.4/httpd/Makefile.in:642:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_httpd_CPPFLAGS) $(CPPFLAGS) $(stap_httpd_CXXFLAGS) $(CXXFLAGS) -MT stap_httpd-main.o -MD -MP -MF $(DEPDIR)/stap_httpd-main.Tpo -c -o stap_httpd-main.o `test -f 'main.cxx' || echo '$(srcdir)/'`main.cxx
systemtap-4.4/httpd/Makefile.in-643-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap_httpd-main.Tpo $(DEPDIR)/stap_httpd-main.Po
##############################################
systemtap-4.4/httpd/Makefile.in-645-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/httpd/Makefile.in:646:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_httpd_CPPFLAGS) $(CPPFLAGS) $(stap_httpd_CXXFLAGS) $(CXXFLAGS) -c -o stap_httpd-main.o `test -f 'main.cxx' || echo '$(srcdir)/'`main.cxx
systemtap-4.4/httpd/Makefile.in-647-
systemtap-4.4/httpd/Makefile.in-648-stap_httpd-main.obj: main.cxx
systemtap-4.4/httpd/Makefile.in:649:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_httpd_CPPFLAGS) $(CPPFLAGS) $(stap_httpd_CXXFLAGS) $(CXXFLAGS) -MT stap_httpd-main.obj -MD -MP -MF $(DEPDIR)/stap_httpd-main.Tpo -c -o stap_httpd-main.obj `if test -f 'main.cxx'; then $(CYGPATH_W) 'main.cxx'; else $(CYGPATH_W) '$(srcdir)/main.cxx'; fi`
systemtap-4.4/httpd/Makefile.in-650-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap_httpd-main.Tpo $(DEPDIR)/stap_httpd-main.Po
##############################################
systemtap-4.4/httpd/Makefile.in-652-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/httpd/Makefile.in:653:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_httpd_CPPFLAGS) $(CPPFLAGS) $(stap_httpd_CXXFLAGS) $(CXXFLAGS) -c -o stap_httpd-main.obj `if test -f 'main.cxx'; then $(CYGPATH_W) 'main.cxx'; else $(CYGPATH_W) '$(srcdir)/main.cxx'; fi`
systemtap-4.4/httpd/Makefile.in-654-
systemtap-4.4/httpd/Makefile.in-655-stap_httpd-server.o: server.cxx
systemtap-4.4/httpd/Makefile.in:656:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_httpd_CPPFLAGS) $(CPPFLAGS) $(stap_httpd_CXXFLAGS) $(CXXFLAGS) -MT stap_httpd-server.o -MD -MP -MF $(DEPDIR)/stap_httpd-server.Tpo -c -o stap_httpd-server.o `test -f 'server.cxx' || echo '$(srcdir)/'`server.cxx
systemtap-4.4/httpd/Makefile.in-657-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap_httpd-server.Tpo $(DEPDIR)/stap_httpd-server.Po
##############################################
systemtap-4.4/httpd/Makefile.in-659-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/httpd/Makefile.in:660:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_httpd_CPPFLAGS) $(CPPFLAGS) $(stap_httpd_CXXFLAGS) $(CXXFLAGS) -c -o stap_httpd-server.o `test -f 'server.cxx' || echo '$(srcdir)/'`server.cxx
systemtap-4.4/httpd/Makefile.in-661-
systemtap-4.4/httpd/Makefile.in-662-stap_httpd-server.obj: server.cxx
systemtap-4.4/httpd/Makefile.in:663:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_httpd_CPPFLAGS) $(CPPFLAGS) $(stap_httpd_CXXFLAGS) $(CXXFLAGS) -MT stap_httpd-server.obj -MD -MP -MF $(DEPDIR)/stap_httpd-server.Tpo -c -o stap_httpd-server.obj `if test -f 'server.cxx'; then $(CYGPATH_W) 'server.cxx'; else $(CYGPATH_W) '$(srcdir)/server.cxx'; fi`
systemtap-4.4/httpd/Makefile.in-664-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap_httpd-server.Tpo $(DEPDIR)/stap_httpd-server.Po
##############################################
systemtap-4.4/httpd/Makefile.in-666-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/httpd/Makefile.in:667:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_httpd_CPPFLAGS) $(CPPFLAGS) $(stap_httpd_CXXFLAGS) $(CXXFLAGS) -c -o stap_httpd-server.obj `if test -f 'server.cxx'; then $(CYGPATH_W) 'server.cxx'; else $(CYGPATH_W) '$(srcdir)/server.cxx'; fi`
systemtap-4.4/httpd/Makefile.in-668-
systemtap-4.4/httpd/Makefile.in-669-stap_httpd-api.o: api.cxx
systemtap-4.4/httpd/Makefile.in:670:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_httpd_CPPFLAGS) $(CPPFLAGS) $(stap_httpd_CXXFLAGS) $(CXXFLAGS) -MT stap_httpd-api.o -MD -MP -MF $(DEPDIR)/stap_httpd-api.Tpo -c -o stap_httpd-api.o `test -f 'api.cxx' || echo '$(srcdir)/'`api.cxx
systemtap-4.4/httpd/Makefile.in-671-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap_httpd-api.Tpo $(DEPDIR)/stap_httpd-api.Po
##############################################
systemtap-4.4/httpd/Makefile.in-673-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/httpd/Makefile.in:674:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_httpd_CPPFLAGS) $(CPPFLAGS) $(stap_httpd_CXXFLAGS) $(CXXFLAGS) -c -o stap_httpd-api.o `test -f 'api.cxx' || echo '$(srcdir)/'`api.cxx
systemtap-4.4/httpd/Makefile.in-675-
systemtap-4.4/httpd/Makefile.in-676-stap_httpd-api.obj: api.cxx
systemtap-4.4/httpd/Makefile.in:677:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_httpd_CPPFLAGS) $(CPPFLAGS) $(stap_httpd_CXXFLAGS) $(CXXFLAGS) -MT stap_httpd-api.obj -MD -MP -MF $(DEPDIR)/stap_httpd-api.Tpo -c -o stap_httpd-api.obj `if test -f 'api.cxx'; then $(CYGPATH_W) 'api.cxx'; else $(CYGPATH_W) '$(srcdir)/api.cxx'; fi`
systemtap-4.4/httpd/Makefile.in-678-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap_httpd-api.Tpo $(DEPDIR)/stap_httpd-api.Po
##############################################
systemtap-4.4/httpd/Makefile.in-680-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/httpd/Makefile.in:681:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_httpd_CPPFLAGS) $(CPPFLAGS) $(stap_httpd_CXXFLAGS) $(CXXFLAGS) -c -o stap_httpd-api.obj `if test -f 'api.cxx'; then $(CYGPATH_W) 'api.cxx'; else $(CYGPATH_W) '$(srcdir)/api.cxx'; fi`
systemtap-4.4/httpd/Makefile.in-682-
systemtap-4.4/httpd/Makefile.in-683-stap_httpd-backends.o: backends.cxx
systemtap-4.4/httpd/Makefile.in:684:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_httpd_CPPFLAGS) $(CPPFLAGS) $(stap_httpd_CXXFLAGS) $(CXXFLAGS) -MT stap_httpd-backends.o -MD -MP -MF $(DEPDIR)/stap_httpd-backends.Tpo -c -o stap_httpd-backends.o `test -f 'backends.cxx' || echo '$(srcdir)/'`backends.cxx
systemtap-4.4/httpd/Makefile.in-685-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap_httpd-backends.Tpo $(DEPDIR)/stap_httpd-backends.Po
##############################################
systemtap-4.4/httpd/Makefile.in-687-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/httpd/Makefile.in:688:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_httpd_CPPFLAGS) $(CPPFLAGS) $(stap_httpd_CXXFLAGS) $(CXXFLAGS) -c -o stap_httpd-backends.o `test -f 'backends.cxx' || echo '$(srcdir)/'`backends.cxx
systemtap-4.4/httpd/Makefile.in-689-
systemtap-4.4/httpd/Makefile.in-690-stap_httpd-backends.obj: backends.cxx
systemtap-4.4/httpd/Makefile.in:691:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_httpd_CPPFLAGS) $(CPPFLAGS) $(stap_httpd_CXXFLAGS) $(CXXFLAGS) -MT stap_httpd-backends.obj -MD -MP -MF $(DEPDIR)/stap_httpd-backends.Tpo -c -o stap_httpd-backends.obj `if test -f 'backends.cxx'; then $(CYGPATH_W) 'backends.cxx'; else $(CYGPATH_W) '$(srcdir)/backends.cxx'; fi`
systemtap-4.4/httpd/Makefile.in-692-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap_httpd-backends.Tpo $(DEPDIR)/stap_httpd-backends.Po
##############################################
systemtap-4.4/httpd/Makefile.in-694-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/httpd/Makefile.in:695:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_httpd_CPPFLAGS) $(CPPFLAGS) $(stap_httpd_CXXFLAGS) $(CXXFLAGS) -c -o stap_httpd-backends.obj `if test -f 'backends.cxx'; then $(CYGPATH_W) 'backends.cxx'; else $(CYGPATH_W) '$(srcdir)/backends.cxx'; fi`
systemtap-4.4/httpd/Makefile.in-696-
systemtap-4.4/httpd/Makefile.in-697-stap_httpd-utils.o: utils.cxx
systemtap-4.4/httpd/Makefile.in:698:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_httpd_CPPFLAGS) $(CPPFLAGS) $(stap_httpd_CXXFLAGS) $(CXXFLAGS) -MT stap_httpd-utils.o -MD -MP -MF $(DEPDIR)/stap_httpd-utils.Tpo -c -o stap_httpd-utils.o `test -f 'utils.cxx' || echo '$(srcdir)/'`utils.cxx
systemtap-4.4/httpd/Makefile.in-699-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap_httpd-utils.Tpo $(DEPDIR)/stap_httpd-utils.Po
##############################################
systemtap-4.4/httpd/Makefile.in-701-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/httpd/Makefile.in:702:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_httpd_CPPFLAGS) $(CPPFLAGS) $(stap_httpd_CXXFLAGS) $(CXXFLAGS) -c -o stap_httpd-utils.o `test -f 'utils.cxx' || echo '$(srcdir)/'`utils.cxx
systemtap-4.4/httpd/Makefile.in-703-
systemtap-4.4/httpd/Makefile.in-704-stap_httpd-utils.obj: utils.cxx
systemtap-4.4/httpd/Makefile.in:705:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_httpd_CPPFLAGS) $(CPPFLAGS) $(stap_httpd_CXXFLAGS) $(CXXFLAGS) -MT stap_httpd-utils.obj -MD -MP -MF $(DEPDIR)/stap_httpd-utils.Tpo -c -o stap_httpd-utils.obj `if test -f 'utils.cxx'; then $(CYGPATH_W) 'utils.cxx'; else $(CYGPATH_W) '$(srcdir)/utils.cxx'; fi`
systemtap-4.4/httpd/Makefile.in-706-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap_httpd-utils.Tpo $(DEPDIR)/stap_httpd-utils.Po
##############################################
systemtap-4.4/httpd/Makefile.in-708-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/httpd/Makefile.in:709:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_httpd_CPPFLAGS) $(CPPFLAGS) $(stap_httpd_CXXFLAGS) $(CXXFLAGS) -c -o stap_httpd-utils.obj `if test -f 'utils.cxx'; then $(CYGPATH_W) 'utils.cxx'; else $(CYGPATH_W) '$(srcdir)/utils.cxx'; fi`
systemtap-4.4/httpd/Makefile.in-710-
systemtap-4.4/httpd/Makefile.in-711-stap_httpd-nss_funcs.o: nss_funcs.cxx
systemtap-4.4/httpd/Makefile.in:712:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_httpd_CPPFLAGS) $(CPPFLAGS) $(stap_httpd_CXXFLAGS) $(CXXFLAGS) -MT stap_httpd-nss_funcs.o -MD -MP -MF $(DEPDIR)/stap_httpd-nss_funcs.Tpo -c -o stap_httpd-nss_funcs.o `test -f 'nss_funcs.cxx' || echo '$(srcdir)/'`nss_funcs.cxx
systemtap-4.4/httpd/Makefile.in-713-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap_httpd-nss_funcs.Tpo $(DEPDIR)/stap_httpd-nss_funcs.Po
##############################################
systemtap-4.4/httpd/Makefile.in-715-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/httpd/Makefile.in:716:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_httpd_CPPFLAGS) $(CPPFLAGS) $(stap_httpd_CXXFLAGS) $(CXXFLAGS) -c -o stap_httpd-nss_funcs.o `test -f 'nss_funcs.cxx' || echo '$(srcdir)/'`nss_funcs.cxx
systemtap-4.4/httpd/Makefile.in-717-
systemtap-4.4/httpd/Makefile.in-718-stap_httpd-nss_funcs.obj: nss_funcs.cxx
systemtap-4.4/httpd/Makefile.in:719:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_httpd_CPPFLAGS) $(CPPFLAGS) $(stap_httpd_CXXFLAGS) $(CXXFLAGS) -MT stap_httpd-nss_funcs.obj -MD -MP -MF $(DEPDIR)/stap_httpd-nss_funcs.Tpo -c -o stap_httpd-nss_funcs.obj `if test -f 'nss_funcs.cxx'; then $(CYGPATH_W) 'nss_funcs.cxx'; else $(CYGPATH_W) '$(srcdir)/nss_funcs.cxx'; fi`
systemtap-4.4/httpd/Makefile.in-720-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap_httpd-nss_funcs.Tpo $(DEPDIR)/stap_httpd-nss_funcs.Po
##############################################
systemtap-4.4/httpd/Makefile.in-722-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/httpd/Makefile.in:723:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_httpd_CPPFLAGS) $(CPPFLAGS) $(stap_httpd_CXXFLAGS) $(CXXFLAGS) -c -o stap_httpd-nss_funcs.obj `if test -f 'nss_funcs.cxx'; then $(CYGPATH_W) 'nss_funcs.cxx'; else $(CYGPATH_W) '$(srcdir)/nss_funcs.cxx'; fi`
systemtap-4.4/httpd/Makefile.in-724-
systemtap-4.4/httpd/Makefile.in-725-../stap_httpd-util.o: ../util.cxx
systemtap-4.4/httpd/Makefile.in:726:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_httpd_CPPFLAGS) $(CPPFLAGS) $(stap_httpd_CXXFLAGS) $(CXXFLAGS) -MT ../stap_httpd-util.o -MD -MP -MF ../$(DEPDIR)/stap_httpd-util.Tpo -c -o ../stap_httpd-util.o `test -f '../util.cxx' || echo '$(srcdir)/'`../util.cxx
systemtap-4.4/httpd/Makefile.in-727-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) ../$(DEPDIR)/stap_httpd-util.Tpo ../$(DEPDIR)/stap_httpd-util.Po
##############################################
systemtap-4.4/httpd/Makefile.in-729-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/httpd/Makefile.in:730:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_httpd_CPPFLAGS) $(CPPFLAGS) $(stap_httpd_CXXFLAGS) $(CXXFLAGS) -c -o ../stap_httpd-util.o `test -f '../util.cxx' || echo '$(srcdir)/'`../util.cxx
systemtap-4.4/httpd/Makefile.in-731-
systemtap-4.4/httpd/Makefile.in-732-../stap_httpd-util.obj: ../util.cxx
systemtap-4.4/httpd/Makefile.in:733:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_httpd_CPPFLAGS) $(CPPFLAGS) $(stap_httpd_CXXFLAGS) $(CXXFLAGS) -MT ../stap_httpd-util.obj -MD -MP -MF ../$(DEPDIR)/stap_httpd-util.Tpo -c -o ../stap_httpd-util.obj `if test -f '../util.cxx'; then $(CYGPATH_W) '../util.cxx'; else $(CYGPATH_W) '$(srcdir)/../util.cxx'; fi`
systemtap-4.4/httpd/Makefile.in-734-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) ../$(DEPDIR)/stap_httpd-util.Tpo ../$(DEPDIR)/stap_httpd-util.Po
##############################################
systemtap-4.4/httpd/Makefile.in-736-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/httpd/Makefile.in:737:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_httpd_CPPFLAGS) $(CPPFLAGS) $(stap_httpd_CXXFLAGS) $(CXXFLAGS) -c -o ../stap_httpd-util.obj `if test -f '../util.cxx'; then $(CYGPATH_W) '../util.cxx'; else $(CYGPATH_W) '$(srcdir)/../util.cxx'; fi`
systemtap-4.4/httpd/Makefile.in-738-
systemtap-4.4/httpd/Makefile.in-739-../stap_httpd-cmdline.o: ../cmdline.cxx
systemtap-4.4/httpd/Makefile.in:740:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_httpd_CPPFLAGS) $(CPPFLAGS) $(stap_httpd_CXXFLAGS) $(CXXFLAGS) -MT ../stap_httpd-cmdline.o -MD -MP -MF ../$(DEPDIR)/stap_httpd-cmdline.Tpo -c -o ../stap_httpd-cmdline.o `test -f '../cmdline.cxx' || echo '$(srcdir)/'`../cmdline.cxx
systemtap-4.4/httpd/Makefile.in-741-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) ../$(DEPDIR)/stap_httpd-cmdline.Tpo ../$(DEPDIR)/stap_httpd-cmdline.Po
##############################################
systemtap-4.4/httpd/Makefile.in-743-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/httpd/Makefile.in:744:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_httpd_CPPFLAGS) $(CPPFLAGS) $(stap_httpd_CXXFLAGS) $(CXXFLAGS) -c -o ../stap_httpd-cmdline.o `test -f '../cmdline.cxx' || echo '$(srcdir)/'`../cmdline.cxx
systemtap-4.4/httpd/Makefile.in-745-
systemtap-4.4/httpd/Makefile.in-746-../stap_httpd-cmdline.obj: ../cmdline.cxx
systemtap-4.4/httpd/Makefile.in:747:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_httpd_CPPFLAGS) $(CPPFLAGS) $(stap_httpd_CXXFLAGS) $(CXXFLAGS) -MT ../stap_httpd-cmdline.obj -MD -MP -MF ../$(DEPDIR)/stap_httpd-cmdline.Tpo -c -o ../stap_httpd-cmdline.obj `if test -f '../cmdline.cxx'; then $(CYGPATH_W) '../cmdline.cxx'; else $(CYGPATH_W) '$(srcdir)/../cmdline.cxx'; fi`
systemtap-4.4/httpd/Makefile.in-748-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) ../$(DEPDIR)/stap_httpd-cmdline.Tpo ../$(DEPDIR)/stap_httpd-cmdline.Po
##############################################
systemtap-4.4/httpd/Makefile.in-750-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/httpd/Makefile.in:751:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_httpd_CPPFLAGS) $(CPPFLAGS) $(stap_httpd_CXXFLAGS) $(CXXFLAGS) -c -o ../stap_httpd-cmdline.obj `if test -f '../cmdline.cxx'; then $(CYGPATH_W) '../cmdline.cxx'; else $(CYGPATH_W) '$(srcdir)/../cmdline.cxx'; fi`
systemtap-4.4/httpd/Makefile.in-752-
systemtap-4.4/httpd/Makefile.in-753-../stap_httpd-nsscommon.o: ../nsscommon.cxx
systemtap-4.4/httpd/Makefile.in:754:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_httpd_CPPFLAGS) $(CPPFLAGS) $(stap_httpd_CXXFLAGS) $(CXXFLAGS) -MT ../stap_httpd-nsscommon.o -MD -MP -MF ../$(DEPDIR)/stap_httpd-nsscommon.Tpo -c -o ../stap_httpd-nsscommon.o `test -f '../nsscommon.cxx' || echo '$(srcdir)/'`../nsscommon.cxx
systemtap-4.4/httpd/Makefile.in-755-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) ../$(DEPDIR)/stap_httpd-nsscommon.Tpo ../$(DEPDIR)/stap_httpd-nsscommon.Po
##############################################
systemtap-4.4/httpd/Makefile.in-757-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/httpd/Makefile.in:758:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_httpd_CPPFLAGS) $(CPPFLAGS) $(stap_httpd_CXXFLAGS) $(CXXFLAGS) -c -o ../stap_httpd-nsscommon.o `test -f '../nsscommon.cxx' || echo '$(srcdir)/'`../nsscommon.cxx
systemtap-4.4/httpd/Makefile.in-759-
systemtap-4.4/httpd/Makefile.in-760-../stap_httpd-nsscommon.obj: ../nsscommon.cxx
systemtap-4.4/httpd/Makefile.in:761:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_httpd_CPPFLAGS) $(CPPFLAGS) $(stap_httpd_CXXFLAGS) $(CXXFLAGS) -MT ../stap_httpd-nsscommon.obj -MD -MP -MF ../$(DEPDIR)/stap_httpd-nsscommon.Tpo -c -o ../stap_httpd-nsscommon.obj `if test -f '../nsscommon.cxx'; then $(CYGPATH_W) '../nsscommon.cxx'; else $(CYGPATH_W) '$(srcdir)/../nsscommon.cxx'; fi`
systemtap-4.4/httpd/Makefile.in-762-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) ../$(DEPDIR)/stap_httpd-nsscommon.Tpo ../$(DEPDIR)/stap_httpd-nsscommon.Po
##############################################
systemtap-4.4/httpd/Makefile.in-764-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/httpd/Makefile.in:765:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_httpd_CPPFLAGS) $(CPPFLAGS) $(stap_httpd_CXXFLAGS) $(CXXFLAGS) -c -o ../stap_httpd-nsscommon.obj `if test -f '../nsscommon.cxx'; then $(CYGPATH_W) '../nsscommon.cxx'; else $(CYGPATH_W) '$(srcdir)/../nsscommon.cxx'; fi`
systemtap-4.4/httpd/Makefile.in-766-
systemtap-4.4/httpd/Makefile.in-767-../stap_httpd-privilege.o: ../privilege.cxx
systemtap-4.4/httpd/Makefile.in:768:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_httpd_CPPFLAGS) $(CPPFLAGS) $(stap_httpd_CXXFLAGS) $(CXXFLAGS) -MT ../stap_httpd-privilege.o -MD -MP -MF ../$(DEPDIR)/stap_httpd-privilege.Tpo -c -o ../stap_httpd-privilege.o `test -f '../privilege.cxx' || echo '$(srcdir)/'`../privilege.cxx
systemtap-4.4/httpd/Makefile.in-769-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) ../$(DEPDIR)/stap_httpd-privilege.Tpo ../$(DEPDIR)/stap_httpd-privilege.Po
##############################################
systemtap-4.4/httpd/Makefile.in-771-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/httpd/Makefile.in:772:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_httpd_CPPFLAGS) $(CPPFLAGS) $(stap_httpd_CXXFLAGS) $(CXXFLAGS) -c -o ../stap_httpd-privilege.o `test -f '../privilege.cxx' || echo '$(srcdir)/'`../privilege.cxx
systemtap-4.4/httpd/Makefile.in-773-
systemtap-4.4/httpd/Makefile.in-774-../stap_httpd-privilege.obj: ../privilege.cxx
systemtap-4.4/httpd/Makefile.in:775:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_httpd_CPPFLAGS) $(CPPFLAGS) $(stap_httpd_CXXFLAGS) $(CXXFLAGS) -MT ../stap_httpd-privilege.obj -MD -MP -MF ../$(DEPDIR)/stap_httpd-privilege.Tpo -c -o ../stap_httpd-privilege.obj `if test -f '../privilege.cxx'; then $(CYGPATH_W) '../privilege.cxx'; else $(CYGPATH_W) '$(srcdir)/../privilege.cxx'; fi`
systemtap-4.4/httpd/Makefile.in-776-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) ../$(DEPDIR)/stap_httpd-privilege.Tpo ../$(DEPDIR)/stap_httpd-privilege.Po
##############################################
systemtap-4.4/httpd/Makefile.in-778-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/httpd/Makefile.in:779:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_httpd_CPPFLAGS) $(CPPFLAGS) $(stap_httpd_CXXFLAGS) $(CXXFLAGS) -c -o ../stap_httpd-privilege.obj `if test -f '../privilege.cxx'; then $(CYGPATH_W) '../privilege.cxx'; else $(CYGPATH_W) '$(srcdir)/../privilege.cxx'; fi`
systemtap-4.4/httpd/Makefile.in-780-
systemtap-4.4/httpd/Makefile.in-781-../stap_httpd-cscommon.o: ../cscommon.cxx
systemtap-4.4/httpd/Makefile.in:782:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_httpd_CPPFLAGS) $(CPPFLAGS) $(stap_httpd_CXXFLAGS) $(CXXFLAGS) -MT ../stap_httpd-cscommon.o -MD -MP -MF ../$(DEPDIR)/stap_httpd-cscommon.Tpo -c -o ../stap_httpd-cscommon.o `test -f '../cscommon.cxx' || echo '$(srcdir)/'`../cscommon.cxx
systemtap-4.4/httpd/Makefile.in-783-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) ../$(DEPDIR)/stap_httpd-cscommon.Tpo ../$(DEPDIR)/stap_httpd-cscommon.Po
##############################################
systemtap-4.4/httpd/Makefile.in-785-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/httpd/Makefile.in:786:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_httpd_CPPFLAGS) $(CPPFLAGS) $(stap_httpd_CXXFLAGS) $(CXXFLAGS) -c -o ../stap_httpd-cscommon.o `test -f '../cscommon.cxx' || echo '$(srcdir)/'`../cscommon.cxx
systemtap-4.4/httpd/Makefile.in-787-
systemtap-4.4/httpd/Makefile.in-788-../stap_httpd-cscommon.obj: ../cscommon.cxx
systemtap-4.4/httpd/Makefile.in:789:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_httpd_CPPFLAGS) $(CPPFLAGS) $(stap_httpd_CXXFLAGS) $(CXXFLAGS) -MT ../stap_httpd-cscommon.obj -MD -MP -MF ../$(DEPDIR)/stap_httpd-cscommon.Tpo -c -o ../stap_httpd-cscommon.obj `if test -f '../cscommon.cxx'; then $(CYGPATH_W) '../cscommon.cxx'; else $(CYGPATH_W) '$(srcdir)/../cscommon.cxx'; fi`
systemtap-4.4/httpd/Makefile.in-790-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) ../$(DEPDIR)/stap_httpd-cscommon.Tpo ../$(DEPDIR)/stap_httpd-cscommon.Po
##############################################
systemtap-4.4/httpd/Makefile.in-792-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/httpd/Makefile.in:793:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stap_httpd_CPPFLAGS) $(CPPFLAGS) $(stap_httpd_CXXFLAGS) $(CXXFLAGS) -c -o ../stap_httpd-cscommon.obj `if test -f '../cscommon.cxx'; then $(CYGPATH_W) '../cscommon.cxx'; else $(CYGPATH_W) '$(srcdir)/../cscommon.cxx'; fi`
systemtap-4.4/httpd/Makefile.in-794-
##############################################
systemtap-4.4/httpd/Makefile.in-808-	dot_seen=no; \
systemtap-4.4/httpd/Makefile.in:809:	target=`echo $@ | sed s/-recursive//`; \
systemtap-4.4/httpd/Makefile.in-810-	case "$@" in \
##############################################
systemtap-4.4/httpd/Makefile.in-871-GTAGS:
systemtap-4.4/httpd/Makefile.in:872:	here=`$(am__cd) $(top_builddir) && pwd` \
systemtap-4.4/httpd/Makefile.in-873-	  && $(am__cd) $(top_srcdir) \
##############################################
systemtap-4.4/httpd/docker/Makefile.in-50-  { \
systemtap-4.4/httpd/docker/Makefile.in:51:    flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
systemtap-4.4/httpd/docker/Makefile.in-52-  }; \
##############################################
systemtap-4.4/httpd/docker/Makefile.in-139-am__pkglibexecdocker_PYTHON_DIST = stap_build_docker_file.py
systemtap-4.4/httpd/docker/Makefile.in:140:am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
systemtap-4.4/httpd/docker/Makefile.in-141-am__vpath_adj = case $$p in \
systemtap-4.4/httpd/docker/Makefile.in:142:    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
systemtap-4.4/httpd/docker/Makefile.in-143-    *) f=$$p;; \
systemtap-4.4/httpd/docker/Makefile.in-144-  esac;
systemtap-4.4/httpd/docker/Makefile.in:145:am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
systemtap-4.4/httpd/docker/Makefile.in-146-am__install_max = 40
systemtap-4.4/httpd/docker/Makefile.in-147-am__nobase_strip_setup = \
systemtap-4.4/httpd/docker/Makefile.in:148:  srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
systemtap-4.4/httpd/docker/Makefile.in-149-am__nobase_strip = \
##############################################
systemtap-4.4/httpd/docker/Makefile.in-451-	@list='$(pkglibexecdocker_PYTHON)'; test -n "$(pkglibexecdockerdir)" || list=; \
systemtap-4.4/httpd/docker/Makefile.in:452:	py_files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
systemtap-4.4/httpd/docker/Makefile.in-453-	test -n "$$py_files" || exit 0; \
systemtap-4.4/httpd/docker/Makefile.in-454-	dir='$(DESTDIR)$(pkglibexecdockerdir)'; \
systemtap-4.4/httpd/docker/Makefile.in:455:	pyc_files=`echo "$$py_files" | sed 's|$$|c|'`; \
systemtap-4.4/httpd/docker/Makefile.in:456:	pyo_files=`echo "$$py_files" | sed 's|$$|o|'`; \
systemtap-4.4/httpd/docker/Makefile.in:457:	py_files_pep3147=`echo "$$py_files" | $(am__pep3147_tweak)`; \
systemtap-4.4/httpd/docker/Makefile.in-458-	echo "$$py_files_pep3147";\
systemtap-4.4/httpd/docker/Makefile.in:459:	pyc_files_pep3147=`echo "$$py_files_pep3147" | sed 's|$$|c|'`; \
systemtap-4.4/httpd/docker/Makefile.in:460:	pyo_files_pep3147=`echo "$$py_files_pep3147" | sed 's|$$|o|'`; \
systemtap-4.4/httpd/docker/Makefile.in-461-	st=0; \
##############################################
systemtap-4.4/httpd/docker/Makefile.in-490-	@list='$(pkgdatadocker_DATA)'; test -n "$(pkgdatadockerdir)" || list=; \
systemtap-4.4/httpd/docker/Makefile.in:491:	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
systemtap-4.4/httpd/docker/Makefile.in-492-	dir='$(DESTDIR)$(pkgdatadockerdir)'; $(am__uninstall_files_from_dir)
##############################################
systemtap-4.4/includes/sys/sdt.h-373-
systemtap-4.4/includes/sys/sdt.h:374:/* These macros are for use in asm statements.  You must compile
systemtap-4.4/includes/sys/sdt.h:375:   with -std=gnu99 or -std=c99 to use the STAP_PROBE_ASM macro.
systemtap-4.4/includes/sys/sdt.h-376-
systemtap-4.4/includes/sys/sdt.h:377:   The STAP_PROBE_ASM macro generates a quoted string to be used in the
systemtap-4.4/includes/sys/sdt.h:378:   template portion of the asm statement, concatenated with strings that
systemtap-4.4/includes/sys/sdt.h-379-   contain the actual assembly code around the probe site.
##############################################
systemtap-4.4/includes/sys/sdt.h-382-
systemtap-4.4/includes/sys/sdt.h:383:	asm ("before\n"
systemtap-4.4/includes/sys/sdt.h-384-	     STAP_PROBE_ASM(provider, fooprobe, %eax 4(%esi))
##############################################
systemtap-4.4/includes/sys/sdt.h-389-   word located 4 bytes past the address in the %esi register.  Note that
systemtap-4.4/includes/sys/sdt.h:390:   because this is a simple asm, not a GNU C extended asm statement, these
systemtap-4.4/includes/sys/sdt.h-391-   % characters do not need to be doubled to generate literal %reg names.
systemtap-4.4/includes/sys/sdt.h-392-
systemtap-4.4/includes/sys/sdt.h:393:   In a GNU C extended asm statement, the probe arguments can be specified
systemtap-4.4/includes/sys/sdt.h-394-   using the macro STAP_PROBE_ASM_TEMPLATE(n) for n arguments.  The paired
systemtap-4.4/includes/sys/sdt.h-395-   macro STAP_PROBE_ASM_OPERANDS gives the C values of these probe arguments,
systemtap-4.4/includes/sys/sdt.h:396:   and appears in the input operand list of the asm statement.  For example:
systemtap-4.4/includes/sys/sdt.h-397-
systemtap-4.4/includes/sys/sdt.h:398:	asm ("someinsn %0,%1\n" // %0 is output operand, %1 is input operand
systemtap-4.4/includes/sys/sdt.h-399-	     STAP_PROBE_ASM(provider, fooprobe, STAP_PROBE_ASM_TEMPLATE(3))
##############################################
systemtap-4.4/includes/sys/sdt.h-410-
systemtap-4.4/includes/sys/sdt.h:411:    The probe arguments in STAP_PROBE_ASM can be given as assembly
systemtap-4.4/includes/sys/sdt.h:412:    operands instead, even inside a GNU C extended asm statement.
systemtap-4.4/includes/sys/sdt.h-413-    Note that these can use operand templates like %0 or %[name],
##############################################
systemtap-4.4/initscript/systemtap.in-204-shift 1
systemtap-4.4/initscript/systemtap.in:205:OPTS=`getopt -s bash -u -o 'r:c:Ryo:b' -- $@`
systemtap-4.4/initscript/systemtap.in-206-if [ $? -ne 0 ]; then
##############################################
systemtap-4.4/initscript/systemtap.in-262-      if [ -f "$s" ]; then
systemtap-4.4/initscript/systemtap.in:263:        script=`basename "$s" .ko`
systemtap-4.4/initscript/systemtap.in-264-        is_valid_script_name $script
##############################################
systemtap-4.4/initscript/systemtap.in-270-    if [ -f "$s" ]; then
systemtap-4.4/initscript/systemtap.in:271:      script=`basename "$s" .stp`
systemtap-4.4/initscript/systemtap.in-272-      is_valid_script_name $script
##############################################
systemtap-4.4/initscript/systemtap.in-353-  f="$STAT_PATH/$1"
systemtap-4.4/initscript/systemtap.in:354:  m=`$LSMOD | grep "^$1 "`
systemtap-4.4/initscript/systemtap.in-355-  if [ -n "$m" ]; then
##############################################
systemtap-4.4/initscript/systemtap.in-371-  fi
systemtap-4.4/initscript/systemtap.in:372:  tmp=`head -n 1 "$CACHE_PATH/$s.opts"`
systemtap-4.4/initscript/systemtap.in:373:  tmp2=`$UNAME -a`
systemtap-4.4/initscript/systemtap.in-374-  [ "$tmp" != "$tmp2" ] && return 3
systemtap-4.4/initscript/systemtap.in:375:  tmp=`tail -n 1 "$CACHE_PATH/$s.opts"`
systemtap-4.4/initscript/systemtap.in-376-  tmp2="$*"
##############################################
systemtap-4.4/initscript/systemtap.in-393-  local opts o skip
systemtap-4.4/initscript/systemtap.in:394:  opts=`stap_getopt $*`
systemtap-4.4/initscript/systemtap.in-395-  [ $? -ne 0 ] && return 1
##############################################
systemtap-4.4/initscript/systemtap.in-414-  local opts o show mode
systemtap-4.4/initscript/systemtap.in:415:  opts=`stap_getopt $*`
systemtap-4.4/initscript/systemtap.in-416-  [ $? -ne 0 ] && return 0
##############################################
systemtap-4.4/initscript/systemtap.in-476-  eval opts=\$$1_OPT
systemtap-4.4/initscript/systemtap.in:477:  opts=`get_compile_opts $opts`
systemtap-4.4/initscript/systemtap.in-478-  [ $? -ne 0 ] && return 2
##############################################
systemtap-4.4/initscript/systemtap.in-489-  clog " Compiling $1 ... " -n
systemtap-4.4/initscript/systemtap.in:490:  tmpdir=`mktemp -d -p "$TEMP_PATH" cache.XXXXXXXX`
systemtap-4.4/initscript/systemtap.in-491-  if [ $? -ne 0 ]; then
##############################################
systemtap-4.4/initscript/systemtap.in-528-  shift 1
systemtap-4.4/initscript/systemtap.in:529:  r=`echo \ $*\  | grep \ $s\ `
systemtap-4.4/initscript/systemtap.in-530-  if [ -n "$r" ]; then
##############################################
systemtap-4.4/initscript/systemtap.in-533-  fi
systemtap-4.4/initscript/systemtap.in:534:  r=`echo \ $__SORTED\  | grep \ $s\ `
systemtap-4.4/initscript/systemtap.in-535-  [ -n "$r" ] && return 0 # already listed up
##############################################
systemtap-4.4/initscript/systemtap.in-553-  for s in $*; do
systemtap-4.4/initscript/systemtap.in:554:    __SORTED="$__SORTED "`__follow_dependency $s`
systemtap-4.4/initscript/systemtap.in-555-    [ $? -ne 0 ] && return 1
##############################################
systemtap-4.4/initscript/systemtap.in-575-  eval opts=\$${s}_OPT
systemtap-4.4/initscript/systemtap.in:576:  opts=`get_run_opts $opts`
systemtap-4.4/initscript/systemtap.in-577-  mode=$?
##############################################
systemtap-4.4/initscript/systemtap.in-584-  clog " Starting $1 ... " -n
systemtap-4.4/initscript/systemtap.in:585:  tmpdir=`mktemp -d -p "$TEMP_PATH" cache.XXXXXXXX`  # bz7097
systemtap-4.4/initscript/systemtap.in-586-  if [ $? -ne 0 ]; then
##############################################
systemtap-4.4/initscript/systemtap.in-603-      sleep 1
systemtap-4.4/initscript/systemtap.in:604:      count=`expr $count + 1`
systemtap-4.4/initscript/systemtap.in-605-    done
##############################################
systemtap-4.4/initscript/systemtap.in-649-  if [ $RECURSIVE -eq 1 ]; then
systemtap-4.4/initscript/systemtap.in:650:    start_scripts=`sort_dependency $start_scripts`
systemtap-4.4/initscript/systemtap.in-651-    if [ $? -ne 0 ]; then
##############################################
systemtap-4.4/initscript/systemtap.in-687-    # delete systemtap modules.)
systemtap-4.4/initscript/systemtap.in:688:    p=`get_daemon_pid $1`
systemtap-4.4/initscript/systemtap.in-689-    if [ $p -ne 0 ]; then
##############################################
systemtap-4.4/initscript/systemtap.in-706-    sleep 1
systemtap-4.4/initscript/systemtap.in:707:    count=`expr $count + 1`
systemtap-4.4/initscript/systemtap.in-708-  done
##############################################
systemtap-4.4/initscript/systemtap.in-719-  if [ $RECURSIVE -eq 1 ]; then
systemtap-4.4/initscript/systemtap.in:720:    stop_scripts=`sort_dependency $stop_scripts`
systemtap-4.4/initscript/systemtap.in-721-    if [ $? -ne 0 ]; then
##############################################
systemtap-4.4/initscript/systemtap.in-751-    0)
systemtap-4.4/initscript/systemtap.in:752:      pid=`get_daemon_pid $s`
systemtap-4.4/initscript/systemtap.in-753-      [ $pid -ne 0 ] && pid="($pid)" || pid=
##############################################
systemtap-4.4/initscript/systemtap.in-775-  for s in $SCRIPTS; do
systemtap-4.4/initscript/systemtap.in:776:    ss="$ss "`ls "$CACHE_PATH/$s.ko" "$CACHE_PATH/$s.opts" "$CACHE_PATH/$s.uprobes" 2> /dev/null`
systemtap-4.4/initscript/systemtap.in-777-  done
systemtap-4.4/initscript/systemtap.in:778:  ss=`echo -n $ss`
systemtap-4.4/initscript/systemtap.in-779-  if [ "$ss" ]; then
##############################################
systemtap-4.4/initscript/systemtap.in-816-    eval opts=\$${s}_OPT
systemtap-4.4/initscript/systemtap.in:817:    opts=`get_run_opts $opts`
systemtap-4.4/initscript/systemtap.in-818-    [ $? -eq 0 ] && return 1
##############################################
systemtap-4.4/initscript/systemtap.in-866-    eval opts=\$${s}_OPT
systemtap-4.4/initscript/systemtap.in:867:    opts=`get_run_opts $opts`
systemtap-4.4/initscript/systemtap.in-868-    mode=$?
##############################################
systemtap-4.4/initscript/systemtap.in-894-  fi
systemtap-4.4/initscript/systemtap.in:895:  dir=`dirname $INITRAMFS` && TMPINITRAMFS=`mktemp --tmpdir=$dir`
systemtap-4.4/initscript/systemtap.in-896-  if [ $? -ne 0 ]; then
##############################################
systemtap-4.4/initscript/systemtap.in-969-  for s in $SCRIPTS; do
systemtap-4.4/initscript/systemtap.in:970:    ss="$ss "`ls "$CACHE_PATH/$s.ko" "$CACHE_PATH/$s.opts" "$CACHE_PATH/$s.uprobes" 2> /dev/null`
systemtap-4.4/initscript/systemtap.in-971-  done
systemtap-4.4/initscript/systemtap.in:972:  ss=`echo -n $ss`
systemtap-4.4/initscript/systemtap.in-973-  if [ "$ss" ]; then
##############################################
systemtap-4.4/install-sh-234-      fi
systemtap-4.4/install-sh:235:      cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;;
systemtap-4.4/install-sh-236-    *)
##############################################
systemtap-4.4/install-sh-281-      dstdir=$dst
systemtap-4.4/install-sh:282:      dst=$dstdir/`basename "$src"`
systemtap-4.4/install-sh-283-      dstdir_status=0
systemtap-4.4/install-sh-284-    else
systemtap-4.4/install-sh:285:      dstdir=`dirname "$dst"`
systemtap-4.4/install-sh-286-      test -d "$dstdir"
##############################################
systemtap-4.4/install-sh-337-                   # FreeBSD 6.1 mkdir -m -p sets mode of existing directory.
systemtap-4.4/install-sh:338:                   ls_ld_tmpdir=`ls -ld "$tmpdir"`
systemtap-4.4/install-sh-339-                   case $ls_ld_tmpdir in
##############################################
systemtap-4.4/install-sh-344-                   $mkdirprog -m$different_mode -p -- "$tmpdir" && {
systemtap-4.4/install-sh:345:                     ls_ld_tmpdir_1=`ls -ld "$tmpdir"`
systemtap-4.4/install-sh-346-                     test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1"
##############################################
systemtap-4.4/install-sh-402-            case $prefix in
systemtap-4.4/install-sh:403:              *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;;
systemtap-4.4/install-sh-404-              *) qprefix=$prefix;;
##############################################
systemtap-4.4/install-sh-451-    if $copy_on_change &&
systemtap-4.4/install-sh:452:       old=`LC_ALL=C ls -dlL "$dst"     2>/dev/null` &&
systemtap-4.4/install-sh:453:       new=`LC_ALL=C ls -dlL "$dsttmp"  2>/dev/null` &&
systemtap-4.4/install-sh-454-       set -f &&
##############################################
systemtap-4.4/java/Makefile.in-54-  { \
systemtap-4.4/java/Makefile.in:55:    flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
systemtap-4.4/java/Makefile.in-56-  }; \
##############################################
systemtap-4.4/java/Makefile.in-134-	$(libHelperSDT_so_LDFLAGS) $(LDFLAGS) -o $@
systemtap-4.4/java/Makefile.in:135:am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
systemtap-4.4/java/Makefile.in-136-am__vpath_adj = case $$p in \
systemtap-4.4/java/Makefile.in:137:    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
systemtap-4.4/java/Makefile.in-138-    *) f=$$p;; \
systemtap-4.4/java/Makefile.in-139-  esac;
systemtap-4.4/java/Makefile.in:140:am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
systemtap-4.4/java/Makefile.in-141-am__install_max = 40
systemtap-4.4/java/Makefile.in-142-am__nobase_strip_setup = \
systemtap-4.4/java/Makefile.in:143:  srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
systemtap-4.4/java/Makefile.in-144-am__nobase_strip = \
##############################################
systemtap-4.4/java/Makefile.in-579-.c.o:
systemtap-4.4/java/Makefile.in:580:@am__fastdepCC_TRUE@	$(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
systemtap-4.4/java/Makefile.in-581-@am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
##############################################
systemtap-4.4/java/Makefile.in-587-.c.obj:
systemtap-4.4/java/Makefile.in:588:@am__fastdepCC_TRUE@	$(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\
systemtap-4.4/java/Makefile.in:589:@am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\
systemtap-4.4/java/Makefile.in-590-@am__fastdepCC_TRUE@	$(am__mv) $$depbase.Tpo $$depbase.Po
##############################################
systemtap-4.4/java/Makefile.in-592-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/java/Makefile.in:593:@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
systemtap-4.4/java/Makefile.in-594-
##############################################
systemtap-4.4/java/Makefile.in-624-GTAGS:
systemtap-4.4/java/Makefile.in:625:	here=`$(am__cd) $(top_builddir) && pwd` \
systemtap-4.4/java/Makefile.in-626-	  && $(am__cd) $(top_srcdir) \
##############################################
systemtap-4.4/java/stapbm.in-94-pkglibexecdir=@libexecdir@/@PACKAGE@
systemtap-4.4/java/stapbm.in:95:pkglibexecdir=`eval echo $pkglibexecdir`
systemtap-4.4/java/stapbm.in:96:pkglibexecdir=`eval echo $pkglibexecdir`
systemtap-4.4/java/stapbm.in-97-
##############################################
systemtap-4.4/java/stapbm.in-110-
systemtap-4.4/java/stapbm.in:111:num=`ls -1 ${JAVA_HOME}/jre/lib/ext/HelperSDT.jar ${JAVA_HOME}/jre/lib/*/libHelperSDT_*.so 2>/dev/null | wc -l`
systemtap-4.4/java/stapbm.in-112-if [ $num -lt 2 ]; then
##############################################
systemtap-4.4/java/stapbm.in-117-    echo "for so in ${pkglibexecdir}/libHelperSDT_*.so; do"
systemtap-4.4/java/stapbm.in:118:    echo '  arch=`basename $so | cut -f2 -d_ | cut -f1 -d.`'
systemtap-4.4/java/stapbm.in-119-    echo "  ln -sf ${pkglibexecdir}/libHelperSDT_"'${arch}'".so ${JAVA_HOME}/jre/lib/"'${arch}'"/"
##############################################
systemtap-4.4/java/stapbm.in-134-if ! [[ $arg_jvmpid =~ ^[0-9]+$ ]]; then
systemtap-4.4/java/stapbm.in:135:    target_pid=`jps -l | grep $arg_jvmpid | cut -f1 -d" "`
systemtap-4.4/java/stapbm.in-136-    for target in $target_pid; do
##############################################
systemtap-4.4/java/stapbm.in-154-if [ -s $byteman_installed_portfile ]; then
systemtap-4.4/java/stapbm.in:155:    bmport=`cat $byteman_installed_portfile`
systemtap-4.4/java/stapbm.in-156-
##############################################
systemtap-4.4/java/stapbm.in-165-    # bmport=9091
systemtap-4.4/java/stapbm.in:166:    bmport=`expr 9090 + $RANDOM % 10000`
systemtap-4.4/java/stapbm.in:167:    existing=`ss -atn | awk '{print $4}' | grep ':'$bmport'$'`
systemtap-4.4/java/stapbm.in-168-    if [ "x$existing" != "x" ]; then
##############################################
systemtap-4.4/loc2stap.cxx-135-	Dwarf_Addr addr;
systemtap-4.4/loc2stap.cxx:136:	if (dwarf_formaddr (attr, &addr) != 0)
systemtap-4.4/loc2stap.cxx-137-	  throw SEMANTIC_ERROR(std::string("cannot get constant address: ")
##############################################
systemtap-4.4/loc2stap.cxx-743-	      size_t len;
systemtap-4.4/loc2stap.cxx:744:	      switch (dwarf_getlocation_addr(&target, pc, &expr, &len, 1))
systemtap-4.4/loc2stap.cxx-745-		{
##############################################
systemtap-4.4/loc2stap.cxx-846-	{
systemtap-4.4/loc2stap.cxx:847:	  switch (dwarf_getlocation_addr (this->fb_attr, this->pc,
systemtap-4.4/loc2stap.cxx-848-					  &fb_expr, &fb_len, 1))
##############################################
systemtap-4.4/loc2stap.cxx-861-	      throw SEMANTIC_ERROR
systemtap-4.4/loc2stap.cxx:862:		("dwarf_getlocation_addr (form "
systemtap-4.4/loc2stap.cxx-863-		 + lex_cast(dwarf_whatform (this->fb_attr))
##############################################
systemtap-4.4/loc2stap.cxx-1643-  dwarf_getlocation_attr(attr, &expr, &op_attr);
systemtap-4.4/loc2stap.cxx:1644:  dwarf_getlocation_addr(&op_attr, pc, &op, &op_len, 1);
systemtap-4.4/loc2stap.cxx-1645-  op_loc = translate(op, op_len, 0, NULL, true, false);
##############################################
systemtap-4.4/m4/gettext.m4-267-        LTLIBINTL="ifelse([$3],[],\${top_builddir}/intl,[$3])/libintl.[]gt_libtool_suffix_prefix[]a $LTLIBICONV $LTLIBTHREAD"
systemtap-4.4/m4/gettext.m4:268:        LIBS=`echo " $LIBS " | sed -e 's/ -lintl / /' -e 's/^ //' -e 's/ $//'`
systemtap-4.4/m4/gettext.m4-269-      fi
##############################################
systemtap-4.4/m4/iconv.m4-257-      am_cv_proto_iconv="extern size_t iconv (iconv_t cd, $am_cv_proto_iconv_arg1 char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);"])
systemtap-4.4/m4/iconv.m4:258:    am_cv_proto_iconv=`echo "[$]am_cv_proto_iconv" | tr -s ' ' | sed -e 's/( /(/'`
systemtap-4.4/m4/iconv.m4-259-    AC_MSG_RESULT([
##############################################
systemtap-4.4/m4/intl.m4-258-changequote(<<,>>)dnl
systemtap-4.4/m4/intl.m4:259:    ac_prog_version=`$INTLBISON --version 2>&1 | sed -n 's/^.*GNU Bison.* \([0-9]*\.[0-9.]*\).*$/\1/p'`
systemtap-4.4/m4/intl.m4-260-    case $ac_prog_version in
##############################################
systemtap-4.4/m4/lib-ld.m4-14-[# I'd rather use --version here, but apparently some GNU lds only accept -v.
systemtap-4.4/m4/lib-ld.m4:15:case `$LD -v 2>&1 </dev/null` in
systemtap-4.4/m4/lib-ld.m4-16-*GNU* | *'with BFD'*)
##############################################
systemtap-4.4/m4/lib-ld.m4-56-    # gcc leaves a trailing carriage return which upsets mingw
systemtap-4.4/m4/lib-ld.m4:57:    ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;;
systemtap-4.4/m4/lib-ld.m4-58-  *)
systemtap-4.4/m4/lib-ld.m4:59:    ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;
systemtap-4.4/m4/lib-ld.m4-60-  esac
##############################################
systemtap-4.4/m4/lib-ld.m4-65-      # Canonicalize the pathname of ld
systemtap-4.4/m4/lib-ld.m4:66:      ac_prog=`echo "$ac_prog"| sed 's%\\\\%/%g'`
systemtap-4.4/m4/lib-ld.m4-67-      while echo "$ac_prog" | grep "$re_direlt" > /dev/null 2>&1; do
systemtap-4.4/m4/lib-ld.m4:68:        ac_prog=`echo $ac_prog| sed "s%$re_direlt%/%"`
systemtap-4.4/m4/lib-ld.m4-69-      done
##############################################
systemtap-4.4/m4/lib-ld.m4-96-      # Break only if it was the GNU/non-GNU ld that we prefer.
systemtap-4.4/m4/lib-ld.m4:97:      case `"$acl_cv_path_LD" -v 2>&1 </dev/null` in
systemtap-4.4/m4/lib-ld.m4-98-      *GNU* | *'with BFD'*)
##############################################
systemtap-4.4/m4/lib-link.m4-247-        dnl or AC_LIB_HAVE_LINKFLAGS call.
systemtap-4.4/m4/lib-link.m4:248:        uppername=`echo "$name" | sed -e 'y|abcdefghijklmnopqrstuvwxyz./+-|ABCDEFGHIJKLMNOPQRSTUVWXYZ____|'`
systemtap-4.4/m4/lib-link.m4-249-        eval value=\"\$HAVE_LIB$uppername\"
##############################################
systemtap-4.4/m4/lib-link.m4-322-                -L*)
systemtap-4.4/m4/lib-link.m4:323:                  dir=`echo "X$x" | sed -e 's/^X-L//'`
systemtap-4.4/m4/lib-link.m4-324-                  dnl First look for a shared library.
##############################################
systemtap-4.4/m4/lib-link.m4-466-              */$acl_libdirstem | */$acl_libdirstem/)
systemtap-4.4/m4/lib-link.m4:467:                basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e "s,/$acl_libdirstem/"'*$,,'`
systemtap-4.4/m4/lib-link.m4-468-                if test "$name" = '$1'; then
##############################################
systemtap-4.4/m4/lib-link.m4-473-              */$acl_libdirstem2 | */$acl_libdirstem2/)
systemtap-4.4/m4/lib-link.m4:474:                basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e "s,/$acl_libdirstem2/"'*$,,'`
systemtap-4.4/m4/lib-link.m4-475-                if test "$name" = '$1'; then
##############################################
systemtap-4.4/m4/lib-link.m4-529-                  -L*)
systemtap-4.4/m4/lib-link.m4:530:                    additional_libdir=`echo "X$dep" | sed -e 's/^X-L//'`
systemtap-4.4/m4/lib-link.m4-531-                    dnl Potentially add $additional_libdir to $LIBNAME and $LTLIBNAME.
##############################################
systemtap-4.4/m4/lib-link.m4-581-                  -R*)
systemtap-4.4/m4/lib-link.m4:582:                    dir=`echo "X$dep" | sed -e 's/^X-R//'`
systemtap-4.4/m4/lib-link.m4-583-                    if test "$enable_rpath" != no; then
##############################################
systemtap-4.4/m4/lib-link.m4-611-                    dnl Handle this in the next round.
systemtap-4.4/m4/lib-link.m4:612:                    names_next_round="$names_next_round "`echo "X$dep" | sed -e 's/^X-l//'`
systemtap-4.4/m4/lib-link.m4-613-                    ;;
##############################################
systemtap-4.4/m4/lib-link.m4-617-                    dnl option.
systemtap-4.4/m4/lib-link.m4:618:                    names_next_round="$names_next_round "`echo "X$dep" | sed -e 's,^X.*/,,' -e 's,^lib,,' -e 's,\.la$,,'`
systemtap-4.4/m4/lib-link.m4-619-                    ;;
##############################################
systemtap-4.4/m4/lib-link.m4-730-            -L) next=yes ;;
systemtap-4.4/m4/lib-link.m4:731:            -L*) dir=`echo "X$opt" | sed -e 's,^X-L,,'`
systemtap-4.4/m4/lib-link.m4-732-                 dnl No need to hardcode the standard /usr/lib.
##############################################
systemtap-4.4/m4/lib-prefix.m4-201-    *)
systemtap-4.4/m4/lib-prefix.m4:202:      searchpath=`(LC_ALL=C $CC -print-search-dirs) 2>/dev/null | sed -n -e 's,^libraries: ,,p' | sed -e 's,^=,,'`
systemtap-4.4/m4/lib-prefix.m4-203-      if test -n "$searchpath"; then
##############################################
systemtap-4.4/m4/lib-prefix.m4-211-                ;;
systemtap-4.4/m4/lib-prefix.m4:212:              *) searchdir=`cd "$searchdir" && pwd`
systemtap-4.4/m4/lib-prefix.m4-213-                 case "$searchdir" in
##############################################
systemtap-4.4/m4/pkg.m4-75-    PKG_CHECK_EXISTS([$3],
systemtap-4.4/m4/pkg.m4:76:                     [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`
systemtap-4.4/m4/pkg.m4-77-		      test "x$?" != "x0" && pkg_failed=yes ],
##############################################
systemtap-4.4/m4/pkg.m4-124-        if test $_pkg_short_errors_supported = yes; then
systemtap-4.4/m4/pkg.m4:125:	        $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$2" 2>&1`
systemtap-4.4/m4/pkg.m4-126-        else 
systemtap-4.4/m4/pkg.m4:127:	        $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$2" 2>&1`
systemtap-4.4/m4/pkg.m4-128-        fi
##############################################
systemtap-4.4/m4/po.m4-48-changequote(,)dnl
systemtap-4.4/m4/po.m4:49:  case `$MSGFMT --version | sed 1q | sed -e 's,^[^0-9]*,,'` in
systemtap-4.4/m4/po.m4-50-    '' | 0.[0-9] | 0.[0-9].* | 0.1[0-4] | 0.1[0-4].*) MSGFMT_015=: ;;
##############################################
systemtap-4.4/m4/po.m4-55-changequote(,)dnl
systemtap-4.4/m4/po.m4:56:  case `$GMSGFMT --version | sed 1q | sed -e 's,^[^0-9]*,,'` in
systemtap-4.4/m4/po.m4-57-    '' | 0.[0-9] | 0.[0-9].* | 0.1[0-4] | 0.1[0-4].*) GMSGFMT_015=: ;;
##############################################
systemtap-4.4/m4/po.m4-74-changequote(,)dnl
systemtap-4.4/m4/po.m4:75:  case `$XGETTEXT --version | sed 1q | sed -e 's,^[^0-9]*,,'` in
systemtap-4.4/m4/po.m4-76-    '' | 0.[0-9] | 0.[0-9].* | 0.1[0-4] | 0.1[0-4].*) XGETTEXT_015=: ;;
##############################################
systemtap-4.4/m4/po.m4-99-      case "$ac_file" in
systemtap-4.4/m4/po.m4:100:        *:*) ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;;
systemtap-4.4/m4/po.m4-101-      esac
##############################################
systemtap-4.4/m4/po.m4-104-        # Adjust a relative srcdir.
systemtap-4.4/m4/po.m4:105:        ac_dir=`echo "$ac_file"|sed 's%/[^/][^/]*$%%'`
systemtap-4.4/m4/po.m4:106:        ac_dir_suffix=/`echo "$ac_dir"|sed 's%^\./%%'`
systemtap-4.4/m4/po.m4:107:        ac_dots=`echo "$ac_dir_suffix"|sed 's%/[^/]*%../%g'`
systemtap-4.4/m4/po.m4-108-        # In autoconf-2.13 it is called $ac_given_srcdir.
##############################################
systemtap-4.4/m4/po.m4-111-        case "$ac_given_srcdir" in
systemtap-4.4/m4/po.m4:112:          .)  top_srcdir=`echo $ac_dots|sed 's%/$%%'` ;;
systemtap-4.4/m4/po.m4-113-          /*) top_srcdir="$ac_given_srcdir" ;;
##############################################
systemtap-4.4/m4/po.m4-132-            fi
systemtap-4.4/m4/po.m4:133:            ALL_LINGUAS_=`sed -e "/^#/d" -e "s/#.*//" "$ac_given_srcdir/$ac_dir/LINGUAS"`
systemtap-4.4/m4/po.m4-134-            # Hide the ALL_LINGUAS assignment from automake < 1.5.
##############################################
systemtap-4.4/m4/po.m4-229-  # Adjust a relative srcdir.
systemtap-4.4/m4/po.m4:230:  ac_dir=`echo "$ac_file"|sed 's%/[^/][^/]*$%%'`
systemtap-4.4/m4/po.m4:231:  ac_dir_suffix=/`echo "$ac_dir"|sed 's%^\./%%'`
systemtap-4.4/m4/po.m4:232:  ac_dots=`echo "$ac_dir_suffix"|sed 's%/[^/]*%../%g'`
systemtap-4.4/m4/po.m4-233-  # In autoconf-2.13 it is called $ac_given_srcdir.
##############################################
systemtap-4.4/m4/po.m4-236-  case "$ac_given_srcdir" in
systemtap-4.4/m4/po.m4:237:    .)  top_srcdir=`echo $ac_dots|sed 's%/$%%'` ;;
systemtap-4.4/m4/po.m4-238-    /*) top_srcdir="$ac_given_srcdir" ;;
##############################################
systemtap-4.4/m4/po.m4-298-  # Set POTFILES to the value of the Makefile variable POTFILES.
systemtap-4.4/m4/po.m4:299:  sed_x_POTFILES=`$gt_echo "$sed_x_variable" | sed -e '/^ *#/d' -e 's/VARIABLE/POTFILES/g'`
systemtap-4.4/m4/po.m4:300:  POTFILES=`sed -n -e "$sed_x_POTFILES" < "$ac_file"`
systemtap-4.4/m4/po.m4-301-  # Compute POTFILES_DEPS as
##############################################
systemtap-4.4/m4/po.m4-313-    # The LINGUAS file contains the set of available languages.
systemtap-4.4/m4/po.m4:314:    ALL_LINGUAS_=`sed -e "/^#/d" -e "s/#.*//" "$ac_given_srcdir/$ac_dir/LINGUAS"`
systemtap-4.4/m4/po.m4-315-    POMAKEFILEDEPS="$POMAKEFILEDEPS LINGUAS"
##############################################
systemtap-4.4/m4/po.m4-317-    # Set ALL_LINGUAS to the value of the Makefile variable LINGUAS.
systemtap-4.4/m4/po.m4:318:    sed_x_LINGUAS=`$gt_echo "$sed_x_variable" | sed -e '/^ *#/d' -e 's/VARIABLE/LINGUAS/g'`
systemtap-4.4/m4/po.m4:319:    ALL_LINGUAS_=`sed -n -e "$sed_x_LINGUAS" < "$ac_file"`
systemtap-4.4/m4/po.m4-320-  fi
##############################################
systemtap-4.4/m4/po.m4-361-    QMFILES="$QMFILES $srcdirpre$lang.qm"
systemtap-4.4/m4/po.m4:362:    frobbedlang=`echo $lang | sed -e 's/\..*$//' -e 'y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/'`
systemtap-4.4/m4/po.m4-363-    MSGFILES="$MSGFILES $srcdirpre$frobbedlang.msg"
systemtap-4.4/m4/po.m4:364:    frobbedlang=`echo $lang | sed -e 's/_/-/g' -e 's/^sr-CS/sr-SP/' -e 's/@latin$/-Latn/' -e 's/@cyrillic$/-Cyrl/' -e 's/^sr-SP$/sr-SP-Latn/' -e 's/^uz-UZ$/uz-UZ-Latn/'`
systemtap-4.4/m4/po.m4-365-    RESOURCESDLLFILES="$RESOURCESDLLFILES $srcdirpre$frobbedlang/\$(DOMAIN).resources.dll"
##############################################
systemtap-4.4/m4/po.m4-402-      QTCATALOGS="$QTCATALOGS $lang.qm"
systemtap-4.4/m4/po.m4:403:      frobbedlang=`echo $lang | sed -e 's/\..*$//' -e 'y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/'`
systemtap-4.4/m4/po.m4-404-      TCLCATALOGS="$TCLCATALOGS $frobbedlang.msg"
systemtap-4.4/m4/po.m4:405:      frobbedlang=`echo $lang | sed -e 's/_/-/g' -e 's/^sr-CS/sr-SP/' -e 's/@latin$/-Latn/' -e 's/@cyrillic$/-Cyrl/' -e 's/^sr-SP$/sr-SP-Latn/' -e 's/^uz-UZ$/uz-UZ-Latn/'`
systemtap-4.4/m4/po.m4-406-      CSHARPCATALOGS="$CSHARPCATALOGS $frobbedlang/\$(DOMAIN).resources.dll"
##############################################
systemtap-4.4/m4/po.m4-414-    for lang in $ALL_LINGUAS; do
systemtap-4.4/m4/po.m4:415:      frobbedlang=`echo $lang | sed -e 's/\..*$//' -e 'y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/'`
systemtap-4.4/m4/po.m4-416-      cat >> "$ac_file.tmp" <<EOF
##############################################
systemtap-4.4/m4/po.m4-425-    for lang in $ALL_LINGUAS; do
systemtap-4.4/m4/po.m4:426:      frobbedlang=`echo $lang | sed -e 's/_/-/g' -e 's/^sr-CS/sr-SP/' -e 's/@latin$/-Latn/' -e 's/@cyrillic$/-Cyrl/' -e 's/^sr-SP$/sr-SP-Latn/' -e 's/^uz-UZ$/uz-UZ-Latn/'`
systemtap-4.4/m4/po.m4-427-      cat >> "$ac_file.tmp" <<EOF
##############################################
systemtap-4.4/man/Makefile.in-51-  { \
systemtap-4.4/man/Makefile.in:52:    flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
systemtap-4.4/man/Makefile.in-53-  }; \
##############################################
systemtap-4.4/man/Makefile.in-138-  esac
systemtap-4.4/man/Makefile.in:139:am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
systemtap-4.4/man/Makefile.in-140-am__vpath_adj = case $$p in \
systemtap-4.4/man/Makefile.in:141:    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
systemtap-4.4/man/Makefile.in-142-    *) f=$$p;; \
systemtap-4.4/man/Makefile.in-143-  esac;
systemtap-4.4/man/Makefile.in:144:am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
systemtap-4.4/man/Makefile.in-145-am__install_max = 40
systemtap-4.4/man/Makefile.in-146-am__nobase_strip_setup = \
systemtap-4.4/man/Makefile.in:147:  srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
systemtap-4.4/man/Makefile.in-148-am__nobase_strip = \
##############################################
systemtap-4.4/man/Makefile.in-455-	test -n "$(man1dir)" \
systemtap-4.4/man/Makefile.in:456:	  && test -n "`echo $$list1$$list2`" \
systemtap-4.4/man/Makefile.in-457-	  || exit 0; \
##############################################
systemtap-4.4/man/Makefile.in-498-	test -n "$(man3dir)" \
systemtap-4.4/man/Makefile.in:499:	  && test -n "`echo $$list1$$list2`" \
systemtap-4.4/man/Makefile.in-500-	  || exit 0; \
##############################################
systemtap-4.4/man/Makefile.in-541-	test -n "$(man7dir)" \
systemtap-4.4/man/Makefile.in:542:	  && test -n "`echo $$list1$$list2`" \
systemtap-4.4/man/Makefile.in-543-	  || exit 0; \
##############################################
systemtap-4.4/man/Makefile.in-584-	test -n "$(man8dir)" \
systemtap-4.4/man/Makefile.in:585:	  && test -n "`echo $$list1$$list2`" \
systemtap-4.4/man/Makefile.in-586-	  || exit 0; \
##############################################
systemtap-4.4/man/Makefile.in-637-	dot_seen=no; \
systemtap-4.4/man/Makefile.in:638:	target=`echo $@ | sed s/-recursive//`; \
systemtap-4.4/man/Makefile.in-639-	case "$@" in \
##############################################
systemtap-4.4/man/Makefile.in-700-GTAGS:
systemtap-4.4/man/Makefile.in:701:	here=`$(am__cd) $(top_builddir) && pwd` \
systemtap-4.4/man/Makefile.in-702-	  && $(am__cd) $(top_srcdir) \
##############################################
systemtap-4.4/man/cs/Makefile.in-49-  { \
systemtap-4.4/man/cs/Makefile.in:50:    flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
systemtap-4.4/man/cs/Makefile.in-51-  }; \
##############################################
systemtap-4.4/man/cs/Makefile.in-128-  esac
systemtap-4.4/man/cs/Makefile.in:129:am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
systemtap-4.4/man/cs/Makefile.in-130-am__vpath_adj = case $$p in \
systemtap-4.4/man/cs/Makefile.in:131:    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
systemtap-4.4/man/cs/Makefile.in-132-    *) f=$$p;; \
systemtap-4.4/man/cs/Makefile.in-133-  esac;
systemtap-4.4/man/cs/Makefile.in:134:am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
systemtap-4.4/man/cs/Makefile.in-135-am__install_max = 40
systemtap-4.4/man/cs/Makefile.in-136-am__nobase_strip_setup = \
systemtap-4.4/man/cs/Makefile.in:137:  srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
systemtap-4.4/man/cs/Makefile.in-138-am__nobase_strip = \
##############################################
systemtap-4.4/man/cs/Makefile.in-417-	test -n "$(man1dir)" \
systemtap-4.4/man/cs/Makefile.in:418:	  && test -n "`echo $$list1$$list2`" \
systemtap-4.4/man/cs/Makefile.in-419-	  || exit 0; \
##############################################
systemtap-4.4/man/cs/Makefile.in-460-	test -n "$(man3dir)" \
systemtap-4.4/man/cs/Makefile.in:461:	  && test -n "`echo $$list1$$list2`" \
systemtap-4.4/man/cs/Makefile.in-462-	  || exit 0; \
##############################################
systemtap-4.4/man/cs/Makefile.in-503-	test -n "$(man7dir)" \
systemtap-4.4/man/cs/Makefile.in:504:	  && test -n "`echo $$list1$$list2`" \
systemtap-4.4/man/cs/Makefile.in-505-	  || exit 0; \
##############################################
systemtap-4.4/man/cs/Makefile.in-546-	test -n "$(man8dir)" \
systemtap-4.4/man/cs/Makefile.in:547:	  && test -n "`echo $$list1$$list2`" \
systemtap-4.4/man/cs/Makefile.in-548-	  || exit 0; \
##############################################
systemtap-4.4/man/cs/error::sdt.7stap-36-directivy, ukládají značky STAP_PROBE / DTRACE_PROBE pro každý operand asm
systemtap-4.4/man/cs/error::sdt.7stap:37:výraz.  Kompilátoru se předá volné asm omezení "nor", které obvykle funguje
systemtap-4.4/man/cs/error::sdt.7stap-38-dobře.  Toto řešení obvykle nenutí kompilátor pracovat s registry, což by
##############################################
systemtap-4.4/man/cs/error::sdt.7stap-47-finálního ELF souboru nedostane.  Takový operand je pak nedostupný.  Pokus o
systemtap-4.4/man/cs/error::sdt.7stap:48:přístup k příslušnému parametru pak obvykle skončí chybou "SDT asm not
systemtap-4.4/man/cs/error::sdt.7stap-49-understood".
##############################################
systemtap-4.4/man/cs/error::sdt.7stap-55-GDB nemusejí být schopny takové výrazy správně analyzovat a v případě
systemtap-4.4/man/cs/error::sdt.7stap:56:systemtapu bude pak výsledkem chyba "SDT asm not understood".
systemtap-4.4/man/cs/error::sdt.7stap-57-
##############################################
systemtap-4.4/man/cs/error::sdt.7stap-61-registrů nebo z jiného důvodu.  V takovém případě může nastat chyba jako např.
systemtap-4.4/man/cs/error::sdt.7stap:62:"asm operand has impossible constraints".
systemtap-4.4/man/cs/error::sdt.7stap-63-
##############################################
systemtap-4.4/man/error::sdt.7stap-51-which leaves no trace for the run-time.  Reference to such parameters
systemtap-4.4/man/error::sdt.7stap:52:from within systemtap can result in "SDT asm not understood" errors.
systemtap-4.4/man/error::sdt.7stap-53-
##############################################
systemtap-4.4/man/error::sdt.7stap-58-be able to parse some valid but complicated expressions.  Reference to
systemtap-4.4/man/error::sdt.7stap:59:such parameters from within systemtap can result in "SDT asm not
systemtap-4.4/man/error::sdt.7stap-60-understood" errors.
##############################################
systemtap-4.4/man/error::sdt.7stap-65-default "nor" constraint due to shortage of registers or other
systemtap-4.4/man/error::sdt.7stap:66:reasons.  A compile-time gcc error such as "asm operand has impossible
systemtap-4.4/man/error::sdt.7stap-67-constraints" may result.
##############################################
systemtap-4.4/nss-server-info.cxx-71-static PRIPv6Addr &copyAddress (PRIPv6Addr &PRin6, const in6_addr &in6);
systemtap-4.4/nss-server-info.cxx:72:static PRNetAddr &copyNetAddr (PRNetAddr &x, const PRNetAddr &y);
systemtap-4.4/nss-server-info.cxx-73-bool operator!= (const PRNetAddr &x, const PRNetAddr &y);
##############################################
systemtap-4.4/nss-server-info.cxx-843-PRNetAddr &
systemtap-4.4/nss-server-info.cxx:844:copyNetAddr (PRNetAddr &x, const PRNetAddr &y)
systemtap-4.4/nss-server-info.cxx-845-{
##############################################
systemtap-4.4/nss-server-info.cxx-1399-  // Try to convert the string to an address.
systemtap-4.4/nss-server-info.cxx:1400:  PRStatus prStatus = PR_StringToNetAddr (ip.c_str(), & server_info.address);
systemtap-4.4/nss-server-info.cxx-1401-  if (prStatus != PR_SUCCESS)
##############################################
systemtap-4.4/nss-server-info.cxx-1466-  // Try to convert the string to an address.
systemtap-4.4/nss-server-info.cxx:1467:  PRStatus prStatus = PR_StringToNetAddr (addr.c_str(), & server_info.address);
systemtap-4.4/nss-server-info.cxx-1468-  if (prStatus != PR_SUCCESS)
##############################################
systemtap-4.4/nss-server-info.cxx-2121-            avahi_address_snprint(a, sizeof(a), address);
systemtap-4.4/nss-server-info.cxx:2122:	    prStatus = PR_StringToNetAddr (a, & info.address);
systemtap-4.4/nss-server-info.cxx-2123-	    if (prStatus != PR_SUCCESS) {
##############################################
systemtap-4.4/nss-server-info.cxx-2492-  if (source.hasAddress ())
systemtap-4.4/nss-server-info.cxx:2493:    copyNetAddr (target.address, source.address);
systemtap-4.4/nss-server-info.cxx-2494-  if (target.port == 0)
##############################################
systemtap-4.4/po/Makefile.in.in-99-.po.gmo:
systemtap-4.4/po/Makefile.in.in:100:	@lang=`echo $* | sed -e 's,.*/,,'`; \
systemtap-4.4/po/Makefile.in.in-101-	test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \
##############################################
systemtap-4.4/po/Makefile.in.in-180-	fi; \
systemtap-4.4/po/Makefile.in.in:181:	case `$(XGETTEXT) --version | sed 1q | sed -e 's,^[^0-9]*,,'` in \
systemtap-4.4/po/Makefile.in.in-182-	  '' | 0.[0-9] | 0.[0-9].* | 0.1[0-5] | 0.1[0-5].* | 0.16 | 0.16.[0-1]*) \
##############################################
systemtap-4.4/po/Makefile.in.in-222-$(POFILES): $(POFILESDEPS)
systemtap-4.4/po/Makefile.in.in:223:	@lang=`echo $@ | sed -e 's,.*/,,' -e 's/\.po$$//'`; \
systemtap-4.4/po/Makefile.in.in-224-	if test -f "$(srcdir)/$${lang}.po"; then \
##############################################
systemtap-4.4/po/Makefile.in.in-228-	  cd $(srcdir) \
systemtap-4.4/po/Makefile.in.in:229:	    && { case `$(MSGMERGE_UPDATE) --version | sed 1q | sed -e 's,^[^0-9]*,,'` in \
systemtap-4.4/po/Makefile.in.in-230-	           '' | 0.[0-9] | 0.[0-9].* | 0.1[0-7] | 0.1[0-7].*) \
##############################################
systemtap-4.4/po/Makefile.in.in-259-	for cat in $$catalogs; do \
systemtap-4.4/po/Makefile.in.in:260:	  cat=`basename $$cat`; \
systemtap-4.4/po/Makefile.in.in:261:	  lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \
systemtap-4.4/po/Makefile.in.in-262-	  dir=$(localedir)/$$lang/LC_MESSAGES; \
##############################################
systemtap-4.4/po/Makefile.in.in-269-	      if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \
systemtap-4.4/po/Makefile.in.in:270:	        link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \
systemtap-4.4/po/Makefile.in.in-271-	        mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \
##############################################
systemtap-4.4/po/Makefile.in.in-310-	for cat in $$catalogs; do \
systemtap-4.4/po/Makefile.in.in:311:	  cat=`basename $$cat`; \
systemtap-4.4/po/Makefile.in.in:312:	  lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \
systemtap-4.4/po/Makefile.in.in-313-	  dir=$(localedir)/$$lang/LC_MESSAGES; \
##############################################
systemtap-4.4/po/Makefile.in.in-317-	      if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \
systemtap-4.4/po/Makefile.in.in:318:	        link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \
systemtap-4.4/po/Makefile.in.in-319-	        mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \
##############################################
systemtap-4.4/po/Makefile.in.in-356-	for cat in $$catalogs; do \
systemtap-4.4/po/Makefile.in.in:357:	  cat=`basename $$cat`; \
systemtap-4.4/po/Makefile.in.in:358:	  lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \
systemtap-4.4/po/Makefile.in.in-359-	  for lc in LC_MESSAGES $(EXTRA_LOCALE_CATEGORIES); do \
##############################################
systemtap-4.4/po/Makefile.in.in-421-.nop.po-create:
systemtap-4.4/po/Makefile.in.in:422:	@lang=`echo $@ | sed -e 's/\.po-create$$//'`; \
systemtap-4.4/po/Makefile.in.in-423-	echo "File $$lang.po does not exist. If you are a translator, you can create it through 'msginit'." 1>&2; \
##############################################
systemtap-4.4/po/Makefile.in.in-428-.nop.po-update:
systemtap-4.4/po/Makefile.in.in:429:	@lang=`echo $@ | sed -e 's/\.po-update$$//'`; \
systemtap-4.4/po/Makefile.in.in-430-	if test "$(PACKAGE)" = "gettext-tools"; then PATH=`pwd`/../src:$$PATH; fi; \
##############################################
systemtap-4.4/po/Makefile.in.in-435-	cd $(srcdir); \
systemtap-4.4/po/Makefile.in.in:436:	if { case `$(MSGMERGE) --version | sed 1q | sed -e 's,^[^0-9]*,,'` in \
systemtap-4.4/po/Makefile.in.in-437-	       '' | 0.[0-9] | 0.[0-9].* | 0.1[0-7] | 0.1[0-7].*) \
##############################################
systemtap-4.4/po/Rules-quot-16-.insert-header.po-update-en:
systemtap-4.4/po/Rules-quot:17:	@lang=`echo $@ | sed -e 's/\.po-update-en$$//'`; \
systemtap-4.4/po/Rules-quot:18:	if test "$(PACKAGE)" = "gettext-tools"; then PATH=`pwd`/../src:$$PATH; GETTEXTLIBDIR=`cd $(top_srcdir)/src && pwd`; export GETTEXTLIBDIR; fi; \
systemtap-4.4/po/Rules-quot-19-	tmpdir=`pwd`; \
systemtap-4.4/po/Rules-quot-20-	echo "$$lang:"; \
systemtap-4.4/po/Rules-quot:21:	ll=`echo $$lang | sed -e 's/@.*//'`; \
systemtap-4.4/po/Rules-quot-22-	LC_ALL=C; export LC_ALL; \
##############################################
systemtap-4.4/po/Rules-quot-25-	   | $(SED) -f $$tmpdir/$$lang.insert-header | $(MSGCONV) -t UTF-8 | \
systemtap-4.4/po/Rules-quot:26:	   { case `$(MSGFILTER) --version | sed 1q | sed -e 's,^[^0-9]*,,'` in \
systemtap-4.4/po/Rules-quot-27-	     '' | 0.[0-9] | 0.[0-9].* | 0.1[0-8] | 0.1[0-8].*) \
systemtap-4.4/po/Rules-quot:28:	       $(MSGFILTER) $(SED) -f `echo $$lang | sed -e 's/.*@//'`.sed \
systemtap-4.4/po/Rules-quot-29-	       ;; \
systemtap-4.4/po/Rules-quot-30-	     *) \
systemtap-4.4/po/Rules-quot:31:	       $(MSGFILTER) `echo $$lang | sed -e 's/.*@//'` \
systemtap-4.4/po/Rules-quot-32-	       ;; \
##############################################
systemtap-4.4/po/cs.po-6678-#: tapsets.cxx:7398
systemtap-4.4/po/cs.po:6679:msgid "SDT asm not understood, requires debuginfo [man error::sdt]"
systemtap-4.4/po/cs.po-6680-msgstr ""
##############################################
systemtap-4.4/po/cs.po-6685-#, c-format
systemtap-4.4/po/cs.po:6686:msgid "mapped asm operand %s to "
systemtap-4.4/po/cs.po-6687-msgstr ""
##############################################
systemtap-4.4/po/cs.po-7761-
systemtap-4.4/po/cs.po:7762:#~ msgid "dwarf_getlocation_addr (form %#x): %s"
systemtap-4.4/po/cs.po:7763:#~ msgstr "dwarf_getlocation_addr (z %#x): %s"
systemtap-4.4/po/cs.po-7764-
##############################################
systemtap-4.4/po/en.po-6539-#: tapsets.cxx:7398
systemtap-4.4/po/en.po:6540:msgid "SDT asm not understood, requires debuginfo [man error::sdt]"
systemtap-4.4/po/en.po-6541-msgstr ""
##############################################
systemtap-4.4/po/en.po-6545-#, c-format
systemtap-4.4/po/en.po:6546:msgid "mapped asm operand %s to "
systemtap-4.4/po/en.po-6547-msgstr ""
##############################################
systemtap-4.4/po/en.po-7598-
systemtap-4.4/po/en.po:7599:#~ msgid "dwarf_getlocation_addr (form %#x): %s"
systemtap-4.4/po/en.po:7600:#~ msgstr "dwarf_getlocation_addr (form %#x): %s"
systemtap-4.4/po/en.po-7601-
##############################################
systemtap-4.4/po/fr.po-6703-#: tapsets.cxx:7398
systemtap-4.4/po/fr.po:6704:msgid "SDT asm not understood, requires debuginfo [man error::sdt]"
systemtap-4.4/po/fr.po-6705-msgstr ""
##############################################
systemtap-4.4/po/fr.po-6709-#, c-format
systemtap-4.4/po/fr.po:6710:msgid "mapped asm operand %s to "
systemtap-4.4/po/fr.po-6711-msgstr ""
##############################################
systemtap-4.4/po/fr.po-7753-
systemtap-4.4/po/fr.po:7754:#~ msgid "dwarf_getlocation_addr (form %#x): %s"
systemtap-4.4/po/fr.po:7755:#~ msgstr "dwarf_getlocation_addr (forme %#x) : %s"
systemtap-4.4/po/fr.po-7756-
##############################################
systemtap-4.4/po/pl.po-6338-#: tapsets.cxx:7398
systemtap-4.4/po/pl.po:6339:msgid "SDT asm not understood, requires debuginfo [man error::sdt]"
systemtap-4.4/po/pl.po-6340-msgstr ""
##############################################
systemtap-4.4/po/pl.po-6344-#, c-format
systemtap-4.4/po/pl.po:6345:msgid "mapped asm operand %s to "
systemtap-4.4/po/pl.po-6346-msgstr ""
##############################################
systemtap-4.4/po/systemtap.pot-6320-#: tapsets.cxx:7398
systemtap-4.4/po/systemtap.pot:6321:msgid "SDT asm not understood, requires debuginfo [man error::sdt]"
systemtap-4.4/po/systemtap.pot-6322-msgstr ""
##############################################
systemtap-4.4/po/systemtap.pot-6326-#, c-format
systemtap-4.4/po/systemtap.pot:6327:msgid "mapped asm operand %s to "
systemtap-4.4/po/systemtap.pot-6328-msgstr ""
##############################################
systemtap-4.4/python/HelperSDT/_HelperSDT.c-239-#ifdef __ia64__
systemtap-4.4/python/HelperSDT/_HelperSDT.c:240:	asm ("nop 0" : "=r"(fptr) : "r"(fptr));
systemtap-4.4/python/HelperSDT/_HelperSDT.c-241-#else
systemtap-4.4/python/HelperSDT/_HelperSDT.c:242:	asm ("nop" : "=r"(fptr) : "r"(fptr));
systemtap-4.4/python/HelperSDT/_HelperSDT.c-243-#endif
##############################################
systemtap-4.4/python/Makefile.in-52-  { \
systemtap-4.4/python/Makefile.in:53:    flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
systemtap-4.4/python/Makefile.in-54-  }; \
##############################################
systemtap-4.4/python/Makefile.in-137-  esac
systemtap-4.4/python/Makefile.in:138:am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
systemtap-4.4/python/Makefile.in-139-am__vpath_adj = case $$p in \
systemtap-4.4/python/Makefile.in:140:    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
systemtap-4.4/python/Makefile.in-141-    *) f=$$p;; \
systemtap-4.4/python/Makefile.in-142-  esac;
systemtap-4.4/python/Makefile.in:143:am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
systemtap-4.4/python/Makefile.in-144-am__install_max = 40
systemtap-4.4/python/Makefile.in-145-am__nobase_strip_setup = \
systemtap-4.4/python/Makefile.in:146:  srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
systemtap-4.4/python/Makefile.in-147-am__nobase_strip = \
##############################################
systemtap-4.4/python/Makefile.in-450-	@list='$(pkglibexecpython_PYTHON)'; test -n "$(pkglibexecpythondir)" || list=; \
systemtap-4.4/python/Makefile.in:451:	py_files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
systemtap-4.4/python/Makefile.in-452-	test -n "$$py_files" || exit 0; \
systemtap-4.4/python/Makefile.in-453-	dir='$(DESTDIR)$(pkglibexecpythondir)'; \
systemtap-4.4/python/Makefile.in:454:	pyc_files=`echo "$$py_files" | sed 's|$$|c|'`; \
systemtap-4.4/python/Makefile.in:455:	pyo_files=`echo "$$py_files" | sed 's|$$|o|'`; \
systemtap-4.4/python/Makefile.in:456:	py_files_pep3147=`echo "$$py_files" | $(am__pep3147_tweak)`; \
systemtap-4.4/python/Makefile.in-457-	echo "$$py_files_pep3147";\
systemtap-4.4/python/Makefile.in:458:	pyc_files_pep3147=`echo "$$py_files_pep3147" | sed 's|$$|c|'`; \
systemtap-4.4/python/Makefile.in:459:	pyo_files_pep3147=`echo "$$py_files_pep3147" | sed 's|$$|o|'`; \
systemtap-4.4/python/Makefile.in-460-	st=0; \
##############################################
systemtap-4.4/python/Makefile.in-489-	@list='$(pkglibexecpython_DATA)'; test -n "$(pkglibexecpythondir)" || list=; \
systemtap-4.4/python/Makefile.in:490:	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
systemtap-4.4/python/Makefile.in-491-	dir='$(DESTDIR)$(pkglibexecpythondir)'; $(am__uninstall_files_from_dir)
##############################################
systemtap-4.4/run-stap.in-11-/*) ;;
systemtap-4.4/run-stap.in:12:*) srcdir=`cd "$srcdir" && pwd` || exit ;;
systemtap-4.4/run-stap.in-13-esac
##############################################
systemtap-4.4/run-stap.in-15-/*) ;;
systemtap-4.4/run-stap.in:16:*) builddir=`cd "$builddir" && pwd` || exit ;;
systemtap-4.4/run-stap.in-17-esac
##############################################
systemtap-4.4/runtest.sh-8-
systemtap-4.4/runtest.sh:9:SRCDIR=`dirname $0`
systemtap-4.4/runtest.sh-10-case "$SRCDIR" in
##############################################
systemtap-4.4/runtest.sh-28-
systemtap-4.4/runtest.sh:29:dn=`dirname $1`
systemtap-4.4/runtest.sh:30:logfile=testresults/`basename $dn`-`basename $1`
systemtap-4.4/runtest.sh-31-
##############################################
systemtap-4.4/runtime/addr-map.h-48-
systemtap-4.4/runtime/addr-map.h:49:static int lookup_bad_addr(const int type, const unsigned long addr,
systemtap-4.4/runtime/addr-map.h-50-			   const size_t size, const stp_mm_segment_t seg);
##############################################
systemtap-4.4/runtime/dyninst/addr-map.c-15-static int
systemtap-4.4/runtime/dyninst/addr-map.c:16:lookup_bad_addr(const int type, const unsigned long addr, const size_t size,
systemtap-4.4/runtime/dyninst/addr-map.c-17-                const mm_segment_t seg)
##############################################
systemtap-4.4/runtime/linux/addr-map.c-20-// fixed. Until we're ready to populate the bad address database,
systemtap-4.4/runtime/linux/addr-map.c:21:// let's provide a "junior" version of lookup_bad_addr(), since that
systemtap-4.4/runtime/linux/addr-map.c-22-// will allow us to skip grabbing the lock and searching the empty
##############################################
systemtap-4.4/runtime/linux/addr-map.c-49-   * Note we're using stp_access_ok() here. This is only supposed to be
systemtap-4.4/runtime/linux/addr-map.c:50:   * called when we're in task context. Occasionally lookup_bad_addr()
systemtap-4.4/runtime/linux/addr-map.c-51-   * gets called when not in task context. If in_task() exists, only
##############################################
systemtap-4.4/runtime/linux/addr-map.c-85-static int
systemtap-4.4/runtime/linux/addr-map.c:86:lookup_bad_addr(const int type, const unsigned long addr, const size_t size,
systemtap-4.4/runtime/linux/addr-map.c-87-                const stp_mm_segment_t seg)
##############################################
systemtap-4.4/runtime/linux/addr-map.c-217-static int
systemtap-4.4/runtime/linux/addr-map.c:218:lookup_bad_addr(const int type, const unsigned long addr, const size_t size)
systemtap-4.4/runtime/linux/addr-map.c-219-{
##############################################
systemtap-4.4/runtime/linux/copy.c-69-                pagefault_disable();
systemtap-4.4/runtime/linux/copy.c:70:		if (!lookup_bad_addr(VERIFY_READ, (const unsigned long)src, count, STP_USER_DS))
systemtap-4.4/runtime/linux/copy.c-71-			count = __copy_from_user_inatomic(dst, src, count);
##############################################
systemtap-4.4/runtime/linux/kprobes.c-140-static unsigned long
systemtap-4.4/runtime/linux/kprobes.c:141:stapkp_relocate_addr(struct stap_kprobe_probe *skp)
systemtap-4.4/runtime/linux/kprobes.c-142-{
##############################################
systemtap-4.4/runtime/linux/kprobes.c-153-   if (! skp->symbol_name) {
systemtap-4.4/runtime/linux/kprobes.c:154:      addr = stapkp_relocate_addr(skp);
systemtap-4.4/runtime/linux/kprobes.c-155-      if (addr == 0)
##############################################
systemtap-4.4/runtime/linux/kprobes.c-263-   if (! skp->symbol_name) {
systemtap-4.4/runtime/linux/kprobes.c:264:      addr = stapkp_relocate_addr(skp);
systemtap-4.4/runtime/linux/kprobes.c-265-      if (addr == 0)
##############################################
systemtap-4.4/runtime/linux/kprobes.c-774-	    _stp_warn("probe %s (address 0x%lx) registration error (rc %d)",
systemtap-4.4/runtime/linux/kprobes.c:775:		      skp->probe->pp, stapkp_relocate_addr(skp), rc);
systemtap-4.4/runtime/linux/kprobes.c-776-      }
##############################################
systemtap-4.4/runtime/linux/kprobes.c-833-         unsigned long addr = (! skp->symbol_name
systemtap-4.4/runtime/linux/kprobes.c:834:			       ? stapkp_relocate_addr(skp) : 0);
systemtap-4.4/runtime/linux/kprobes.c-835-
##############################################
systemtap-4.4/runtime/linux/loc2c-runtime.h-471-/* 
systemtap-4.4/runtime/linux/loc2c-runtime.h:472: * _stp_lookup_bad_addr(): safely verify an address
systemtap-4.4/runtime/linux/loc2c-runtime.h-473- *
##############################################
systemtap-4.4/runtime/linux/loc2c-runtime.h-495-  pagefault_disable();
systemtap-4.4/runtime/linux/loc2c-runtime.h:496:  bad = lookup_bad_addr(type, addr, size, seg);
systemtap-4.4/runtime/linux/loc2c-runtime.h-497-  pagefault_enable();
##############################################
systemtap-4.4/runtime/linux/loc2c-runtime.h-504-
systemtap-4.4/runtime/linux/loc2c-runtime.h:505:#define _stp_lookup_bad_addr(type, size, addr, seg) \
systemtap-4.4/runtime/linux/loc2c-runtime.h-506-  _stp_lookup_bad_addr_((type), (size), (uintptr_t)(addr), (seg))
##############################################
systemtap-4.4/runtime/linux/loc2c-runtime.h-533-  pagefault_disable();
systemtap-4.4/runtime/linux/loc2c-runtime.h:534:  if (lookup_bad_addr(VERIFY_READ, (uintptr_t)addr, size, seg))
systemtap-4.4/runtime/linux/loc2c-runtime.h-535-    r = -EFAULT;
##############################################
systemtap-4.4/runtime/linux/loc2c-runtime.h-674-  pagefault_disable();
systemtap-4.4/runtime/linux/loc2c-runtime.h:675:  if (lookup_bad_addr(VERIFY_READ, (uintptr_t)addr, size, seg))
systemtap-4.4/runtime/linux/loc2c-runtime.h-676-    r = -EFAULT;
##############################################
systemtap-4.4/runtime/linux/loc2c-runtime.h-785-  pagefault_disable();
systemtap-4.4/runtime/linux/loc2c-runtime.h:786:  if (lookup_bad_addr(VERIFY_READ, (uintptr_t)addr, len, STP_KERNEL_DS))
systemtap-4.4/runtime/linux/loc2c-runtime.h-787-    err = 1;
##############################################
systemtap-4.4/runtime/linux/loc2c-runtime.h-840-  pagefault_disable();
systemtap-4.4/runtime/linux/loc2c-runtime.h:841:  if (lookup_bad_addr(VERIFY_READ, (uintptr_t)addr, len, seg))
systemtap-4.4/runtime/linux/loc2c-runtime.h-842-    err = 1;
##############################################
systemtap-4.4/runtime/linux/loc2c-runtime.h-898-  pagefault_disable();
systemtap-4.4/runtime/linux/loc2c-runtime.h:899:  if (lookup_bad_addr(VERIFY_WRITE, (uintptr_t)addr, len, seg))
systemtap-4.4/runtime/linux/loc2c-runtime.h-900-    err = 1;
##############################################
systemtap-4.4/runtime/linux/regs-ia64.c-55-		unsigned long *bsp;\
systemtap-4.4/runtime/linux/regs-ia64.c:56:		asm volatile("{ flushrs }\n"); /* flushrs for fixing bsp */\
systemtap-4.4/runtime/linux/regs-ia64.c-57-		bsp = (void*)ia64_getreg(_IA64_REG_AR_BSP);\
##############################################
systemtap-4.4/runtime/linux/regs-ia64.c-127-	//Invalidate all stacked registers outside the current frame
systemtap-4.4/runtime/linux/regs-ia64.c:128:	asm volatile( "mov %0=ar.rsc;;\n\t"
systemtap-4.4/runtime/linux/regs-ia64.c-129-			"mov ar.rsc=0;;\n\t"
##############################################
systemtap-4.4/runtime/linux/regs.c-30- */
systemtap-4.4/runtime/linux/regs.c:31:#define _stp_probe_addr(kp) (kp->addr)
systemtap-4.4/runtime/linux/regs.c-32-
##############################################
systemtap-4.4/runtime/linux/task_finder.c-732-static void
systemtap-4.4/runtime/linux/task_finder.c:733:__stp_call_mmap_callbacks_with_addr(struct stap_task_finder_target *tgt,
systemtap-4.4/runtime/linux/task_finder.c-734-				    struct task_struct *tsk,
##############################################
systemtap-4.4/runtime/linux/task_finder.c-745-
systemtap-4.4/runtime/linux/task_finder.c:746:	// __stp_call_mmap_callbacks_with_addr() is only called when
systemtap-4.4/runtime/linux/task_finder.c-747-	// tsk is current, so there isn't any danger of mm going
##############################################
systemtap-4.4/runtime/linux/task_finder.c-1598-		// Call the callbacks
systemtap-4.4/runtime/linux/task_finder.c:1599:		__stp_call_mmap_callbacks_with_addr(tgt, tsk, rv);
systemtap-4.4/runtime/linux/task_finder.c-1600-	}
##############################################
systemtap-4.4/runtime/linux/task_finder2.c-752-static void
systemtap-4.4/runtime/linux/task_finder2.c:753:__stp_call_mmap_callbacks_with_addr(struct stap_task_finder_target *tgt,
systemtap-4.4/runtime/linux/task_finder2.c-754-				    struct task_struct *tsk,
##############################################
systemtap-4.4/runtime/linux/task_finder2.c-765-
systemtap-4.4/runtime/linux/task_finder2.c:766:	// __stp_call_mmap_callbacks_with_addr() is only called when
systemtap-4.4/runtime/linux/task_finder2.c-767-	// tsk is current, so there isn't any danger of mm going
##############################################
systemtap-4.4/runtime/linux/task_finder2.c-1614-		// return value of mmap()/mmap2().
systemtap-4.4/runtime/linux/task_finder2.c:1615:		__stp_call_mmap_callbacks_with_addr(tgt, current, entry->arg0);
systemtap-4.4/runtime/linux/task_finder2.c-1616-	}
##############################################
systemtap-4.4/runtime/linux/uprobes-inode.c-65-typedef typeof(&uprobe_get_swbp_addr) uprobe_get_swbp_addr_fn;
systemtap-4.4/runtime/linux/uprobes-inode.c:66:#define uprobe_get_swbp_addr (* (uprobe_get_swbp_addr_fn)kallsyms_uprobe_get_swbp_addr)
systemtap-4.4/runtime/linux/uprobes-inode.c-67-#endif
##############################################
systemtap-4.4/runtime/linux/uprobes-inode.c-217-    unsigned long saved_ip = REG_IP(regs);
systemtap-4.4/runtime/linux/uprobes-inode.c:218:    SET_REG_IP(regs, uprobe_get_swbp_addr(regs));
systemtap-4.4/runtime/linux/uprobes-inode.c-219-#endif
##############################################
systemtap-4.4/runtime/linux/uprobes/Makefile-42-	fi
systemtap-4.4/runtime/linux/uprobes/Makefile:43:	group=`stat -c %G $(PWD)`; \
systemtap-4.4/runtime/linux/uprobes/Makefile-44-	for f in $(CLEAN_FILES); do \
##############################################
systemtap-4.4/runtime/linux/uprobes/Makefile-52-		chmod -f 775 $$d; \
systemtap-4.4/runtime/linux/uprobes/Makefile:53:		for dd in `find $$d -type d`; do \
systemtap-4.4/runtime/linux/uprobes/Makefile-54-			chgrp -f $$group $$dd; \
##############################################
systemtap-4.4/runtime/linux/uprobes/Makefile-56-		done; \
systemtap-4.4/runtime/linux/uprobes/Makefile:57:		for f in `find $$d -type f`; do \
systemtap-4.4/runtime/linux/uprobes/Makefile-58-			chgrp -f $$group $$f; \
##############################################
systemtap-4.4/runtime/linux/uprobes/uprobes.c-853-
systemtap-4.4/runtime/linux/uprobes/uprobes.c:854:/* TODO: Avoid code duplication with uprobe_validate_vaddr(). */
systemtap-4.4/runtime/linux/uprobes/uprobes.c-855-static int uprobe_validate_vma(struct task_struct *t, unsigned long vaddr)
##############################################
systemtap-4.4/runtime/linux/uprobes/uprobes.c-875-/* Probed address must be in an executable VM area, outside the SSOL area. */
systemtap-4.4/runtime/linux/uprobes/uprobes.c:876:static int uprobe_validate_vaddr(struct task_struct *p, unsigned long vaddr,
systemtap-4.4/runtime/linux/uprobes/uprobes.c-877-	struct uprobe_process *uproc)
##############################################
systemtap-4.4/runtime/linux/uprobes/uprobes.c-977-
systemtap-4.4/runtime/linux/uprobes/uprobes.c:978:	if ((ret = uprobe_validate_vaddr(p, u->vaddr, uproc)) < 0)
systemtap-4.4/runtime/linux/uprobes/uprobes.c-979-		goto fail_uproc;
##############################################
systemtap-4.4/runtime/linux/uprobes/uprobes.c-2537-		return;
systemtap-4.4/runtime/linux/uprobes/uprobes.c:2538:	ri->ret_addr = arch_hijack_uret_addr(trampoline_addr, regs, utask);
systemtap-4.4/runtime/linux/uprobes/uprobes.c-2539-	if (likely(ri->ret_addr)) {
##############################################
systemtap-4.4/runtime/linux/uprobes/uprobes.c-2601-		(unsigned long) utask->uproc->uretprobe_trampoline_addr);
systemtap-4.4/runtime/linux/uprobes/uprobes.c:2602:	arch_restore_uret_addr(orig_ret_addr, regs);
systemtap-4.4/runtime/linux/uprobes/uprobes.c-2603-}
##############################################
systemtap-4.4/runtime/linux/uprobes/uprobes_i386.c-276- */
systemtap-4.4/runtime/linux/uprobes/uprobes_i386.c:277:static void adjust_ret_addr(long esp, long correction,
systemtap-4.4/runtime/linux/uprobes/uprobes_i386.c-278-		struct uprobe_task *utask)
##############################################
systemtap-4.4/runtime/linux/uprobes/uprobes_i386.c-329-	if (flags & UPFIX_RETURN)
systemtap-4.4/runtime/linux/uprobes/uprobes_i386.c:330:		adjust_ret_addr(regs->esp, (orig_eip - copy_eip), utask);
systemtap-4.4/runtime/linux/uprobes/uprobes_i386.c-331-
##############################################
systemtap-4.4/runtime/linux/uprobes/uprobes_i386.c-340-static
systemtap-4.4/runtime/linux/uprobes/uprobes_i386.c:341:unsigned long arch_hijack_uret_addr(unsigned long trampoline_address,
systemtap-4.4/runtime/linux/uprobes/uprobes_i386.c-342-		struct pt_regs *regs, struct uprobe_task *utask)
##############################################
systemtap-4.4/runtime/linux/uprobes/uprobes_i386.h-66-
systemtap-4.4/runtime/linux/uprobes/uprobes_i386.h:67:static inline void arch_restore_uret_addr(unsigned long ret_addr,
systemtap-4.4/runtime/linux/uprobes/uprobes_i386.h-68-		struct pt_regs *regs)
##############################################
systemtap-4.4/runtime/linux/uprobes/uprobes_i386.h-77-
systemtap-4.4/runtime/linux/uprobes/uprobes_i386.h:78:static unsigned long arch_hijack_uret_addr(unsigned long trampoline_addr,
systemtap-4.4/runtime/linux/uprobes/uprobes_i386.h-79-		struct pt_regs *regs, struct uprobe_task *utask);
##############################################
systemtap-4.4/runtime/linux/uprobes/uprobes_ppc.c-36-static
systemtap-4.4/runtime/linux/uprobes/uprobes_ppc.c:37:unsigned long arch_hijack_uret_addr(unsigned long trampoline_address,
systemtap-4.4/runtime/linux/uprobes/uprobes_ppc.c-38-		struct pt_regs *regs, struct uprobe_task *utask)
##############################################
systemtap-4.4/runtime/linux/uprobes/uprobes_ppc.h-60-
systemtap-4.4/runtime/linux/uprobes/uprobes_ppc.h:61:static unsigned long arch_hijack_uret_addr(unsigned long trampoline_addr,
systemtap-4.4/runtime/linux/uprobes/uprobes_ppc.h-62-		struct pt_regs *regs, struct uprobe_task *utask);
systemtap-4.4/runtime/linux/uprobes/uprobes_ppc.h-63-
systemtap-4.4/runtime/linux/uprobes/uprobes_ppc.h:64:static inline void arch_restore_uret_addr(unsigned long ret_addr,
systemtap-4.4/runtime/linux/uprobes/uprobes_ppc.h-65-		struct pt_regs *regs)
##############################################
systemtap-4.4/runtime/linux/uprobes/uprobes_s390.c-195-static
systemtap-4.4/runtime/linux/uprobes/uprobes_s390.c:196:unsigned long arch_hijack_uret_addr(unsigned long trampoline_address,
systemtap-4.4/runtime/linux/uprobes/uprobes_s390.c-197-                struct pt_regs *regs, struct uprobe_task *utask)
##############################################
systemtap-4.4/runtime/linux/uprobes/uprobes_s390.h-77-#ifdef CONFIG_URETPROBES
systemtap-4.4/runtime/linux/uprobes/uprobes_s390.h:78:static inline void arch_restore_uret_addr(unsigned long ret_addr,
systemtap-4.4/runtime/linux/uprobes/uprobes_s390.h-79-					  struct pt_regs *regs)
##############################################
systemtap-4.4/runtime/linux/uprobes/uprobes_s390.h-83-
systemtap-4.4/runtime/linux/uprobes/uprobes_s390.h:84:static unsigned long arch_hijack_uret_addr(unsigned long trampoline_addr,
systemtap-4.4/runtime/linux/uprobes/uprobes_s390.h-85-			struct pt_regs *regs, struct uprobe_task *utask);
##############################################
systemtap-4.4/runtime/linux/uprobes/uprobes_x86.c-603- */
systemtap-4.4/runtime/linux/uprobes/uprobes_x86.c:604:static void adjust_ret_addr(unsigned long rsp, long correction,
systemtap-4.4/runtime/linux/uprobes/uprobes_x86.c-605-					struct uprobe_task *utask)
##############################################
systemtap-4.4/runtime/linux/uprobes/uprobes_x86.c-691-	if (flags & UPFIX_RETURN)
systemtap-4.4/runtime/linux/uprobes/uprobes_x86.c:692:		adjust_ret_addr(REGS_SP, correction, utask);
systemtap-4.4/runtime/linux/uprobes/uprobes_x86.c-693-
##############################################
systemtap-4.4/runtime/linux/uprobes/uprobes_x86.c-702-static
systemtap-4.4/runtime/linux/uprobes/uprobes_x86.c:703:unsigned long arch_hijack_uret_addr(unsigned long trampoline_address,
systemtap-4.4/runtime/linux/uprobes/uprobes_x86.c-704-	struct pt_regs *regs, struct uprobe_task *utask)
##############################################
systemtap-4.4/runtime/linux/uprobes/uprobes_x86.h-106-
systemtap-4.4/runtime/linux/uprobes/uprobes_x86.h:107:static inline void arch_restore_uret_addr(unsigned long ret_addr,
systemtap-4.4/runtime/linux/uprobes/uprobes_x86.h-108-	struct pt_regs *regs)
##############################################
systemtap-4.4/runtime/linux/uprobes/uprobes_x86.h-117-
systemtap-4.4/runtime/linux/uprobes/uprobes_x86.h:118:static unsigned long arch_hijack_uret_addr(unsigned long trampoline_addr,
systemtap-4.4/runtime/linux/uprobes/uprobes_x86.h-119-		struct pt_regs *regs, struct uprobe_task *utask);
##############################################
systemtap-4.4/runtime/linux/uprobes/uprobes_x86_64.c-594- */
systemtap-4.4/runtime/linux/uprobes/uprobes_x86_64.c:595:static void adjust_ret_addr(unsigned long rsp, long correction,
systemtap-4.4/runtime/linux/uprobes/uprobes_x86_64.c-596-					struct uprobe_task *utask)
##############################################
systemtap-4.4/runtime/linux/uprobes/uprobes_x86_64.c-680-	if (flags & UPFIX_RETURN)
systemtap-4.4/runtime/linux/uprobes/uprobes_x86_64.c:681:		adjust_ret_addr(regs->rsp, correction, utask);
systemtap-4.4/runtime/linux/uprobes/uprobes_x86_64.c-682-
##############################################
systemtap-4.4/runtime/linux/uprobes/uprobes_x86_64.c-691-static
systemtap-4.4/runtime/linux/uprobes/uprobes_x86_64.c:692:unsigned long arch_hijack_uret_addr(unsigned long trampoline_address,
systemtap-4.4/runtime/linux/uprobes/uprobes_x86_64.c-693-	struct pt_regs *regs, struct uprobe_task *utask)
##############################################
systemtap-4.4/runtime/linux/uprobes/uprobes_x86_64.h-76-
systemtap-4.4/runtime/linux/uprobes/uprobes_x86_64.h:77:static inline void arch_restore_uret_addr(unsigned long ret_addr,
systemtap-4.4/runtime/linux/uprobes/uprobes_x86_64.h-78-	struct pt_regs *regs)
##############################################
systemtap-4.4/runtime/linux/uprobes/uprobes_x86_64.h-87-
systemtap-4.4/runtime/linux/uprobes/uprobes_x86_64.h:88:static unsigned long arch_hijack_uret_addr(unsigned long trampoline_addr,
systemtap-4.4/runtime/linux/uprobes/uprobes_x86_64.h-89-		struct pt_regs *regs, struct uprobe_task *utask);
##############################################
systemtap-4.4/runtime/linux/uprobes2/uprobes.c-953-
systemtap-4.4/runtime/linux/uprobes2/uprobes.c:954:/* TODO: Avoid code duplication with uprobe_validate_vaddr(). */
systemtap-4.4/runtime/linux/uprobes2/uprobes.c-955-static int uprobe_validate_vma(struct task_struct *t, unsigned long vaddr)
##############################################
systemtap-4.4/runtime/linux/uprobes2/uprobes.c-975-/* Probed address must be in an executable VM area, outside the SSOL area. */
systemtap-4.4/runtime/linux/uprobes2/uprobes.c:976:static int uprobe_validate_vaddr(struct pid *p, unsigned long vaddr,
systemtap-4.4/runtime/linux/uprobes2/uprobes.c-977-	struct uprobe_process *uproc)
##############################################
systemtap-4.4/runtime/linux/uprobes2/uprobes.c-1089-
systemtap-4.4/runtime/linux/uprobes2/uprobes.c:1090:	if ((ret = uprobe_validate_vaddr(p, u->vaddr, uproc)) < 0)
systemtap-4.4/runtime/linux/uprobes2/uprobes.c-1091-		goto fail_uproc;
##############################################
systemtap-4.4/runtime/linux/uprobes2/uprobes.c-2789-		return;
systemtap-4.4/runtime/linux/uprobes2/uprobes.c:2790:	ri->ret_addr = arch_hijack_uret_addr(trampoline_addr, regs, utask);
systemtap-4.4/runtime/linux/uprobes2/uprobes.c-2791-	if (likely(ri->ret_addr)) {
##############################################
systemtap-4.4/runtime/linux/uprobes2/uprobes.c-2851-		(unsigned long) utask->uproc->uretprobe_trampoline_addr);
systemtap-4.4/runtime/linux/uprobes2/uprobes.c:2852:	arch_restore_uret_addr(orig_ret_addr, regs);
systemtap-4.4/runtime/linux/uprobes2/uprobes.c-2853-}
##############################################
systemtap-4.4/runtime/linux/uprobes2/uprobes_arm.h-77-
systemtap-4.4/runtime/linux/uprobes2/uprobes_arm.h:78:static long arch_hijack_uret_addr(unsigned long trampoline_addr,
systemtap-4.4/runtime/linux/uprobes2/uprobes_arm.h-79-		struct pt_regs *regs, struct uprobe_task *utask)
##############################################
systemtap-4.4/runtime/linux/uprobes2/uprobes_arm.h-86-
systemtap-4.4/runtime/linux/uprobes2/uprobes_arm.h:87:static inline void arch_restore_uret_addr(unsigned long ret_addr,
systemtap-4.4/runtime/linux/uprobes2/uprobes_arm.h-88-		struct pt_regs *regs)
##############################################
systemtap-4.4/runtime/linux/uprobes2/uprobes_x86.c-608- */
systemtap-4.4/runtime/linux/uprobes2/uprobes_x86.c:609:static void adjust_ret_addr(unsigned long rsp, long correction,
systemtap-4.4/runtime/linux/uprobes2/uprobes_x86.c-610-					struct uprobe_task *utask)
##############################################
systemtap-4.4/runtime/linux/uprobes2/uprobes_x86.c-696-	if (flags & UPFIX_RETURN)
systemtap-4.4/runtime/linux/uprobes2/uprobes_x86.c:697:		adjust_ret_addr(regs->sp, correction, utask);
systemtap-4.4/runtime/linux/uprobes2/uprobes_x86.c-698-
##############################################
systemtap-4.4/runtime/linux/uprobes2/uprobes_x86.c-707-static
systemtap-4.4/runtime/linux/uprobes2/uprobes_x86.c:708:unsigned long arch_hijack_uret_addr(unsigned long trampoline_address,
systemtap-4.4/runtime/linux/uprobes2/uprobes_x86.c-709-			struct pt_regs *regs, struct uprobe_task *utask)
##############################################
systemtap-4.4/runtime/linux/uprobes2/uprobes_x86.h-88-
systemtap-4.4/runtime/linux/uprobes2/uprobes_x86.h:89:static inline void arch_restore_uret_addr(unsigned long ret_addr,
systemtap-4.4/runtime/linux/uprobes2/uprobes_x86.h-90-	struct pt_regs *regs)
##############################################
systemtap-4.4/runtime/linux/uprobes2/uprobes_x86.h-119-
systemtap-4.4/runtime/linux/uprobes2/uprobes_x86.h:120:static unsigned long arch_hijack_uret_addr(unsigned long trampoline_addr,
systemtap-4.4/runtime/linux/uprobes2/uprobes_x86.h-121-				struct pt_regs*, struct uprobe_task*);
##############################################
systemtap-4.4/runtime/stack-arm.c-56-
systemtap-4.4/runtime/stack-arm.c:57:		_stp_print_addr((unsigned long)pc, verbose, NULL);
systemtap-4.4/runtime/stack-arm.c-58-
##############################################
systemtap-4.4/runtime/stack-ia64.c-29-		}
systemtap-4.4/runtime/stack-ia64.c:30:		_stp_print_addr(ip, para->verbose, NULL);
systemtap-4.4/runtime/stack-ia64.c-31-        } while (unw_unwind(info) >= 0);
##############################################
systemtap-4.4/runtime/stack-s390.c-26-			_stp_printf("[%p] [%p] ", (int64_t)sp, (int64_t)ip);
systemtap-4.4/runtime/stack-s390.c:27:		_stp_print_addr((int64_t)ip, verbose, NULL);
systemtap-4.4/runtime/stack-s390.c-28-		/* Follow the back_chain */
##############################################
systemtap-4.4/runtime/stack-s390.c-39-				_stp_printf("[%p] [%p] ", (int64_t)sp, (int64_t)ip);
systemtap-4.4/runtime/stack-s390.c:40:			_stp_print_addr((int64_t)ip, verbose, NULL);
systemtap-4.4/runtime/stack-s390.c-41-		}
##############################################
systemtap-4.4/runtime/stack-s390.c-48-			_stp_printf("[%p] [%p] ", (int64_t)sp, (int64_t)ip);
systemtap-4.4/runtime/stack-s390.c:49:		_stp_print_addr((int64_t)ip, verbose, NULL);
systemtap-4.4/runtime/stack-s390.c-50-		low = sp;
##############################################
systemtap-4.4/runtime/stack.c-139-	else if (sdata->levels > 0) {
systemtap-4.4/runtime/stack.c:140:		_stp_print_addr(addr,
systemtap-4.4/runtime/stack.c-141-				sdata->flags | (reliable ? 0 :_STP_SYM_INEXACT),
##############################################
systemtap-4.4/runtime/stack.c-192-		dbug_unwind(1, "no fallback kernel stacktrace (giving up)\n");
systemtap-4.4/runtime/stack.c:193:		_stp_print_addr(0, sym_flags | _STP_SYM_INEXACT, NULL);
systemtap-4.4/runtime/stack.c-194-		return;
##############################################
systemtap-4.4/runtime/stack.c-202-		dbug_unwind(1, "no fallback kernel stacktrace (giving up)\n");
systemtap-4.4/runtime/stack.c:203:		_stp_print_addr(0, sym_flags | _STP_SYM_INEXACT, NULL);
systemtap-4.4/runtime/stack.c-204-		return;
##############################################
systemtap-4.4/runtime/stack.c-225-#ifdef CONFIG_FRAME_POINTER
systemtap-4.4/runtime/stack.c:226:		_stp_print_addr((unsigned long) entries[i], sym_flags, NULL);
systemtap-4.4/runtime/stack.c-227-#else
systemtap-4.4/runtime/stack.c:228:		_stp_print_addr((unsigned long) entries[i], sym_flags | _STP_SYM_INEXACT,
systemtap-4.4/runtime/stack.c-229-				NULL);
##############################################
systemtap-4.4/runtime/stack.c-391-	/* check if unwind hit an error */
systemtap-4.4/runtime/stack.c:392:	if (ret || _stp_lookup_bad_addr(VERIFY_READ, sizeof(long),
systemtap-4.4/runtime/stack.c-393-					UNW_PC(info), STP_KERNEL_DS)) {
##############################################
systemtap-4.4/runtime/stack.c-451-		_stp_print("Returning from: ");
systemtap-4.4/runtime/stack.c:452:		_stp_print_addr((unsigned long)_stp_probe_addr_r(c->ips.krp.pi),
systemtap-4.4/runtime/stack.c-453-				sym_flags, NULL);
##############################################
systemtap-4.4/runtime/stack.c-455-	}
systemtap-4.4/runtime/stack.c:456:	_stp_print_addr(_stp_stack_kernel_get(c, 0), sym_flags, NULL);
systemtap-4.4/runtime/stack.c-457-
##############################################
systemtap-4.4/runtime/stack.c-467-		} else {
systemtap-4.4/runtime/stack.c:468:			_stp_print_addr(l, sym_flags, NULL);
systemtap-4.4/runtime/stack.c-469-		}
##############################################
systemtap-4.4/runtime/stack.c-579-	/* check if unwind hit an error */
systemtap-4.4/runtime/stack.c:580:	if (ret || _stp_lookup_bad_addr(VERIFY_READ, sizeof(long),
systemtap-4.4/runtime/stack.c-581-					UNW_PC(info), STP_USER_DS)) {
##############################################
systemtap-4.4/runtime/stack.c-655-			/* ... otherwise this dereference fails */
systemtap-4.4/runtime/stack.c:656:			_stp_print_addr(ri->rp->u.vaddr, sym_flags, current);
systemtap-4.4/runtime/stack.c-657-			_stp_print("Returning to  : ");
##############################################
systemtap-4.4/runtime/stack.c-660-#endif
systemtap-4.4/runtime/stack.c:661:	_stp_print_addr(_stp_stack_user_get(c, 0), sym_flags, current);
systemtap-4.4/runtime/stack.c-662-
##############################################
systemtap-4.4/runtime/stack.c-667-		if (l == 0) break; // No user space fallback available
systemtap-4.4/runtime/stack.c:668:		_stp_print_addr(l, sym_flags, current);
systemtap-4.4/runtime/stack.c-669-	}
##############################################
systemtap-4.4/runtime/sym.c-891- * a probe because it is too time-consuming. Use at module exit time. */
systemtap-4.4/runtime/sym.c:892:static int _stp_snprint_addr(char *str, size_t len, unsigned long address,
systemtap-4.4/runtime/sym.c-893-			     int flags, struct task_struct *task)
##############################################
systemtap-4.4/runtime/sym.c-1070-
systemtap-4.4/runtime/sym.c:1071:static void _stp_print_addr(unsigned long address, int flags,
systemtap-4.4/runtime/sym.c-1072-			    struct task_struct *task)
systemtap-4.4/runtime/sym.c-1073-{
systemtap-4.4/runtime/sym.c:1074:  _stp_snprint_addr(NULL, 0, address, flags, task);
systemtap-4.4/runtime/sym.c-1075-}
##############################################
systemtap-4.4/scripts/spin-rawhide-23-
systemtap-4.4/scripts/spin-rawhide:24:SRCDIR=`dirname $0`/..; SRCDIR=`realpath $SRCDIR`
systemtap-4.4/scripts/spin-rawhide-25-DIR=`mktemp -d stapXXX -p /tmp/`; cd $DIR
##############################################
systemtap-4.4/scripts/spin-rawhide-45-STAP_MAJOR_VERSION=`grep "^Version:" systemtap.spec`
systemtap-4.4/scripts/spin-rawhide:46:CHANGELOG_VERSION=`echo $STAP_MAJOR_VERSION | cut -f2 -d" "`
systemtap-4.4/scripts/spin-rawhide:47:#GIT_VERSION_TAG=`echo 0.$(git describe --abbrev=12 | rev | cut -f1,2 -d- --output-delimiter=. | rev)`
systemtap-4.4/scripts/spin-rawhide-48-GIT_DESCRIBE=`git describe | rev | cut -f1 -d"g" | rev`
systemtap-4.4/scripts/spin-rawhide:49:GIT_VERSION_TAG=`echo 0.${TAG_DATE}git${GIT_DESCRIBE}`
systemtap-4.4/scripts/spin-rawhide-50-### lets do a sanity check first
##############################################
systemtap-4.4/scripts/stap2perf-34-        kernel.function*)
systemtap-4.4/scripts/stap2perf:35:            fn=`param1 "$pp"`
systemtap-4.4/scripts/stap2perf:36:            nr=`expr "$pp" : '.*\.return.*'`
systemtap-4.4/scripts/stap2perf-37-            if [ $nr -eq 0 ]; then
##############################################
systemtap-4.4/scripts/stap2perf-44-        process*function*)
systemtap-4.4/scripts/stap2perf:45:            proc=`param1 "$pp"`
systemtap-4.4/scripts/stap2perf:46:            procbn=`basename $proc`
systemtap-4.4/scripts/stap2perf:47:            fn=`param2 "$pp"`
systemtap-4.4/scripts/stap2perf:48:            nr=`expr "$pp" : '.*\.return.*'`
systemtap-4.4/scripts/stap2perf-49-            if [ $nr -eq 0 ]; then
##############################################
systemtap-4.4/scripts/tracepoint-diff-29-    | awk '{print $1}' | sort > $tmp/perf
systemtap-4.4/scripts/tracepoint-diff:30:perf_tracepoints=`wc -l $tmp/perf | cut -f1 -d' '`
systemtap-4.4/scripts/tracepoint-diff-31-echo "  perf found $perf_tracepoints tracepoints"
##############################################
systemtap-4.4/scripts/tracepoint-diff-35-    | sort > $tmp/stap
systemtap-4.4/scripts/tracepoint-diff:36:stap_tracepoints=`wc -l $tmp/stap | cut -f1 -d' '`
systemtap-4.4/scripts/tracepoint-diff-37-echo "  stap found $stap_tracepoints tracepoints"
##############################################
systemtap-4.4/stap-exporter/Makefile.in-52-  { \
systemtap-4.4/stap-exporter/Makefile.in:53:    flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
systemtap-4.4/stap-exporter/Makefile.in-54-  }; \
##############################################
systemtap-4.4/stap-exporter/Makefile.in-110-CONFIG_CLEAN_VPATH_FILES =
systemtap-4.4/stap-exporter/Makefile.in:111:am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
systemtap-4.4/stap-exporter/Makefile.in-112-am__vpath_adj = case $$p in \
systemtap-4.4/stap-exporter/Makefile.in:113:    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
systemtap-4.4/stap-exporter/Makefile.in-114-    *) f=$$p;; \
systemtap-4.4/stap-exporter/Makefile.in-115-  esac;
systemtap-4.4/stap-exporter/Makefile.in:116:am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
systemtap-4.4/stap-exporter/Makefile.in-117-am__install_max = 40
systemtap-4.4/stap-exporter/Makefile.in-118-am__nobase_strip_setup = \
systemtap-4.4/stap-exporter/Makefile.in:119:  srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
systemtap-4.4/stap-exporter/Makefile.in-120-am__nobase_strip = \
##############################################
systemtap-4.4/stap-exporter/Makefile.in-444-	test -n "$(man8dir)" \
systemtap-4.4/stap-exporter/Makefile.in:445:	  && test -n "`echo $$list1$$list2`" \
systemtap-4.4/stap-exporter/Makefile.in-446-	  || exit 0; \
##############################################
systemtap-4.4/stap-exporter/default/EXAMPLE-3-# link to this generic shell script to invoke a non-guru stap example
systemtap-4.4/stap-exporter/default/EXAMPLE:4:exec stap -v --example $@ `basename $0 | sed -e s,autostart-,,`
##############################################
systemtap-4.4/stap-exporter/default/EXAMPLE-BPF-3-# link to this generic shell script to invoke a non-guru stap example
systemtap-4.4/stap-exporter/default/EXAMPLE-BPF:4:exec stap --bpf -v --example $@ `basename $0 | sed -e s,autostart-,,`
##############################################
systemtap-4.4/stap-exporter/default/EXAMPLE_NOERROR-3-# link to this generic shell script to invoke a non-guru stap example
systemtap-4.4/stap-exporter/default/EXAMPLE_NOERROR:4:exec stap -v --suppress-handler-errors --example $@ `basename $0 | sed -e s,autostart-,,`
##############################################
systemtap-4.4/stap-exporter/default/autostart-also_ran.stp-3-# link to this generic shell script to invoke a non-guru stap example
systemtap-4.4/stap-exporter/default/autostart-also_ran.stp:4:exec stap -v --example $@ `basename $0 | sed -e s,autostart-,,`
##############################################
systemtap-4.4/stap-exporter/default/errno.stp-3-# link to this generic shell script to invoke a non-guru stap example
systemtap-4.4/stap-exporter/default/errno.stp:4:exec stap -v --example $@ `basename $0 | sed -e s,autostart-,,`
##############################################
systemtap-4.4/stap-exporter/default/syscallerrorsbypid.stp-3-# link to this generic shell script to invoke a non-guru stap example
systemtap-4.4/stap-exporter/default/syscallerrorsbypid.stp:4:exec stap -v --suppress-handler-errors --example $@ `basename $0 | sed -e s,autostart-,,`
##############################################
systemtap-4.4/stap-exporter/default/syscalllatency.stp-3-# link to this generic shell script to invoke a non-guru stap example
systemtap-4.4/stap-exporter/default/syscalllatency.stp:4:exec stap -v --example $@ `basename $0 | sed -e s,autostart-,,`
##############################################
systemtap-4.4/stap-exporter/default/syscallsbypid.stp-3-# link to this generic shell script to invoke a non-guru stap example
systemtap-4.4/stap-exporter/default/syscallsbypid.stp:4:exec stap -v --suppress-handler-errors --example $@ `basename $0 | sed -e s,autostart-,,`
##############################################
systemtap-4.4/stap-exporter/default/syscallsrw.stp-3-# link to this generic shell script to invoke a non-guru stap example
systemtap-4.4/stap-exporter/default/syscallsrw.stp:4:exec stap --bpf -v --example $@ `basename $0 | sed -e s,autostart-,,`
##############################################
systemtap-4.4/stap-exporter/default/timeout.stp-3-# link to this generic shell script to invoke a non-guru stap example
systemtap-4.4/stap-exporter/default/timeout.stp:4:exec stap -v --example $@ `basename $0 | sed -e s,autostart-,,`
##############################################
systemtap-4.4/stap-exporter/default/topsys.stp-3-# link to this generic shell script to invoke a non-guru stap example
systemtap-4.4/stap-exporter/default/topsys.stp:4:exec stap -v --example $@ `basename $0 | sed -e s,autostart-,,`
##############################################
systemtap-4.4/stap-report-114-do
systemtap-4.4/stap-report:115:    for file in $dir/vmlinuz-`uname -r` $dir/vmlinuz $dir/vmlinux-`uname -r` $dir/vmlinux `locate -r '/vmlinu[xz]' 2>/dev/null`
systemtap-4.4/stap-report-116-    do
##############################################
systemtap-4.4/stap-server-207-      -a)
systemtap-4.4/stap-server:208:	SERVER_CMDS+=("ARCH=\"`quote_for_cmd "$2"`\"")
systemtap-4.4/stap-server-209-        shift 1
##############################################
systemtap-4.4/stap-server-211-      -B)
systemtap-4.4/stap-server:212:	SERVER_CMDS+=("BUILD+=(\"`quote_for_cmd "$2"`\")")
systemtap-4.4/stap-server-213-        shift 1
##############################################
systemtap-4.4/stap-server-222-      -D)
systemtap-4.4/stap-server:223:	SERVER_CMDS+=("DEFINE+=(\"`quote_for_cmd "$2"`\")")
systemtap-4.4/stap-server-224-        shift 1
##############################################
systemtap-4.4/stap-server-226-      -I)
systemtap-4.4/stap-server:227:	SERVER_CMDS+=("INCLUDE+=(\"`quote_for_cmd "$2"`\")")
systemtap-4.4/stap-server-228-        shift 1
##############################################
systemtap-4.4/stap-server-244-      -R)
systemtap-4.4/stap-server:245:	SERVER_CMDS+=("RUNTIME=\"`quote_for_cmd "$2"`\"")
systemtap-4.4/stap-server-246-        shift 1
##############################################
systemtap-4.4/stap-server-248-      -u)
systemtap-4.4/stap-server:249:	SERVER_CMDS+=("USER=\"`quote_for_cmd "$2"`\"")
systemtap-4.4/stap-server-250-        shift 1
##############################################
systemtap-4.4/stap-server-300-    if test -n "${OPT_LOG[$OPT_LOG_IX]}"; then
systemtap-4.4/stap-server:301:	SERVER_CMDS+=("LOG=\"`quote_for_cmd "${OPT_LOG[$OPT_LOG_IX]}"`\"")
systemtap-4.4/stap-server-302-	OPT_LOG_IX=$(($OPT_LOG_IX + 1))
systemtap-4.4/stap-server-303-    else
systemtap-4.4/stap-server:304:	SERVER_CMDS+=("LOG=\"`quote_for_cmd "$LOG_FILE"`\"")
systemtap-4.4/stap-server-305-    fi
##############################################
systemtap-4.4/stap-server-307-    if test -n "${OPT_PORT[$OPT_PORT_IX]}"; then
systemtap-4.4/stap-server:308:	SERVER_CMDS+=("PORT=\"`quote_for_cmd "${OPT_PORT[$OPT_PORT_IX]}"`\"")
systemtap-4.4/stap-server-309-	OPT_PORT_IX=$(($OPT_PORT_IX + 1))
##############################################
systemtap-4.4/stap-server-314-    if test -n "${OPT_SSL[$OPT_SSL_IX]}"; then
systemtap-4.4/stap-server:315:	SERVER_CMDS+=("SSL=\"`quote_for_cmd "${OPT_SSL[$OPT_SSL_IX]}"`\"")
systemtap-4.4/stap-server-316-	OPT_SSL_IX=$(($OPT_SSL_IX + 1))
##############################################
systemtap-4.4/stap-server-321-    if test -n "${OPT_MAXTHREADS[$OPT_MAXTHREADS_IX]}"; then
systemtap-4.4/stap-server:322:	SERVER_CMDS+=("MAXTHREADS=\"`quote_for_cmd "${OPT_MAXTHREADS[$OPT_MAXTHREADS_IX]}"`\"")
systemtap-4.4/stap-server-323-	OPT_MAXTHREADS_IX=$(($OPT_MAXTHREADS_IX + 1))
##############################################
systemtap-4.4/stap-server-328-    if test -n "${OPT_MAXREQSIZE[$OPT_MAXREQSIZE_IX]}"; then
systemtap-4.4/stap-server:329:	SERVER_CMDS+=("MAXREQSIZE=\"`quote_for_cmd "${OPT_MAXREQSIZE[$OPT_MAXREQSIZE_IX]}"`\"")
systemtap-4.4/stap-server-330-	OPT_MAXREQSIZE_IX=$(($OPT_MAXREQSIZE_IX + 1))
##############################################
systemtap-4.4/stap-server-335-    if test -n "${OPT_MAXCOMPRESSEDREQ[$OPT_MAXCOMPRESSEDREQ_IX]}"; then
systemtap-4.4/stap-server:336:	SERVER_CMDS+=("MAXCOMPRESSEDREQ=\"`quote_for_cmd "${OPT_MAXCOMPRESSEDREQ[$OPT_MAXCOMPRESSEDREQ_IX]}"`\"")
systemtap-4.4/stap-server-337-	OPT_MAXCOMPRESSEDREQ_IX=$(($OPT_MAXCOMPRESSEDREQ_IX + 1))
##############################################
systemtap-4.4/stap-server-357-  # Is there a running server with this nickname?
systemtap-4.4/stap-server:358:  local pid=`get_server_pid_by_nickname "$target_NICKNAME"`
systemtap-4.4/stap-server-359-  if [ -n "$pid" ]; then
##############################################
systemtap-4.4/stap-server-377-  # NICKNAME_NOT_FOUND=... command to the configuration commands.
systemtap-4.4/stap-server:378:  SERVER_CMDS+=("NICKNAME_NOT_FOUND=\"`quote_for_cmd "$target_NICKNAME"`\"")
systemtap-4.4/stap-server-379-}
##############################################
systemtap-4.4/stap-server-403-        # build tree is used to pull out the version information
systemtap-4.4/stap-server:404:	local kernel_release=`cat $version_file_name 2>/dev/null`
systemtap-4.4/stap-server-405-	if test "X$kernel_release" = "X"; then
##############################################
systemtap-4.4/stap-server-408-	fi
systemtap-4.4/stap-server:409:	SERVER_CMDS+=("RELEASE+=(\"`quote_for_cmd "$1"`\")") # pass the path as-is
systemtap-4.4/stap-server-410-	return 0
##############################################
systemtap-4.4/stap-server-413-    # kernel release specified directly
systemtap-4.4/stap-server:414:    SERVER_CMDS+=("RELEASE+=(\"`quote_for_cmd "$1"`\")")
systemtap-4.4/stap-server-415-    return 0
##############################################
systemtap-4.4/stap-server-439-    # Add commands based on the current state to SERVER_CMDS
systemtap-4.4/stap-server:440:    SERVER_CMDS+=("ARCH=\"`quote_for_cmd "$ARCH"`\"")
systemtap-4.4/stap-server-441-    SERVER_CMDS+=("RELEASE=()")
systemtap-4.4/stap-server-442-    for r in "${RELEASE[@]}"; do
systemtap-4.4/stap-server:443:	SERVER_CMDS+=("RELEASE+=(\"`quote_for_cmd "$r"`\")")
systemtap-4.4/stap-server-444-    done
systemtap-4.4/stap-server:445:    SERVER_CMDS+=("RUNTIME=\"`quote_for_cmd "$RUNTIME"`\"")
systemtap-4.4/stap-server-446-    SERVER_CMDS+=("DEFINE=()")
systemtap-4.4/stap-server-447-    for d in "${DEFINE[@]}"; do
systemtap-4.4/stap-server:448:	SERVER_CMDS+=("DEFINE+=(\"`quote_for_cmd "$d"`\")")
systemtap-4.4/stap-server-449-    done
##############################################
systemtap-4.4/stap-server-451-    for i in "${INCLUDE[@]}"; do
systemtap-4.4/stap-server:452:	SERVER_CMDS+=("INCLUDE+=(\"`quote_for_cmd "$i"`\")")
systemtap-4.4/stap-server-453-    done
##############################################
systemtap-4.4/stap-server-455-    for b in "${BUILD[@]}"; do
systemtap-4.4/stap-server:456:	SERVER_CMDS+=("BUILD+=(\"`quote_for_cmd "$b"`\")")
systemtap-4.4/stap-server-457-    done
systemtap-4.4/stap-server:458:    SERVER_CMDS+=("USER=\"`quote_for_cmd "$USER"`\"")
systemtap-4.4/stap-server:459:    SERVER_CMDS+=("NICKNAME=\"`quote_for_cmd "$NICKNAME"`\"")
systemtap-4.4/stap-server:460:    SERVER_CMDS+=("LOG=\"`quote_for_cmd "$LOG"`\"")
systemtap-4.4/stap-server:461:    test -n "$PORT" && SERVER_CMDS+=("PORT=\"`quote_for_cmd "$PORT"`\"")
systemtap-4.4/stap-server:462:    test -n "$SSL" && SERVER_CMDS+=("SSL=\"`quote_for_cmd "$SSL"`\"")
systemtap-4.4/stap-server:463:    test -n "$MAXTHREADS" && SERVER_CMDS+=("MAXTHREADS=\"`quote_for_cmd "$MAXTHREADS"`\"")
systemtap-4.4/stap-server:464:    test -n "$MAXREQSIZE" && SERVER_CMDS+=("MAXREQSIZE=\"`quote_for_cmd "$MAXREQSIZE"`\"")
systemtap-4.4/stap-server:465:    test -n "$MAXCOMPRESSEDREQ" && SERVER_CMDS+=("MAXCOMPRESSEDREQ=\"`quote_for_cmd "$MAXCOMPRESSEDREQ"`\"")
systemtap-4.4/stap-server-466-}
##############################################
systemtap-4.4/stap-server-469-    # Echo the current state.
systemtap-4.4/stap-server:470:    echo -n "-a \"`quote_for_cmd "$ARCH"`\""
systemtap-4.4/stap-server-471-    for r in "${RELEASE[@]}"; do
systemtap-4.4/stap-server:472:	echo -n " -r \"`quote_for_cmd "$r"`\""
systemtap-4.4/stap-server-473-    done
systemtap-4.4/stap-server:474:    test -n "$RUNTIME" && echo -n " -R \"`quote_for_cmd "$RUNTIME"`\""
systemtap-4.4/stap-server-475-    for d in "${DEFINE[@]}"; do
systemtap-4.4/stap-server:476:	echo -n " -D \"`quote_for_cmd "$d"`\""
systemtap-4.4/stap-server-477-    done
systemtap-4.4/stap-server-478-    for i in "${INCLUDE[@]}"; do
systemtap-4.4/stap-server:479:	echo -n " -I \"`quote_for_cmd "$i"`\""
systemtap-4.4/stap-server-480-    done
systemtap-4.4/stap-server-481-    for b in "${BUILD[@]}"; do
systemtap-4.4/stap-server:482:	echo -n " -B \"`quote_for_cmd "$b"`\""
systemtap-4.4/stap-server-483-    done
systemtap-4.4/stap-server:484:    echo -n " -u \"`quote_for_cmd "$USER"`\""
systemtap-4.4/stap-server:485:    test -n "$NICKNAME" && echo -n " -n \"`quote_for_cmd "$NICKNAME"`\""
systemtap-4.4/stap-server:486:    echo -n " --log \"`quote_for_cmd "$LOG"`\""
systemtap-4.4/stap-server:487:    test -n "$PORT" && echo -n " --port \"`quote_for_cmd "$PORT"`\""
systemtap-4.4/stap-server:488:    test -n "$SSL" && echo -n " --ssl \"`quote_for_cmd "$SSL"`\""
systemtap-4.4/stap-server:489:    test -n "$MAXTHREADS" && echo -n " --max-threads \"`quote_for_cmd "$MAXTHREADS"`\""
systemtap-4.4/stap-server:490:    test -n "$MAXREQSIZE" && echo -n " --max-request-size \"`quote_for_cmd "$MAXREQSIZE"`\""
systemtap-4.4/stap-server:491:    test -n "$MAXCOMPRESSEDREQ" && echo -n " --max-compressed-request \"`quote_for_cmd "$MAXCOMPRESSEDREQ"`\""
systemtap-4.4/stap-server-492-    echo
##############################################
systemtap-4.4/stap-server-516-prepare_log_dir () {
systemtap-4.4/stap-server:517:  local log_path=`dirname "$1"`
systemtap-4.4/stap-server-518-  if [ ! -d "$log_path" ]; then
##############################################
systemtap-4.4/stap-server-805-	test "X$MAXCOMPRESSEDREQ"   = "X$target_MAXCOMPRESSEDREQ"   || continue
systemtap-4.4/stap-server:806:	echo `basename "$f" | sed 's/.stat//'` # Server has a pid
systemtap-4.4/stap-server-807-	return
##############################################
systemtap-4.4/stap-server-836-	test "X$NICKNAME" = "X$target_NICKNAME" || continue
systemtap-4.4/stap-server:837:	echo `basename "$f" | sed 's/\.stat//'` # Server with nickname was found
systemtap-4.4/stap-server-838-	return
##############################################
systemtap-4.4/stap-server-884-    if [ $? -ne 0 ]; then
systemtap-4.4/stap-server:885:	echo $"Failed to make log directory (`dirname "$LOG"`)" >&2
systemtap-4.4/stap-server-886-	exit 1
##############################################
systemtap-4.4/stap-server-889-    # Construct the server start command.
systemtap-4.4/stap-server:890:    local server_cmd="$STAP_START_SERVER -a \"`quote_for_cmd "$ARCH"`\" $OPT_OTHER"
systemtap-4.4/stap-server-891-    for r in "${RELEASE[@]}"; do
systemtap-4.4/stap-server:892:        server_cmd="$server_cmd -r \"`quote_for_cmd "$r"`\""
systemtap-4.4/stap-server-893-    done
systemtap-4.4/stap-server-894-    for b in "${BUILD[@]}"; do
systemtap-4.4/stap-server:895:	server_cmd="$server_cmd -B \"`quote_for_cmd "$b"`\""
systemtap-4.4/stap-server-896-    done
systemtap-4.4/stap-server-897-    for i in "${INCLUDE[@]}"; do
systemtap-4.4/stap-server:898:	server_cmd="$server_cmd -I \"`quote_for_cmd "$i"`\""
systemtap-4.4/stap-server-899-    done
systemtap-4.4/stap-server-900-    for d in "${DEFINE[@]}"; do
systemtap-4.4/stap-server:901:	server_cmd="$server_cmd -D \"`quote_for_cmd "$d"`\""
systemtap-4.4/stap-server-902-    done
systemtap-4.4/stap-server:903:    test -n "$RUNTIME" && server_cmd="$server_cmd -R \"`quote_for_cmd "$RUNTIME"`\""
systemtap-4.4/stap-server:904:    server_cmd="$server_cmd --log=\"`quote_for_cmd "$LOG"`\""
systemtap-4.4/stap-server:905:    test -n "$PORT" && server_cmd="$server_cmd --port \"`quote_for_cmd "$PORT"`\""
systemtap-4.4/stap-server:906:    test -n "$SSL" && server_cmd="$server_cmd --ssl \"`quote_for_cmd "$SSL"`\""
systemtap-4.4/stap-server:907:    test -n "$MAXTHREADS" && server_cmd="$server_cmd --max-threads \"`quote_for_cmd "$MAXTHREADS"`\""
systemtap-4.4/stap-server:908:    test -n "$MAXREQSIZE" && server_cmd="$server_cmd --max-request-size \"`quote_for_cmd "$MAXREQSIZE"`\""
systemtap-4.4/stap-server:909:    test -n "$MAXCOMPRESSEDREQ" && server_cmd="$server_cmd --max-compressed-request \"`quote_for_cmd "$MAXCOMPRESSEDREQ"`\""
systemtap-4.4/stap-server-910-
##############################################
systemtap-4.4/stap-server-913-    if [ "$USER" != "`id -un`" ]; then
systemtap-4.4/stap-server:914:	pid=`runuser -s /bin/bash - $USER -c "$server_cmd"`
systemtap-4.4/stap-server-915-    else
systemtap-4.4/stap-server:916:	pid=`eval $server_cmd`
systemtap-4.4/stap-server-917-    fi
##############################################
systemtap-4.4/stap-server-1282-if [ $? -ne 0 ]; then
systemtap-4.4/stap-server:1283:    echo $"Failed to make log directory (`dirname $LOG_FILE`)" >&2
systemtap-4.4/stap-server-1284-    exit 1
##############################################
systemtap-4.4/stap-serverd.cxx-2678-  memset (& addr, 0, sizeof(addr));
systemtap-4.4/stap-serverd.cxx:2679:  prStatus = PR_InitializeNetAddr (PR_IpAddrAny, port, & addr);
systemtap-4.4/stap-serverd.cxx-2680-  addr.ipv6.family = PR_AF_INET6;
##############################################
systemtap-4.4/stap-serverd.cxx-2682-  // addr.inet.ip = PR_htonl(PR_INADDR_ANY);
systemtap-4.4/stap-serverd.cxx:2683:  PR_StringToNetAddr ("::", & addr);
systemtap-4.4/stap-serverd.cxx:2684:  // PR_StringToNetAddr ("fe80::5eff:35ff:fe07:55ca", & addr);
systemtap-4.4/stap-serverd.cxx:2685:  // PR_StringToNetAddr ("::1", & addr);
systemtap-4.4/stap-serverd.cxx-2686-  addr.ipv6.port = PR_htons (port);
##############################################
systemtap-4.4/stapbpf/Makefile.in-52-  { \
systemtap-4.4/stapbpf/Makefile.in:53:    flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
systemtap-4.4/stapbpf/Makefile.in-54-  }; \
##############################################
systemtap-4.4/stapbpf/Makefile.in-178-  esac
systemtap-4.4/stapbpf/Makefile.in:179:am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
systemtap-4.4/stapbpf/Makefile.in-180-am__vpath_adj = case $$p in \
systemtap-4.4/stapbpf/Makefile.in:181:    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
systemtap-4.4/stapbpf/Makefile.in-182-    *) f=$$p;; \
systemtap-4.4/stapbpf/Makefile.in-183-  esac;
systemtap-4.4/stapbpf/Makefile.in:184:am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
systemtap-4.4/stapbpf/Makefile.in-185-am__install_max = 40
systemtap-4.4/stapbpf/Makefile.in-186-am__nobase_strip_setup = \
systemtap-4.4/stapbpf/Makefile.in:187:  srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
systemtap-4.4/stapbpf/Makefile.in-188-am__nobase_strip = \
##############################################
systemtap-4.4/stapbpf/Makefile.in-561-.c.o:
systemtap-4.4/stapbpf/Makefile.in:562:@am__fastdepCC_TRUE@	$(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
systemtap-4.4/stapbpf/Makefile.in-563-@am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
##############################################
systemtap-4.4/stapbpf/Makefile.in-569-.c.obj:
systemtap-4.4/stapbpf/Makefile.in:570:@am__fastdepCC_TRUE@	$(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\
systemtap-4.4/stapbpf/Makefile.in:571:@am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\
systemtap-4.4/stapbpf/Makefile.in-572-@am__fastdepCC_TRUE@	$(am__mv) $$depbase.Tpo $$depbase.Po
##############################################
systemtap-4.4/stapbpf/Makefile.in-574-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/stapbpf/Makefile.in:575:@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
systemtap-4.4/stapbpf/Makefile.in-576-
systemtap-4.4/stapbpf/Makefile.in-577-stapbpf-libbpf.o: libbpf.c
systemtap-4.4/stapbpf/Makefile.in:578:@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stapbpf_CPPFLAGS) $(CPPFLAGS) $(stapbpf_CFLAGS) $(CFLAGS) -MT stapbpf-libbpf.o -MD -MP -MF $(DEPDIR)/stapbpf-libbpf.Tpo -c -o stapbpf-libbpf.o `test -f 'libbpf.c' || echo '$(srcdir)/'`libbpf.c
systemtap-4.4/stapbpf/Makefile.in-579-@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stapbpf-libbpf.Tpo $(DEPDIR)/stapbpf-libbpf.Po
##############################################
systemtap-4.4/stapbpf/Makefile.in-581-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/stapbpf/Makefile.in:582:@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stapbpf_CPPFLAGS) $(CPPFLAGS) $(stapbpf_CFLAGS) $(CFLAGS) -c -o stapbpf-libbpf.o `test -f 'libbpf.c' || echo '$(srcdir)/'`libbpf.c
systemtap-4.4/stapbpf/Makefile.in-583-
systemtap-4.4/stapbpf/Makefile.in-584-stapbpf-libbpf.obj: libbpf.c
systemtap-4.4/stapbpf/Makefile.in:585:@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stapbpf_CPPFLAGS) $(CPPFLAGS) $(stapbpf_CFLAGS) $(CFLAGS) -MT stapbpf-libbpf.obj -MD -MP -MF $(DEPDIR)/stapbpf-libbpf.Tpo -c -o stapbpf-libbpf.obj `if test -f 'libbpf.c'; then $(CYGPATH_W) 'libbpf.c'; else $(CYGPATH_W) '$(srcdir)/libbpf.c'; fi`
systemtap-4.4/stapbpf/Makefile.in-586-@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stapbpf-libbpf.Tpo $(DEPDIR)/stapbpf-libbpf.Po
##############################################
systemtap-4.4/stapbpf/Makefile.in-588-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/stapbpf/Makefile.in:589:@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stapbpf_CPPFLAGS) $(CPPFLAGS) $(stapbpf_CFLAGS) $(CFLAGS) -c -o stapbpf-libbpf.obj `if test -f 'libbpf.c'; then $(CYGPATH_W) 'libbpf.c'; else $(CYGPATH_W) '$(srcdir)/libbpf.c'; fi`
systemtap-4.4/stapbpf/Makefile.in-590-
systemtap-4.4/stapbpf/Makefile.in-591-.cxx.o:
systemtap-4.4/stapbpf/Makefile.in:592:@am__fastdepCXX_TRUE@	$(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
systemtap-4.4/stapbpf/Makefile.in-593-@am__fastdepCXX_TRUE@	$(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
##############################################
systemtap-4.4/stapbpf/Makefile.in-599-.cxx.obj:
systemtap-4.4/stapbpf/Makefile.in:600:@am__fastdepCXX_TRUE@	$(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\
systemtap-4.4/stapbpf/Makefile.in:601:@am__fastdepCXX_TRUE@	$(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\
systemtap-4.4/stapbpf/Makefile.in-602-@am__fastdepCXX_TRUE@	$(am__mv) $$depbase.Tpo $$depbase.Po
##############################################
systemtap-4.4/stapbpf/Makefile.in-604-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/stapbpf/Makefile.in:605:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
systemtap-4.4/stapbpf/Makefile.in-606-
systemtap-4.4/stapbpf/Makefile.in-607-stapbpf-stapbpf.o: stapbpf.cxx
systemtap-4.4/stapbpf/Makefile.in:608:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stapbpf_CPPFLAGS) $(CPPFLAGS) $(stapbpf_CXXFLAGS) $(CXXFLAGS) -MT stapbpf-stapbpf.o -MD -MP -MF $(DEPDIR)/stapbpf-stapbpf.Tpo -c -o stapbpf-stapbpf.o `test -f 'stapbpf.cxx' || echo '$(srcdir)/'`stapbpf.cxx
systemtap-4.4/stapbpf/Makefile.in-609-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stapbpf-stapbpf.Tpo $(DEPDIR)/stapbpf-stapbpf.Po
##############################################
systemtap-4.4/stapbpf/Makefile.in-611-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/stapbpf/Makefile.in:612:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stapbpf_CPPFLAGS) $(CPPFLAGS) $(stapbpf_CXXFLAGS) $(CXXFLAGS) -c -o stapbpf-stapbpf.o `test -f 'stapbpf.cxx' || echo '$(srcdir)/'`stapbpf.cxx
systemtap-4.4/stapbpf/Makefile.in-613-
systemtap-4.4/stapbpf/Makefile.in-614-stapbpf-stapbpf.obj: stapbpf.cxx
systemtap-4.4/stapbpf/Makefile.in:615:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stapbpf_CPPFLAGS) $(CPPFLAGS) $(stapbpf_CXXFLAGS) $(CXXFLAGS) -MT stapbpf-stapbpf.obj -MD -MP -MF $(DEPDIR)/stapbpf-stapbpf.Tpo -c -o stapbpf-stapbpf.obj `if test -f 'stapbpf.cxx'; then $(CYGPATH_W) 'stapbpf.cxx'; else $(CYGPATH_W) '$(srcdir)/stapbpf.cxx'; fi`
systemtap-4.4/stapbpf/Makefile.in-616-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stapbpf-stapbpf.Tpo $(DEPDIR)/stapbpf-stapbpf.Po
##############################################
systemtap-4.4/stapbpf/Makefile.in-618-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/stapbpf/Makefile.in:619:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stapbpf_CPPFLAGS) $(CPPFLAGS) $(stapbpf_CXXFLAGS) $(CXXFLAGS) -c -o stapbpf-stapbpf.obj `if test -f 'stapbpf.cxx'; then $(CYGPATH_W) 'stapbpf.cxx'; else $(CYGPATH_W) '$(srcdir)/stapbpf.cxx'; fi`
systemtap-4.4/stapbpf/Makefile.in-620-
systemtap-4.4/stapbpf/Makefile.in-621-stapbpf-bpfinterp.o: bpfinterp.cxx
systemtap-4.4/stapbpf/Makefile.in:622:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stapbpf_CPPFLAGS) $(CPPFLAGS) $(stapbpf_CXXFLAGS) $(CXXFLAGS) -MT stapbpf-bpfinterp.o -MD -MP -MF $(DEPDIR)/stapbpf-bpfinterp.Tpo -c -o stapbpf-bpfinterp.o `test -f 'bpfinterp.cxx' || echo '$(srcdir)/'`bpfinterp.cxx
systemtap-4.4/stapbpf/Makefile.in-623-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stapbpf-bpfinterp.Tpo $(DEPDIR)/stapbpf-bpfinterp.Po
##############################################
systemtap-4.4/stapbpf/Makefile.in-625-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/stapbpf/Makefile.in:626:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stapbpf_CPPFLAGS) $(CPPFLAGS) $(stapbpf_CXXFLAGS) $(CXXFLAGS) -c -o stapbpf-bpfinterp.o `test -f 'bpfinterp.cxx' || echo '$(srcdir)/'`bpfinterp.cxx
systemtap-4.4/stapbpf/Makefile.in-627-
systemtap-4.4/stapbpf/Makefile.in-628-stapbpf-bpfinterp.obj: bpfinterp.cxx
systemtap-4.4/stapbpf/Makefile.in:629:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stapbpf_CPPFLAGS) $(CPPFLAGS) $(stapbpf_CXXFLAGS) $(CXXFLAGS) -MT stapbpf-bpfinterp.obj -MD -MP -MF $(DEPDIR)/stapbpf-bpfinterp.Tpo -c -o stapbpf-bpfinterp.obj `if test -f 'bpfinterp.cxx'; then $(CYGPATH_W) 'bpfinterp.cxx'; else $(CYGPATH_W) '$(srcdir)/bpfinterp.cxx'; fi`
systemtap-4.4/stapbpf/Makefile.in-630-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stapbpf-bpfinterp.Tpo $(DEPDIR)/stapbpf-bpfinterp.Po
##############################################
systemtap-4.4/stapbpf/Makefile.in-632-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/stapbpf/Makefile.in:633:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stapbpf_CPPFLAGS) $(CPPFLAGS) $(stapbpf_CXXFLAGS) $(CXXFLAGS) -c -o stapbpf-bpfinterp.obj `if test -f 'bpfinterp.cxx'; then $(CYGPATH_W) 'bpfinterp.cxx'; else $(CYGPATH_W) '$(srcdir)/bpfinterp.cxx'; fi`
systemtap-4.4/stapbpf/Makefile.in-634-
systemtap-4.4/stapbpf/Makefile.in-635-../stapbpf-util.o: ../util.cxx
systemtap-4.4/stapbpf/Makefile.in:636:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stapbpf_CPPFLAGS) $(CPPFLAGS) $(stapbpf_CXXFLAGS) $(CXXFLAGS) -MT ../stapbpf-util.o -MD -MP -MF ../$(DEPDIR)/stapbpf-util.Tpo -c -o ../stapbpf-util.o `test -f '../util.cxx' || echo '$(srcdir)/'`../util.cxx
systemtap-4.4/stapbpf/Makefile.in-637-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) ../$(DEPDIR)/stapbpf-util.Tpo ../$(DEPDIR)/stapbpf-util.Po
##############################################
systemtap-4.4/stapbpf/Makefile.in-639-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/stapbpf/Makefile.in:640:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stapbpf_CPPFLAGS) $(CPPFLAGS) $(stapbpf_CXXFLAGS) $(CXXFLAGS) -c -o ../stapbpf-util.o `test -f '../util.cxx' || echo '$(srcdir)/'`../util.cxx
systemtap-4.4/stapbpf/Makefile.in-641-
systemtap-4.4/stapbpf/Makefile.in-642-../stapbpf-util.obj: ../util.cxx
systemtap-4.4/stapbpf/Makefile.in:643:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stapbpf_CPPFLAGS) $(CPPFLAGS) $(stapbpf_CXXFLAGS) $(CXXFLAGS) -MT ../stapbpf-util.obj -MD -MP -MF ../$(DEPDIR)/stapbpf-util.Tpo -c -o ../stapbpf-util.obj `if test -f '../util.cxx'; then $(CYGPATH_W) '../util.cxx'; else $(CYGPATH_W) '$(srcdir)/../util.cxx'; fi`
systemtap-4.4/stapbpf/Makefile.in-644-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) ../$(DEPDIR)/stapbpf-util.Tpo ../$(DEPDIR)/stapbpf-util.Po
##############################################
systemtap-4.4/stapbpf/Makefile.in-646-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/stapbpf/Makefile.in:647:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(stapbpf_CPPFLAGS) $(CPPFLAGS) $(stapbpf_CXXFLAGS) $(CXXFLAGS) -c -o ../stapbpf-util.obj `if test -f '../util.cxx'; then $(CYGPATH_W) '../util.cxx'; else $(CYGPATH_W) '$(srcdir)/../util.cxx'; fi`
systemtap-4.4/stapbpf/Makefile.in-648-install-man8: $(man_MANS)
##############################################
systemtap-4.4/stapbpf/Makefile.in-652-	test -n "$(man8dir)" \
systemtap-4.4/stapbpf/Makefile.in:653:	  && test -n "`echo $$list1$$list2`" \
systemtap-4.4/stapbpf/Makefile.in-654-	  || exit 0; \
##############################################
systemtap-4.4/stapbpf/Makefile.in-721-GTAGS:
systemtap-4.4/stapbpf/Makefile.in:722:	here=`$(am__cd) $(top_builddir) && pwd` \
systemtap-4.4/stapbpf/Makefile.in-723-	  && $(am__cd) $(top_srcdir) \
##############################################
systemtap-4.4/stapbpf/libbpf.c-153-        __u64 head = base->data_head;
systemtap-4.4/stapbpf/libbpf.c:154:        asm volatile ("" ::: "memory"); // memory fence
systemtap-4.4/stapbpf/libbpf.c-155-        return head;
##############################################
systemtap-4.4/stapbpf/libbpf.c-162-{
systemtap-4.4/stapbpf/libbpf.c:163:        asm volatile("" ::: "memory"); // memory fence
systemtap-4.4/stapbpf/libbpf.c-164-        base->data_tail = tail;
##############################################
systemtap-4.4/stapbpf/stapbpf.cxx-1681-      // would probably make it easier for llvm-bpf folks to transition.
systemtap-4.4/stapbpf/stapbpf.cxx:1682:      // One would only need to create symbol aliases with custom asm names.
systemtap-4.4/stapbpf/stapbpf.cxx-1683-
##############################################
systemtap-4.4/stapdyn/Makefile.in-52-  { \
systemtap-4.4/stapdyn/Makefile.in:53:    flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
systemtap-4.4/stapdyn/Makefile.in-54-  }; \
##############################################
systemtap-4.4/stapdyn/Makefile.in-183-  esac
systemtap-4.4/stapdyn/Makefile.in:184:am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
systemtap-4.4/stapdyn/Makefile.in-185-am__vpath_adj = case $$p in \
systemtap-4.4/stapdyn/Makefile.in:186:    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
systemtap-4.4/stapdyn/Makefile.in-187-    *) f=$$p;; \
systemtap-4.4/stapdyn/Makefile.in-188-  esac;
systemtap-4.4/stapdyn/Makefile.in:189:am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
systemtap-4.4/stapdyn/Makefile.in-190-am__install_max = 40
systemtap-4.4/stapdyn/Makefile.in-191-am__nobase_strip_setup = \
systemtap-4.4/stapdyn/Makefile.in:192:  srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
systemtap-4.4/stapdyn/Makefile.in-193-am__nobase_strip = \
##############################################
systemtap-4.4/stapdyn/Makefile.in-586-.cxx.o:
systemtap-4.4/stapdyn/Makefile.in:587:@am__fastdepCXX_TRUE@	$(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
systemtap-4.4/stapdyn/Makefile.in-588-@am__fastdepCXX_TRUE@	$(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
##############################################
systemtap-4.4/stapdyn/Makefile.in-594-.cxx.obj:
systemtap-4.4/stapdyn/Makefile.in:595:@am__fastdepCXX_TRUE@	$(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\
systemtap-4.4/stapdyn/Makefile.in:596:@am__fastdepCXX_TRUE@	$(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\
systemtap-4.4/stapdyn/Makefile.in-597-@am__fastdepCXX_TRUE@	$(am__mv) $$depbase.Tpo $$depbase.Po
##############################################
systemtap-4.4/stapdyn/Makefile.in-599-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/stapdyn/Makefile.in:600:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
systemtap-4.4/stapdyn/Makefile.in-601-
systemtap-4.4/stapdyn/Makefile.in-602-dynsdt-dynsdt.o: dynsdt.cxx
systemtap-4.4/stapdyn/Makefile.in:603:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(dynsdt_CPPFLAGS) $(CPPFLAGS) $(dynsdt_CXXFLAGS) $(CXXFLAGS) -MT dynsdt-dynsdt.o -MD -MP -MF $(DEPDIR)/dynsdt-dynsdt.Tpo -c -o dynsdt-dynsdt.o `test -f 'dynsdt.cxx' || echo '$(srcdir)/'`dynsdt.cxx
systemtap-4.4/stapdyn/Makefile.in-604-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/dynsdt-dynsdt.Tpo $(DEPDIR)/dynsdt-dynsdt.Po
##############################################
systemtap-4.4/stapdyn/Makefile.in-606-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/stapdyn/Makefile.in:607:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(dynsdt_CPPFLAGS) $(CPPFLAGS) $(dynsdt_CXXFLAGS) $(CXXFLAGS) -c -o dynsdt-dynsdt.o `test -f 'dynsdt.cxx' || echo '$(srcdir)/'`dynsdt.cxx
systemtap-4.4/stapdyn/Makefile.in-608-
systemtap-4.4/stapdyn/Makefile.in-609-dynsdt-dynsdt.obj: dynsdt.cxx
systemtap-4.4/stapdyn/Makefile.in:610:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(dynsdt_CPPFLAGS) $(CPPFLAGS) $(dynsdt_CXXFLAGS) $(CXXFLAGS) -MT dynsdt-dynsdt.obj -MD -MP -MF $(DEPDIR)/dynsdt-dynsdt.Tpo -c -o dynsdt-dynsdt.obj `if test -f 'dynsdt.cxx'; then $(CYGPATH_W) 'dynsdt.cxx'; else $(CYGPATH_W) '$(srcdir)/dynsdt.cxx'; fi`
systemtap-4.4/stapdyn/Makefile.in-611-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/dynsdt-dynsdt.Tpo $(DEPDIR)/dynsdt-dynsdt.Po
##############################################
systemtap-4.4/stapdyn/Makefile.in-613-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/stapdyn/Makefile.in:614:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(dynsdt_CPPFLAGS) $(CPPFLAGS) $(dynsdt_CXXFLAGS) $(CXXFLAGS) -c -o dynsdt-dynsdt.obj `if test -f 'dynsdt.cxx'; then $(CYGPATH_W) 'dynsdt.cxx'; else $(CYGPATH_W) '$(srcdir)/dynsdt.cxx'; fi`
systemtap-4.4/stapdyn/Makefile.in-615-
systemtap-4.4/stapdyn/Makefile.in-616-dynsdt-dynutil.o: dynutil.cxx
systemtap-4.4/stapdyn/Makefile.in:617:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(dynsdt_CPPFLAGS) $(CPPFLAGS) $(dynsdt_CXXFLAGS) $(CXXFLAGS) -MT dynsdt-dynutil.o -MD -MP -MF $(DEPDIR)/dynsdt-dynutil.Tpo -c -o dynsdt-dynutil.o `test -f 'dynutil.cxx' || echo '$(srcdir)/'`dynutil.cxx
systemtap-4.4/stapdyn/Makefile.in-618-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/dynsdt-dynutil.Tpo $(DEPDIR)/dynsdt-dynutil.Po
##############################################
systemtap-4.4/stapdyn/Makefile.in-620-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/stapdyn/Makefile.in:621:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(dynsdt_CPPFLAGS) $(CPPFLAGS) $(dynsdt_CXXFLAGS) $(CXXFLAGS) -c -o dynsdt-dynutil.o `test -f 'dynutil.cxx' || echo '$(srcdir)/'`dynutil.cxx
systemtap-4.4/stapdyn/Makefile.in-622-
systemtap-4.4/stapdyn/Makefile.in-623-dynsdt-dynutil.obj: dynutil.cxx
systemtap-4.4/stapdyn/Makefile.in:624:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(dynsdt_CPPFLAGS) $(CPPFLAGS) $(dynsdt_CXXFLAGS) $(CXXFLAGS) -MT dynsdt-dynutil.obj -MD -MP -MF $(DEPDIR)/dynsdt-dynutil.Tpo -c -o dynsdt-dynutil.obj `if test -f 'dynutil.cxx'; then $(CYGPATH_W) 'dynutil.cxx'; else $(CYGPATH_W) '$(srcdir)/dynutil.cxx'; fi`
systemtap-4.4/stapdyn/Makefile.in-625-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/dynsdt-dynutil.Tpo $(DEPDIR)/dynsdt-dynutil.Po
##############################################
systemtap-4.4/stapdyn/Makefile.in-627-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/stapdyn/Makefile.in:628:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(dynsdt_CPPFLAGS) $(CPPFLAGS) $(dynsdt_CXXFLAGS) $(CXXFLAGS) -c -o dynsdt-dynutil.obj `if test -f 'dynutil.cxx'; then $(CYGPATH_W) 'dynutil.cxx'; else $(CYGPATH_W) '$(srcdir)/dynutil.cxx'; fi`
systemtap-4.4/stapdyn/Makefile.in-629-
systemtap-4.4/stapdyn/Makefile.in-630-../dynsdt-util.o: ../util.cxx
systemtap-4.4/stapdyn/Makefile.in:631:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(dynsdt_CPPFLAGS) $(CPPFLAGS) $(dynsdt_CXXFLAGS) $(CXXFLAGS) -MT ../dynsdt-util.o -MD -MP -MF ../$(DEPDIR)/dynsdt-util.Tpo -c -o ../dynsdt-util.o `test -f '../util.cxx' || echo '$(srcdir)/'`../util.cxx
systemtap-4.4/stapdyn/Makefile.in-632-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) ../$(DEPDIR)/dynsdt-util.Tpo ../$(DEPDIR)/dynsdt-util.Po
##############################################
systemtap-4.4/stapdyn/Makefile.in-634-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/stapdyn/Makefile.in:635:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(dynsdt_CPPFLAGS) $(CPPFLAGS) $(dynsdt_CXXFLAGS) $(CXXFLAGS) -c -o ../dynsdt-util.o `test -f '../util.cxx' || echo '$(srcdir)/'`../util.cxx
systemtap-4.4/stapdyn/Makefile.in-636-
systemtap-4.4/stapdyn/Makefile.in-637-../dynsdt-util.obj: ../util.cxx
systemtap-4.4/stapdyn/Makefile.in:638:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(dynsdt_CPPFLAGS) $(CPPFLAGS) $(dynsdt_CXXFLAGS) $(CXXFLAGS) -MT ../dynsdt-util.obj -MD -MP -MF ../$(DEPDIR)/dynsdt-util.Tpo -c -o ../dynsdt-util.obj `if test -f '../util.cxx'; then $(CYGPATH_W) '../util.cxx'; else $(CYGPATH_W) '$(srcdir)/../util.cxx'; fi`
systemtap-4.4/stapdyn/Makefile.in-639-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) ../$(DEPDIR)/dynsdt-util.Tpo ../$(DEPDIR)/dynsdt-util.Po
##############################################
systemtap-4.4/stapdyn/Makefile.in-641-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/stapdyn/Makefile.in:642:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(dynsdt_CPPFLAGS) $(CPPFLAGS) $(dynsdt_CXXFLAGS) $(CXXFLAGS) -c -o ../dynsdt-util.obj `if test -f '../util.cxx'; then $(CYGPATH_W) '../util.cxx'; else $(CYGPATH_W) '$(srcdir)/../util.cxx'; fi`
systemtap-4.4/stapdyn/Makefile.in-643-
systemtap-4.4/stapdyn/Makefile.in-644-stapdyn-stapdyn.o: stapdyn.cxx
systemtap-4.4/stapdyn/Makefile.in:645:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(stapdyn_CXXFLAGS) $(CXXFLAGS) -MT stapdyn-stapdyn.o -MD -MP -MF $(DEPDIR)/stapdyn-stapdyn.Tpo -c -o stapdyn-stapdyn.o `test -f 'stapdyn.cxx' || echo '$(srcdir)/'`stapdyn.cxx
systemtap-4.4/stapdyn/Makefile.in-646-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stapdyn-stapdyn.Tpo $(DEPDIR)/stapdyn-stapdyn.Po
##############################################
systemtap-4.4/stapdyn/Makefile.in-648-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/stapdyn/Makefile.in:649:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(stapdyn_CXXFLAGS) $(CXXFLAGS) -c -o stapdyn-stapdyn.o `test -f 'stapdyn.cxx' || echo '$(srcdir)/'`stapdyn.cxx
systemtap-4.4/stapdyn/Makefile.in-650-
systemtap-4.4/stapdyn/Makefile.in-651-stapdyn-stapdyn.obj: stapdyn.cxx
systemtap-4.4/stapdyn/Makefile.in:652:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(stapdyn_CXXFLAGS) $(CXXFLAGS) -MT stapdyn-stapdyn.obj -MD -MP -MF $(DEPDIR)/stapdyn-stapdyn.Tpo -c -o stapdyn-stapdyn.obj `if test -f 'stapdyn.cxx'; then $(CYGPATH_W) 'stapdyn.cxx'; else $(CYGPATH_W) '$(srcdir)/stapdyn.cxx'; fi`
systemtap-4.4/stapdyn/Makefile.in-653-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stapdyn-stapdyn.Tpo $(DEPDIR)/stapdyn-stapdyn.Po
##############################################
systemtap-4.4/stapdyn/Makefile.in-655-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/stapdyn/Makefile.in:656:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(stapdyn_CXXFLAGS) $(CXXFLAGS) -c -o stapdyn-stapdyn.obj `if test -f 'stapdyn.cxx'; then $(CYGPATH_W) 'stapdyn.cxx'; else $(CYGPATH_W) '$(srcdir)/stapdyn.cxx'; fi`
systemtap-4.4/stapdyn/Makefile.in-657-
systemtap-4.4/stapdyn/Makefile.in-658-stapdyn-mutator.o: mutator.cxx
systemtap-4.4/stapdyn/Makefile.in:659:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(stapdyn_CXXFLAGS) $(CXXFLAGS) -MT stapdyn-mutator.o -MD -MP -MF $(DEPDIR)/stapdyn-mutator.Tpo -c -o stapdyn-mutator.o `test -f 'mutator.cxx' || echo '$(srcdir)/'`mutator.cxx
systemtap-4.4/stapdyn/Makefile.in-660-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stapdyn-mutator.Tpo $(DEPDIR)/stapdyn-mutator.Po
##############################################
systemtap-4.4/stapdyn/Makefile.in-662-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/stapdyn/Makefile.in:663:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(stapdyn_CXXFLAGS) $(CXXFLAGS) -c -o stapdyn-mutator.o `test -f 'mutator.cxx' || echo '$(srcdir)/'`mutator.cxx
systemtap-4.4/stapdyn/Makefile.in-664-
systemtap-4.4/stapdyn/Makefile.in-665-stapdyn-mutator.obj: mutator.cxx
systemtap-4.4/stapdyn/Makefile.in:666:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(stapdyn_CXXFLAGS) $(CXXFLAGS) -MT stapdyn-mutator.obj -MD -MP -MF $(DEPDIR)/stapdyn-mutator.Tpo -c -o stapdyn-mutator.obj `if test -f 'mutator.cxx'; then $(CYGPATH_W) 'mutator.cxx'; else $(CYGPATH_W) '$(srcdir)/mutator.cxx'; fi`
systemtap-4.4/stapdyn/Makefile.in-667-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stapdyn-mutator.Tpo $(DEPDIR)/stapdyn-mutator.Po
##############################################
systemtap-4.4/stapdyn/Makefile.in-669-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/stapdyn/Makefile.in:670:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(stapdyn_CXXFLAGS) $(CXXFLAGS) -c -o stapdyn-mutator.obj `if test -f 'mutator.cxx'; then $(CYGPATH_W) 'mutator.cxx'; else $(CYGPATH_W) '$(srcdir)/mutator.cxx'; fi`
systemtap-4.4/stapdyn/Makefile.in-671-
systemtap-4.4/stapdyn/Makefile.in-672-stapdyn-mutatee.o: mutatee.cxx
systemtap-4.4/stapdyn/Makefile.in:673:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(stapdyn_CXXFLAGS) $(CXXFLAGS) -MT stapdyn-mutatee.o -MD -MP -MF $(DEPDIR)/stapdyn-mutatee.Tpo -c -o stapdyn-mutatee.o `test -f 'mutatee.cxx' || echo '$(srcdir)/'`mutatee.cxx
systemtap-4.4/stapdyn/Makefile.in-674-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stapdyn-mutatee.Tpo $(DEPDIR)/stapdyn-mutatee.Po
##############################################
systemtap-4.4/stapdyn/Makefile.in-676-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/stapdyn/Makefile.in:677:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(stapdyn_CXXFLAGS) $(CXXFLAGS) -c -o stapdyn-mutatee.o `test -f 'mutatee.cxx' || echo '$(srcdir)/'`mutatee.cxx
systemtap-4.4/stapdyn/Makefile.in-678-
systemtap-4.4/stapdyn/Makefile.in-679-stapdyn-mutatee.obj: mutatee.cxx
systemtap-4.4/stapdyn/Makefile.in:680:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(stapdyn_CXXFLAGS) $(CXXFLAGS) -MT stapdyn-mutatee.obj -MD -MP -MF $(DEPDIR)/stapdyn-mutatee.Tpo -c -o stapdyn-mutatee.obj `if test -f 'mutatee.cxx'; then $(CYGPATH_W) 'mutatee.cxx'; else $(CYGPATH_W) '$(srcdir)/mutatee.cxx'; fi`
systemtap-4.4/stapdyn/Makefile.in-681-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stapdyn-mutatee.Tpo $(DEPDIR)/stapdyn-mutatee.Po
##############################################
systemtap-4.4/stapdyn/Makefile.in-683-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/stapdyn/Makefile.in:684:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(stapdyn_CXXFLAGS) $(CXXFLAGS) -c -o stapdyn-mutatee.obj `if test -f 'mutatee.cxx'; then $(CYGPATH_W) 'mutatee.cxx'; else $(CYGPATH_W) '$(srcdir)/mutatee.cxx'; fi`
systemtap-4.4/stapdyn/Makefile.in-685-
systemtap-4.4/stapdyn/Makefile.in-686-stapdyn-dynprobe.o: dynprobe.cxx
systemtap-4.4/stapdyn/Makefile.in:687:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(stapdyn_CXXFLAGS) $(CXXFLAGS) -MT stapdyn-dynprobe.o -MD -MP -MF $(DEPDIR)/stapdyn-dynprobe.Tpo -c -o stapdyn-dynprobe.o `test -f 'dynprobe.cxx' || echo '$(srcdir)/'`dynprobe.cxx
systemtap-4.4/stapdyn/Makefile.in-688-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stapdyn-dynprobe.Tpo $(DEPDIR)/stapdyn-dynprobe.Po
##############################################
systemtap-4.4/stapdyn/Makefile.in-690-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/stapdyn/Makefile.in:691:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(stapdyn_CXXFLAGS) $(CXXFLAGS) -c -o stapdyn-dynprobe.o `test -f 'dynprobe.cxx' || echo '$(srcdir)/'`dynprobe.cxx
systemtap-4.4/stapdyn/Makefile.in-692-
systemtap-4.4/stapdyn/Makefile.in-693-stapdyn-dynprobe.obj: dynprobe.cxx
systemtap-4.4/stapdyn/Makefile.in:694:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(stapdyn_CXXFLAGS) $(CXXFLAGS) -MT stapdyn-dynprobe.obj -MD -MP -MF $(DEPDIR)/stapdyn-dynprobe.Tpo -c -o stapdyn-dynprobe.obj `if test -f 'dynprobe.cxx'; then $(CYGPATH_W) 'dynprobe.cxx'; else $(CYGPATH_W) '$(srcdir)/dynprobe.cxx'; fi`
systemtap-4.4/stapdyn/Makefile.in-695-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stapdyn-dynprobe.Tpo $(DEPDIR)/stapdyn-dynprobe.Po
##############################################
systemtap-4.4/stapdyn/Makefile.in-697-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/stapdyn/Makefile.in:698:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(stapdyn_CXXFLAGS) $(CXXFLAGS) -c -o stapdyn-dynprobe.obj `if test -f 'dynprobe.cxx'; then $(CYGPATH_W) 'dynprobe.cxx'; else $(CYGPATH_W) '$(srcdir)/dynprobe.cxx'; fi`
systemtap-4.4/stapdyn/Makefile.in-699-
systemtap-4.4/stapdyn/Makefile.in-700-stapdyn-dynutil.o: dynutil.cxx
systemtap-4.4/stapdyn/Makefile.in:701:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(stapdyn_CXXFLAGS) $(CXXFLAGS) -MT stapdyn-dynutil.o -MD -MP -MF $(DEPDIR)/stapdyn-dynutil.Tpo -c -o stapdyn-dynutil.o `test -f 'dynutil.cxx' || echo '$(srcdir)/'`dynutil.cxx
systemtap-4.4/stapdyn/Makefile.in-702-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stapdyn-dynutil.Tpo $(DEPDIR)/stapdyn-dynutil.Po
##############################################
systemtap-4.4/stapdyn/Makefile.in-704-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/stapdyn/Makefile.in:705:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(stapdyn_CXXFLAGS) $(CXXFLAGS) -c -o stapdyn-dynutil.o `test -f 'dynutil.cxx' || echo '$(srcdir)/'`dynutil.cxx
systemtap-4.4/stapdyn/Makefile.in-706-
systemtap-4.4/stapdyn/Makefile.in-707-stapdyn-dynutil.obj: dynutil.cxx
systemtap-4.4/stapdyn/Makefile.in:708:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(stapdyn_CXXFLAGS) $(CXXFLAGS) -MT stapdyn-dynutil.obj -MD -MP -MF $(DEPDIR)/stapdyn-dynutil.Tpo -c -o stapdyn-dynutil.obj `if test -f 'dynutil.cxx'; then $(CYGPATH_W) 'dynutil.cxx'; else $(CYGPATH_W) '$(srcdir)/dynutil.cxx'; fi`
systemtap-4.4/stapdyn/Makefile.in-709-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stapdyn-dynutil.Tpo $(DEPDIR)/stapdyn-dynutil.Po
##############################################
systemtap-4.4/stapdyn/Makefile.in-711-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/stapdyn/Makefile.in:712:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(stapdyn_CXXFLAGS) $(CXXFLAGS) -c -o stapdyn-dynutil.obj `if test -f 'dynutil.cxx'; then $(CYGPATH_W) 'dynutil.cxx'; else $(CYGPATH_W) '$(srcdir)/dynutil.cxx'; fi`
systemtap-4.4/stapdyn/Makefile.in-713-
systemtap-4.4/stapdyn/Makefile.in-714-../stapdyn-util.o: ../util.cxx
systemtap-4.4/stapdyn/Makefile.in:715:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(stapdyn_CXXFLAGS) $(CXXFLAGS) -MT ../stapdyn-util.o -MD -MP -MF ../$(DEPDIR)/stapdyn-util.Tpo -c -o ../stapdyn-util.o `test -f '../util.cxx' || echo '$(srcdir)/'`../util.cxx
systemtap-4.4/stapdyn/Makefile.in-716-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) ../$(DEPDIR)/stapdyn-util.Tpo ../$(DEPDIR)/stapdyn-util.Po
##############################################
systemtap-4.4/stapdyn/Makefile.in-718-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/stapdyn/Makefile.in:719:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(stapdyn_CXXFLAGS) $(CXXFLAGS) -c -o ../stapdyn-util.o `test -f '../util.cxx' || echo '$(srcdir)/'`../util.cxx
systemtap-4.4/stapdyn/Makefile.in-720-
systemtap-4.4/stapdyn/Makefile.in-721-../stapdyn-util.obj: ../util.cxx
systemtap-4.4/stapdyn/Makefile.in:722:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(stapdyn_CXXFLAGS) $(CXXFLAGS) -MT ../stapdyn-util.obj -MD -MP -MF ../$(DEPDIR)/stapdyn-util.Tpo -c -o ../stapdyn-util.obj `if test -f '../util.cxx'; then $(CYGPATH_W) '../util.cxx'; else $(CYGPATH_W) '$(srcdir)/../util.cxx'; fi`
systemtap-4.4/stapdyn/Makefile.in-723-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) ../$(DEPDIR)/stapdyn-util.Tpo ../$(DEPDIR)/stapdyn-util.Po
##############################################
systemtap-4.4/stapdyn/Makefile.in-725-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/stapdyn/Makefile.in:726:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(stapdyn_CXXFLAGS) $(CXXFLAGS) -c -o ../stapdyn-util.obj `if test -f '../util.cxx'; then $(CYGPATH_W) '../util.cxx'; else $(CYGPATH_W) '$(srcdir)/../util.cxx'; fi`
systemtap-4.4/stapdyn/Makefile.in-727-install-man8: $(man_MANS)
##############################################
systemtap-4.4/stapdyn/Makefile.in-731-	test -n "$(man8dir)" \
systemtap-4.4/stapdyn/Makefile.in:732:	  && test -n "`echo $$list1$$list2`" \
systemtap-4.4/stapdyn/Makefile.in-733-	  || exit 0; \
##############################################
systemtap-4.4/stapdyn/Makefile.in-800-GTAGS:
systemtap-4.4/stapdyn/Makefile.in:801:	here=`$(am__cd) $(top_builddir) && pwd` \
systemtap-4.4/stapdyn/Makefile.in-802-	  && $(am__cd) $(top_srcdir) \
##############################################
systemtap-4.4/stapdyn/dynsdt.cxx-253-
systemtap-4.4/stapdyn/dynsdt.cxx:254:  Dyninst::Address address = object->fileOffsetToAddr(p.pc_offset);
systemtap-4.4/stapdyn/dynsdt.cxx-255-  if (address == BPatch_object::E_OUT_OF_BOUNDS)
##############################################
systemtap-4.4/stapdyn/dynsdt.cxx-297-    {
systemtap-4.4/stapdyn/dynsdt.cxx:298:      Dyninst::Address sem_address = object->fileOffsetToAddr(p.sem_offset);
systemtap-4.4/stapdyn/dynsdt.cxx-299-      if (sem_address == BPatch_object::E_OUT_OF_BOUNDS)
##############################################
systemtap-4.4/stapdyn/mutatee.cxx-326-      // Convert the file offset to a memory address.
systemtap-4.4/stapdyn/mutatee.cxx:327:      Dyninst::Address address = object->fileOffsetToAddr(probe.offset);
systemtap-4.4/stapdyn/mutatee.cxx-328-      if (address == BPatch_object::E_OUT_OF_BOUNDS)
##############################################
systemtap-4.4/stapdyn/mutatee.cxx-454-        {
systemtap-4.4/stapdyn/mutatee.cxx:455:          Dyninst::Address sem_address = object->fileOffsetToAddr(probe.semaphore);
systemtap-4.4/stapdyn/mutatee.cxx-456-          if (sem_address == BPatch_object::E_OUT_OF_BOUNDS)
##############################################
systemtap-4.4/staplog.c-213-
systemtap-4.4/staplog.c:214:static ulong get_rchan_addr(ulong stp_relay_data)
systemtap-4.4/staplog.c-215-{
##############################################
systemtap-4.4/staplog.c-283-
systemtap-4.4/staplog.c:284:	stp_rchan_addr = get_rchan_addr(stp_relay_data);
systemtap-4.4/staplog.c-285-	if (stp_rchan_addr == 0) {
##############################################
systemtap-4.4/staprun/Makefile.in-53-  { \
systemtap-4.4/staprun/Makefile.in:54:    flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
systemtap-4.4/staprun/Makefile.in-55-  }; \
##############################################
systemtap-4.4/staprun/Makefile.in-230-  esac
systemtap-4.4/staprun/Makefile.in:231:am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
systemtap-4.4/staprun/Makefile.in-232-am__vpath_adj = case $$p in \
systemtap-4.4/staprun/Makefile.in:233:    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
systemtap-4.4/staprun/Makefile.in-234-    *) f=$$p;; \
systemtap-4.4/staprun/Makefile.in-235-  esac;
systemtap-4.4/staprun/Makefile.in:236:am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
systemtap-4.4/staprun/Makefile.in-237-am__install_max = 40
systemtap-4.4/staprun/Makefile.in-238-am__nobase_strip_setup = \
systemtap-4.4/staprun/Makefile.in:239:  srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
systemtap-4.4/staprun/Makefile.in-240-am__nobase_strip = \
##############################################
systemtap-4.4/staprun/Makefile.in-715-.c.o:
systemtap-4.4/staprun/Makefile.in:716:@am__fastdepCC_TRUE@	$(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
systemtap-4.4/staprun/Makefile.in-717-@am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
##############################################
systemtap-4.4/staprun/Makefile.in-723-.c.obj:
systemtap-4.4/staprun/Makefile.in:724:@am__fastdepCC_TRUE@	$(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\
systemtap-4.4/staprun/Makefile.in:725:@am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\
systemtap-4.4/staprun/Makefile.in-726-@am__fastdepCC_TRUE@	$(am__mv) $$depbase.Tpo $$depbase.Po
##############################################
systemtap-4.4/staprun/Makefile.in-728-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/staprun/Makefile.in:729:@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
systemtap-4.4/staprun/Makefile.in-730-
systemtap-4.4/staprun/Makefile.in-731-libstrfloctime_a-strfloctime.o: strfloctime.c
systemtap-4.4/staprun/Makefile.in:732:@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libstrfloctime_a_CFLAGS) $(CFLAGS) -MT libstrfloctime_a-strfloctime.o -MD -MP -MF $(DEPDIR)/libstrfloctime_a-strfloctime.Tpo -c -o libstrfloctime_a-strfloctime.o `test -f 'strfloctime.c' || echo '$(srcdir)/'`strfloctime.c
systemtap-4.4/staprun/Makefile.in-733-@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libstrfloctime_a-strfloctime.Tpo $(DEPDIR)/libstrfloctime_a-strfloctime.Po
##############################################
systemtap-4.4/staprun/Makefile.in-735-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/staprun/Makefile.in:736:@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libstrfloctime_a_CFLAGS) $(CFLAGS) -c -o libstrfloctime_a-strfloctime.o `test -f 'strfloctime.c' || echo '$(srcdir)/'`strfloctime.c
systemtap-4.4/staprun/Makefile.in-737-
systemtap-4.4/staprun/Makefile.in-738-libstrfloctime_a-strfloctime.obj: strfloctime.c
systemtap-4.4/staprun/Makefile.in:739:@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libstrfloctime_a_CFLAGS) $(CFLAGS) -MT libstrfloctime_a-strfloctime.obj -MD -MP -MF $(DEPDIR)/libstrfloctime_a-strfloctime.Tpo -c -o libstrfloctime_a-strfloctime.obj `if test -f 'strfloctime.c'; then $(CYGPATH_W) 'strfloctime.c'; else $(CYGPATH_W) '$(srcdir)/strfloctime.c'; fi`
systemtap-4.4/staprun/Makefile.in-740-@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/libstrfloctime_a-strfloctime.Tpo $(DEPDIR)/libstrfloctime_a-strfloctime.Po
##############################################
systemtap-4.4/staprun/Makefile.in-742-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/staprun/Makefile.in:743:@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libstrfloctime_a_CFLAGS) $(CFLAGS) -c -o libstrfloctime_a-strfloctime.obj `if test -f 'strfloctime.c'; then $(CYGPATH_W) 'strfloctime.c'; else $(CYGPATH_W) '$(srcdir)/strfloctime.c'; fi`
systemtap-4.4/staprun/Makefile.in-744-
systemtap-4.4/staprun/Makefile.in-745-stap_merge-stap_merge.o: stap_merge.c
systemtap-4.4/staprun/Makefile.in:746:@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(stap_merge_CFLAGS) $(CFLAGS) -MT stap_merge-stap_merge.o -MD -MP -MF $(DEPDIR)/stap_merge-stap_merge.Tpo -c -o stap_merge-stap_merge.o `test -f 'stap_merge.c' || echo '$(srcdir)/'`stap_merge.c
systemtap-4.4/staprun/Makefile.in-747-@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap_merge-stap_merge.Tpo $(DEPDIR)/stap_merge-stap_merge.Po
##############################################
systemtap-4.4/staprun/Makefile.in-749-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/staprun/Makefile.in:750:@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(stap_merge_CFLAGS) $(CFLAGS) -c -o stap_merge-stap_merge.o `test -f 'stap_merge.c' || echo '$(srcdir)/'`stap_merge.c
systemtap-4.4/staprun/Makefile.in-751-
systemtap-4.4/staprun/Makefile.in-752-stap_merge-stap_merge.obj: stap_merge.c
systemtap-4.4/staprun/Makefile.in:753:@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(stap_merge_CFLAGS) $(CFLAGS) -MT stap_merge-stap_merge.obj -MD -MP -MF $(DEPDIR)/stap_merge-stap_merge.Tpo -c -o stap_merge-stap_merge.obj `if test -f 'stap_merge.c'; then $(CYGPATH_W) 'stap_merge.c'; else $(CYGPATH_W) '$(srcdir)/stap_merge.c'; fi`
systemtap-4.4/staprun/Makefile.in-754-@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stap_merge-stap_merge.Tpo $(DEPDIR)/stap_merge-stap_merge.Po
##############################################
systemtap-4.4/staprun/Makefile.in-756-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/staprun/Makefile.in:757:@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(stap_merge_CFLAGS) $(CFLAGS) -c -o stap_merge-stap_merge.obj `if test -f 'stap_merge.c'; then $(CYGPATH_W) 'stap_merge.c'; else $(CYGPATH_W) '$(srcdir)/stap_merge.c'; fi`
systemtap-4.4/staprun/Makefile.in-758-
systemtap-4.4/staprun/Makefile.in-759-staprun-staprun.o: staprun.c
systemtap-4.4/staprun/Makefile.in:760:@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(staprun_CPPFLAGS) $(CPPFLAGS) $(staprun_CFLAGS) $(CFLAGS) -MT staprun-staprun.o -MD -MP -MF $(DEPDIR)/staprun-staprun.Tpo -c -o staprun-staprun.o `test -f 'staprun.c' || echo '$(srcdir)/'`staprun.c
systemtap-4.4/staprun/Makefile.in-761-@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/staprun-staprun.Tpo $(DEPDIR)/staprun-staprun.Po
##############################################
systemtap-4.4/staprun/Makefile.in-763-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/staprun/Makefile.in:764:@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(staprun_CPPFLAGS) $(CPPFLAGS) $(staprun_CFLAGS) $(CFLAGS) -c -o staprun-staprun.o `test -f 'staprun.c' || echo '$(srcdir)/'`staprun.c
systemtap-4.4/staprun/Makefile.in-765-
systemtap-4.4/staprun/Makefile.in-766-staprun-staprun.obj: staprun.c
systemtap-4.4/staprun/Makefile.in:767:@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(staprun_CPPFLAGS) $(CPPFLAGS) $(staprun_CFLAGS) $(CFLAGS) -MT staprun-staprun.obj -MD -MP -MF $(DEPDIR)/staprun-staprun.Tpo -c -o staprun-staprun.obj `if test -f 'staprun.c'; then $(CYGPATH_W) 'staprun.c'; else $(CYGPATH_W) '$(srcdir)/staprun.c'; fi`
systemtap-4.4/staprun/Makefile.in-768-@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/staprun-staprun.Tpo $(DEPDIR)/staprun-staprun.Po
##############################################
systemtap-4.4/staprun/Makefile.in-770-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/staprun/Makefile.in:771:@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(staprun_CPPFLAGS) $(CPPFLAGS) $(staprun_CFLAGS) $(CFLAGS) -c -o staprun-staprun.obj `if test -f 'staprun.c'; then $(CYGPATH_W) 'staprun.c'; else $(CYGPATH_W) '$(srcdir)/staprun.c'; fi`
systemtap-4.4/staprun/Makefile.in-772-
systemtap-4.4/staprun/Makefile.in-773-staprun-staprun_funcs.o: staprun_funcs.c
systemtap-4.4/staprun/Makefile.in:774:@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(staprun_CPPFLAGS) $(CPPFLAGS) $(staprun_CFLAGS) $(CFLAGS) -MT staprun-staprun_funcs.o -MD -MP -MF $(DEPDIR)/staprun-staprun_funcs.Tpo -c -o staprun-staprun_funcs.o `test -f 'staprun_funcs.c' || echo '$(srcdir)/'`staprun_funcs.c
systemtap-4.4/staprun/Makefile.in-775-@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/staprun-staprun_funcs.Tpo $(DEPDIR)/staprun-staprun_funcs.Po
##############################################
systemtap-4.4/staprun/Makefile.in-777-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/staprun/Makefile.in:778:@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(staprun_CPPFLAGS) $(CPPFLAGS) $(staprun_CFLAGS) $(CFLAGS) -c -o staprun-staprun_funcs.o `test -f 'staprun_funcs.c' || echo '$(srcdir)/'`staprun_funcs.c
systemtap-4.4/staprun/Makefile.in-779-
systemtap-4.4/staprun/Makefile.in-780-staprun-staprun_funcs.obj: staprun_funcs.c
systemtap-4.4/staprun/Makefile.in:781:@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(staprun_CPPFLAGS) $(CPPFLAGS) $(staprun_CFLAGS) $(CFLAGS) -MT staprun-staprun_funcs.obj -MD -MP -MF $(DEPDIR)/staprun-staprun_funcs.Tpo -c -o staprun-staprun_funcs.obj `if test -f 'staprun_funcs.c'; then $(CYGPATH_W) 'staprun_funcs.c'; else $(CYGPATH_W) '$(srcdir)/staprun_funcs.c'; fi`
systemtap-4.4/staprun/Makefile.in-782-@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/staprun-staprun_funcs.Tpo $(DEPDIR)/staprun-staprun_funcs.Po
##############################################
systemtap-4.4/staprun/Makefile.in-784-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/staprun/Makefile.in:785:@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(staprun_CPPFLAGS) $(CPPFLAGS) $(staprun_CFLAGS) $(CFLAGS) -c -o staprun-staprun_funcs.obj `if test -f 'staprun_funcs.c'; then $(CYGPATH_W) 'staprun_funcs.c'; else $(CYGPATH_W) '$(srcdir)/staprun_funcs.c'; fi`
systemtap-4.4/staprun/Makefile.in-786-
systemtap-4.4/staprun/Makefile.in-787-staprun-ctl.o: ctl.c
systemtap-4.4/staprun/Makefile.in:788:@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(staprun_CPPFLAGS) $(CPPFLAGS) $(staprun_CFLAGS) $(CFLAGS) -MT staprun-ctl.o -MD -MP -MF $(DEPDIR)/staprun-ctl.Tpo -c -o staprun-ctl.o `test -f 'ctl.c' || echo '$(srcdir)/'`ctl.c
systemtap-4.4/staprun/Makefile.in-789-@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/staprun-ctl.Tpo $(DEPDIR)/staprun-ctl.Po
##############################################
systemtap-4.4/staprun/Makefile.in-791-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/staprun/Makefile.in:792:@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(staprun_CPPFLAGS) $(CPPFLAGS) $(staprun_CFLAGS) $(CFLAGS) -c -o staprun-ctl.o `test -f 'ctl.c' || echo '$(srcdir)/'`ctl.c
systemtap-4.4/staprun/Makefile.in-793-
systemtap-4.4/staprun/Makefile.in-794-staprun-ctl.obj: ctl.c
systemtap-4.4/staprun/Makefile.in:795:@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(staprun_CPPFLAGS) $(CPPFLAGS) $(staprun_CFLAGS) $(CFLAGS) -MT staprun-ctl.obj -MD -MP -MF $(DEPDIR)/staprun-ctl.Tpo -c -o staprun-ctl.obj `if test -f 'ctl.c'; then $(CYGPATH_W) 'ctl.c'; else $(CYGPATH_W) '$(srcdir)/ctl.c'; fi`
systemtap-4.4/staprun/Makefile.in-796-@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/staprun-ctl.Tpo $(DEPDIR)/staprun-ctl.Po
##############################################
systemtap-4.4/staprun/Makefile.in-798-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/staprun/Makefile.in:799:@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(staprun_CPPFLAGS) $(CPPFLAGS) $(staprun_CFLAGS) $(CFLAGS) -c -o staprun-ctl.obj `if test -f 'ctl.c'; then $(CYGPATH_W) 'ctl.c'; else $(CYGPATH_W) '$(srcdir)/ctl.c'; fi`
systemtap-4.4/staprun/Makefile.in-800-
systemtap-4.4/staprun/Makefile.in-801-staprun-common.o: common.c
systemtap-4.4/staprun/Makefile.in:802:@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(staprun_CPPFLAGS) $(CPPFLAGS) $(staprun_CFLAGS) $(CFLAGS) -MT staprun-common.o -MD -MP -MF $(DEPDIR)/staprun-common.Tpo -c -o staprun-common.o `test -f 'common.c' || echo '$(srcdir)/'`common.c
systemtap-4.4/staprun/Makefile.in-803-@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/staprun-common.Tpo $(DEPDIR)/staprun-common.Po
##############################################
systemtap-4.4/staprun/Makefile.in-805-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/staprun/Makefile.in:806:@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(staprun_CPPFLAGS) $(CPPFLAGS) $(staprun_CFLAGS) $(CFLAGS) -c -o staprun-common.o `test -f 'common.c' || echo '$(srcdir)/'`common.c
systemtap-4.4/staprun/Makefile.in-807-
systemtap-4.4/staprun/Makefile.in-808-staprun-common.obj: common.c
systemtap-4.4/staprun/Makefile.in:809:@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(staprun_CPPFLAGS) $(CPPFLAGS) $(staprun_CFLAGS) $(CFLAGS) -MT staprun-common.obj -MD -MP -MF $(DEPDIR)/staprun-common.Tpo -c -o staprun-common.obj `if test -f 'common.c'; then $(CYGPATH_W) 'common.c'; else $(CYGPATH_W) '$(srcdir)/common.c'; fi`
systemtap-4.4/staprun/Makefile.in-810-@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/staprun-common.Tpo $(DEPDIR)/staprun-common.Po
##############################################
systemtap-4.4/staprun/Makefile.in-812-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/staprun/Makefile.in:813:@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(staprun_CPPFLAGS) $(CPPFLAGS) $(staprun_CFLAGS) $(CFLAGS) -c -o staprun-common.obj `if test -f 'common.c'; then $(CYGPATH_W) 'common.c'; else $(CYGPATH_W) '$(srcdir)/common.c'; fi`
systemtap-4.4/staprun/Makefile.in-814-
systemtap-4.4/staprun/Makefile.in-815-staprun-modverify.o: modverify.c
systemtap-4.4/staprun/Makefile.in:816:@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(staprun_CPPFLAGS) $(CPPFLAGS) $(staprun_CFLAGS) $(CFLAGS) -MT staprun-modverify.o -MD -MP -MF $(DEPDIR)/staprun-modverify.Tpo -c -o staprun-modverify.o `test -f 'modverify.c' || echo '$(srcdir)/'`modverify.c
systemtap-4.4/staprun/Makefile.in-817-@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/staprun-modverify.Tpo $(DEPDIR)/staprun-modverify.Po
##############################################
systemtap-4.4/staprun/Makefile.in-819-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/staprun/Makefile.in:820:@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(staprun_CPPFLAGS) $(CPPFLAGS) $(staprun_CFLAGS) $(CFLAGS) -c -o staprun-modverify.o `test -f 'modverify.c' || echo '$(srcdir)/'`modverify.c
systemtap-4.4/staprun/Makefile.in-821-
systemtap-4.4/staprun/Makefile.in-822-staprun-modverify.obj: modverify.c
systemtap-4.4/staprun/Makefile.in:823:@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(staprun_CPPFLAGS) $(CPPFLAGS) $(staprun_CFLAGS) $(CFLAGS) -MT staprun-modverify.obj -MD -MP -MF $(DEPDIR)/staprun-modverify.Tpo -c -o staprun-modverify.obj `if test -f 'modverify.c'; then $(CYGPATH_W) 'modverify.c'; else $(CYGPATH_W) '$(srcdir)/modverify.c'; fi`
systemtap-4.4/staprun/Makefile.in-824-@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/staprun-modverify.Tpo $(DEPDIR)/staprun-modverify.Po
##############################################
systemtap-4.4/staprun/Makefile.in-826-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/staprun/Makefile.in:827:@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(staprun_CPPFLAGS) $(CPPFLAGS) $(staprun_CFLAGS) $(CFLAGS) -c -o staprun-modverify.obj `if test -f 'modverify.c'; then $(CYGPATH_W) 'modverify.c'; else $(CYGPATH_W) '$(srcdir)/modverify.c'; fi`
systemtap-4.4/staprun/Makefile.in-828-
systemtap-4.4/staprun/Makefile.in-829-stapsh-stapsh.o: stapsh.c
systemtap-4.4/staprun/Makefile.in:830:@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(stapsh_CFLAGS) $(CFLAGS) -MT stapsh-stapsh.o -MD -MP -MF $(DEPDIR)/stapsh-stapsh.Tpo -c -o stapsh-stapsh.o `test -f 'stapsh.c' || echo '$(srcdir)/'`stapsh.c
systemtap-4.4/staprun/Makefile.in-831-@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stapsh-stapsh.Tpo $(DEPDIR)/stapsh-stapsh.Po
##############################################
systemtap-4.4/staprun/Makefile.in-833-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/staprun/Makefile.in:834:@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(stapsh_CFLAGS) $(CFLAGS) -c -o stapsh-stapsh.o `test -f 'stapsh.c' || echo '$(srcdir)/'`stapsh.c
systemtap-4.4/staprun/Makefile.in-835-
systemtap-4.4/staprun/Makefile.in-836-stapsh-stapsh.obj: stapsh.c
systemtap-4.4/staprun/Makefile.in:837:@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(stapsh_CFLAGS) $(CFLAGS) -MT stapsh-stapsh.obj -MD -MP -MF $(DEPDIR)/stapsh-stapsh.Tpo -c -o stapsh-stapsh.obj `if test -f 'stapsh.c'; then $(CYGPATH_W) 'stapsh.c'; else $(CYGPATH_W) '$(srcdir)/stapsh.c'; fi`
systemtap-4.4/staprun/Makefile.in-838-@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/stapsh-stapsh.Tpo $(DEPDIR)/stapsh-stapsh.Po
##############################################
systemtap-4.4/staprun/Makefile.in-840-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/staprun/Makefile.in:841:@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(stapsh_CFLAGS) $(CFLAGS) -c -o stapsh-stapsh.obj `if test -f 'stapsh.c'; then $(CYGPATH_W) 'stapsh.c'; else $(CYGPATH_W) '$(srcdir)/stapsh.c'; fi`
systemtap-4.4/staprun/Makefile.in-842-
systemtap-4.4/staprun/Makefile.in-843-.cxx.o:
systemtap-4.4/staprun/Makefile.in:844:@am__fastdepCXX_TRUE@	$(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
systemtap-4.4/staprun/Makefile.in-845-@am__fastdepCXX_TRUE@	$(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
##############################################
systemtap-4.4/staprun/Makefile.in-851-.cxx.obj:
systemtap-4.4/staprun/Makefile.in:852:@am__fastdepCXX_TRUE@	$(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\
systemtap-4.4/staprun/Makefile.in:853:@am__fastdepCXX_TRUE@	$(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\
systemtap-4.4/staprun/Makefile.in-854-@am__fastdepCXX_TRUE@	$(am__mv) $$depbase.Tpo $$depbase.Po
##############################################
systemtap-4.4/staprun/Makefile.in-856-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/staprun/Makefile.in:857:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
systemtap-4.4/staprun/Makefile.in-858-
systemtap-4.4/staprun/Makefile.in-859-../staprun-privilege.o: ../privilege.cxx
systemtap-4.4/staprun/Makefile.in:860:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(staprun_CPPFLAGS) $(CPPFLAGS) $(staprun_CXXFLAGS) $(CXXFLAGS) -MT ../staprun-privilege.o -MD -MP -MF ../$(DEPDIR)/staprun-privilege.Tpo -c -o ../staprun-privilege.o `test -f '../privilege.cxx' || echo '$(srcdir)/'`../privilege.cxx
systemtap-4.4/staprun/Makefile.in-861-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) ../$(DEPDIR)/staprun-privilege.Tpo ../$(DEPDIR)/staprun-privilege.Po
##############################################
systemtap-4.4/staprun/Makefile.in-863-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/staprun/Makefile.in:864:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(staprun_CPPFLAGS) $(CPPFLAGS) $(staprun_CXXFLAGS) $(CXXFLAGS) -c -o ../staprun-privilege.o `test -f '../privilege.cxx' || echo '$(srcdir)/'`../privilege.cxx
systemtap-4.4/staprun/Makefile.in-865-
systemtap-4.4/staprun/Makefile.in-866-../staprun-privilege.obj: ../privilege.cxx
systemtap-4.4/staprun/Makefile.in:867:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(staprun_CPPFLAGS) $(CPPFLAGS) $(staprun_CXXFLAGS) $(CXXFLAGS) -MT ../staprun-privilege.obj -MD -MP -MF ../$(DEPDIR)/staprun-privilege.Tpo -c -o ../staprun-privilege.obj `if test -f '../privilege.cxx'; then $(CYGPATH_W) '../privilege.cxx'; else $(CYGPATH_W) '$(srcdir)/../privilege.cxx'; fi`
systemtap-4.4/staprun/Makefile.in-868-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) ../$(DEPDIR)/staprun-privilege.Tpo ../$(DEPDIR)/staprun-privilege.Po
##############################################
systemtap-4.4/staprun/Makefile.in-870-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/staprun/Makefile.in:871:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(staprun_CPPFLAGS) $(CPPFLAGS) $(staprun_CXXFLAGS) $(CXXFLAGS) -c -o ../staprun-privilege.obj `if test -f '../privilege.cxx'; then $(CYGPATH_W) '../privilege.cxx'; else $(CYGPATH_W) '$(srcdir)/../privilege.cxx'; fi`
systemtap-4.4/staprun/Makefile.in-872-
systemtap-4.4/staprun/Makefile.in-873-../staprun-util.o: ../util.cxx
systemtap-4.4/staprun/Makefile.in:874:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(staprun_CPPFLAGS) $(CPPFLAGS) $(staprun_CXXFLAGS) $(CXXFLAGS) -MT ../staprun-util.o -MD -MP -MF ../$(DEPDIR)/staprun-util.Tpo -c -o ../staprun-util.o `test -f '../util.cxx' || echo '$(srcdir)/'`../util.cxx
systemtap-4.4/staprun/Makefile.in-875-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) ../$(DEPDIR)/staprun-util.Tpo ../$(DEPDIR)/staprun-util.Po
##############################################
systemtap-4.4/staprun/Makefile.in-877-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/staprun/Makefile.in:878:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(staprun_CPPFLAGS) $(CPPFLAGS) $(staprun_CXXFLAGS) $(CXXFLAGS) -c -o ../staprun-util.o `test -f '../util.cxx' || echo '$(srcdir)/'`../util.cxx
systemtap-4.4/staprun/Makefile.in-879-
systemtap-4.4/staprun/Makefile.in-880-../staprun-util.obj: ../util.cxx
systemtap-4.4/staprun/Makefile.in:881:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(staprun_CPPFLAGS) $(CPPFLAGS) $(staprun_CXXFLAGS) $(CXXFLAGS) -MT ../staprun-util.obj -MD -MP -MF ../$(DEPDIR)/staprun-util.Tpo -c -o ../staprun-util.obj `if test -f '../util.cxx'; then $(CYGPATH_W) '../util.cxx'; else $(CYGPATH_W) '$(srcdir)/../util.cxx'; fi`
systemtap-4.4/staprun/Makefile.in-882-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) ../$(DEPDIR)/staprun-util.Tpo ../$(DEPDIR)/staprun-util.Po
##############################################
systemtap-4.4/staprun/Makefile.in-884-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/staprun/Makefile.in:885:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(staprun_CPPFLAGS) $(CPPFLAGS) $(staprun_CXXFLAGS) $(CXXFLAGS) -c -o ../staprun-util.obj `if test -f '../util.cxx'; then $(CYGPATH_W) '../util.cxx'; else $(CYGPATH_W) '$(srcdir)/../util.cxx'; fi`
systemtap-4.4/staprun/Makefile.in-886-
systemtap-4.4/staprun/Makefile.in-887-../staprun-nsscommon.o: ../nsscommon.cxx
systemtap-4.4/staprun/Makefile.in:888:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(staprun_CPPFLAGS) $(CPPFLAGS) $(staprun_CXXFLAGS) $(CXXFLAGS) -MT ../staprun-nsscommon.o -MD -MP -MF ../$(DEPDIR)/staprun-nsscommon.Tpo -c -o ../staprun-nsscommon.o `test -f '../nsscommon.cxx' || echo '$(srcdir)/'`../nsscommon.cxx
systemtap-4.4/staprun/Makefile.in-889-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) ../$(DEPDIR)/staprun-nsscommon.Tpo ../$(DEPDIR)/staprun-nsscommon.Po
##############################################
systemtap-4.4/staprun/Makefile.in-891-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/staprun/Makefile.in:892:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(staprun_CPPFLAGS) $(CPPFLAGS) $(staprun_CXXFLAGS) $(CXXFLAGS) -c -o ../staprun-nsscommon.o `test -f '../nsscommon.cxx' || echo '$(srcdir)/'`../nsscommon.cxx
systemtap-4.4/staprun/Makefile.in-893-
systemtap-4.4/staprun/Makefile.in-894-../staprun-nsscommon.obj: ../nsscommon.cxx
systemtap-4.4/staprun/Makefile.in:895:@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(staprun_CPPFLAGS) $(CPPFLAGS) $(staprun_CXXFLAGS) $(CXXFLAGS) -MT ../staprun-nsscommon.obj -MD -MP -MF ../$(DEPDIR)/staprun-nsscommon.Tpo -c -o ../staprun-nsscommon.obj `if test -f '../nsscommon.cxx'; then $(CYGPATH_W) '../nsscommon.cxx'; else $(CYGPATH_W) '$(srcdir)/../nsscommon.cxx'; fi`
systemtap-4.4/staprun/Makefile.in-896-@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) ../$(DEPDIR)/staprun-nsscommon.Tpo ../$(DEPDIR)/staprun-nsscommon.Po
##############################################
systemtap-4.4/staprun/Makefile.in-898-@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
systemtap-4.4/staprun/Makefile.in:899:@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(staprun_CPPFLAGS) $(CPPFLAGS) $(staprun_CXXFLAGS) $(CXXFLAGS) -c -o ../staprun-nsscommon.obj `if test -f '../nsscommon.cxx'; then $(CYGPATH_W) '../nsscommon.cxx'; else $(CYGPATH_W) '$(srcdir)/../nsscommon.cxx'; fi`
systemtap-4.4/staprun/Makefile.in-900-install-man8: $(man_MANS)
##############################################
systemtap-4.4/staprun/Makefile.in-904-	test -n "$(man8dir)" \
systemtap-4.4/staprun/Makefile.in:905:	  && test -n "`echo $$list1$$list2`" \
systemtap-4.4/staprun/Makefile.in-906-	  || exit 0; \
##############################################
systemtap-4.4/staprun/Makefile.in-973-GTAGS:
systemtap-4.4/staprun/Makefile.in:974:	here=`$(am__cd) $(top_builddir) && pwd` \
systemtap-4.4/staprun/Makefile.in-975-	  && $(am__cd) $(top_srcdir) \
##############################################
systemtap-4.4/staprun/guest/stapsh-daemon.in-9-if [ ! -n "$1" ]; then
systemtap-4.4/staprun/guest/stapsh-daemon.in:10:   echo "Usage: `basename $0` <port>" >&2
systemtap-4.4/staprun/guest/stapsh-daemon.in-11-   exit 1
##############################################
systemtap-4.4/staprun/guest/virtio_console.modules-8-	for modalias in /sys/bus/virtio/devices/virtio*/modalias; do
systemtap-4.4/staprun/guest/virtio_console.modules:9:		if [ "`cat $modalias`" == "virtio:d00000003v00001AF4" ]; then
systemtap-4.4/staprun/guest/virtio_console.modules-10-			return 0
##############################################
systemtap-4.4/staprun/run-staprun.in-11-/*) ;;
systemtap-4.4/staprun/run-staprun.in:12:*) srcdir=`cd "$srcdir" && pwd` || exit ;;
systemtap-4.4/staprun/run-staprun.in-13-esac
##############################################
systemtap-4.4/staprun/run-staprun.in-15-/*) ;;
systemtap-4.4/staprun/run-staprun.in:16:*) builddir=`cd "$builddir" && pwd` || exit ;;
systemtap-4.4/staprun/run-staprun.in-17-esac
##############################################
systemtap-4.4/systemtap.spec-783-  if [ -z "$numcpu" -o "$numcpu" -lt 1 ]; then numcpu=1; fi
systemtap-4.4/systemtap.spec:784:  nproc=`expr $numcpu \* 30`
systemtap-4.4/systemtap.spec-785-  echo "--rlimit-as=614400000 --rlimit-cpu=60 --rlimit-nproc=$nproc --rlimit-stack=1024000 --rlimit-fsize=51200000" > ~stap-server/.systemtap/rc
##############################################
systemtap-4.4/systemtap.spec-957-    %else
systemtap-4.4/systemtap.spec:958:        arch=`basename $f | cut -f2 -d_ | cut -f1 -d.`
systemtap-4.4/systemtap.spec-959-    %endif
##############################################
systemtap-4.4/systemtap.spec-972-    %else
systemtap-4.4/systemtap.spec:973:        arch=`basename $f | cut -f2 -d_ | cut -f1 -d.`
systemtap-4.4/systemtap.spec-974-    %endif
##############################################
systemtap-4.4/systemtap.spec-986-    %else
systemtap-4.4/systemtap.spec:987:        arch=`basename $f | cut -f2 -d_ | cut -f1 -d.`
systemtap-4.4/systemtap.spec-988-    %endif
##############################################
systemtap-4.4/tapset-dynprobe.cxx-46-		const string fs, const string pi):
systemtap-4.4/tapset-dynprobe.cxx:47:    has_path(hp), offset(o), semaphore_addr(sa), flags_string(fs),
systemtap-4.4/tapset-dynprobe.cxx-48-    probe_init(pi) { }
##############################################
systemtap-4.4/tapset/arm/registers.stp-26-/*
systemtap-4.4/tapset/arm/registers.stp:27: * _stp_regs_get_kernel_stack_nth_addr() - get address of the Nth entry of the stack
systemtap-4.4/tapset/arm/registers.stp-28- * @regs:	pt_regs which contains kernel stack pointer.
##############################################
systemtap-4.4/tapset/arm/registers.stp-30- *
systemtap-4.4/tapset/arm/registers.stp:31: * _stp_regs_get_kernel_stack_nth_addr() returns the address of the @n
systemtap-4.4/tapset/arm/registers.stp-32- * th entry of the kernel stack which is specified by @regs. If the @n
##############################################
systemtap-4.4/tapset/arm/registers.stp-35-long *
systemtap-4.4/tapset/arm/registers.stp:36:_stp_regs_get_kernel_stack_nth_addr(struct pt_regs *regs, unsigned int n)
systemtap-4.4/tapset/arm/registers.stp-37-{
##############################################
systemtap-4.4/tapset/arm/registers.stp-146-	/* Get the address of the nth item on the stack. */
systemtap-4.4/tapset/arm/registers.stp:147:	addr = _stp_regs_get_kernel_stack_nth_addr(regs, n);
systemtap-4.4/tapset/arm/registers.stp-148-	if (addr == NULL) {
##############################################
systemtap-4.4/tapset/dyninst/context.stp-138-{
systemtap-4.4/tapset/dyninst/context.stp:139:	return uaddr()
systemtap-4.4/tapset/dyninst/context.stp-140-}
##############################################
systemtap-4.4/tapset/i386/registers.stp-115-	unsigned short ss;
systemtap-4.4/tapset/i386/registers.stp:116:	asm volatile("movw %%ss, %0" : : "m" (ss));
systemtap-4.4/tapset/i386/registers.stp-117-	STAP_RETVALUE = ss;
##############################################
systemtap-4.4/tapset/linux/aux_syscalls.stp-611-#define LPORT   (inet->inet.num)
systemtap-4.4/tapset/linux/aux_syscalls.stp:612:#define DADDR   (&inet->inet.daddr)
systemtap-4.4/tapset/linux/aux_syscalls.stp-613-#else
systemtap-4.4/tapset/linux/aux_syscalls.stp-614-#define LPORT   (inet->num)
systemtap-4.4/tapset/linux/aux_syscalls.stp:615:#define DADDR   (&inet->daddr)
systemtap-4.4/tapset/linux/aux_syscalls.stp-616-#endif
##############################################
systemtap-4.4/tapset/linux/context-caller.stp-12-%{
systemtap-4.4/tapset/linux/context-caller.stp:13:/* caller_addr() might be user caller, so needs at least uprobes structs. */
systemtap-4.4/tapset/linux/context-caller.stp-14-#include "linux/uprobes-inc.h"
##############################################
systemtap-4.4/tapset/linux/context-caller.stp-48- *  calling function. This is equivalent to calling:
systemtap-4.4/tapset/linux/context-caller.stp:49: *  sprintf("%s 0x%x", symname(caller_addr()), caller_addr())
systemtap-4.4/tapset/linux/context-caller.stp-50- */
systemtap-4.4/tapset/linux/context-caller.stp-51-function caller:string() {
systemtap-4.4/tapset/linux/context-caller.stp:52:	return sprintf("%s 0x%x", symname(caller_addr()), caller_addr());
systemtap-4.4/tapset/linux/context-caller.stp-53-}
##############################################
systemtap-4.4/tapset/linux/context-symbols.stp-89- * Description: This function returns the name of the function being probed
systemtap-4.4/tapset/linux/context-symbols.stp:90: * based on the current address, as computed by symname(addr()) or
systemtap-4.4/tapset/linux/context-symbols.stp:91: * usymname(uaddr()) depending on probe context (whether the probe is
systemtap-4.4/tapset/linux/context-symbols.stp-92- * a user probe or a kernel probe).
##############################################
systemtap-4.4/tapset/linux/context-symbols.stp-125-		if (regs) {
systemtap-4.4/tapset/linux/context-symbols.stp:126:			_stp_snprint_addr(STAP_RETVALUE, MAXSTRINGLEN,
systemtap-4.4/tapset/linux/context-symbols.stp-127-					  REG_IP(regs), _STP_SYM_SYMBOL,
##############################################
systemtap-4.4/tapset/linux/context-symbols.stp-134-	%( systemtap_privilege != "stapusr" %?
systemtap-4.4/tapset/linux/context-symbols.stp:135:	   return user_mode() ? usymname(uaddr()) : symname(addr())
systemtap-4.4/tapset/linux/context-symbols.stp-136-	%:
systemtap-4.4/tapset/linux/context-symbols.stp:137:	   return user_mode() ? usymname(uaddr())
systemtap-4.4/tapset/linux/context-symbols.stp-138-	   	  	      : error("kernel probefunc() query from unprivileged script") /* XXX should be impossible */
##############################################
systemtap-4.4/tapset/linux/context-symbols.stp-227-function symname:string (addr: long) %{ /* pure */ /* pragma:symbols */
systemtap-4.4/tapset/linux/context-symbols.stp:228:	 _stp_snprint_addr(STAP_RETVALUE, MAXSTRINGLEN, STAP_ARG_addr,
systemtap-4.4/tapset/linux/context-symbols.stp-229-			   _STP_SYM_SYMBOL, NULL);
##############################################
systemtap-4.4/tapset/linux/context-symbols.stp-244-function symdata:string (addr: long) %{ /* pure */ /* pragma:symbols */
systemtap-4.4/tapset/linux/context-symbols.stp:245:	_stp_snprint_addr(STAP_RETVALUE, MAXSTRINGLEN, STAP_ARG_addr,
systemtap-4.4/tapset/linux/context-symbols.stp-246-			  _STP_SYM_DATA, NULL);
##############################################
systemtap-4.4/tapset/linux/context-symbols.stp-313-/* pure */ /* pragma:symbols */ /* pragma:lines */
systemtap-4.4/tapset/linux/context-symbols.stp:314:  _stp_snprint_addr(STAP_RETVALUE, MAXSTRINGLEN, STAP_ARG_addr,
systemtap-4.4/tapset/linux/context-symbols.stp-315-                    _STP_SYM_LINENUMBER + _STP_SYM_FILENAME, NULL);
##############################################
systemtap-4.4/tapset/linux/context-symbols.stp-327-/* pure */ /* pragma:symbols */ /* pragma:lines */
systemtap-4.4/tapset/linux/context-symbols.stp:328:  _stp_snprint_addr(STAP_RETVALUE, MAXSTRINGLEN, STAP_ARG_addr,
systemtap-4.4/tapset/linux/context-symbols.stp-329-                    _STP_SYM_FILENAME, NULL);
##############################################
systemtap-4.4/tapset/linux/context-symbols.stp-341-/* pure */ /* pragma:symbols */ /* pragma:lines */
systemtap-4.4/tapset/linux/context-symbols.stp:342:  _stp_snprint_addr(STAP_RETVALUE, MAXSTRINGLEN, STAP_ARG_addr,
systemtap-4.4/tapset/linux/context-symbols.stp-343-                    _STP_SYM_LINENUMBER, NULL);
##############################################
systemtap-4.4/tapset/linux/inet_sock.stp-32-{
systemtap-4.4/tapset/linux/inet_sock.stp:33:    return format_ipaddr(__ip_sock_daddr(sock), __ip_sock_family(sock))
systemtap-4.4/tapset/linux/inet_sock.stp-34-}
##############################################
systemtap-4.4/tapset/linux/inet_sock.stp-39-{
systemtap-4.4/tapset/linux/inet_sock.stp:40:    return format_ipaddr(daddr, @const("AF_INET"))
systemtap-4.4/tapset/linux/inet_sock.stp-41-}
##############################################
systemtap-4.4/tapset/linux/ip.stp-69-{
systemtap-4.4/tapset/linux/ip.stp:70:	return format_ipaddr(addr, @const("AF_INET"))
systemtap-4.4/tapset/linux/ip.stp-71-}
##############################################
systemtap-4.4/tapset/linux/ipmib.stp-66-	if ( SourceIsLocal )
systemtap-4.4/tapset/linux/ipmib.stp:67:		return ntohl(__ip_skb_daddr(iphdr));
systemtap-4.4/tapset/linux/ipmib.stp:68:	return ntohl(__ip_skb_saddr(iphdr));
systemtap-4.4/tapset/linux/ipmib.stp-69-}
##############################################
systemtap-4.4/tapset/linux/ipmib.stp-81-	if ( SourceIsLocal )
systemtap-4.4/tapset/linux/ipmib.stp:82:		return ntohl(__ip_skb_saddr(iphdr));
systemtap-4.4/tapset/linux/ipmib.stp:83:	return ntohl(__ip_skb_daddr(iphdr));
systemtap-4.4/tapset/linux/ipmib.stp-84-}
##############################################
systemtap-4.4/tapset/linux/netfilter.stp-156-      frag_size = __skb_frag_size(shinfo, i)
systemtap-4.4/tapset/linux/netfilter.stp:157:      frag_data_addr = __skb_frag_data_addr(shinfo, i)
systemtap-4.4/tapset/linux/netfilter.stp-158-      if (str) {
##############################################
systemtap-4.4/tapset/linux/netfilter.stp-189-           indev_mac_len = indev->addr_len
systemtap-4.4/tapset/linux/netfilter.stp:190:           in_mac = __get_mac_addr(indev)
systemtap-4.4/tapset/linux/netfilter.stp-191-        }
##############################################
systemtap-4.4/tapset/linux/netfilter.stp-193-           outdev_mac_len = outdev->addr_len
systemtap-4.4/tapset/linux/netfilter.stp:194:           out_mac = __get_mac_addr(outdev)
systemtap-4.4/tapset/linux/netfilter.stp-195-        }
##############################################
systemtap-4.4/tapset/linux/netfilter.stp-207-           iphdr = __get_skb_iphdr($skb)
systemtap-4.4/tapset/linux/netfilter.stp:208:           saddr = format_ipaddr(__ip_skb_saddr(iphdr), @const("AF_INET"))
systemtap-4.4/tapset/linux/netfilter.stp:209:           daddr = format_ipaddr(__ip_skb_daddr(iphdr), @const("AF_INET"))
systemtap-4.4/tapset/linux/netfilter.stp-210-           protocol = __ip_skb_proto(iphdr)
##############################################
systemtap-4.4/tapset/linux/netfilter.stp-238-           iphdr = &@cast(__get_skb_iphdr($skb), "ipv6hdr", "kernel<linux/ipv6.h>")
systemtap-4.4/tapset/linux/netfilter.stp:239:           saddr = format_ipaddr(&iphdr->saddr, @const("AF_INET6"))
systemtap-4.4/tapset/linux/netfilter.stp:240:           daddr = format_ipaddr(&iphdr->daddr, @const("AF_INET6"))
systemtap-4.4/tapset/linux/netfilter.stp-241-           protocol = __ip6_skb_proto($skb)
##############################################
systemtap-4.4/tapset/linux/netfilter.stp-540-           ar_sha = __mac_addr_to_string(ar_data)
systemtap-4.4/tapset/linux/netfilter.stp:541:           ar_sip = format_ipaddr(kernel_int(ar_data + 6), @const("AF_INET"))
systemtap-4.4/tapset/linux/netfilter.stp-542-           ar_tha = __mac_addr_to_string(ar_data + 10)
systemtap-4.4/tapset/linux/netfilter.stp:543:           ar_tip =  format_ipaddr(kernel_int(ar_data + 16), @const("AF_INET"))
systemtap-4.4/tapset/linux/netfilter.stp-544-        }
##############################################
systemtap-4.4/tapset/linux/nfs.stp-203-
systemtap-4.4/tapset/linux/nfs.stp:204:		if (!_stp_lookup_bad_addr((int)STAP_ARG_access_flags,
systemtap-4.4/tapset/linux/nfs.stp-205-					  iov_len, kread(&(iov[seg].iov_base)),
##############################################
systemtap-4.4/tapset/linux/nfs_proc.stp-79-		== @const("AF_INET")) {
systemtap-4.4/tapset/linux/nfs_proc.stp:80:		return format_ipaddr(&@cast(addr, "sockaddr_in", "kernel:sunrpc")->sin_addr->s_addr, @const("AF_INET"))
systemtap-4.4/tapset/linux/nfs_proc.stp-81-	}
##############################################
systemtap-4.4/tapset/linux/nfs_proc.stp-83-		== @const("AF_INET6"))  {
systemtap-4.4/tapset/linux/nfs_proc.stp:84:		return format_ipaddr(&@cast(addr, "sockaddr_in6", "kernel:sunrpc")->sin6_addr, @const("AF_INET6"))
systemtap-4.4/tapset/linux/nfs_proc.stp-85-	}
##############################################
systemtap-4.4/tapset/linux/rpc.stp-1216-		return sprintf("%s:%d",
systemtap-4.4/tapset/linux/rpc.stp:1217:			       format_ipaddr(s_addr,
systemtap-4.4/tapset/linux/rpc.stp-1218-				  @const("AF_INET")), 
##############################################
systemtap-4.4/tapset/linux/rpc.stp-1221-	return sprintf("[%s]:%d",
systemtap-4.4/tapset/linux/rpc.stp:1222:		       format_ipaddr(s_addr,
systemtap-4.4/tapset/linux/rpc.stp-1223-			  @const("AF_INET6")),
##############################################
systemtap-4.4/tapset/linux/rpc.stp-1248-	else if (@cast(address, "sockaddr")->sa_family == @const("AF_INET")) {
systemtap-4.4/tapset/linux/rpc.stp:1249:		return format_ipaddr(&@cast(address, "sockaddr_in")->sin_addr->s_addr, @const("AF_INET"))
systemtap-4.4/tapset/linux/rpc.stp-1250-	}
systemtap-4.4/tapset/linux/rpc.stp-1251-	else if (@cast(address, "sockaddr")->sa_family == @const("AF_INET6")) {
systemtap-4.4/tapset/linux/rpc.stp:1252:		return format_ipaddr(&@cast(address, "sockaddr_in6")->sin6_addr,
systemtap-4.4/tapset/linux/rpc.stp-1253-				     @const("AF_INET6"))
##############################################
systemtap-4.4/tapset/linux/socket.stp-283-	name = "socket.aio_write"
systemtap-4.4/tapset/linux/socket.stp:284:	_sock = _get_sock_addr($iocb->ki_filp)
systemtap-4.4/tapset/linux/socket.stp-285-	size = (@defined($iov) ? _get_sock_size($iov, $nr_segs)
##############################################
systemtap-4.4/tapset/linux/socket.stp-314-	size = $return
systemtap-4.4/tapset/linux/socket.stp:315:	_sock = _get_sock_addr(@entry($iocb->ki_filp))
systemtap-4.4/tapset/linux/socket.stp-316-	protocol = @_sock_prot_num(@cast(_sock, "socket", "kernel"))
##############################################
systemtap-4.4/tapset/linux/socket.stp-356-	name = "socket.aio_read"
systemtap-4.4/tapset/linux/socket.stp:357:	_sock = _get_sock_addr($iocb->ki_filp)
systemtap-4.4/tapset/linux/socket.stp-358-	size = (@defined($iov) ? _get_sock_size($iov, $nr_segs)
##############################################
systemtap-4.4/tapset/linux/socket.stp-387-	size = $return
systemtap-4.4/tapset/linux/socket.stp:388:	_sock = _get_sock_addr(@entry($iocb->ki_filp))
systemtap-4.4/tapset/linux/socket.stp-389-	protocol = @_sock_prot_num(@cast(_sock, "socket", "kernel"))
##############################################
systemtap-4.4/tapset/linux/socket.stp-420-	name = "socket.write_iter"
systemtap-4.4/tapset/linux/socket.stp:421:	_sock = _get_sock_addr($iocb->ki_filp)
systemtap-4.4/tapset/linux/socket.stp-422-	if ($from->type & @const("ITER_IOVEC"))	
##############################################
systemtap-4.4/tapset/linux/socket.stp-454-	size = $return
systemtap-4.4/tapset/linux/socket.stp:455:	_sock = _get_sock_addr(@entry($iocb->ki_filp))
systemtap-4.4/tapset/linux/socket.stp-456-	protocol = @_sock_prot_num(@cast(_sock, "socket", "kernel"))
##############################################
systemtap-4.4/tapset/linux/socket.stp-486-	name = "socket.read_iter"
systemtap-4.4/tapset/linux/socket.stp:487:	_sock = _get_sock_addr($iocb->ki_filp)
systemtap-4.4/tapset/linux/socket.stp-488-	if ($to->type & @const("ITER_IOVEC"))
##############################################
systemtap-4.4/tapset/linux/socket.stp-520-	size = $return
systemtap-4.4/tapset/linux/socket.stp:521:	_sock = _get_sock_addr(@entry($iocb->ki_filp))
systemtap-4.4/tapset/linux/socket.stp-522-	protocol = @_sock_prot_num(@cast(_sock, "socket", "kernel"))
##############################################
systemtap-4.4/tapset/linux/socket.stp-548-	name = "socket.writev"
systemtap-4.4/tapset/linux/socket.stp:549:	_sock = _get_sock_addr($file)
systemtap-4.4/tapset/linux/socket.stp-550-	size = (@defined($iov) ? _get_sock_size($iov, $nr_segs)
##############################################
systemtap-4.4/tapset/linux/socket.stp-579-	size = $return
systemtap-4.4/tapset/linux/socket.stp:580:	_sock = _get_sock_addr(@entry($file))
systemtap-4.4/tapset/linux/socket.stp-581-	protocol = @_sock_prot_num(@cast(_sock, "socket", "kernel"))
##############################################
systemtap-4.4/tapset/linux/socket.stp-607-	name = "socket.readv"
systemtap-4.4/tapset/linux/socket.stp:608:	_sock = _get_sock_addr($file)
systemtap-4.4/tapset/linux/socket.stp-609-	size = (@defined($iov) ? _get_sock_size($iov, $nr_segs)
##############################################
systemtap-4.4/tapset/linux/socket.stp-638-	size = $return
systemtap-4.4/tapset/linux/socket.stp:639:	_sock = _get_sock_addr(@entry($file))
systemtap-4.4/tapset/linux/socket.stp-640-	protocol = @_sock_prot_num(@cast(_sock, "socket", "kernel"))
##############################################
systemtap-4.4/tapset/linux/sysc_ptrace.stp-64-	geteventmsg_data = _ptrace_return_geteventmsg_data(@entry($request), @entry($data))
systemtap-4.4/tapset/linux/sysc_ptrace.stp:65:	arch_prctl_addr = _ptrace_return_arch_prctl_addr(@entry($request), @entry($addr), @entry($data))
systemtap-4.4/tapset/linux/sysc_ptrace.stp-66-}
##############################################
systemtap-4.4/tapset/linux/syscalls.stpm-115-     if (_struct_sockaddr_u_sa_family(@my_addr_uaddr, @addrlen) =~ "AF_INET.*") {
systemtap-4.4/tapset/linux/syscalls.stpm:116:       uaddr_ip = _struct_sockaddr_u_ip_addr(@my_addr_uaddr, @addrlen)
systemtap-4.4/tapset/linux/syscalls.stpm-117-       uaddr_ip_port = _struct_sockaddr_u_tcp_port(@my_addr_uaddr, @addrlen)
##############################################
systemtap-4.4/tapset/linux/tcp.stp-517-	family  = __ip_sock_family($sk)
systemtap-4.4/tapset/linux/tcp.stp:518:	saddr   = format_ipaddr(__ip_sock_saddr($sk), __ip_sock_family($sk))
systemtap-4.4/tapset/linux/tcp.stp:519:	daddr   = format_ipaddr(__ip_sock_daddr($sk), __ip_sock_family($sk))
systemtap-4.4/tapset/linux/tcp.stp-520-	sport   = __tcp_sock_sport($sk)
##############################################
systemtap-4.4/tapset/linux/tcp.stp-540-	family  = __ip_sock_family(@entry($sk))
systemtap-4.4/tapset/linux/tcp.stp:541:	saddr   = format_ipaddr(__ip_sock_saddr(@entry($sk)), __ip_sock_family(@entry($sk)))
systemtap-4.4/tapset/linux/tcp.stp:542:	daddr   = format_ipaddr(__ip_sock_daddr(@entry($sk)), __ip_sock_family(@entry($sk)))
systemtap-4.4/tapset/linux/tcp.stp-543-	sport = __tcp_sock_sport(@entry($sk))
##############################################
systemtap-4.4/tapset/linux/tcp.stp-565-	flags = $flags
systemtap-4.4/tapset/linux/tcp.stp:566:	saddr   = format_ipaddr(__ip_sock_saddr($sk), __ip_sock_family($sk))
systemtap-4.4/tapset/linux/tcp.stp:567:	daddr   = format_ipaddr(__ip_sock_daddr($sk), __ip_sock_family($sk))
systemtap-4.4/tapset/linux/tcp.stp-568-	sport = __tcp_sock_sport($sk)
##############################################
systemtap-4.4/tapset/linux/tcp.stp-674-	  iphdr = __get_skb_iphdr($skb)
systemtap-4.4/tapset/linux/tcp.stp:675:	  saddr = format_ipaddr(__ip_skb_saddr(iphdr), @const("AF_INET"))
systemtap-4.4/tapset/linux/tcp.stp:676:	  daddr = format_ipaddr(__ip_skb_daddr(iphdr), @const("AF_INET"))
systemtap-4.4/tapset/linux/tcp.stp-677-	  protocol = __ip_skb_proto(iphdr)
##############################################
systemtap-4.4/tapset/linux/tcp.stp-700-	  iphdr = __get_skb_iphdr(@choose_defined($skb, kernel_pointer($pskb)))
systemtap-4.4/tapset/linux/tcp.stp:701:	  saddr = format_ipaddr(&@cast(iphdr, "ipv6hdr",
systemtap-4.4/tapset/linux/tcp.stp-702-				       "kernel<linux/ipv6.h>")->saddr,
systemtap-4.4/tapset/linux/tcp.stp-703-				@const("AF_INET6"))
systemtap-4.4/tapset/linux/tcp.stp:704:	  daddr = format_ipaddr(&@cast(iphdr, "ipv6hdr",
systemtap-4.4/tapset/linux/tcp.stp-705-				       "kernel<linux/ipv6.h>")->daddr,
##############################################
systemtap-4.4/tapset/linux/tcpmib.stp-55-{
systemtap-4.4/tapset/linux/tcpmib.stp:56:	return ntohl(__ip_sock_saddr(sk))
systemtap-4.4/tapset/linux/tcpmib.stp-57-}
##############################################
systemtap-4.4/tapset/linux/tcpmib.stp-66-{
systemtap-4.4/tapset/linux/tcpmib.stp:67:	return ntohl(__ip_sock_daddr(sk))
systemtap-4.4/tapset/linux/tcpmib.stp-68-}
##############################################
systemtap-4.4/tapset/linux/tls.stp-61-  unsigned long tlsval;
systemtap-4.4/tapset/linux/tls.stp:62:  asm volatile ("ear %0,%%a0" : "=r" (tlsval));
systemtap-4.4/tapset/linux/tls.stp:63:  asm volatile ("sllg %0,%0,32" : "=r" (tlsval));
systemtap-4.4/tapset/linux/tls.stp:64:  asm volatile ("ear %0,%%a1" : "=r" (tlsval));
systemtap-4.4/tapset/linux/tls.stp-65-  STAP_RETVALUE = tlsval;
##############################################
systemtap-4.4/tapset/linux/ucontext-symbols.stp-59-/* pure */ /* myproc-unprivileged */ /* pragma:vma */ /* pragma:symbols */
systemtap-4.4/tapset/linux/ucontext-symbols.stp:60:	 _stp_snprint_addr(STAP_RETVALUE, MAXSTRINGLEN, STAP_ARG_addr,
systemtap-4.4/tapset/linux/ucontext-symbols.stp-61-			   _STP_SYM_SYMBOL, current);
##############################################
systemtap-4.4/tapset/linux/ucontext-symbols.stp-77-/* pure */ /* myproc-unprivileged */ /* pragma:vma */ /* pragma:symbols */
systemtap-4.4/tapset/linux/ucontext-symbols.stp:78:	 _stp_snprint_addr(STAP_RETVALUE, MAXSTRINGLEN, STAP_ARG_addr,
systemtap-4.4/tapset/linux/ucontext-symbols.stp-79-			   _STP_SYM_DATA, current);
##############################################
systemtap-4.4/tapset/linux/ucontext-symbols.stp-185-/* pure */ /* myproc-unprivileged */ /* pragma:symbols */ /* pragma:vma */ /* pragma:lines */
systemtap-4.4/tapset/linux/ucontext-symbols.stp:186:  _stp_snprint_addr(STAP_RETVALUE, MAXSTRINGLEN, STAP_ARG_addr,
systemtap-4.4/tapset/linux/ucontext-symbols.stp-187-                    _STP_SYM_LINENUMBER + _STP_SYM_FILENAME, current);
##############################################
systemtap-4.4/tapset/linux/ucontext-symbols.stp-199-/* pure */ /* myproc-unprivileged */ /* pragma:symbols */ /* pragma:vma */ /* pragma:lines */
systemtap-4.4/tapset/linux/ucontext-symbols.stp:200:  _stp_snprint_addr(STAP_RETVALUE, MAXSTRINGLEN, STAP_ARG_addr,
systemtap-4.4/tapset/linux/ucontext-symbols.stp-201-                    _STP_SYM_FILENAME, current);
##############################################
systemtap-4.4/tapset/linux/ucontext-symbols.stp-213-/* pure */ /* myproc-unprivileged */ /* pragma:symbols */ /* pragma:vma */ /* pragma:lines */
systemtap-4.4/tapset/linux/ucontext-symbols.stp:214:  _stp_snprint_addr(STAP_RETVALUE, MAXSTRINGLEN, STAP_ARG_addr,
systemtap-4.4/tapset/linux/ucontext-symbols.stp-215-                    _STP_SYM_LINENUMBER, current);
##############################################
systemtap-4.4/tapset/linux/udp.stp-44-	family  = __ip_sock_family($sk)
systemtap-4.4/tapset/linux/udp.stp:45:	saddr   = format_ipaddr(__ip_sock_saddr($sk), __ip_sock_family($sk))
systemtap-4.4/tapset/linux/udp.stp:46:	daddr   = format_ipaddr(__ip_sock_daddr($sk), __ip_sock_family($sk))
systemtap-4.4/tapset/linux/udp.stp-47-	sport   = __udp_sock_sport($sk)
##############################################
systemtap-4.4/tapset/linux/udp.stp-64-	family  = __ip_sock_family(@entry($sk))
systemtap-4.4/tapset/linux/udp.stp:65:	saddr   = format_ipaddr(__ip_sock_saddr(@entry($sk)), __ip_sock_family(@entry($sk)))
systemtap-4.4/tapset/linux/udp.stp:66:	daddr   = format_ipaddr(__ip_sock_daddr(@entry($sk)), __ip_sock_family(@entry($sk)))
systemtap-4.4/tapset/linux/udp.stp-67-	sport   = __udp_sock_sport(@entry($sk))
##############################################
systemtap-4.4/tapset/linux/udp.stp-91-	family  = __ip_sock_family($sk)
systemtap-4.4/tapset/linux/udp.stp:92:	saddr   = format_ipaddr(__ip_sock_saddr($sk), __ip_sock_family($sk))
systemtap-4.4/tapset/linux/udp.stp:93:	daddr   = format_ipaddr(__ip_sock_daddr($sk), __ip_sock_family($sk))
systemtap-4.4/tapset/linux/udp.stp-94-	sport   = __udp_sock_sport($sk)
##############################################
systemtap-4.4/tapset/linux/udp.stp-116-	family  = __ip_sock_family(@entry($sk))
systemtap-4.4/tapset/linux/udp.stp:117:	saddr   = format_ipaddr(__ip_sock_saddr(@entry($sk)), __ip_sock_family(@entry($sk)))
systemtap-4.4/tapset/linux/udp.stp:118:	daddr   = format_ipaddr(__ip_sock_daddr(@entry($sk)), __ip_sock_family(@entry($sk)))
systemtap-4.4/tapset/linux/udp.stp-119-	sport   = __udp_sock_sport(@entry($sk))
##############################################
systemtap-4.4/tapset/linux/udp.stp-143-	family  = __ip_sock_family($sk)
systemtap-4.4/tapset/linux/udp.stp:144:	saddr   = format_ipaddr(__ip_sock_saddr($sk), __ip_sock_family($sk))
systemtap-4.4/tapset/linux/udp.stp:145:	daddr   = format_ipaddr(__ip_sock_daddr($sk), __ip_sock_family($sk))
systemtap-4.4/tapset/linux/udp.stp-146-	sport   = __udp_sock_sport($sk)
##############################################
systemtap-4.4/tapset/linux/udp.stp-168-	family  = __ip_sock_family(@entry($sk))
systemtap-4.4/tapset/linux/udp.stp:169:	saddr   = format_ipaddr(__ip_sock_saddr(@entry($sk)), __ip_sock_family(@entry($sk)))
systemtap-4.4/tapset/linux/udp.stp:170:	daddr   = format_ipaddr(__ip_sock_daddr(@entry($sk)), __ip_sock_family(@entry($sk)))
systemtap-4.4/tapset/linux/udp.stp-171-	sport   = __udp_sock_sport(@entry($sk))
##############################################
systemtap-4.4/tapset/linux/x86_64/aux_syscalls.stp-91-
systemtap-4.4/tapset/linux/x86_64/aux_syscalls.stp:92:function _ptrace_return_arch_prctl_addr(request, addr, data)
systemtap-4.4/tapset/linux/x86_64/aux_syscalls.stp-93-{
##############################################
systemtap-4.4/tapset/mips/registers.stp-214-/*
systemtap-4.4/tapset/mips/registers.stp:215: * _stp_regs_get_kernel_stack_nth_addr() - get address of the Nth entry of the stack
systemtap-4.4/tapset/mips/registers.stp-216- * @regs:       pt_regs which contains kernel stack pointer.
##############################################
systemtap-4.4/tapset/mips/registers.stp-218- *
systemtap-4.4/tapset/mips/registers.stp:219: * _stp_regs_get_kernel_stack_nth_addr() returns the address of the @n
systemtap-4.4/tapset/mips/registers.stp-220- * th entry of the kernel stack which is specified by @regs. If the @n
##############################################
systemtap-4.4/tapset/mips/registers.stp-223-long *
systemtap-4.4/tapset/mips/registers.stp:224:_stp_regs_get_kernel_stack_nth_addr(struct pt_regs *regs, unsigned int n)
systemtap-4.4/tapset/mips/registers.stp-225-{
##############################################
systemtap-4.4/tapset/mips/registers.stp-259-        /* Get the address of the nth item on the stack. */
systemtap-4.4/tapset/mips/registers.stp:260:        addr = _stp_regs_get_kernel_stack_nth_addr(regs, n);
systemtap-4.4/tapset/mips/registers.stp-261-        if (addr == NULL) {
##############################################
systemtap-4.4/tapsets.cxx-447-  derived_probe (base, location, true /* .components soon rewritten */ ),
systemtap-4.4/tapsets.cxx:448:  module(module), section(section), addr(addr), has_return(has_return),
systemtap-4.4/tapsets.cxx-449-  has_maxactive(has_maxactive), maxactive_val(maxactive_val),
##############################################
systemtap-4.4/tapsets.cxx-486-static int query_cu (Dwarf_Die * cudie, dwarf_query *q);
systemtap-4.4/tapsets.cxx:487:static void query_addr(Dwarf_Addr addr, dwarf_query *q);
systemtap-4.4/tapsets.cxx-488-static void query_plt_statement(dwarf_query *q);
##############################################
systemtap-4.4/tapsets.cxx-970-                        dwfl_addr, addr, q, scope_die),
systemtap-4.4/tapsets.cxx:971:    pid(q.pid_val), build_id_vaddr(0)
systemtap-4.4/tapsets.cxx-972-  {
##############################################
systemtap-4.4/tapsets.cxx-1130-      addr += elf_bias;
systemtap-4.4/tapsets.cxx:1131:      query_addr(addr, this);
systemtap-4.4/tapsets.cxx-1132-    }
##############################################
systemtap-4.4/tapsets.cxx-1243-
systemtap-4.4/tapsets.cxx:1244:  // Consult the symbol table, asm and weak functions can show up
systemtap-4.4/tapsets.cxx-1245-  // in the symbol table but not in dwarf and minidebuginfo is
##############################################
systemtap-4.4/tapsets.cxx-1797-static void
systemtap-4.4/tapsets.cxx:1798:query_addr(Dwarf_Addr addr, dwarf_query *q)
systemtap-4.4/tapsets.cxx-1799-{
##############################################
systemtap-4.4/tapsets.cxx-1885-          line = DWARF_LINENO(address_line);
systemtap-4.4/tapsets.cxx:1886:          address_line_addr = DWARF_LINEADDR(address_line);
systemtap-4.4/tapsets.cxx-1887-        }
##############################################
systemtap-4.4/tapsets.cxx-2872-    var_expanding_visitor(q.sess),
systemtap-4.4/tapsets.cxx:2873:    q(q), scope_die(sd), addr(a), add_block(NULL), add_call_probe(NULL),
systemtap-4.4/tapsets.cxx-2874-    add_block_tid(false), add_call_probe_tid(false),
##############################################
systemtap-4.4/tapsets.cxx-5452-      // We may receive probes on two types of ELF objects: ET_EXEC or ET_DYN.
systemtap-4.4/tapsets.cxx:5453:      // ET_EXEC ones need no further relocation on the addr(==dwfl_addr), whereas
systemtap-4.4/tapsets.cxx-5454-      // ET_DYN ones do (addr += run-time mmap base address).  We tell these apart
##############################################
systemtap-4.4/tapsets.cxx-5593-          save_and_restore<bool> tmp_function_num (&q.has_function_num, true);
systemtap-4.4/tapsets.cxx:5594:          query_addr (it->first, &q);
systemtap-4.4/tapsets.cxx-5595-        }
##############################################
systemtap-4.4/tapsets.cxx-5819-                  }
systemtap-4.4/tapsets.cxx:5820:                else if (!(dwarf_getlocation_addr(&attr_mem, dwfl_addr, &expr,
systemtap-4.4/tapsets.cxx-5821-                                                  &len, 1) == 1 && len > 0))
systemtap-4.4/tapsets.cxx-5822-                  {
systemtap-4.4/tapsets.cxx:5823:                    Dwarf_Addr dwfl_addr2 = q.dw.pr15123_retry_addr (dwfl_addr, & arg);
systemtap-4.4/tapsets.cxx:5824:                    if (!dwfl_addr2 || (!(dwarf_getlocation_addr(&attr_mem, dwfl_addr2, &expr,
systemtap-4.4/tapsets.cxx-5825-                                                                 &len, 1) == 1 && len > 0))) {
##############################################
systemtap-4.4/tapsets.cxx-6405-      // In this case, N is inferred to be the native word size.  Since we
systemtap-4.4/tapsets.cxx:6406:      // don't have a nice delimiter, just split it on spaces.  SDT-asm authors
systemtap-4.4/tapsets.cxx-6407-      // then must not put any spaces in arguments, to avoid ambiguity.
##############################################
systemtap-4.4/tapsets.cxx-6491-                                           long precision);
systemtap-4.4/tapsets.cxx:6492:  expression* try_parse_arg_effective_addr (target_symbol *e,
systemtap-4.4/tapsets.cxx-6493-                                            const string& asmarg,
##############################################
systemtap-4.4/tapsets.cxx-6891-      // V1/V2 do not have precision field so default to signed long
systemtap-4.4/tapsets.cxx:6892:      // V3 asm does not have precision field so default to unsigned long
systemtap-4.4/tapsets.cxx-6893-      if (probe_type == uprobe3_type)
systemtap-4.4/tapsets.cxx:6894:        precision = sizeof(long); // this is an asm probe
systemtap-4.4/tapsets.cxx-6895-      else
##############################################
systemtap-4.4/tapsets.cxx-7122-          // delegate to parenthetic syntax
systemtap-4.4/tapsets.cxx:7123:          return try_parse_arg_effective_addr (e, string("(")+asmarg+string(")"), precision);
systemtap-4.4/tapsets.cxx-7124-        }
##############################################
systemtap-4.4/tapsets.cxx-7134-          string regnames = asmarg.substr(1, asmarg.length()-2); // trim the []
systemtap-4.4/tapsets.cxx:7135:          return try_parse_arg_effective_addr (e, string("(")+regnames+string(")"), precision); // add the ()
systemtap-4.4/tapsets.cxx-7136-        }
##############################################
systemtap-4.4/tapsets.cxx-7142-expression*
systemtap-4.4/tapsets.cxx:7143:sdt_uprobe_var_expanding_visitor::try_parse_arg_effective_addr (target_symbol *e,
systemtap-4.4/tapsets.cxx-7144-                                                                const string& asmarg,
##############################################
systemtap-4.4/tapsets.cxx-7369-            goto matched;
systemtap-4.4/tapsets.cxx:7370:          if ((argexpr = try_parse_arg_effective_addr(e, asmarg, precision)) != NULL)
systemtap-4.4/tapsets.cxx-7371-            goto matched;
##############################################
systemtap-4.4/tapsets.cxx-7389-                                e->tok);
systemtap-4.4/tapsets.cxx:7390:          else // must be *PROBE2; others don't get asm operands
systemtap-4.4/tapsets.cxx-7391-            sess.print_warning (_F("Downgrading SDT_V2 probe argument to "
##############################################
systemtap-4.4/tapsets.cxx-7397-      need_debug_info = true;
systemtap-4.4/tapsets.cxx:7398:      throw SEMANTIC_ERROR(_("SDT asm not understood, requires debuginfo "
systemtap-4.4/tapsets.cxx-7399-                             "[man error::sdt]"), e->tok);
##############################################
systemtap-4.4/tapsets.cxx-7407-        //TRANSLATORS: We're mapping the operand to a new expression*.
systemtap-4.4/tapsets.cxx:7408:        clog << _F("mapped asm operand %s to ", asmarg.c_str()) << *argexpr << endl;
systemtap-4.4/tapsets.cxx-7409-
##############################################
systemtap-4.4/tapsets.cxx-7586-  base_probe(base_probe), base_loc(base_loc), params(params), results(results),
systemtap-4.4/tapsets.cxx:7587:  user_lib(user_lib), pdata(0), probe_scn_offset(0), probe_scn_addr(0), arg_count(0),
systemtap-4.4/tapsets.cxx-7588-  base(0), pc(0), semaphore_load_offset(0), semaphore(0)
##############################################
systemtap-4.4/tapsets.cxx-10584-  derived_probe (base, location, true /* .components soon rewritten */ ),
systemtap-4.4/tapsets.cxx:10585:  hwbkpt_addr (addr),
systemtap-4.4/tapsets.cxx-10586-  symbol_name (symname),
##############################################
systemtap-4.4/testsuite/Makefile.am-48-check-local:
systemtap-4.4/testsuite/Makefile.am:49:	if test `( expr "$(DEJAZILLA)" : '.*://.*' )` -ne 0; then \
systemtap-4.4/testsuite/Makefile.am-50-	  curl -F file=@systemtap.sum $(DEJAZILLA); \
systemtap-4.4/testsuite/Makefile.am:51:	elif test `( expr "$(DEJAZILLA)" : '.*@.*' )` -ne 0; then \
systemtap-4.4/testsuite/Makefile.am-52-	  mail $(DEJAZILLA) < systemtap.sum; \
##############################################
systemtap-4.4/testsuite/Makefile.am-70-	-sed -ne '/systemtap.Summary/,$$ p' < systemtap.sum
systemtap-4.4/testsuite/Makefile.am:71:	if test `( expr "$(DEJAZILLA)" : '.*://.*' )` -ne 0; then \
systemtap-4.4/testsuite/Makefile.am-72-	  curl -F file=@systemtap.sum $(DEJAZILLA); \
systemtap-4.4/testsuite/Makefile.am:73:	elif test `( expr "$(DEJAZILLA)" : '.*@.*' )` -ne 0; then \
systemtap-4.4/testsuite/Makefile.am-74-	  mail $(DEJAZILLA) < systemtap.sum; \
##############################################
systemtap-4.4/testsuite/Makefile.in-51-  { \
systemtap-4.4/testsuite/Makefile.in:52:    flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
systemtap-4.4/testsuite/Makefile.in-53-  }; \
##############################################
systemtap-4.4/testsuite/Makefile.in-350-	  echo "## Begin content included from file $$f.  Do not modify. ##" \
systemtap-4.4/testsuite/Makefile.in:351:	   && cat `test -f "$$f" || echo '$(srcdir)/'`$$f \
systemtap-4.4/testsuite/Makefile.in-352-	   && echo "## End content included from file $$f. ##" \
##############################################
systemtap-4.4/testsuite/Makefile.in-504-check-local:
systemtap-4.4/testsuite/Makefile.in:505:	if test `( expr "$(DEJAZILLA)" : '.*://.*' )` -ne 0; then \
systemtap-4.4/testsuite/Makefile.in-506-	  curl -F file=@systemtap.sum $(DEJAZILLA); \
systemtap-4.4/testsuite/Makefile.in:507:	elif test `( expr "$(DEJAZILLA)" : '.*@.*' )` -ne 0; then \
systemtap-4.4/testsuite/Makefile.in-508-	  mail $(DEJAZILLA) < systemtap.sum; \
##############################################
systemtap-4.4/testsuite/Makefile.in-526-	-sed -ne '/systemtap.Summary/,$$ p' < systemtap.sum
systemtap-4.4/testsuite/Makefile.in:527:	if test `( expr "$(DEJAZILLA)" : '.*://.*' )` -ne 0; then \
systemtap-4.4/testsuite/Makefile.in-528-	  curl -F file=@systemtap.sum $(DEJAZILLA); \
systemtap-4.4/testsuite/Makefile.in:529:	elif test `( expr "$(DEJAZILLA)" : '.*@.*' )` -ne 0; then \
systemtap-4.4/testsuite/Makefile.in-530-	  mail $(DEJAZILLA) < systemtap.sum; \
##############################################
systemtap-4.4/testsuite/aclocal.m4-92-# iff we strip the leading $srcdir from $ac_aux_dir.  That would be:
systemtap-4.4/testsuite/aclocal.m4:93:#   am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"`
systemtap-4.4/testsuite/aclocal.m4-94-# and then we would define $MISSING as
##############################################
systemtap-4.4/testsuite/aclocal.m4-107-# Expand $ac_aux_dir to an absolute path.
systemtap-4.4/testsuite/aclocal.m4:108:am_aux_dir=`cd "$ac_aux_dir" && pwd`
systemtap-4.4/testsuite/aclocal.m4-109-])
##############################################
systemtap-4.4/testsuite/aclocal.m4-178-AC_REQUIRE([AC_PROG_INSTALL])dnl
systemtap-4.4/testsuite/aclocal.m4:179:if test "`cd $srcdir && pwd`" != "`pwd`"; then
systemtap-4.4/testsuite/aclocal.m4-180-  # Use -I$(srcdir) only when $(srcdir) != ., so that make's output
##############################################
systemtap-4.4/testsuite/aclocal.m4-337-    * )
systemtap-4.4/testsuite/aclocal.m4:338:      _am_stamp_count=`expr $_am_stamp_count + 1` ;;
systemtap-4.4/testsuite/aclocal.m4-339-  esac
systemtap-4.4/testsuite/aclocal.m4-340-done
systemtap-4.4/testsuite/aclocal.m4:341:echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
systemtap-4.4/testsuite/aclocal.m4-342-
##############################################
systemtap-4.4/testsuite/aclocal.m4-522-     echo "timestamp, slept: $am_has_slept" > conftest.file
systemtap-4.4/testsuite/aclocal.m4:523:     set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null`
systemtap-4.4/testsuite/aclocal.m4-524-     if test "$[*]" = "X"; then
systemtap-4.4/testsuite/aclocal.m4-525-	# -L didn't work.
systemtap-4.4/testsuite/aclocal.m4:526:	set X `ls -t "$srcdir/configure" conftest.file`
systemtap-4.4/testsuite/aclocal.m4-527-     fi
##############################################
systemtap-4.4/testsuite/buildok/aux_syscalls-embedded.stp-19-%( systemtap_v >= "2.5" %?
systemtap-4.4/testsuite/buildok/aux_syscalls-embedded.stp:20:	print (_struct_sockaddr_u_ip_addr(0,0))
systemtap-4.4/testsuite/buildok/aux_syscalls-embedded.stp-21-	print (_struct_sockaddr_u_tcp_port(0,0))
##############################################
systemtap-4.4/testsuite/buildok/aux_syscalls-embedded.stp-175-	# Implementation is in arch specific files but with compatible API.
systemtap-4.4/testsuite/buildok/aux_syscalls-embedded.stp:176:	print (_ptrace_return_arch_prctl_addr(0,0,0))
systemtap-4.4/testsuite/buildok/aux_syscalls-embedded.stp-177-
##############################################
systemtap-4.4/testsuite/buildok/context-embedded.stp-25-	       + stack_unused())
systemtap-4.4/testsuite/buildok/context-embedded.stp:26:	printf("addr: 0x%x\n", addr())
systemtap-4.4/testsuite/buildok/context-embedded.stp:27:	printf("uaddr: 0x%x\n", uaddr())
systemtap-4.4/testsuite/buildok/context-embedded.stp-28-	log(cmdline_args(1, 1, "bar"))
##############################################
systemtap-4.4/testsuite/buildok/context-unwind-embedded.stp-7-	printf("%s\n", caller())
systemtap-4.4/testsuite/buildok/context-unwind-embedded.stp:8:	printf("%d\n", caller_addr())
systemtap-4.4/testsuite/buildok/context-unwind-embedded.stp-9-}
##############################################
systemtap-4.4/testsuite/buildok/fortytwo.stp-21-
systemtap-4.4/testsuite/buildok/fortytwo.stp:22:fullfn=`stap $@ -u -wp2 -e 'probe kernel.statement("'$fn'") {}' | grep kernel | cut -f2 -d'"'`
systemtap-4.4/testsuite/buildok/fortytwo.stp:23:lineno=`echo $fullfn | cut -f2 -d:`
systemtap-4.4/testsuite/buildok/fortytwo.stp-24-
##############################################
systemtap-4.4/testsuite/buildok/fortytwo.stp-28-do
systemtap-4.4/testsuite/buildok/fortytwo.stp:29:    ilineno=`expr $lineno + $i`
systemtap-4.4/testsuite/buildok/fortytwo.stp:30:    errors=`stap $@ -u -p4 -e 'probe kernel.statement("'$fn':'$ilineno'") {$'$var'}' 2>&1 >/dev/null ||true `
systemtap-4.4/testsuite/buildok/fortytwo.stp-31-    if echo "$errors" | grep -q unable.to.find.local
##############################################
systemtap-4.4/testsuite/buildok/fortytwo.stp-37-
systemtap-4.4/testsuite/buildok/fortytwo.stp:38:errors=`stap $@ -u -p4 -e 'probe kernel.statement("'$fn':'$lineno'").nearest {$'$var'}' 2>&1 >/dev/null ||true `
systemtap-4.4/testsuite/buildok/fortytwo.stp-39-if echo "$errors" | grep -q unable.to.find.local
##############################################
systemtap-4.4/testsuite/buildok/ip-embedded.stp-4-{
systemtap-4.4/testsuite/buildok/ip-embedded.stp:5:	printf("%s\n", format_ipaddr(0, 0))
systemtap-4.4/testsuite/buildok/ip-embedded.stp-6-	printf("%s\n", ip_ntop(0))
systemtap-4.4/testsuite/buildok/ip-embedded.stp:7:	printf("%d\n", __ip_sock_saddr(0))
systemtap-4.4/testsuite/buildok/ip-embedded.stp:8:	printf("%d\n", __ip_sock_daddr(0))
systemtap-4.4/testsuite/buildok/ip-embedded.stp-9-	printf("%d\n", __ip_sock_family(0))
##############################################
systemtap-4.4/testsuite/buildok/ip-embedded.stp-11-	printf("%d\n", __ip_skb_proto(0))
systemtap-4.4/testsuite/buildok/ip-embedded.stp:12:	printf("%d\n", __ip_skb_saddr(0))
systemtap-4.4/testsuite/buildok/ip-embedded.stp:13:	printf("%d\n", __ip_skb_daddr(0))
systemtap-4.4/testsuite/buildok/ip-embedded.stp-14-}
##############################################
systemtap-4.4/testsuite/buildok/ipmib-all-probes.stp-8-	// Insure all these functions will build
systemtap-4.4/testsuite/buildok/ipmib-all-probes.stp:9:	if ( ipmib_remote_addr(skb, SourceIsLocal) ) return 0
systemtap-4.4/testsuite/buildok/ipmib-all-probes.stp:10:	if ( ipmib_local_addr(skb, SourceIsLocal) ) return 0
systemtap-4.4/testsuite/buildok/ipmib-all-probes.stp-11-	if ( ipmib_tcp_remote_port(skb, SourceIsLocal) ) return 0
##############################################
systemtap-4.4/testsuite/buildok/ipmib-detailed.stp-4-	// Insure all these functions will build
systemtap-4.4/testsuite/buildok/ipmib-detailed.stp:5:	if ( ipmib_remote_addr(skb, SourceIsLocal) ) return 0
systemtap-4.4/testsuite/buildok/ipmib-detailed.stp:6:	if ( ipmib_local_addr(skb, SourceIsLocal) ) return 0
systemtap-4.4/testsuite/buildok/ipmib-detailed.stp-7-	if ( ipmib_tcp_remote_port(skb, SourceIsLocal) ) return 0
##############################################
systemtap-4.4/testsuite/buildok/ipmib-embedded.stp-4-{
systemtap-4.4/testsuite/buildok/ipmib-embedded.stp:5:	printf("%d\n", ipmib_remote_addr(0, 0))
systemtap-4.4/testsuite/buildok/ipmib-embedded.stp:6:	printf("%d\n", ipmib_local_addr(0, 0))
systemtap-4.4/testsuite/buildok/ipmib-embedded.stp-7-	printf("%d\n", ipmib_tcp_remote_port(0, 0))
##############################################
systemtap-4.4/testsuite/buildok/socket-embedded.stp-14-		sock_type_str2num ("") +
systemtap-4.4/testsuite/buildok/socket-embedded.stp:15:		_get_sock_addr (0) +
systemtap-4.4/testsuite/buildok/socket-embedded.stp-16-		_get_sock_size (0, 0) +
##############################################
systemtap-4.4/testsuite/buildok/tcpmib-embedded.stp-4-        print(tcpmib_get_state(0) +
systemtap-4.4/testsuite/buildok/tcpmib-embedded.stp:5:              tcpmib_local_addr(0) +
systemtap-4.4/testsuite/buildok/tcpmib-embedded.stp:6:              tcpmib_remote_addr(0) +
systemtap-4.4/testsuite/buildok/tcpmib-embedded.stp-7-              tcpmib_local_port(0) +
##############################################
systemtap-4.4/testsuite/buildok/ucontext-embedded.stp-3-probe begin {
systemtap-4.4/testsuite/buildok/ucontext-embedded.stp:4:	log(umodname(uaddr()))
systemtap-4.4/testsuite/buildok/ucontext-embedded.stp-5-}
##############################################
systemtap-4.4/testsuite/configure-45-if test -z "$BASH_VERSION$ZSH_VERSION" \
systemtap-4.4/testsuite/configure:46:    && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
systemtap-4.4/testsuite/configure-47-  as_echo='print -r --'
systemtap-4.4/testsuite/configure-48-  as_echo_n='print -rn --'
systemtap-4.4/testsuite/configure:49:elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
systemtap-4.4/testsuite/configure-50-  as_echo='printf %s\n'
##############################################
systemtap-4.4/testsuite/configure-52-else
systemtap-4.4/testsuite/configure:53:  if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
systemtap-4.4/testsuite/configure-54-    as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
##############################################
systemtap-4.4/testsuite/configure-62-	expr "X$arg" : "X\\(.*\\)$as_nl";
systemtap-4.4/testsuite/configure:63:	arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
systemtap-4.4/testsuite/configure-64-      esac;
##############################################
systemtap-4.4/testsuite/configure-199-  eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" &&
systemtap-4.4/testsuite/configure:200:  test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1"
systemtap-4.4/testsuite/configure-201-  if (eval "$as_required") 2>/dev/null; then :
##############################################
systemtap-4.4/testsuite/configure-326-      case $as_dir in #(
systemtap-4.4/testsuite/configure:327:      *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
systemtap-4.4/testsuite/configure-328-      *) as_qdir=$as_dir;;
##############################################
systemtap-4.4/testsuite/configure-399-  {
systemtap-4.4/testsuite/configure:400:    as_val=`expr "$@" || test $? -eq 1`
systemtap-4.4/testsuite/configure-401-  }
##############################################
systemtap-4.4/testsuite/configure-406-# ----------------------------------------
systemtap-4.4/testsuite/configure:407:# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
systemtap-4.4/testsuite/configure-408-# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
##############################################
systemtap-4.4/testsuite/configure-469-  eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" &&
systemtap-4.4/testsuite/configure:470:  test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || {
systemtap-4.4/testsuite/configure-471-  # Blame Lee E. McMahon (1931-1989) for sed's syntax.  :-)
##############################################
systemtap-4.4/testsuite/configure-735-  case $ac_option in
systemtap-4.4/testsuite/configure:736:  *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
systemtap-4.4/testsuite/configure-737-  *=)   ac_optarg= ;;
##############################################
systemtap-4.4/testsuite/configure-779-  -disable-* | --disable-*)
systemtap-4.4/testsuite/configure:780:    ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
systemtap-4.4/testsuite/configure-781-    # Reject names that are not valid shell variable names.
##############################################
systemtap-4.4/testsuite/configure-784-    ac_useropt_orig=$ac_useropt
systemtap-4.4/testsuite/configure:785:    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
systemtap-4.4/testsuite/configure-786-    case $ac_user_opts in
##############################################
systemtap-4.4/testsuite/configure-805-  -enable-* | --enable-*)
systemtap-4.4/testsuite/configure:806:    ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
systemtap-4.4/testsuite/configure-807-    # Reject names that are not valid shell variable names.
##############################################
systemtap-4.4/testsuite/configure-810-    ac_useropt_orig=$ac_useropt
systemtap-4.4/testsuite/configure:811:    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
systemtap-4.4/testsuite/configure-812-    case $ac_user_opts in
##############################################
systemtap-4.4/testsuite/configure-1009-  -with-* | --with-*)
systemtap-4.4/testsuite/configure:1010:    ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
systemtap-4.4/testsuite/configure-1011-    # Reject names that are not valid shell variable names.
##############################################
systemtap-4.4/testsuite/configure-1014-    ac_useropt_orig=$ac_useropt
systemtap-4.4/testsuite/configure:1015:    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
systemtap-4.4/testsuite/configure-1016-    case $ac_user_opts in
##############################################
systemtap-4.4/testsuite/configure-1025-  -without-* | --without-*)
systemtap-4.4/testsuite/configure:1026:    ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'`
systemtap-4.4/testsuite/configure-1027-    # Reject names that are not valid shell variable names.
##############################################
systemtap-4.4/testsuite/configure-1030-    ac_useropt_orig=$ac_useropt
systemtap-4.4/testsuite/configure:1031:    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
systemtap-4.4/testsuite/configure-1032-    case $ac_user_opts in
##############################################
systemtap-4.4/testsuite/configure-1063-  *=*)
systemtap-4.4/testsuite/configure:1064:    ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='`
systemtap-4.4/testsuite/configure-1065-    # Reject names that are not valid shell variable names.
##############################################
systemtap-4.4/testsuite/configure-1084-if test -n "$ac_prev"; then
systemtap-4.4/testsuite/configure:1085:  ac_option=--`echo $ac_prev | sed 's/_/-/g'`
systemtap-4.4/testsuite/configure-1086-  as_fn_error $? "missing argument to $ac_option"
##############################################
systemtap-4.4/testsuite/configure-1106-    */ )
systemtap-4.4/testsuite/configure:1107:      ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'`
systemtap-4.4/testsuite/configure-1108-      eval $ac_var=\$ac_val;;
##############################################
systemtap-4.4/testsuite/configure-1141-ac_ls_di=`ls -di .` &&
systemtap-4.4/testsuite/configure:1142:ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` ||
systemtap-4.4/testsuite/configure-1143-  as_fn_error $? "working directory cannot be determined"
##############################################
systemtap-4.4/testsuite/configure-1197-case $srcdir in
systemtap-4.4/testsuite/configure:1198:*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;;
systemtap-4.4/testsuite/configure-1199-esac
##############################################
systemtap-4.4/testsuite/configure-1240-By default, \`make install' will install all the files in
systemtap-4.4/testsuite/configure:1241:\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc.  You can specify
systemtap-4.4/testsuite/configure:1242:an installation prefix other than \`$ac_default_prefix' using \`--prefix',
systemtap-4.4/testsuite/configure-1243-for instance \`--prefix=\$HOME'.
##############################################
systemtap-4.4/testsuite/configure-1318-*)
systemtap-4.4/testsuite/configure:1319:  ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
systemtap-4.4/testsuite/configure-1320-  # A ".." for each directory in $ac_dir_suffix.
systemtap-4.4/testsuite/configure:1321:  ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
systemtap-4.4/testsuite/configure-1322-  case $ac_top_builddir_sub in
##############################################
systemtap-4.4/testsuite/configure-1454-    *\'*)
systemtap-4.4/testsuite/configure:1455:      ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
systemtap-4.4/testsuite/configure-1456-    esac
##############################################
systemtap-4.4/testsuite/configure-1537-      case $ac_val in
systemtap-4.4/testsuite/configure:1538:      *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
systemtap-4.4/testsuite/configure-1539-      esac
##############################################
systemtap-4.4/testsuite/configure-1552-	case $ac_val in
systemtap-4.4/testsuite/configure:1553:	*\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
systemtap-4.4/testsuite/configure-1554-	esac
##############################################
systemtap-4.4/testsuite/configure-1672-    set,)
systemtap-4.4/testsuite/configure:1673:      { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
systemtap-4.4/testsuite/configure:1674:$as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
systemtap-4.4/testsuite/configure-1675-      ac_cache_corrupted=: ;;
##############################################
systemtap-4.4/testsuite/configure-1683-	# differences in whitespace do not lead to failure.
systemtap-4.4/testsuite/configure:1684:	ac_old_val_w=`echo x $ac_old_val`
systemtap-4.4/testsuite/configure:1685:	ac_new_val_w=`echo x $ac_new_val`
systemtap-4.4/testsuite/configure-1686-	if test "$ac_old_val_w" != "$ac_new_val_w"; then
##############################################
systemtap-4.4/testsuite/configure-1703-    case $ac_new_val in
systemtap-4.4/testsuite/configure:1704:    *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
systemtap-4.4/testsuite/configure-1705-    *) ac_arg=$ac_var=$ac_new_val ;;
##############################################
systemtap-4.4/testsuite/configure-1880-     echo "timestamp, slept: $am_has_slept" > conftest.file
systemtap-4.4/testsuite/configure:1881:     set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null`
systemtap-4.4/testsuite/configure-1882-     if test "$*" = "X"; then
systemtap-4.4/testsuite/configure-1883-	# -L didn't work.
systemtap-4.4/testsuite/configure:1884:	set X `ls -t "$srcdir/configure" conftest.file`
systemtap-4.4/testsuite/configure-1885-     fi
##############################################
systemtap-4.4/testsuite/configure-1931-ac_script='s/[\\$]/&&/g;s/;s,x,x,$//'
systemtap-4.4/testsuite/configure:1932:program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"`
systemtap-4.4/testsuite/configure-1933-
systemtap-4.4/testsuite/configure-1934-# Expand $ac_aux_dir to an absolute path.
systemtap-4.4/testsuite/configure:1935:am_aux_dir=`cd "$ac_aux_dir" && pwd`
systemtap-4.4/testsuite/configure-1936-
##############################################
systemtap-4.4/testsuite/configure-2076-	   as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext" || continue
systemtap-4.4/testsuite/configure:2077:	   case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #(
systemtap-4.4/testsuite/configure-2078-	     'mkdir (GNU coreutils) '* | \
##############################################
systemtap-4.4/testsuite/configure-2149-set x ${MAKE-make}
systemtap-4.4/testsuite/configure:2150:ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'`
systemtap-4.4/testsuite/configure-2151-if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then :
##############################################
systemtap-4.4/testsuite/configure-2159-# GNU make sometimes prints "make[1]: Entering ...", which would confuse us.
systemtap-4.4/testsuite/configure:2160:case `${MAKE-make} -f conftest.make 2>/dev/null` in
systemtap-4.4/testsuite/configure-2161-  *@@@%%%=?*=@@@%%%*)
##############################################
systemtap-4.4/testsuite/configure-2225-
systemtap-4.4/testsuite/configure:2226:if test "`cd $srcdir && pwd`" != "`pwd`"; then
systemtap-4.4/testsuite/configure-2227-  # Use -I$(srcdir) only when $(srcdir) != ., so that make's output
##############################################
systemtap-4.4/testsuite/configure-2394-do
systemtap-4.4/testsuite/configure:2395:    app=`basename $exp .exp`
systemtap-4.4/testsuite/configure-2396-    apps="$app $apps"
##############################################
systemtap-4.4/testsuite/configure-2533-'
systemtap-4.4/testsuite/configure:2534:DEFS=`sed -n "$ac_script" confdefs.h`
systemtap-4.4/testsuite/configure-2535-
##############################################
systemtap-4.4/testsuite/configure-2542-  ac_script='s/\$U\././;s/\.o$//;s/\.obj$//'
systemtap-4.4/testsuite/configure:2543:  ac_i=`$as_echo "$ac_i" | sed "$ac_script"`
systemtap-4.4/testsuite/configure-2544-  # 2. Prepend LIBOBJDIR.  When used with automake>=1.10 LIBOBJDIR
##############################################
systemtap-4.4/testsuite/configure-2622-if test -z "$BASH_VERSION$ZSH_VERSION" \
systemtap-4.4/testsuite/configure:2623:    && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
systemtap-4.4/testsuite/configure-2624-  as_echo='print -r --'
systemtap-4.4/testsuite/configure-2625-  as_echo_n='print -rn --'
systemtap-4.4/testsuite/configure:2626:elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
systemtap-4.4/testsuite/configure-2627-  as_echo='printf %s\n'
##############################################
systemtap-4.4/testsuite/configure-2629-else
systemtap-4.4/testsuite/configure:2630:  if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
systemtap-4.4/testsuite/configure-2631-    as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
##############################################
systemtap-4.4/testsuite/configure-2639-	expr "X$arg" : "X\\(.*\\)$as_nl";
systemtap-4.4/testsuite/configure:2640:	arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
systemtap-4.4/testsuite/configure-2641-      esac;
##############################################
systemtap-4.4/testsuite/configure-2716-# ----------------------------------------
systemtap-4.4/testsuite/configure:2717:# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
systemtap-4.4/testsuite/configure-2718-# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
##############################################
systemtap-4.4/testsuite/configure-2788-  {
systemtap-4.4/testsuite/configure:2789:    as_val=`expr "$@" || test $? -eq 1`
systemtap-4.4/testsuite/configure-2790-  }
##############################################
systemtap-4.4/testsuite/configure-2892-      case $as_dir in #(
systemtap-4.4/testsuite/configure:2893:      *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
systemtap-4.4/testsuite/configure-2894-      *) as_qdir=$as_dir;;
##############################################
systemtap-4.4/testsuite/configure-3014-cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
systemtap-4.4/testsuite/configure:3015:ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
systemtap-4.4/testsuite/configure-3016-ac_cs_version="\\
##############################################
systemtap-4.4/testsuite/configure-3039-  --*=?*)
systemtap-4.4/testsuite/configure:3040:    ac_option=`expr "X$1" : 'X\([^=]*\)='`
systemtap-4.4/testsuite/configure:3041:    ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
systemtap-4.4/testsuite/configure-3042-    ac_shift=:
##############################################
systemtap-4.4/testsuite/configure-3044-  --*=)
systemtap-4.4/testsuite/configure:3045:    ac_option=`expr "X$1" : 'X\([^=]*\)='`
systemtap-4.4/testsuite/configure-3046-    ac_optarg=
##############################################
systemtap-4.4/testsuite/configure-3068-    case $ac_optarg in
systemtap-4.4/testsuite/configure:3069:    *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
systemtap-4.4/testsuite/configure-3070-    '') as_fn_error $? "missing file argument" ;;
##############################################
systemtap-4.4/testsuite/configure-3184-fi
systemtap-4.4/testsuite/configure:3185:ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
systemtap-4.4/testsuite/configure-3186-if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
##############################################
systemtap-4.4/testsuite/configure-3201-  as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
systemtap-4.4/testsuite/configure:3202:ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'`
systemtap-4.4/testsuite/configure-3203-ac_delim='%!_!# '
##############################################
systemtap-4.4/testsuite/configure-3207-
systemtap-4.4/testsuite/configure:3208:  ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X`
systemtap-4.4/testsuite/configure-3209-  if test $ac_delim_n = $ac_delim_num; then
##############################################
systemtap-4.4/testsuite/configure-3369-      esac
systemtap-4.4/testsuite/configure:3370:      case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
systemtap-4.4/testsuite/configure-3371-      as_fn_append ac_file_inputs " '$ac_f'"
##############################################
systemtap-4.4/testsuite/configure-3428-*)
systemtap-4.4/testsuite/configure:3429:  ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
systemtap-4.4/testsuite/configure-3430-  # A ".." for each directory in $ac_dir_suffix.
systemtap-4.4/testsuite/configure:3431:  ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
systemtap-4.4/testsuite/configure-3432-  case $ac_top_builddir_sub in
##############################################
systemtap-4.4/testsuite/configure-3489-/@mandir@/p'
systemtap-4.4/testsuite/configure:3490:case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in
systemtap-4.4/testsuite/configure-3491-*datarootdir*) ac_datarootdir_seen=yes;;
##############################################
systemtap-4.4/testsuite/configure-3506-
systemtap-4.4/testsuite/configure:3507:# Neutralize VPATH when `$srcdir' = `.'.
systemtap-4.4/testsuite/configure-3508-# Shell code in configure.ac might set extrasub.
##############################################
systemtap-4.4/testsuite/configure-3534-test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
systemtap-4.4/testsuite/configure:3535:  { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } &&
systemtap-4.4/testsuite/configure-3536-  { ac_out=`sed -n '/^[	 ]*datarootdir[	 ]*:*=/p' \
##############################################
systemtap-4.4/testsuite/configure.ac-36-do
systemtap-4.4/testsuite/configure.ac:37:    app=`basename $exp .exp`
systemtap-4.4/testsuite/configure.ac-38-    apps="$app $apps"
##############################################
systemtap-4.4/testsuite/dg-extract-results.sh-29-# Try to use the python version if possible, since it tends to be faster.
systemtap-4.4/testsuite/dg-extract-results.sh:30:PYTHON_VER=`echo "$0" | sed 's/sh$/py/'`
systemtap-4.4/testsuite/dg-extract-results.sh-31-if test "$PYTHON_VER" != "$0" &&
##############################################
systemtap-4.4/testsuite/dg-extract-results.sh-76-done
systemtap-4.4/testsuite/dg-extract-results.sh:77:shift `expr ${OPTIND} - 1`
systemtap-4.4/testsuite/dg-extract-results.sh-78-
##############################################
systemtap-4.4/testsuite/dg-extract-results.sh-90-{
systemtap-4.4/testsuite/dg-extract-results.sh:91:  TMP=`(umask 077 && mktemp -d -q "${TMPDIR}/dg-combine-results-$$-XXXXXX") 2>/dev/null` &&
systemtap-4.4/testsuite/dg-extract-results.sh-92-  test -n "$TMP" && test -d "$TMP"
##############################################
systemtap-4.4/testsuite/dg-extract-results.sh-146-
systemtap-4.4/testsuite/dg-extract-results.sh:147:  CNT=`$GREP '=== .* tests ===' $SUM_FILES | $AWK '{ print $3 }' | sort -u | wc -l`
systemtap-4.4/testsuite/dg-extract-results.sh-148-  if [ $CNT -eq 1 ]; then
systemtap-4.4/testsuite/dg-extract-results.sh:149:    TOOL=`$GREP '=== .* tests ===' $FIRST_SUM | $AWK '{ print $2 }'`
systemtap-4.4/testsuite/dg-extract-results.sh-150-  else
##############################################
systemtap-4.4/testsuite/dg-extract-results.sh-159-
systemtap-4.4/testsuite/dg-extract-results.sh:160:  SUM_FILES=`$GREP -l "=== $TOOL" $SUM_FILES`
systemtap-4.4/testsuite/dg-extract-results.sh-161-  if test -z "$SUM_FILES" ; then
##############################################
systemtap-4.4/testsuite/dg-extract-results.sh-211-END {
systemtap-4.4/testsuite/dg-extract-results.sh:212:  system ("cat ${TMP}/chapter-*")
systemtap-4.4/testsuite/dg-extract-results.sh-213-  print "		=== acats Summary ==="
##############################################
systemtap-4.4/testsuite/dg-extract-results.sh-242-  done
systemtap-4.4/testsuite/dg-extract-results.sh:243:  VARIANTS="`sort -u ${TMP}/varlist`"
systemtap-4.4/testsuite/dg-extract-results.sh-244-else
##############################################
systemtap-4.4/testsuite/dg-extract-results.sh-257-do
systemtap-4.4/testsuite/dg-extract-results.sh:258:  VARIANT_COUNT=`expr $VARIANT_COUNT + 1`
systemtap-4.4/testsuite/dg-extract-results.sh-259-done
##############################################
systemtap-4.4/testsuite/dg-extract-results.sh-353-	if ("$MODE" == "sum")
systemtap-4.4/testsuite/dg-extract-results.sh:354:	  system (cmd" ${TMP}/list"n" | sed -n 's/^[^ ]* [^ |]*|//p'")
systemtap-4.4/testsuite/dg-extract-results.sh-355-	else
systemtap-4.4/testsuite/dg-extract-results.sh:356:	  system ("cat ${TMP}/list"n)
systemtap-4.4/testsuite/dg-extract-results.sh-357-      }
##############################################
systemtap-4.4/testsuite/dg-extract-results.sh-402-
systemtap-4.4/testsuite/dg-extract-results.sh:403:  PVAR=`echo $VAR | sed 's,/,.,g'`
systemtap-4.4/testsuite/dg-extract-results.sh-404-  TMPFILE=${TMP}/var-$PVAR
##############################################
systemtap-4.4/testsuite/parseko/bad_tapset.stp-4-
systemtap-4.4/testsuite/parseko/bad_tapset.stp:5:TAPSET=`dirname $0`/bad_tapset/
systemtap-4.4/testsuite/parseko/bad_tapset.stp-6-stap $@ -p1 -e 'probe begin {}' -I $TAPSET -W
##############################################
systemtap-4.4/testsuite/parseok/bad_tapset.stp-4-
systemtap-4.4/testsuite/parseok/bad_tapset.stp:5:TAPSET=`dirname $0`/../parseko/bad_tapset/
systemtap-4.4/testsuite/parseok/bad_tapset.stp-6-stap $@ -p1 -e 'probe begin {}' -I $TAPSET
##############################################
systemtap-4.4/testsuite/sys/sdt.h-12-#ifdef __LP64__
systemtap-4.4/testsuite/sys/sdt.h:13: #define STAP_PROBE_ADDR(arg) "\t.quad " arg
systemtap-4.4/testsuite/sys/sdt.h-14-#elif defined (__BIG_ENDIAN__)
systemtap-4.4/testsuite/sys/sdt.h:15: #define STAP_PROBE_ADDR(arg) "\t.long 0\n\t.long " arg
systemtap-4.4/testsuite/sys/sdt.h-16-#else
systemtap-4.4/testsuite/sys/sdt.h:17: #define STAP_PROBE_ADDR(arg) "\t.long " arg
systemtap-4.4/testsuite/sys/sdt.h-18-#endif
##############################################
systemtap-4.4/testsuite/sys/sdt.h-37-		    "\t.balign 8\n"			\
systemtap-4.4/testsuite/sys/sdt.h:38:		    STAP_PROBE_ADDR("1b\n")             \
systemtap-4.4/testsuite/sys/sdt.h-39-		    "\t.balign 8\n"                     \
systemtap-4.4/testsuite/sys/sdt.h:40:		    STAP_PROBE_ADDR(#arg "\n")		\
systemtap-4.4/testsuite/sys/sdt.h-41-		    "\t.int 0\n"			\
##############################################
systemtap-4.4/testsuite/sys/sdt.h-51-		    "\t.balign 8\n"			\
systemtap-4.4/testsuite/sys/sdt.h:52:  		    STAP_PROBE_ADDR ("1f\n")		\
systemtap-4.4/testsuite/sys/sdt.h-53-		    "\t.balign 8\n"			\
systemtap-4.4/testsuite/sys/sdt.h:54:  		    STAP_PROBE_ADDR ("2f\n")		\
systemtap-4.4/testsuite/sys/sdt.h-55-		    "\t.balign 8\n"			\
systemtap-4.4/testsuite/sys/sdt.h:56:		    STAP_PROBE_ADDR (#argc "\n")	\
systemtap-4.4/testsuite/sys/sdt.h-57-                    "\t.balign 8\n"                     \
systemtap-4.4/testsuite/sys/sdt.h:58:                    STAP_PROBE_ADDR("3f\n")		\
systemtap-4.4/testsuite/sys/sdt.h-59-                    "\t.balign 8\n"                     \
systemtap-4.4/testsuite/sys/sdt.h:60:                    STAP_PROBE_ADDR("4f\n")          	\
systemtap-4.4/testsuite/sys/sdt.h-61-                    "\t.balign 8\n"                     \
systemtap-4.4/testsuite/sys/sdt.h:62:		    STAP_PROBE_ADDR(semaphore "\n")	\
systemtap-4.4/testsuite/sys/sdt.h-63-  		    "\t.balign 8\n"			\
##############################################
systemtap-4.4/testsuite/systemtap.apps/xulrunner.exp-102-cd xul/bld
systemtap-4.4/testsuite/systemtap.apps/xulrunner.exp:103:JAVA=`yum info available 'java*openjdk' |& awk '/Name/ {print \$3}'`
systemtap-4.4/testsuite/systemtap.apps/xulrunner.exp-104-for P in glib-devel gtk+ ORBit-devel \$JAVA ; do 
##############################################
systemtap-4.4/testsuite/systemtap.base/atomic.exp-75-	print("systemtap ending probe\n")
systemtap-4.4/testsuite/systemtap.base/atomic.exp:76:	printf("%%d\n", atomic_long_read(get_atomic_long_addr() + %s))
systemtap-4.4/testsuite/systemtap.base/atomic.exp-77-    }
##############################################
systemtap-4.4/testsuite/systemtap.base/atomic.exp-137-	print("systemtap ending probe\n")
systemtap-4.4/testsuite/systemtap.base/atomic.exp:138:	printf("%%d\n", atomic_read(get_atomic_addr() + %s))
systemtap-4.4/testsuite/systemtap.base/atomic.exp-139-    }
##############################################
systemtap-4.4/testsuite/systemtap.base/bad-code.c:1:// Testcase for PR14107. Missing kernel asm CFI.
systemtap-4.4/testsuite/systemtap.base/bad-code.c-2-
##############################################
systemtap-4.4/testsuite/systemtap.base/bad-code.exp:1:# Testcase for PR14107 missing kernel ASM CFI.
systemtap-4.4/testsuite/systemtap.base/bad-code.exp-2-set test "bad-code"
##############################################
systemtap-4.4/testsuite/systemtap.base/bad-code.stp:1:// Testcase for PR14107 missing kernel asm CFI.
systemtap-4.4/testsuite/systemtap.base/bad-code.stp-2-probe kernel.function("force_sig_info") {
##############################################
systemtap-4.4/testsuite/systemtap.base/externalvar.c-38-{
systemtap-4.4/testsuite/systemtap.base/externalvar.c:39:  asm (""); // dummy method, just to probe and extract and jump into lib.
systemtap-4.4/testsuite/systemtap.base/externalvar.c-40-  lib_main ();
##############################################
systemtap-4.4/testsuite/systemtap.base/externalvar.c-50-  stat_exevar_c = exevar_c;
systemtap-4.4/testsuite/systemtap.base/externalvar.c:51:  asm ("nop" : "=r"(stat_exevar_c) : "r"(stat_exevar_c));
systemtap-4.4/testsuite/systemtap.base/externalvar.c-52-  exevar_i = 2;
systemtap-4.4/testsuite/systemtap.base/externalvar.c-53-  stat_exevar_i = exevar_i;
systemtap-4.4/testsuite/systemtap.base/externalvar.c:54:  asm ("nop" : "=r"(stat_exevar_i) : "r"(stat_exevar_i));
systemtap-4.4/testsuite/systemtap.base/externalvar.c-55-  exevar_l = 21;
systemtap-4.4/testsuite/systemtap.base/externalvar.c-56-  stat_exevar_l = exevar_l;
systemtap-4.4/testsuite/systemtap.base/externalvar.c:57:  asm ("nop" : "=r"(stat_exevar_l) : "r"(stat_exevar_l));
systemtap-4.4/testsuite/systemtap.base/externalvar.c-58-  exe_s = (struct exestruct *) malloc(sizeof(struct exestruct));
##############################################
systemtap-4.4/testsuite/systemtap.base/externalvar.c-64-  stat_exe_s = exe_s;
systemtap-4.4/testsuite/systemtap.base/externalvar.c:65:  asm ("nop" : "=r"(stat_exe_s) : "r"(stat_exe_s));
systemtap-4.4/testsuite/systemtap.base/externalvar.c-66-  main_call ();
##############################################
systemtap-4.4/testsuite/systemtap.base/externalvar_lib.c-39-  stat_libvar = libvar;
systemtap-4.4/testsuite/systemtap.base/externalvar_lib.c:40:  asm ("nop" : "=r"(stat_libvar) : "r"(stat_libvar));
systemtap-4.4/testsuite/systemtap.base/externalvar_lib.c-41-  lib_s = (struct libstruct *) malloc(sizeof(struct libstruct));
##############################################
systemtap-4.4/testsuite/systemtap.base/externalvar_lib.c-47-  stat_lib_s = lib_s;
systemtap-4.4/testsuite/systemtap.base/externalvar_lib.c:48:  asm ("nop" : "=r"(stat_lib_s) : "r"(stat_lib_s));
systemtap-4.4/testsuite/systemtap.base/externalvar_lib.c-49-  lib_call ();
##############################################
systemtap-4.4/testsuite/systemtap.base/hw_breakpoint.exp-105-    eof { }
systemtap-4.4/testsuite/systemtap.base/hw_breakpoint.exp:106:    timeout { fail "$test - addr (${script_name} (timeout))" }
systemtap-4.4/testsuite/systemtap.base/hw_breakpoint.exp-107-}
##############################################
systemtap-4.4/testsuite/systemtap.base/hw_breakpoint.exp-113-if { $no_hardware_support == 1 } {
systemtap-4.4/testsuite/systemtap.base/hw_breakpoint.exp:114:    xfail "$test - addr (kernel support, but no hardware support)"
systemtap-4.4/testsuite/systemtap.base/hw_breakpoint.exp-115-} elseif { $rc == 0 && $found == 1 } {
systemtap-4.4/testsuite/systemtap.base/hw_breakpoint.exp:116:    pass "$test - addr (hw breakpoint support)"
systemtap-4.4/testsuite/systemtap.base/hw_breakpoint.exp-117-} else {
systemtap-4.4/testsuite/systemtap.base/hw_breakpoint.exp:118:    fail "$test - addr ($rc, $found)"
systemtap-4.4/testsuite/systemtap.base/hw_breakpoint.exp-119-}
##############################################
systemtap-4.4/testsuite/systemtap.base/inlinedvars.c-13-    volatile __typeof__(j) p_j = j;
systemtap-4.4/testsuite/systemtap.base/inlinedvars.c:14:    // empty asm to force locals into regs.
systemtap-4.4/testsuite/systemtap.base/inlinedvars.c:15:    inlined_label: asm volatile ("" : "=g"(c) : "g"(p_name), "g"(p_i), "g"(p_j));
systemtap-4.4/testsuite/systemtap.base/inlinedvars.c-16-    if (c != 0) goto inlined_label;
##############################################
systemtap-4.4/testsuite/systemtap.base/partial-inline.stp-4-{
systemtap-4.4/testsuite/systemtap.base/partial-inline.stp:5:  println(usymname(uaddr())) /* "main" for inlined parts of foo(), 
systemtap-4.4/testsuite/systemtap.base/partial-inline.stp-6-                              and we don't want to see 
##############################################
systemtap-4.4/testsuite/systemtap.base/process-begin-user_1.stp-2-    printf("rip: 0x%x\n", register("rip"));
systemtap-4.4/testsuite/systemtap.base/process-begin-user_1.stp:3:    if (register("rip") != uaddr()) {
systemtap-4.4/testsuite/systemtap.base/process-begin-user_1.stp:4:        printf("different uaddr: 0x%x\n", uaddr())
systemtap-4.4/testsuite/systemtap.base/process-begin-user_1.stp-5-    } else {
##############################################
systemtap-4.4/testsuite/systemtap.base/process-begin-user_2.stp-2-    printf("rip: 0x%x\n", register("rip"));
systemtap-4.4/testsuite/systemtap.base/process-begin-user_2.stp:3:    if (register("rip") != uaddr()) {
systemtap-4.4/testsuite/systemtap.base/process-begin-user_2.stp:4:        printf("different uaddr: 0x%x\n", uaddr())
systemtap-4.4/testsuite/systemtap.base/process-begin-user_2.stp-5-    } else {
##############################################
systemtap-4.4/testsuite/systemtap.base/sdt.exp-114-	    && [regexp "^(-O)" $extra_mssg]} {
systemtap-4.4/testsuite/systemtap.base/sdt.exp:115:	# register name and constant is ambiguous in ppc/s390 asm syntax
systemtap-4.4/testsuite/systemtap.base/sdt.exp-116-	# thus constant folding can throw the result off
##############################################
systemtap-4.4/testsuite/systemtap.base/sdt_asm.exp:1:# sdt_asm used to be part of sdt_misc, so keep
systemtap-4.4/testsuite/systemtap.base/sdt_asm.exp-2-# the same test name for result comparisons.
##############################################
systemtap-4.4/testsuite/systemtap.base/sdt_asm.exp-6-
systemtap-4.4/testsuite/systemtap.base/sdt_asm.exp:7:# Test V3 asm support
systemtap-4.4/testsuite/systemtap.base/sdt_asm.exp-8-
##############################################
systemtap-4.4/testsuite/systemtap.base/sdt_asm.exp-17-
systemtap-4.4/testsuite/systemtap.base/sdt_asm.exp:18:# 8. Test V3 asm support
systemtap-4.4/testsuite/systemtap.base/sdt_asm.exp-19-
##############################################
systemtap-4.4/testsuite/systemtap.base/sdt_asm.exp-50-	    -timeout 180
systemtap-4.4/testsuite/systemtap.base/sdt_asm.exp:51:	    -re {^sdt_asm PASS: [^\r]*\r\n} { incr ok; exp_continue }
systemtap-4.4/testsuite/systemtap.base/sdt_asm.exp:52:	    -indices -re {^sdt_asm FAIL: ([^\r ]*)[^\r]*\r\n} {
systemtap-4.4/testsuite/systemtap.base/sdt_asm.exp-53-	        set s $expect_out(1,string);
##############################################
systemtap-4.4/testsuite/systemtap.base/sdt_asm.stp-3-  if (value == expected)
systemtap-4.4/testsuite/systemtap.base/sdt_asm.stp:4:    printf ("sdt_asm PASS: %s\n", name)
systemtap-4.4/testsuite/systemtap.base/sdt_asm.stp-5-  else
systemtap-4.4/testsuite/systemtap.base/sdt_asm.stp:6:    printf ("sdt_asm FAIL: %s (%#x != %#x)\n", name, value, expected)
systemtap-4.4/testsuite/systemtap.base/sdt_asm.stp-7-}
##############################################
systemtap-4.4/testsuite/systemtap.base/sdt_casm.exp-2-
systemtap-4.4/testsuite/systemtap.base/sdt_casm.exp:3:# Test SDT in C-asm with STAP_PROBE_ASM, with and without asm operands.
systemtap-4.4/testsuite/systemtap.base/sdt_casm.exp-4-#
##############################################
systemtap-4.4/testsuite/systemtap.base/sdt_casm.exp-8-# asm() has operands.  That fix was thus reverted, and we're testing to make
systemtap-4.4/testsuite/systemtap.base/sdt_casm.exp:9:# sure STAP_PROBE_ASM doesn't regress again.
systemtap-4.4/testsuite/systemtap.base/sdt_casm.exp-10-
##############################################
systemtap-4.4/testsuite/systemtap.base/sdt_global_var.exp-97-	    && [regexp "^(-O)" $extra_mssg]} {
systemtap-4.4/testsuite/systemtap.base/sdt_global_var.exp:98:	# register name and constant is ambiguous in ppc/s390 asm syntax
systemtap-4.4/testsuite/systemtap.base/sdt_global_var.exp-99-	# thus constant folding can throw the result off
##############################################
systemtap-4.4/testsuite/systemtap.base/setjmp.c-30-{
systemtap-4.4/testsuite/systemtap.base/setjmp.c:31:  asm volatile ("");
systemtap-4.4/testsuite/systemtap.base/setjmp.c-32-}
##############################################
systemtap-4.4/testsuite/systemtap.base/utf_kernel.stp-32-{
systemtap-4.4/testsuite/systemtap.base/utf_kernel.stp:33:  s = utf16_addr();
systemtap-4.4/testsuite/systemtap.base/utf_kernel.stp-34-  for (p = s; i = kernel_short(p) & 0xffff; p += 2)
##############################################
systemtap-4.4/testsuite/systemtap.base/utf_kernel.stp-39-
systemtap-4.4/testsuite/systemtap.base/utf_kernel.stp:40:  s = utf32_addr();
systemtap-4.4/testsuite/systemtap.base/utf_kernel.stp-41-  for (p = s; i = kernel_int(p) & 0xffffffff; p += 4)
##############################################
systemtap-4.4/testsuite/systemtap.base/utf_kernel_trunc.stp-77-{
systemtap-4.4/testsuite/systemtap.base/utf_kernel_trunc.stp:78:  for (i = 0; s = utf16_addr(i); ++i)
systemtap-4.4/testsuite/systemtap.base/utf_kernel_trunc.stp-79-    println("utf-16:", kernel_string_utf16(s))
systemtap-4.4/testsuite/systemtap.base/utf_kernel_trunc.stp-80-
systemtap-4.4/testsuite/systemtap.base/utf_kernel_trunc.stp:81:  for (i = 0; s = utf32_addr(i); ++i)
systemtap-4.4/testsuite/systemtap.base/utf_kernel_trunc.stp-82-    println("utf-32:", kernel_string_utf32(s))
##############################################
systemtap-4.4/testsuite/systemtap.base/vma_vdso.stp-10-         // (This happens because umodname() is marked as /* pure */)
systemtap-4.4/testsuite/systemtap.base/vma_vdso.stp:11:         if (umodname(uaddr()) == "<unknown>")
systemtap-4.4/testsuite/systemtap.base/vma_vdso.stp-12-           log(name)
##############################################
systemtap-4.4/testsuite/systemtap.base/vma_vdso.stp-17-      {
systemtap-4.4/testsuite/systemtap.base/vma_vdso.stp:18:         printf("%s@%x unknown\n", name, uaddr());
systemtap-4.4/testsuite/systemtap.base/vma_vdso.stp-19-      }
##############################################
systemtap-4.4/testsuite/systemtap.context/symfileline.stp-9-probe module("systemtap_test_module2").function("yyy_func4") {
systemtap-4.4/testsuite/systemtap.context/symfileline.stp:10:  printf("fileline %s \n", symfileline(addr()))
systemtap-4.4/testsuite/systemtap.context/symfileline.stp:11:  printf("file %s \n", symfile(addr()))
systemtap-4.4/testsuite/systemtap.context/symfileline.stp:12:  printf("line %s \n", symline(addr()))
systemtap-4.4/testsuite/systemtap.context/symfileline.stp-13-  exit()
##############################################
systemtap-4.4/testsuite/systemtap.context/symfileline.stp-17-  fileline = "@"
systemtap-4.4/testsuite/systemtap.context/symfileline.stp:18:  fileline .= symfileline(addr())
systemtap-4.4/testsuite/systemtap.context/symfileline.stp-19-  if (isinstr(pp(), fileline) != 1){
##############################################
systemtap-4.4/testsuite/systemtap.context/systemtap_test_module2.c-24-int noinline yyy_func4 (int foo) {
systemtap-4.4/testsuite/systemtap.context/systemtap_test_module2.c:25:        asm ("");
systemtap-4.4/testsuite/systemtap.context/systemtap_test_module2.c-26-        return foo + 1;
##############################################
systemtap-4.4/testsuite/systemtap.context/systemtap_test_module2.c-29-	foo = yyy_func4(foo);
systemtap-4.4/testsuite/systemtap.context/systemtap_test_module2.c:30:        asm ("");
systemtap-4.4/testsuite/systemtap.context/systemtap_test_module2.c-31-        return foo + 1;
##############################################
systemtap-4.4/testsuite/systemtap.context/systemtap_test_module2.c-34-        foo = yyy_func3(foo);
systemtap-4.4/testsuite/systemtap.context/systemtap_test_module2.c:35:        asm ("");
systemtap-4.4/testsuite/systemtap.context/systemtap_test_module2.c-36-        return foo + 1;
##############################################
systemtap-4.4/testsuite/systemtap.context/systemtap_test_module2.c-40-	foo = yyy_func2(foo);
systemtap-4.4/testsuite/systemtap.context/systemtap_test_module2.c:41:        asm ("");
systemtap-4.4/testsuite/systemtap.context/systemtap_test_module2.c-42-        return foo + 1;
##############################################
systemtap-4.4/testsuite/systemtap.context/systemtap_test_module2.c-48-{
systemtap-4.4/testsuite/systemtap.context/systemtap_test_module2.c:49:        asm ("");
systemtap-4.4/testsuite/systemtap.context/systemtap_test_module2.c-50-	return a+b+c;
##############################################
systemtap-4.4/testsuite/systemtap.context/systemtap_test_module2.c-54-{
systemtap-4.4/testsuite/systemtap.context/systemtap_test_module2.c:55:        asm ("");
systemtap-4.4/testsuite/systemtap.context/systemtap_test_module2.c-56-	return a+b+c;
##############################################
systemtap-4.4/testsuite/systemtap.context/systemtap_test_module2.c-60-{
systemtap-4.4/testsuite/systemtap.context/systemtap_test_module2.c:61:        asm ("");
systemtap-4.4/testsuite/systemtap.context/systemtap_test_module2.c-62-	return a+b+c;
##############################################
systemtap-4.4/testsuite/systemtap.context/systemtap_test_module2.c-66-{
systemtap-4.4/testsuite/systemtap.context/systemtap_test_module2.c:67:        asm ("");
systemtap-4.4/testsuite/systemtap.context/systemtap_test_module2.c-68-	return a+b+c;
##############################################
systemtap-4.4/testsuite/systemtap.context/systemtap_test_module2.c-72-{
systemtap-4.4/testsuite/systemtap.context/systemtap_test_module2.c:73:        asm ("");
systemtap-4.4/testsuite/systemtap.context/systemtap_test_module2.c-74-	return 'Q';
##############################################
systemtap-4.4/testsuite/systemtap.context/systemtap_test_module2.c-78-{
systemtap-4.4/testsuite/systemtap.context/systemtap_test_module2.c:79:        asm ("");
systemtap-4.4/testsuite/systemtap.context/systemtap_test_module2.c-80-	return "XYZZY";
##############################################
systemtap-4.4/testsuite/systemtap.context/uprobe_stmt_num.exp-57-    puts $fp "{"
systemtap-4.4/testsuite/systemtap.context/uprobe_stmt_num.exp:58:    puts $fp "  printf(\"0x%x\\n\", uaddr());"
systemtap-4.4/testsuite/systemtap.context/uprobe_stmt_num.exp-59-    puts $fp "}"
##############################################
systemtap-4.4/testsuite/systemtap.context/uprobe_stmt_num.stp-2-{
systemtap-4.4/testsuite/systemtap.context/uprobe_stmt_num.stp:3:  printf("0x%x\n", uaddr());
systemtap-4.4/testsuite/systemtap.context/uprobe_stmt_num.stp-4-}
##############################################
systemtap-4.4/testsuite/systemtap.context/uprobe_uaddr.stp-1-probe process("uprobe_uaddr").function("main").call {
systemtap-4.4/testsuite/systemtap.context/uprobe_uaddr.stp:2:    println(usymdata(uaddr()))
systemtap-4.4/testsuite/systemtap.context/uprobe_uaddr.stp-3-}
##############################################
systemtap-4.4/testsuite/systemtap.context/uprobe_uaddr.stp-5-probe process("uprobe_uaddr").function("main").return {
systemtap-4.4/testsuite/systemtap.context/uprobe_uaddr.stp:6:    println(usymdata(uaddr()))
systemtap-4.4/testsuite/systemtap.context/uprobe_uaddr.stp-7-}
##############################################
systemtap-4.4/testsuite/systemtap.context/uprobe_uaddr.stp-9-probe process("uprobe_uaddr").function("func").call {
systemtap-4.4/testsuite/systemtap.context/uprobe_uaddr.stp:10:    println(usymdata(uaddr()))
systemtap-4.4/testsuite/systemtap.context/uprobe_uaddr.stp-11-}
##############################################
systemtap-4.4/testsuite/systemtap.context/uprobe_uaddr.stp-13-probe process("uprobe_uaddr").function("func").return {
systemtap-4.4/testsuite/systemtap.context/uprobe_uaddr.stp:14:    println(usymdata(uaddr()))
systemtap-4.4/testsuite/systemtap.context/uprobe_uaddr.stp-15-}
##############################################
systemtap-4.4/testsuite/systemtap.context/uprobe_uaddr.stp-17-probe process("uprobe_uaddr").function("func2").call {
systemtap-4.4/testsuite/systemtap.context/uprobe_uaddr.stp:18:    println(usymdata(uaddr()))
systemtap-4.4/testsuite/systemtap.context/uprobe_uaddr.stp-19-}
##############################################
systemtap-4.4/testsuite/systemtap.context/uprobe_uaddr.stp-21-probe process("uprobe_uaddr").function("func2").return {
systemtap-4.4/testsuite/systemtap.context/uprobe_uaddr.stp:22:    println(usymdata(uaddr()))
systemtap-4.4/testsuite/systemtap.context/uprobe_uaddr.stp-23-}
##############################################
systemtap-4.4/testsuite/systemtap.context/uprobe_uaddr_mark.stp-1-probe process("uprobe_uaddr_mark").mark("uprobe_uaddr_mark") {
systemtap-4.4/testsuite/systemtap.context/uprobe_uaddr_mark.stp:2:    // Check that uaddr() is the same address as the pp() statement.
systemtap-4.4/testsuite/systemtap.context/uprobe_uaddr_mark.stp:3:    statement = sprintf(".statement(%#x)", uaddr())
systemtap-4.4/testsuite/systemtap.context/uprobe_uaddr_mark.stp-4-    if (isinstr(pp(), statement))
##############################################
systemtap-4.4/testsuite/systemtap.context/uprobe_uaddr_mark.stp-6-    else
systemtap-4.4/testsuite/systemtap.context/uprobe_uaddr_mark.stp:7:        printf("failure: %#x doesn't match %s\n", uaddr(), pp())
systemtap-4.4/testsuite/systemtap.context/uprobe_uaddr_mark.stp-8-}
##############################################
systemtap-4.4/testsuite/systemtap.context/usymfileline.exp-40-  stap_run "$test ()" no_load "0x0\r\n" -e $testscript 0 -c ./usymfileline
systemtap-4.4/testsuite/systemtap.context/usymfileline.exp:41:  # test with uaddr()
systemtap-4.4/testsuite/systemtap.context/usymfileline.exp:42:  stap_run "$test ()" no_load $eoutput -e $testscript uaddr() -c ./usymfileline
systemtap-4.4/testsuite/systemtap.context/usymfileline.exp-43-}
##############################################
systemtap-4.4/testsuite/systemtap.context/usymfileline.exp-51-  ppstring = pp()\
systemtap-4.4/testsuite/systemtap.context/usymfileline.exp:52:  symstring = "@".usymfileline(uaddr())\
systemtap-4.4/testsuite/systemtap.context/usymfileline.exp-53-  if (isinstr(ppstring, symstring) != 1) {\
##############################################
systemtap-4.4/testsuite/systemtap.context/usymfileline.exp-74-  set testscript [string map "TAPSETFUNCTION $test" $script]
systemtap-4.4/testsuite/systemtap.context/usymfileline.exp:75:  # test with uaddr(). check that it can still fail gracefully.
systemtap-4.4/testsuite/systemtap.context/usymfileline.exp:76:  stap_run "$test (no debug_line)" no_load "0x\[0-9,a-f]*\r\n" -e $testscript uaddr() -c ./usymfileline 
systemtap-4.4/testsuite/systemtap.context/usymfileline.exp-77-}
##############################################
systemtap-4.4/testsuite/systemtap.examples/io/mbrwatch.meta-12-test_check: stap -p4 mbrwatch.stp
systemtap-4.4/testsuite/systemtap.examples/io/mbrwatch.meta:13:test_installcheck: stap mbrwatch.stp -c "dd of=/dev/null count=1 if=/dev/`grep -v major /proc/partitions | grep . | grep -v 'sr[0-9]' | awk '{print $4}' | head -1`"
##############################################
systemtap-4.4/testsuite/systemtap.examples/memory/hw_watch_addr.meta-11-description: The script will watch accesses to a single kernel address and prints a traceback each time the address is accessed. This script needs to be run as root to allow access to the breakpoint hardware.
systemtap-4.4/testsuite/systemtap.examples/memory/hw_watch_addr.meta:12:test_support: perf stat -a --event=mem:0x`grep "vm_dirty_ratio" /proc/kallsyms | awk '{print $1}'` /bin/true
systemtap-4.4/testsuite/systemtap.examples/memory/hw_watch_addr.meta:13:test_check: stap --all-modules -p4 hw_watch_addr.stp 0x`grep "vm_dirty_ratio" /proc/kallsyms | awk '{print $1}'`
systemtap-4.4/testsuite/systemtap.examples/memory/hw_watch_addr.meta:14:test_installcheck: stap --all-modules hw_watch_addr.stp 0x`grep "vm_dirty_ratio" /proc/kallsyms | awk '{print $1}'` -T 5
##############################################
systemtap-4.4/testsuite/systemtap.examples/memory/hw_watch_sym.meta-11-description: The script will watch accesses to the starting address of a single kernel symbol and prints a traceback each time the symbol is accessed. This script needs to be run as root to allow access to the breakpoint hardware.
systemtap-4.4/testsuite/systemtap.examples/memory/hw_watch_sym.meta:12:test_support: perf stat -a --event=mem:0x`grep "vm_dirty_ratio" /proc/kallsyms | awk '{print $1}'` /bin/true
systemtap-4.4/testsuite/systemtap.examples/memory/hw_watch_sym.meta-13-test_check: stap --all-modules -p4 hw_watch_sym.stp vm_dirty_ratio
##############################################
systemtap-4.4/testsuite/systemtap.examples/network/socktop-77-	        F_TYPESTR=$OPTARG$DELIM$F_TYPESTR ;;
systemtap-4.4/testsuite/systemtap.examples/network/socktop:78:	u)      uid=`awk -F: '$1 == name {print $3}' name=$OPTARG /etc/passwd`
systemtap-4.4/testsuite/systemtap.examples/network/socktop-79-	        if [[ $uid != "" ]]; then
##############################################
systemtap-4.4/testsuite/systemtap.examples/network/socktop-105-TZ=`date "+%z"`
systemtap-4.4/testsuite/systemtap.examples/network/socktop:106:TZ_SIGN=`echo $TZ | cut -c1`
systemtap-4.4/testsuite/systemtap.examples/network/socktop:107:TZ_HOURS=`echo $TZ | cut -c2-3`
systemtap-4.4/testsuite/systemtap.examples/network/socktop:108:TZ_MINS=`echo $TZ | cut -c4-5`
systemtap-4.4/testsuite/systemtap.examples/network/socktop-109-TZ_ADJUST=$TZ_SIGN$((10#$TZ_HOURS*60*60+10#$TZ_MINS*60))
##############################################
systemtap-4.4/testsuite/systemtap.examples/network/tcp_retransmission.stp-16-    rto = tcp_get_info_rto($sk)
systemtap-4.4/testsuite/systemtap.examples/network/tcp_retransmission.stp:17:    saddr   = format_ipaddr(__ip_sock_saddr($sk), __ip_sock_family($sk))
systemtap-4.4/testsuite/systemtap.examples/network/tcp_retransmission.stp:18:    daddr   = format_ipaddr(__ip_sock_daddr($sk), __ip_sock_family($sk))
systemtap-4.4/testsuite/systemtap.examples/network/tcp_retransmission.stp-19-    sport   = __tcp_sock_sport($sk)
##############################################
systemtap-4.4/testsuite/systemtap.examples/network/tcp_trace.stp-691-{
systemtap-4.4/testsuite/systemtap.examples/network/tcp_trace.stp:692:	laddr = tcpmib_local_addr(sk);
systemtap-4.4/testsuite/systemtap.examples/network/tcp_trace.stp:693:	raddr = tcpmib_remote_addr(sk);
systemtap-4.4/testsuite/systemtap.examples/network/tcp_trace.stp-694-	lport = tcpmib_local_port(sk);
##############################################
systemtap-4.4/testsuite/systemtap.examples/network/tcpipstat.stp-40- *		individual element of the tuple can be used as the index.
systemtap-4.4/testsuite/systemtap.examples/network/tcpipstat.stp:41: *		Valid values for index are laddr (local address), raddr
systemtap-4.4/testsuite/systemtap.examples/network/tcpipstat.stp-42- *		(remote address) , lport, rport or tuple.  For example if
##############################################
systemtap-4.4/testsuite/systemtap.examples/network/tcpipstat.stp-376-	if( !(ipmib_get_proto(skb) == 6) ) return 0;
systemtap-4.4/testsuite/systemtap.examples/network/tcpipstat.stp:377:	raddr = ipmib_remote_addr(skb, SourceIsLocal);
systemtap-4.4/testsuite/systemtap.examples/network/tcpipstat.stp:378:	laddr = ipmib_local_addr(skb, SourceIsLocal);
systemtap-4.4/testsuite/systemtap.examples/network/tcpipstat.stp-379-	rport = ipmib_tcp_remote_port(skb, SourceIsLocal);
##############################################
systemtap-4.4/testsuite/systemtap.examples/network/tcpipstat.stp-390-        if ( !sk ) return 0;
systemtap-4.4/testsuite/systemtap.examples/network/tcpipstat.stp:391:        laddr = tcpmib_local_addr(sk);
systemtap-4.4/testsuite/systemtap.examples/network/tcpipstat.stp:392:        raddr = tcpmib_remote_addr(sk);
systemtap-4.4/testsuite/systemtap.examples/network/tcpipstat.stp-393-        lport = tcpmib_local_port(sk);
##############################################
systemtap-4.4/testsuite/systemtap.examples/network/tcpipstat.stp-578-
systemtap-4.4/testsuite/systemtap.examples/network/tcpipstat.stp:579:        laddr = tcpmib_local_addr(sk);
systemtap-4.4/testsuite/systemtap.examples/network/tcpipstat.stp:580:        raddr = tcpmib_remote_addr(sk);
systemtap-4.4/testsuite/systemtap.examples/network/tcpipstat.stp-581-        lport = tcpmib_local_port(sk);
##############################################
systemtap-4.4/testsuite/systemtap.examples/process/syscalltimes-55-
systemtap-4.4/testsuite/systemtap.examples/process/syscalltimes:56:	u)	uid=`awk -F: '$1 == name {print $3}' name=$OPTARG /etc/passwd`
systemtap-4.4/testsuite/systemtap.examples/process/syscalltimes-57-		if [[ $uid != "" ]]; then
##############################################
systemtap-4.4/testsuite/systemtap.examples/profiling/fileline-profile.stp-18-  if (user_mode()) {
systemtap-4.4/testsuite/systemtap.examples/profiling/fileline-profile.stp:19:    ufileline = usymfileline(uaddr())
systemtap-4.4/testsuite/systemtap.examples/profiling/fileline-profile.stp-20-    if (strtol(ufileline, 16))
systemtap-4.4/testsuite/systemtap.examples/profiling/fileline-profile.stp:21:      uaddrinfo = usymdata(uaddr())
systemtap-4.4/testsuite/systemtap.examples/profiling/fileline-profile.stp-22-    else {
systemtap-4.4/testsuite/systemtap.examples/profiling/fileline-profile.stp-23-      if (symbolname != "")
systemtap-4.4/testsuite/systemtap.examples/profiling/fileline-profile.stp:24:        uaddrinfo = usymname(uaddr())."@"
systemtap-4.4/testsuite/systemtap.examples/profiling/fileline-profile.stp-25-      uaddrinfo .= ufileline
##############################################
systemtap-4.4/testsuite/systemtap.examples/profiling/fileline-profile.stp-28-  } else {
systemtap-4.4/testsuite/systemtap.examples/profiling/fileline-profile.stp:29:     profile["", addr()] <<< 1
systemtap-4.4/testsuite/systemtap.examples/profiling/fileline-profile.stp-30-  }
##############################################
systemtap-4.4/testsuite/systemtap.examples/profiling/pf2.stp-5-  pcount <<< 1
systemtap-4.4/testsuite/systemtap.examples/profiling/pf2.stp:6:  fn = user_mode() ? "<user>" : symname(addr())
systemtap-4.4/testsuite/systemtap.examples/profiling/pf2.stp-7-  if (fn != "") profile[fn] <<< 1
##############################################
systemtap-4.4/testsuite/systemtap.examples/profiling/pf3.stp-16-    try { // modname() can throw
systemtap-4.4/testsuite/systemtap.examples/profiling/pf3.stp:17:      fn = "k:".modname(addr()).":".symname(addr())
systemtap-4.4/testsuite/systemtap.examples/profiling/pf3.stp-18-    } catch {
systemtap-4.4/testsuite/systemtap.examples/profiling/pf3.stp:19:      fn = "k:<unknown>:".symname(addr())
systemtap-4.4/testsuite/systemtap.examples/profiling/pf3.stp-20-    }
##############################################
systemtap-4.4/testsuite/systemtap.examples/profiling/pf3.stp-22-    try { // umodname() can throw
systemtap-4.4/testsuite/systemtap.examples/profiling/pf3.stp:23:      fn = "u:".umodname(uaddr()).":".usymname(uaddr())
systemtap-4.4/testsuite/systemtap.examples/profiling/pf3.stp-24-    } catch {
systemtap-4.4/testsuite/systemtap.examples/profiling/pf3.stp:25:      fn = "u:<unknown>:".usymname(uaddr())
systemtap-4.4/testsuite/systemtap.examples/profiling/pf3.stp-26-    }
##############################################
systemtap-4.4/testsuite/systemtap.examples/stapgames/2048.stp-1-#!/bin/bash
systemtap-4.4/testsuite/systemtap.examples/stapgames/2048.stp:2://usr/bin/env stty -echo; sudo staprun -T 30 `stap -p4 "$0"`; stty echo; exit
systemtap-4.4/testsuite/systemtap.examples/stapgames/2048.stp-3-
##############################################
systemtap-4.4/testsuite/systemtap.exelib/libmarkunamestack.stp-32-      process(@1).function("main_func") {
systemtap-4.4/testsuite/systemtap.exelib/libmarkunamestack.stp:33:  printf("exe: %s=%s\n",probefunc(), usymname(uaddr()));
systemtap-4.4/testsuite/systemtap.exelib/libmarkunamestack.stp-34-}
##############################################
systemtap-4.4/testsuite/systemtap.exelib/libmarkunamestack.stp-37-      process(@2).function("lib_func") {
systemtap-4.4/testsuite/systemtap.exelib/libmarkunamestack.stp:38:  printf("lib: %s=%s\n",probefunc(), usymname(uaddr()));
systemtap-4.4/testsuite/systemtap.exelib/libmarkunamestack.stp-39-}
##############################################
systemtap-4.4/testsuite/systemtap.exelib/uname.stp:1:// Prints probefunc() and usymname(uaddr()) to check they are similar.
systemtap-4.4/testsuite/systemtap.exelib/uname.stp-2-// Arguments: @1 uprobes_exe, @2 libuprobes_lib.so
##############################################
systemtap-4.4/testsuite/systemtap.exelib/uname.stp-5-      process(@1).function("main_func") {
systemtap-4.4/testsuite/systemtap.exelib/uname.stp:6:  printf("exe: %s=%s\n",probefunc(), usymname(uaddr()));
systemtap-4.4/testsuite/systemtap.exelib/uname.stp-7-}
##############################################
systemtap-4.4/testsuite/systemtap.exelib/uname.stp-10-      process(@2).function("lib_func") {
systemtap-4.4/testsuite/systemtap.exelib/uname.stp:11:  printf("lib: %s=%s\n",probefunc(), usymname(uaddr()));
systemtap-4.4/testsuite/systemtap.exelib/uname.stp-12-}
##############################################
systemtap-4.4/testsuite/systemtap.exelib/uprobes_exe.c-17-
systemtap-4.4/testsuite/systemtap.exelib/uprobes_exe.c:18:// Marked noinline and has an empty asm statement to prevent inlining
systemtap-4.4/testsuite/systemtap.exelib/uprobes_exe.c-19-// or optimizing away totally.
##############################################
systemtap-4.4/testsuite/systemtap.exelib/uprobes_exe.c-23-{
systemtap-4.4/testsuite/systemtap.exelib/uprobes_exe.c:24:  asm ("");
systemtap-4.4/testsuite/systemtap.exelib/uprobes_exe.c-25-  STAP_PROBE1(test, main_count, foo);
##############################################
systemtap-4.4/testsuite/systemtap.exelib/uprobes_lib.c-14-
systemtap-4.4/testsuite/systemtap.exelib/uprobes_lib.c:15:// Marked noinline and has an empty asm statement to prevent inlining
systemtap-4.4/testsuite/systemtap.exelib/uprobes_lib.c-16-// or optimizing away totally.
##############################################
systemtap-4.4/testsuite/systemtap.exelib/uprobes_lib.c-20-{
systemtap-4.4/testsuite/systemtap.exelib/uprobes_lib.c:21:  asm ("");
systemtap-4.4/testsuite/systemtap.exelib/uprobes_lib.c-22-  STAP_PROBE1(test, func_count, bar);
##############################################
systemtap-4.4/testsuite/systemtap.printf/memory1_module.c-29-{
systemtap-4.4/testsuite/systemtap.printf/memory1_module.c:30:        asm ("");
systemtap-4.4/testsuite/systemtap.printf/memory1_module.c-31-	memcpy(buffer, string, bytes);
##############################################
systemtap-4.4/testsuite/systemtap.printf/memory1_module.c-35-{
systemtap-4.4/testsuite/systemtap.printf/memory1_module.c:36:        asm ("");
systemtap-4.4/testsuite/systemtap.printf/memory1_module.c-37-	return buffer;
##############################################
systemtap-4.4/debian/changelog-232-    (Closes: #876337)
systemtap-4.4/debian/changelog:233:  * Add patch from upstream to fix broken asm header (Closes: #877459)
systemtap-4.4/debian/changelog-234-
##############################################
systemtap-4.4/debian/make-snapshot.sh-10-
systemtap-4.4/debian/make-snapshot.sh:11:lastrelease=`git --bare --git-dir="$REPO" describe --match "release-*" --abbrev=0 HEAD | sed s/release-//`
systemtap-4.4/debian/make-snapshot.sh-12-today=`date +%Y%m%d`
##############################################
systemtap-4.4/debian/patches/systemtap-ia64.patch-18-+#ifdef __ia64__
systemtap-4.4/debian/patches/systemtap-ia64.patch:19:+	asm ("nop 0" : "=r"(fptr) : "r"(fptr));
systemtap-4.4/debian/patches/systemtap-ia64.patch-20-+#else
systemtap-4.4/debian/patches/systemtap-ia64.patch:21: 	asm ("nop" : "=r"(fptr) : "r"(fptr));
systemtap-4.4/debian/patches/systemtap-ia64.patch-22-+#endif
##############################################
systemtap-4.4/.pc/debversion.diff/git_version.sh-92-                    outfilenew="$newdir/$1.new"
systemtap-4.4/.pc/debversion.diff/git_version.sh:93:                    ifndef_symbol=`basename "$outfile" | $SED 's|\.|_|g; s|[^A-Za-z0-9_]||g' | tr a-z A-Z`
systemtap-4.4/.pc/debversion.diff/git_version.sh-94-                fi
##############################################
systemtap-4.4/.pc/debversion.diff/git_version.sh-186-do
systemtap-4.4/.pc/debversion.diff/git_version.sh:187:    if [ x`which $git_tool 2>/dev/null` = "x" ]; then
systemtap-4.4/.pc/debversion.diff/git_version.sh-188-        git_found="'$git_tool' not found"
##############################################
systemtap-4.4/.pc/debversion.diff/git_version.sh-218-        # git-1.4 and probably earlier understand "git-symbolic-ref HEAD"
systemtap-4.4/.pc/debversion.diff/git_version.sh:219:        git_branch=`git-symbolic-ref HEAD | $SED -n 's|^refs/heads/||p'`
systemtap-4.4/.pc/debversion.diff/git_version.sh-220-        if [ "x$git_branch" = "x" ]; then
##############################################
systemtap-4.4/.pc/systemtap-ia64.patch/includes/sys/sdt.h-371-
systemtap-4.4/.pc/systemtap-ia64.patch/includes/sys/sdt.h:372:/* These macros are for use in asm statements.  You must compile
systemtap-4.4/.pc/systemtap-ia64.patch/includes/sys/sdt.h:373:   with -std=gnu99 or -std=c99 to use the STAP_PROBE_ASM macro.
systemtap-4.4/.pc/systemtap-ia64.patch/includes/sys/sdt.h-374-
systemtap-4.4/.pc/systemtap-ia64.patch/includes/sys/sdt.h:375:   The STAP_PROBE_ASM macro generates a quoted string to be used in the
systemtap-4.4/.pc/systemtap-ia64.patch/includes/sys/sdt.h:376:   template portion of the asm statement, concatenated with strings that
systemtap-4.4/.pc/systemtap-ia64.patch/includes/sys/sdt.h-377-   contain the actual assembly code around the probe site.
##############################################
systemtap-4.4/.pc/systemtap-ia64.patch/includes/sys/sdt.h-380-
systemtap-4.4/.pc/systemtap-ia64.patch/includes/sys/sdt.h:381:	asm ("before\n"
systemtap-4.4/.pc/systemtap-ia64.patch/includes/sys/sdt.h-382-	     STAP_PROBE_ASM(provider, fooprobe, %eax 4(%esi))
##############################################
systemtap-4.4/.pc/systemtap-ia64.patch/includes/sys/sdt.h-387-   word located 4 bytes past the address in the %esi register.  Note that
systemtap-4.4/.pc/systemtap-ia64.patch/includes/sys/sdt.h:388:   because this is a simple asm, not a GNU C extended asm statement, these
systemtap-4.4/.pc/systemtap-ia64.patch/includes/sys/sdt.h-389-   % characters do not need to be doubled to generate literal %reg names.
systemtap-4.4/.pc/systemtap-ia64.patch/includes/sys/sdt.h-390-
systemtap-4.4/.pc/systemtap-ia64.patch/includes/sys/sdt.h:391:   In a GNU C extended asm statement, the probe arguments can be specified
systemtap-4.4/.pc/systemtap-ia64.patch/includes/sys/sdt.h-392-   using the macro STAP_PROBE_ASM_TEMPLATE(n) for n arguments.  The paired
systemtap-4.4/.pc/systemtap-ia64.patch/includes/sys/sdt.h-393-   macro STAP_PROBE_ASM_OPERANDS gives the C values of these probe arguments,
systemtap-4.4/.pc/systemtap-ia64.patch/includes/sys/sdt.h:394:   and appears in the input operand list of the asm statement.  For example:
systemtap-4.4/.pc/systemtap-ia64.patch/includes/sys/sdt.h-395-
systemtap-4.4/.pc/systemtap-ia64.patch/includes/sys/sdt.h:396:	asm ("someinsn %0,%1\n" // %0 is output operand, %1 is input operand
systemtap-4.4/.pc/systemtap-ia64.patch/includes/sys/sdt.h-397-	     STAP_PROBE_ASM(provider, fooprobe, STAP_PROBE_ASM_TEMPLATE(3))
##############################################
systemtap-4.4/.pc/systemtap-ia64.patch/includes/sys/sdt.h-408-
systemtap-4.4/.pc/systemtap-ia64.patch/includes/sys/sdt.h:409:    The probe arguments in STAP_PROBE_ASM can be given as assembly
systemtap-4.4/.pc/systemtap-ia64.patch/includes/sys/sdt.h:410:    operands instead, even inside a GNU C extended asm statement.
systemtap-4.4/.pc/systemtap-ia64.patch/includes/sys/sdt.h-411-    Note that these can use operand templates like %0 or %[name],
##############################################
systemtap-4.4/.pc/systemtap-ia64.patch/python/HelperSDT/_HelperSDT.c-238-	void *fptr = &PyObject_GenericGetAttr;
systemtap-4.4/.pc/systemtap-ia64.patch/python/HelperSDT/_HelperSDT.c:239:	asm ("nop" : "=r"(fptr) : "r"(fptr));
systemtap-4.4/.pc/systemtap-ia64.patch/python/HelperSDT/_HelperSDT.c-240-	STAP_PROBE2(PROVIDER, Init, stap_module, fptr);
##############################################
systemtap-4.4/.pc/stap-prep.patch/stap-prep-12-fi
systemtap-4.4/.pc/stap-prep.patch/stap-prep:13:UNAME=`echo $UNAME | sed "s/ //"` #strip out any whitespace
systemtap-4.4/.pc/stap-prep.patch/stap-prep-14-echo "Configuring for kernel release $UNAME"
##############################################
systemtap-4.4/.pc/stap-prep.patch/stap-prep-20-    # choose a part of the kernel that elfutils 0.181 can decode
systemtap-4.4/.pc/stap-prep.patch/stap-prep:21:    vdso=`ls -1 /lib/modules/$UNAME/vdso/*.so 2>/dev/null | head -1` # vdso32.so and/or vdso64.so or whatever
systemtap-4.4/.pc/stap-prep.patch/stap-prep-22-    if debuginfod-find debuginfo "$vdso" > /dev/null 2>&1; then
##############################################
systemtap-4.4/.pc/stap-prep.patch/stap-prep-37-  # strip out ".variant" or else "+variant" or else "variant" at end.
systemtap-4.4/.pc/stap-prep.patch/stap-prep:38:  TMP=`echo $UNAME | sed "s/[\.\+]\?$VARIANT\$//"`
systemtap-4.4/.pc/stap-prep.patch/stap-prep-39-  if [ "$TMP" != "$UNAME" ]; then
##############################################
systemtap-4.4/.pc/stap-prep.patch/stap-prep-43-KERN_ARCH=`uname -m`
systemtap-4.4/.pc/stap-prep.patch/stap-prep:44:KERN_REV=`echo $UNAME | sed s/.$KERN_ARCH//` # strip arch from uname
systemtap-4.4/.pc/stap-prep.patch/stap-prep-45-if [ -x /usr/bin/dnf ]; then
##############################################
systemtap-4.4/git_version.sh-95-                    outfilenew="$newdir/$1.new"
systemtap-4.4/git_version.sh:96:                    ifndef_symbol=`basename "$outfile" | $SED 's|\.|_|g; s|[^A-Za-z0-9_]||g' | tr a-z A-Z`
systemtap-4.4/git_version.sh-97-                fi
##############################################
systemtap-4.4/git_version.sh-189-do
systemtap-4.4/git_version.sh:190:    if [ x`which $git_tool 2>/dev/null` = "x" ]; then
systemtap-4.4/git_version.sh-191-        git_found="'$git_tool' not found"
##############################################
systemtap-4.4/git_version.sh-221-        # git-1.4 and probably earlier understand "git-symbolic-ref HEAD"
systemtap-4.4/git_version.sh:222:        git_branch=`git-symbolic-ref HEAD | $SED -n 's|^refs/heads/||p'`
systemtap-4.4/git_version.sh-223-        if [ "x$git_branch" = "x" ]; then
##############################################
systemtap-4.4/stap-prep-12-fi
systemtap-4.4/stap-prep:13:UNAME=`echo $UNAME | sed "s/ //"` #strip out any whitespace
systemtap-4.4/stap-prep-14-echo "Configuring for kernel release $UNAME"
##############################################
systemtap-4.4/stap-prep-20-    # choose a part of the kernel that elfutils 0.181 can decode
systemtap-4.4/stap-prep:21:    vdso=`ls -1 /lib/modules/$UNAME/vdso/*.so 2>/dev/null | head -1` # vdso32.so and/or vdso64.so or whatever
systemtap-4.4/stap-prep-22-    if debuginfod-find debuginfo "$vdso" > /dev/null 2>&1; then
##############################################
systemtap-4.4/stap-prep-37-  # strip out ".variant" or else "+variant" or else "variant" at end.
systemtap-4.4/stap-prep:38:  TMP=`echo $UNAME | sed "s/[\.\+]\?$VARIANT\$//"`
systemtap-4.4/stap-prep-39-  if [ "$TMP" != "$UNAME" ]; then
##############################################
systemtap-4.4/stap-prep-43-KERN_ARCH=`uname -m`
systemtap-4.4/stap-prep:44:KERN_REV=`echo $UNAME | sed s/.$KERN_ARCH//` # strip arch from uname
systemtap-4.4/stap-prep-45-if [ -x /usr/bin/dnf ]; then