===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
bindfs-1.14.7/Makefile.am-3-vagrant-clean:
bindfs-1.14.7/Makefile.am:4:	-for i in vagrant/*/Vagrantfile; do cd `dirname $$i` && (vagrant destroy -f || true) ; cd $$OLDPWD; done
bindfs-1.14.7/Makefile.am-5-	-rm -Rf vagrant/*/.vagrant vagrant/*/*.log
##############################################
bindfs-1.14.7/tests/test_bindfs.rb-464-    inodes = {}
bindfs-1.14.7/tests/test_bindfs.rb:465:    for line in `#{$tests_dir}/readdir_inode mnt`.split("\n").reject(&:empty?)
bindfs-1.14.7/tests/test_bindfs.rb-466-        inode, name = line.split(" ")
##############################################
bindfs-1.14.7/tests/test_bindfs.rb-493-    sleep 1  # Not sure why this is needed, but something seems to overwrite the atime right after we set it, at least on Bionic.
bindfs-1.14.7/tests/test_bindfs.rb:494:    system("#{$tests_dir}/utimens_nofollow mnt/link 12 34 56 78")
bindfs-1.14.7/tests/test_bindfs.rb-495-    raise "Failed to run utimens_nofollow: #{$?.inspect}" unless $?.success?
##############################################
bindfs-1.14.7/tests/test_bindfs.rb-722-    # fcntl locking
bindfs-1.14.7/tests/test_bindfs.rb:723:    system("#{$tests_dir}/fcntl_locker src/file mnt/file")
bindfs-1.14.7/tests/test_bindfs.rb-724-    raise "fcntl lock sharing test failed" unless $?.success?
##############################################
bindfs-1.14.7/tests/test_bindfs.rb-741-    # fcntl locking
bindfs-1.14.7/tests/test_bindfs.rb:742:    system("#{$tests_dir}/fcntl_locker src/file mnt/file")
bindfs-1.14.7/tests/test_bindfs.rb-743-    raise "fcntl lock sharing test failed" unless $?.exitstatus == 1
##############################################
bindfs-1.14.7/tests/test_bindfs.rb-782-  Dir.chdir 'mnt' do
bindfs-1.14.7/tests/test_bindfs.rb:783:    system("#{$tests_dir}/test_dir_rewind")
bindfs-1.14.7/tests/test_bindfs.rb-784-    assert { $?.success? }
##############################################
bindfs-1.14.7/tests/test_bindfs.rb-840-    File.write("src/f", odirect_data)
bindfs-1.14.7/tests/test_bindfs.rb:841:    read_data = `#{$tests_dir}/odirect_read mnt/f`
bindfs-1.14.7/tests/test_bindfs.rb-842-    assert { $?.success? }
##############################################
bindfs-1.14.7/tests/test_bindfs.rb-846-  testenv("", :title => "O_DIRECT writes with O_DIRECT ignored") do
bindfs-1.14.7/tests/test_bindfs.rb:847:    IO.popen("#{$tests_dir}/odirect_write mnt/f", "w") do |pipe|
bindfs-1.14.7/tests/test_bindfs.rb-848-      pipe.write(odirect_data)
##############################################
bindfs-1.14.7/tests/test_bindfs.rb-855-    File.write("src/f", odirect_data)
bindfs-1.14.7/tests/test_bindfs.rb:856:    read_data = `#{$tests_dir}/odirect_read mnt/f`
bindfs-1.14.7/tests/test_bindfs.rb-857-    assert { $?.success? }
##############################################
bindfs-1.14.7/tests/test_bindfs.rb-861-  testenv("--forward-odirect=512", :title => "O_DIRECT writes with O_DIRECT forwarded") do
bindfs-1.14.7/tests/test_bindfs.rb:862:    IO.popen("#{$tests_dir}/odirect_write mnt/f", "w") do |pipe|
bindfs-1.14.7/tests/test_bindfs.rb-863-      pipe.write(odirect_data)
##############################################
bindfs-1.14.7/tests/Makefile.in-50-  { \
bindfs-1.14.7/tests/Makefile.in:51:    flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
bindfs-1.14.7/tests/Makefile.in-52-  }; \
##############################################
bindfs-1.14.7/tests/Makefile.in-238-  while test -n "$$dir1"; do \
bindfs-1.14.7/tests/Makefile.in:239:    first=`echo "$$dir1" | sed -e "$$sed_first"`; \
bindfs-1.14.7/tests/Makefile.in-240-    if test "$$first" != "."; then \
bindfs-1.14.7/tests/Makefile.in-241-      if test "$$first" = ".."; then \
bindfs-1.14.7/tests/Makefile.in:242:        dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
bindfs-1.14.7/tests/Makefile.in:243:        dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
bindfs-1.14.7/tests/Makefile.in-244-      else \
bindfs-1.14.7/tests/Makefile.in:245:        first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
bindfs-1.14.7/tests/Makefile.in-246-        if test "$$first2" = "$$first"; then \
bindfs-1.14.7/tests/Makefile.in:247:          dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
bindfs-1.14.7/tests/Makefile.in-248-        else \
##############################################
bindfs-1.14.7/tests/Makefile.in-253-    fi; \
bindfs-1.14.7/tests/Makefile.in:254:    dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
bindfs-1.14.7/tests/Makefile.in-255-  done; \
##############################################
bindfs-1.14.7/tests/Makefile.in-430-	test -n "$(EXEEXT)" || exit 0; \
bindfs-1.14.7/tests/Makefile.in:431:	list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
bindfs-1.14.7/tests/Makefile.in-432-	echo " rm -f" $$list; \
##############################################
bindfs-1.14.7/tests/Makefile.in-479-.c.obj:
bindfs-1.14.7/tests/Makefile.in:480:@am__fastdepCC_TRUE@	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
bindfs-1.14.7/tests/Makefile.in-481-@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
##############################################
bindfs-1.14.7/tests/Makefile.in-483-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
bindfs-1.14.7/tests/Makefile.in:484:@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
bindfs-1.14.7/tests/Makefile.in-485-
##############################################
bindfs-1.14.7/tests/Makefile.in-512-	dot_seen=no; \
bindfs-1.14.7/tests/Makefile.in:513:	target=`echo $@ | sed s/-recursive//`; \
bindfs-1.14.7/tests/Makefile.in-514-	case "$@" in \
##############################################
bindfs-1.14.7/tests/Makefile.in-575-GTAGS:
bindfs-1.14.7/tests/Makefile.in:576:	here=`$(am__cd) $(top_builddir) && pwd` \
bindfs-1.14.7/tests/Makefile.in-577-	  && $(am__cd) $(top_srcdir) \
##############################################
bindfs-1.14.7/tests/Makefile.in-608-	    if $(TESTS_ENVIRONMENT) $${dir}$$tst $(AM_TESTS_FD_REDIRECT); then \
bindfs-1.14.7/tests/Makefile.in:609:	      all=`expr $$all + 1`; \
bindfs-1.14.7/tests/Makefile.in-610-	      case " $(XFAIL_TESTS) " in \
bindfs-1.14.7/tests/Makefile.in-611-	      *[\ \	]$$tst[\ \	]*) \
bindfs-1.14.7/tests/Makefile.in:612:		xpass=`expr $$xpass + 1`; \
bindfs-1.14.7/tests/Makefile.in:613:		failed=`expr $$failed + 1`; \
bindfs-1.14.7/tests/Makefile.in-614-		col=$$red; res=XPASS; \
##############################################
bindfs-1.14.7/tests/Makefile.in-620-	    elif test $$? -ne 77; then \
bindfs-1.14.7/tests/Makefile.in:621:	      all=`expr $$all + 1`; \
bindfs-1.14.7/tests/Makefile.in-622-	      case " $(XFAIL_TESTS) " in \
bindfs-1.14.7/tests/Makefile.in-623-	      *[\ \	]$$tst[\ \	]*) \
bindfs-1.14.7/tests/Makefile.in:624:		xfail=`expr $$xfail + 1`; \
bindfs-1.14.7/tests/Makefile.in-625-		col=$$lgn; res=XFAIL; \
##############################################
bindfs-1.14.7/tests/Makefile.in-627-	      *) \
bindfs-1.14.7/tests/Makefile.in:628:		failed=`expr $$failed + 1`; \
bindfs-1.14.7/tests/Makefile.in-629-		col=$$red; res=FAIL; \
##############################################
bindfs-1.14.7/tests/Makefile.in-632-	    else \
bindfs-1.14.7/tests/Makefile.in:633:	      skip=`expr $$skip + 1`; \
bindfs-1.14.7/tests/Makefile.in-634-	      col=$$blu; res=SKIP; \
##############################################
bindfs-1.14.7/tests/Makefile.in-667-	    fi; \
bindfs-1.14.7/tests/Makefile.in:668:	    test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \
bindfs-1.14.7/tests/Makefile.in-669-	      dashes="$$skipped"; \
##############################################
bindfs-1.14.7/tests/Makefile.in-673-	    report="Please report to $(PACKAGE_BUGREPORT)"; \
bindfs-1.14.7/tests/Makefile.in:674:	    test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \
bindfs-1.14.7/tests/Makefile.in-675-	      dashes="$$report"; \
bindfs-1.14.7/tests/Makefile.in-676-	  fi; \
bindfs-1.14.7/tests/Makefile.in:677:	  dashes=`echo "$$dashes" | sed s/./=/g`; \
bindfs-1.14.7/tests/Makefile.in-678-	  if test "$$failed" -eq 0; then \
##############################################
bindfs-1.14.7/tests/Makefile.in-691-distdir: $(DISTFILES)
bindfs-1.14.7/tests/Makefile.in:692:	@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
bindfs-1.14.7/tests/Makefile.in:693:	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
bindfs-1.14.7/tests/Makefile.in-694-	list='$(DISTFILES)'; \
##############################################
bindfs-1.14.7/tests/Makefile.in-705-	  if test -d $$d/$$file; then \
bindfs-1.14.7/tests/Makefile.in:706:	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
bindfs-1.14.7/tests/Makefile.in-707-	    if test -d "$(distdir)/$$file"; then \
##############################################
bindfs-1.14.7/tests/internals/Makefile.in-51-  { \
bindfs-1.14.7/tests/internals/Makefile.in:52:    flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
bindfs-1.14.7/tests/internals/Makefile.in-53-  }; \
##############################################
bindfs-1.14.7/tests/internals/Makefile.in-386-	test -n "$(EXEEXT)" || exit 0; \
bindfs-1.14.7/tests/internals/Makefile.in:387:	list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
bindfs-1.14.7/tests/internals/Makefile.in-388-	echo " rm -f" $$list; \
##############################################
bindfs-1.14.7/tests/internals/Makefile.in-419-.c.obj:
bindfs-1.14.7/tests/internals/Makefile.in:420:@am__fastdepCC_TRUE@	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
bindfs-1.14.7/tests/internals/Makefile.in-421-@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
##############################################
bindfs-1.14.7/tests/internals/Makefile.in-423-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
bindfs-1.14.7/tests/internals/Makefile.in:424:@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
bindfs-1.14.7/tests/internals/Makefile.in-425-
##############################################
bindfs-1.14.7/tests/internals/Makefile.in-433-test_internals-test_internals.o: test_internals.c
bindfs-1.14.7/tests/internals/Makefile.in:434:@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_internals_CPPFLAGS) $(CPPFLAGS) $(test_internals_CFLAGS) $(CFLAGS) -MT test_internals-test_internals.o -MD -MP -MF $(DEPDIR)/test_internals-test_internals.Tpo -c -o test_internals-test_internals.o `test -f 'test_internals.c' || echo '$(srcdir)/'`test_internals.c
bindfs-1.14.7/tests/internals/Makefile.in-435-@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/test_internals-test_internals.Tpo $(DEPDIR)/test_internals-test_internals.Po
##############################################
bindfs-1.14.7/tests/internals/Makefile.in-437-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
bindfs-1.14.7/tests/internals/Makefile.in:438:@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_internals_CPPFLAGS) $(CPPFLAGS) $(test_internals_CFLAGS) $(CFLAGS) -c -o test_internals-test_internals.o `test -f 'test_internals.c' || echo '$(srcdir)/'`test_internals.c
bindfs-1.14.7/tests/internals/Makefile.in-439-
bindfs-1.14.7/tests/internals/Makefile.in-440-test_internals-test_internals.obj: test_internals.c
bindfs-1.14.7/tests/internals/Makefile.in:441:@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_internals_CPPFLAGS) $(CPPFLAGS) $(test_internals_CFLAGS) $(CFLAGS) -MT test_internals-test_internals.obj -MD -MP -MF $(DEPDIR)/test_internals-test_internals.Tpo -c -o test_internals-test_internals.obj `if test -f 'test_internals.c'; then $(CYGPATH_W) 'test_internals.c'; else $(CYGPATH_W) '$(srcdir)/test_internals.c'; fi`
bindfs-1.14.7/tests/internals/Makefile.in-442-@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/test_internals-test_internals.Tpo $(DEPDIR)/test_internals-test_internals.Po
##############################################
bindfs-1.14.7/tests/internals/Makefile.in-444-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
bindfs-1.14.7/tests/internals/Makefile.in:445:@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_internals_CPPFLAGS) $(CPPFLAGS) $(test_internals_CFLAGS) $(CFLAGS) -c -o test_internals-test_internals.obj `if test -f 'test_internals.c'; then $(CYGPATH_W) 'test_internals.c'; else $(CYGPATH_W) '$(srcdir)/test_internals.c'; fi`
bindfs-1.14.7/tests/internals/Makefile.in-446-
bindfs-1.14.7/tests/internals/Makefile.in-447-test_internals-test_common.o: test_common.c
bindfs-1.14.7/tests/internals/Makefile.in:448:@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_internals_CPPFLAGS) $(CPPFLAGS) $(test_internals_CFLAGS) $(CFLAGS) -MT test_internals-test_common.o -MD -MP -MF $(DEPDIR)/test_internals-test_common.Tpo -c -o test_internals-test_common.o `test -f 'test_common.c' || echo '$(srcdir)/'`test_common.c
bindfs-1.14.7/tests/internals/Makefile.in-449-@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/test_internals-test_common.Tpo $(DEPDIR)/test_internals-test_common.Po
##############################################
bindfs-1.14.7/tests/internals/Makefile.in-451-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
bindfs-1.14.7/tests/internals/Makefile.in:452:@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_internals_CPPFLAGS) $(CPPFLAGS) $(test_internals_CFLAGS) $(CFLAGS) -c -o test_internals-test_common.o `test -f 'test_common.c' || echo '$(srcdir)/'`test_common.c
bindfs-1.14.7/tests/internals/Makefile.in-453-
bindfs-1.14.7/tests/internals/Makefile.in-454-test_internals-test_common.obj: test_common.c
bindfs-1.14.7/tests/internals/Makefile.in:455:@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_internals_CPPFLAGS) $(CPPFLAGS) $(test_internals_CFLAGS) $(CFLAGS) -MT test_internals-test_common.obj -MD -MP -MF $(DEPDIR)/test_internals-test_common.Tpo -c -o test_internals-test_common.obj `if test -f 'test_common.c'; then $(CYGPATH_W) 'test_common.c'; else $(CYGPATH_W) '$(srcdir)/test_common.c'; fi`
bindfs-1.14.7/tests/internals/Makefile.in-456-@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/test_internals-test_common.Tpo $(DEPDIR)/test_internals-test_common.Po
##############################################
bindfs-1.14.7/tests/internals/Makefile.in-458-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
bindfs-1.14.7/tests/internals/Makefile.in:459:@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_internals_CPPFLAGS) $(CPPFLAGS) $(test_internals_CFLAGS) $(CFLAGS) -c -o test_internals-test_common.obj `if test -f 'test_common.c'; then $(CYGPATH_W) 'test_common.c'; else $(CYGPATH_W) '$(srcdir)/test_common.c'; fi`
bindfs-1.14.7/tests/internals/Makefile.in-460-
bindfs-1.14.7/tests/internals/Makefile.in-461-test_internals-misc.o: $(top_srcdir)/src/misc.c
bindfs-1.14.7/tests/internals/Makefile.in:462:@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_internals_CPPFLAGS) $(CPPFLAGS) $(test_internals_CFLAGS) $(CFLAGS) -MT test_internals-misc.o -MD -MP -MF $(DEPDIR)/test_internals-misc.Tpo -c -o test_internals-misc.o `test -f '$(top_srcdir)/src/misc.c' || echo '$(srcdir)/'`$(top_srcdir)/src/misc.c
bindfs-1.14.7/tests/internals/Makefile.in-463-@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/test_internals-misc.Tpo $(DEPDIR)/test_internals-misc.Po
##############################################
bindfs-1.14.7/tests/internals/Makefile.in-465-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
bindfs-1.14.7/tests/internals/Makefile.in:466:@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_internals_CPPFLAGS) $(CPPFLAGS) $(test_internals_CFLAGS) $(CFLAGS) -c -o test_internals-misc.o `test -f '$(top_srcdir)/src/misc.c' || echo '$(srcdir)/'`$(top_srcdir)/src/misc.c
bindfs-1.14.7/tests/internals/Makefile.in-467-
bindfs-1.14.7/tests/internals/Makefile.in-468-test_internals-misc.obj: $(top_srcdir)/src/misc.c
bindfs-1.14.7/tests/internals/Makefile.in:469:@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_internals_CPPFLAGS) $(CPPFLAGS) $(test_internals_CFLAGS) $(CFLAGS) -MT test_internals-misc.obj -MD -MP -MF $(DEPDIR)/test_internals-misc.Tpo -c -o test_internals-misc.obj `if test -f '$(top_srcdir)/src/misc.c'; then $(CYGPATH_W) '$(top_srcdir)/src/misc.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/src/misc.c'; fi`
bindfs-1.14.7/tests/internals/Makefile.in-470-@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/test_internals-misc.Tpo $(DEPDIR)/test_internals-misc.Po
##############################################
bindfs-1.14.7/tests/internals/Makefile.in-472-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
bindfs-1.14.7/tests/internals/Makefile.in:473:@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_internals_CPPFLAGS) $(CPPFLAGS) $(test_internals_CFLAGS) $(CFLAGS) -c -o test_internals-misc.obj `if test -f '$(top_srcdir)/src/misc.c'; then $(CYGPATH_W) '$(top_srcdir)/src/misc.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/src/misc.c'; fi`
bindfs-1.14.7/tests/internals/Makefile.in-474-
bindfs-1.14.7/tests/internals/Makefile.in-475-test_rate_limiter-test_rate_limiter.o: test_rate_limiter.c
bindfs-1.14.7/tests/internals/Makefile.in:476:@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_rate_limiter_CPPFLAGS) $(CPPFLAGS) $(test_rate_limiter_CFLAGS) $(CFLAGS) -MT test_rate_limiter-test_rate_limiter.o -MD -MP -MF $(DEPDIR)/test_rate_limiter-test_rate_limiter.Tpo -c -o test_rate_limiter-test_rate_limiter.o `test -f 'test_rate_limiter.c' || echo '$(srcdir)/'`test_rate_limiter.c
bindfs-1.14.7/tests/internals/Makefile.in-477-@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/test_rate_limiter-test_rate_limiter.Tpo $(DEPDIR)/test_rate_limiter-test_rate_limiter.Po
##############################################
bindfs-1.14.7/tests/internals/Makefile.in-479-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
bindfs-1.14.7/tests/internals/Makefile.in:480:@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_rate_limiter_CPPFLAGS) $(CPPFLAGS) $(test_rate_limiter_CFLAGS) $(CFLAGS) -c -o test_rate_limiter-test_rate_limiter.o `test -f 'test_rate_limiter.c' || echo '$(srcdir)/'`test_rate_limiter.c
bindfs-1.14.7/tests/internals/Makefile.in-481-
bindfs-1.14.7/tests/internals/Makefile.in-482-test_rate_limiter-test_rate_limiter.obj: test_rate_limiter.c
bindfs-1.14.7/tests/internals/Makefile.in:483:@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_rate_limiter_CPPFLAGS) $(CPPFLAGS) $(test_rate_limiter_CFLAGS) $(CFLAGS) -MT test_rate_limiter-test_rate_limiter.obj -MD -MP -MF $(DEPDIR)/test_rate_limiter-test_rate_limiter.Tpo -c -o test_rate_limiter-test_rate_limiter.obj `if test -f 'test_rate_limiter.c'; then $(CYGPATH_W) 'test_rate_limiter.c'; else $(CYGPATH_W) '$(srcdir)/test_rate_limiter.c'; fi`
bindfs-1.14.7/tests/internals/Makefile.in-484-@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/test_rate_limiter-test_rate_limiter.Tpo $(DEPDIR)/test_rate_limiter-test_rate_limiter.Po
##############################################
bindfs-1.14.7/tests/internals/Makefile.in-486-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
bindfs-1.14.7/tests/internals/Makefile.in:487:@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_rate_limiter_CPPFLAGS) $(CPPFLAGS) $(test_rate_limiter_CFLAGS) $(CFLAGS) -c -o test_rate_limiter-test_rate_limiter.obj `if test -f 'test_rate_limiter.c'; then $(CYGPATH_W) 'test_rate_limiter.c'; else $(CYGPATH_W) '$(srcdir)/test_rate_limiter.c'; fi`
bindfs-1.14.7/tests/internals/Makefile.in-488-
bindfs-1.14.7/tests/internals/Makefile.in-489-test_rate_limiter-test_common.o: test_common.c
bindfs-1.14.7/tests/internals/Makefile.in:490:@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_rate_limiter_CPPFLAGS) $(CPPFLAGS) $(test_rate_limiter_CFLAGS) $(CFLAGS) -MT test_rate_limiter-test_common.o -MD -MP -MF $(DEPDIR)/test_rate_limiter-test_common.Tpo -c -o test_rate_limiter-test_common.o `test -f 'test_common.c' || echo '$(srcdir)/'`test_common.c
bindfs-1.14.7/tests/internals/Makefile.in-491-@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/test_rate_limiter-test_common.Tpo $(DEPDIR)/test_rate_limiter-test_common.Po
##############################################
bindfs-1.14.7/tests/internals/Makefile.in-493-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
bindfs-1.14.7/tests/internals/Makefile.in:494:@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_rate_limiter_CPPFLAGS) $(CPPFLAGS) $(test_rate_limiter_CFLAGS) $(CFLAGS) -c -o test_rate_limiter-test_common.o `test -f 'test_common.c' || echo '$(srcdir)/'`test_common.c
bindfs-1.14.7/tests/internals/Makefile.in-495-
bindfs-1.14.7/tests/internals/Makefile.in-496-test_rate_limiter-test_common.obj: test_common.c
bindfs-1.14.7/tests/internals/Makefile.in:497:@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_rate_limiter_CPPFLAGS) $(CPPFLAGS) $(test_rate_limiter_CFLAGS) $(CFLAGS) -MT test_rate_limiter-test_common.obj -MD -MP -MF $(DEPDIR)/test_rate_limiter-test_common.Tpo -c -o test_rate_limiter-test_common.obj `if test -f 'test_common.c'; then $(CYGPATH_W) 'test_common.c'; else $(CYGPATH_W) '$(srcdir)/test_common.c'; fi`
bindfs-1.14.7/tests/internals/Makefile.in-498-@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/test_rate_limiter-test_common.Tpo $(DEPDIR)/test_rate_limiter-test_common.Po
##############################################
bindfs-1.14.7/tests/internals/Makefile.in-500-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
bindfs-1.14.7/tests/internals/Makefile.in:501:@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_rate_limiter_CPPFLAGS) $(CPPFLAGS) $(test_rate_limiter_CFLAGS) $(CFLAGS) -c -o test_rate_limiter-test_common.obj `if test -f 'test_common.c'; then $(CYGPATH_W) 'test_common.c'; else $(CYGPATH_W) '$(srcdir)/test_common.c'; fi`
bindfs-1.14.7/tests/internals/Makefile.in-502-
bindfs-1.14.7/tests/internals/Makefile.in-503-test_rate_limiter-rate_limiter.o: $(top_srcdir)/src/rate_limiter.c
bindfs-1.14.7/tests/internals/Makefile.in:504:@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_rate_limiter_CPPFLAGS) $(CPPFLAGS) $(test_rate_limiter_CFLAGS) $(CFLAGS) -MT test_rate_limiter-rate_limiter.o -MD -MP -MF $(DEPDIR)/test_rate_limiter-rate_limiter.Tpo -c -o test_rate_limiter-rate_limiter.o `test -f '$(top_srcdir)/src/rate_limiter.c' || echo '$(srcdir)/'`$(top_srcdir)/src/rate_limiter.c
bindfs-1.14.7/tests/internals/Makefile.in-505-@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/test_rate_limiter-rate_limiter.Tpo $(DEPDIR)/test_rate_limiter-rate_limiter.Po
##############################################
bindfs-1.14.7/tests/internals/Makefile.in-507-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
bindfs-1.14.7/tests/internals/Makefile.in:508:@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_rate_limiter_CPPFLAGS) $(CPPFLAGS) $(test_rate_limiter_CFLAGS) $(CFLAGS) -c -o test_rate_limiter-rate_limiter.o `test -f '$(top_srcdir)/src/rate_limiter.c' || echo '$(srcdir)/'`$(top_srcdir)/src/rate_limiter.c
bindfs-1.14.7/tests/internals/Makefile.in-509-
bindfs-1.14.7/tests/internals/Makefile.in-510-test_rate_limiter-rate_limiter.obj: $(top_srcdir)/src/rate_limiter.c
bindfs-1.14.7/tests/internals/Makefile.in:511:@am__fastdepCC_TRUE@	$(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_rate_limiter_CPPFLAGS) $(CPPFLAGS) $(test_rate_limiter_CFLAGS) $(CFLAGS) -MT test_rate_limiter-rate_limiter.obj -MD -MP -MF $(DEPDIR)/test_rate_limiter-rate_limiter.Tpo -c -o test_rate_limiter-rate_limiter.obj `if test -f '$(top_srcdir)/src/rate_limiter.c'; then $(CYGPATH_W) '$(top_srcdir)/src/rate_limiter.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/src/rate_limiter.c'; fi`
bindfs-1.14.7/tests/internals/Makefile.in-512-@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/test_rate_limiter-rate_limiter.Tpo $(DEPDIR)/test_rate_limiter-rate_limiter.Po
##############################################
bindfs-1.14.7/tests/internals/Makefile.in-514-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
bindfs-1.14.7/tests/internals/Makefile.in:515:@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_rate_limiter_CPPFLAGS) $(CPPFLAGS) $(test_rate_limiter_CFLAGS) $(CFLAGS) -c -o test_rate_limiter-rate_limiter.obj `if test -f '$(top_srcdir)/src/rate_limiter.c'; then $(CYGPATH_W) '$(top_srcdir)/src/rate_limiter.c'; else $(CYGPATH_W) '$(srcdir)/$(top_srcdir)/src/rate_limiter.c'; fi`
bindfs-1.14.7/tests/internals/Makefile.in-516-
##############################################
bindfs-1.14.7/tests/internals/Makefile.in-552-GTAGS:
bindfs-1.14.7/tests/internals/Makefile.in:553:	here=`$(am__cd) $(top_builddir) && pwd` \
bindfs-1.14.7/tests/internals/Makefile.in-554-	  && $(am__cd) $(top_srcdir) \
##############################################
bindfs-1.14.7/tests/internals/Makefile.in-585-	    if $(TESTS_ENVIRONMENT) $${dir}$$tst $(AM_TESTS_FD_REDIRECT); then \
bindfs-1.14.7/tests/internals/Makefile.in:586:	      all=`expr $$all + 1`; \
bindfs-1.14.7/tests/internals/Makefile.in-587-	      case " $(XFAIL_TESTS) " in \
bindfs-1.14.7/tests/internals/Makefile.in-588-	      *[\ \	]$$tst[\ \	]*) \
bindfs-1.14.7/tests/internals/Makefile.in:589:		xpass=`expr $$xpass + 1`; \
bindfs-1.14.7/tests/internals/Makefile.in:590:		failed=`expr $$failed + 1`; \
bindfs-1.14.7/tests/internals/Makefile.in-591-		col=$$red; res=XPASS; \
##############################################
bindfs-1.14.7/tests/internals/Makefile.in-597-	    elif test $$? -ne 77; then \
bindfs-1.14.7/tests/internals/Makefile.in:598:	      all=`expr $$all + 1`; \
bindfs-1.14.7/tests/internals/Makefile.in-599-	      case " $(XFAIL_TESTS) " in \
bindfs-1.14.7/tests/internals/Makefile.in-600-	      *[\ \	]$$tst[\ \	]*) \
bindfs-1.14.7/tests/internals/Makefile.in:601:		xfail=`expr $$xfail + 1`; \
bindfs-1.14.7/tests/internals/Makefile.in-602-		col=$$lgn; res=XFAIL; \
##############################################
bindfs-1.14.7/tests/internals/Makefile.in-604-	      *) \
bindfs-1.14.7/tests/internals/Makefile.in:605:		failed=`expr $$failed + 1`; \
bindfs-1.14.7/tests/internals/Makefile.in-606-		col=$$red; res=FAIL; \
##############################################
bindfs-1.14.7/tests/internals/Makefile.in-609-	    else \
bindfs-1.14.7/tests/internals/Makefile.in:610:	      skip=`expr $$skip + 1`; \
bindfs-1.14.7/tests/internals/Makefile.in-611-	      col=$$blu; res=SKIP; \
##############################################
bindfs-1.14.7/tests/internals/Makefile.in-644-	    fi; \
bindfs-1.14.7/tests/internals/Makefile.in:645:	    test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \
bindfs-1.14.7/tests/internals/Makefile.in-646-	      dashes="$$skipped"; \
##############################################
bindfs-1.14.7/tests/internals/Makefile.in-650-	    report="Please report to $(PACKAGE_BUGREPORT)"; \
bindfs-1.14.7/tests/internals/Makefile.in:651:	    test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \
bindfs-1.14.7/tests/internals/Makefile.in-652-	      dashes="$$report"; \
bindfs-1.14.7/tests/internals/Makefile.in-653-	  fi; \
bindfs-1.14.7/tests/internals/Makefile.in:654:	  dashes=`echo "$$dashes" | sed s/./=/g`; \
bindfs-1.14.7/tests/internals/Makefile.in-655-	  if test "$$failed" -eq 0; then \
##############################################
bindfs-1.14.7/tests/internals/Makefile.in-668-distdir: $(DISTFILES)
bindfs-1.14.7/tests/internals/Makefile.in:669:	@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
bindfs-1.14.7/tests/internals/Makefile.in:670:	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
bindfs-1.14.7/tests/internals/Makefile.in-671-	list='$(DISTFILES)'; \
##############################################
bindfs-1.14.7/tests/internals/Makefile.in-682-	  if test -d $$d/$$file; then \
bindfs-1.14.7/tests/internals/Makefile.in:683:	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
bindfs-1.14.7/tests/internals/Makefile.in-684-	    if test -d "$(distdir)/$$file"; then \
##############################################
bindfs-1.14.7/tests/internals/test_rate_limiter_valgrind.sh-2-if [ ! -x ./test_rate_limiter ]; then
bindfs-1.14.7/tests/internals/test_rate_limiter_valgrind.sh:3:    cd `dirname "$0"`
bindfs-1.14.7/tests/internals/test_rate_limiter_valgrind.sh-4-fi
##############################################
bindfs-1.14.7/tests/internals/test_internals_valgrind.sh-2-if [ ! -x ./test_internals ]; then
bindfs-1.14.7/tests/internals/test_internals_valgrind.sh:3:    cd `dirname "$0"`
bindfs-1.14.7/tests/internals/test_internals_valgrind.sh-4-fi
##############################################
bindfs-1.14.7/depcomp-64-  case $1 in
bindfs-1.14.7/depcomp:65:    */*) dir=`echo "$1" | sed -e 's|/[^/]*$|/|'`;;
bindfs-1.14.7/depcomp-66-      *) dir=;;
##############################################
bindfs-1.14.7/depcomp-73-{
bindfs-1.14.7/depcomp:74:  base=`echo "$1" | sed -e 's|^.*/||' -e 's/\.[^.]*$//'`
bindfs-1.14.7/depcomp-75-}
##############################################
bindfs-1.14.7/depcomp-126-  sed 's|[^\\/]*$|'${DEPDIR-.deps}'/&|;s|\.\([^.]*\)$|.P\1|;s|Pobj$|Po|'`}
bindfs-1.14.7/depcomp:127:tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`}
bindfs-1.14.7/depcomp-128-
##############################################
bindfs-1.14.7/depcomp-405-        sleep 1
bindfs-1.14.7/depcomp:406:        i=`expr $i - 1`
bindfs-1.14.7/depcomp-407-      done
bindfs-1.14.7/depcomp-408-    fi
bindfs-1.14.7/depcomp:409:    i=`expr $i - 1`
bindfs-1.14.7/depcomp-410-  done
##############################################
bindfs-1.14.7/depcomp-425-  # Do two passes, one to just change these to
bindfs-1.14.7/depcomp:426:  # `$object: dependent.h' and one to simply `dependent.h:'.
bindfs-1.14.7/depcomp-427-  sed "s,^[^:]*:,$object :," < "$tmpdepfile" > "$depfile"
##############################################
bindfs-1.14.7/depcomp-659-  done
bindfs-1.14.7/depcomp:660:  obj_suffix=`echo "$object" | sed 's/^.*\././'`
bindfs-1.14.7/depcomp-661-  touch "$tmpdepfile"
##############################################
bindfs-1.14.7/config.guess-34-
bindfs-1.14.7/config.guess:35:me=`echo "$0" | sed -e 's,.*/,,'`
bindfs-1.14.7/config.guess-36-
##############################################
bindfs-1.14.7/config.guess-102-: ${TMPDIR=/tmp} ;
bindfs-1.14.7/config.guess:103: { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } ||
bindfs-1.14.7/config.guess-104- { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } ||
##############################################
bindfs-1.14.7/config.guess-151-	EOF
bindfs-1.14.7/config.guess:152:	eval "`$CC_FOR_BUILD -E "$dummy.c" 2>/dev/null | grep '^LIBC' | sed 's, ,,g'`"
bindfs-1.14.7/config.guess-153-
##############################################
bindfs-1.14.7/config.guess-188-	    earmv*)
bindfs-1.14.7/config.guess:189:		arch=`echo "$UNAME_MACHINE_ARCH" | sed -e 's,^e\(armv[0-9]\).*$,\1,'`
bindfs-1.14.7/config.guess:190:		endian=`echo "$UNAME_MACHINE_ARCH" | sed -ne 's,^.*\(eb\)$,\1,p'`
bindfs-1.14.7/config.guess-191-		machine="${arch}${endian}"-unknown
##############################################
bindfs-1.14.7/config.guess-220-		expr='s/^earmv[0-9]/-eabi/;s/eb$//'
bindfs-1.14.7/config.guess:221:		abi=`echo "$UNAME_MACHINE_ARCH" | sed -e "$expr"`
bindfs-1.14.7/config.guess-222-		;;
##############################################
bindfs-1.14.7/config.guess-233-	    *)
bindfs-1.14.7/config.guess:234:		release=`echo "$UNAME_RELEASE" | sed -e 's/[-_].*//' | cut -d. -f1,2`
bindfs-1.14.7/config.guess-235-		;;
##############################################
bindfs-1.14.7/config.guess-280-	*4.0)
bindfs-1.14.7/config.guess:281:		UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'`
bindfs-1.14.7/config.guess-282-		;;
bindfs-1.14.7/config.guess-283-	*5.*)
bindfs-1.14.7/config.guess:284:		UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'`
bindfs-1.14.7/config.guess-285-		;;
##############################################
bindfs-1.14.7/config.guess-290-	# types through head -n 1, so we only detect the type of CPU 0.
bindfs-1.14.7/config.guess:291:	ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^  The alpha \(.*\) processor.*$/\1/p' | head -n 1`
bindfs-1.14.7/config.guess-292-	case "$ALPHA_CPU_TYPE" in
##############################################
bindfs-1.14.7/config.guess-328-	# 1.2 uses "1.2" for uname -r.
bindfs-1.14.7/config.guess:329:	echo "$UNAME_MACHINE"-dec-osf"`echo "$UNAME_RELEASE" | sed -e 's/^[PVTX]//' | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz`"
bindfs-1.14.7/config.guess-330-	# Reset EXIT trap before exiting to avoid spurious non-zero exit code.
##############################################
bindfs-1.14.7/config.guess-379-    s390x:SunOS:*:*)
bindfs-1.14.7/config.guess:380:	echo "$UNAME_MACHINE"-ibm-solaris2"`echo "$UNAME_RELEASE" | sed -e 's/[^.]*//'`"
bindfs-1.14.7/config.guess-381-	exit ;;
bindfs-1.14.7/config.guess-382-    sun4H:SunOS:5.*:*)
bindfs-1.14.7/config.guess:383:	echo sparc-hal-solaris2"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`"
bindfs-1.14.7/config.guess-384-	exit ;;
bindfs-1.14.7/config.guess-385-    sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*)
bindfs-1.14.7/config.guess:386:	echo sparc-sun-solaris2"`echo "$UNAME_RELEASE" | sed -e 's/[^.]*//'`"
bindfs-1.14.7/config.guess-387-	exit ;;
##############################################
bindfs-1.14.7/config.guess-404-	fi
bindfs-1.14.7/config.guess:405:	echo "$SUN_ARCH"-pc-solaris2"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`"
bindfs-1.14.7/config.guess-406-	exit ;;
##############################################
bindfs-1.14.7/config.guess-410-	# it's likely to be more like Solaris than SunOS4.
bindfs-1.14.7/config.guess:411:	echo sparc-sun-solaris3"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`"
bindfs-1.14.7/config.guess-412-	exit ;;
##############################################
bindfs-1.14.7/config.guess-419-	# Japanese Language versions have a version number like `4.1.3-JL'.
bindfs-1.14.7/config.guess:420:	echo sparc-sun-sunos"`echo "$UNAME_RELEASE"|sed -e 's/-/_/'`"
bindfs-1.14.7/config.guess-421-	exit ;;
##############################################
bindfs-1.14.7/config.guess-425-    sun*:*:4.2BSD:*)
bindfs-1.14.7/config.guess:426:	UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null`
bindfs-1.14.7/config.guess-427-	test "x$UNAME_RELEASE" = x && UNAME_RELEASE=3
##############################################
bindfs-1.14.7/config.guess-507-	$CC_FOR_BUILD -o "$dummy" "$dummy.c" &&
bindfs-1.14.7/config.guess:508:	  dummyarg=`echo "$UNAME_RELEASE" | sed -n 's/\([0-9]*\).*/\1/p'` &&
bindfs-1.14.7/config.guess:509:	  SYSTEM_NAME=`"$dummy" "$dummyarg"` &&
bindfs-1.14.7/config.guess-510-	    { echo "$SYSTEM_NAME"; exit; }
##############################################
bindfs-1.14.7/config.guess-563-    *:IRIX*:*:*)
bindfs-1.14.7/config.guess:564:	echo mips-sgi-irix"`echo "$UNAME_RELEASE"|sed -e 's/-/_/g'`"
bindfs-1.14.7/config.guess-565-	exit ;;
##############################################
bindfs-1.14.7/config.guess-593-EOF
bindfs-1.14.7/config.guess:594:		if $CC_FOR_BUILD -o "$dummy" "$dummy.c" && SYSTEM_NAME=`"$dummy"`
bindfs-1.14.7/config.guess-595-		then
##############################################
bindfs-1.14.7/config.guess-606-    *:AIX:*:[4567])
bindfs-1.14.7/config.guess:607:	IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'`
bindfs-1.14.7/config.guess-608-	if /usr/sbin/lsattr -El "$IBM_CPU_ID" | grep ' POWER' >/dev/null 2>&1; then
##############################################
bindfs-1.14.7/config.guess-642-    9000/[34678]??:HP-UX:*:*)
bindfs-1.14.7/config.guess:643:	HPUX_REV=`echo "$UNAME_RELEASE"|sed -e 's/[^.]*.[0B]*//'`
bindfs-1.14.7/config.guess-644-	case "$UNAME_MACHINE" in
##############################################
bindfs-1.14.7/config.guess-696-EOF
bindfs-1.14.7/config.guess:697:		    (CCOPTS="" $CC_FOR_BUILD -o "$dummy" "$dummy.c" 2>/dev/null) && HP_ARCH=`"$dummy"`
bindfs-1.14.7/config.guess-698-		    test -z "$HP_ARCH" && HP_ARCH=hppa
##############################################
bindfs-1.14.7/config.guess-724-    ia64:HP-UX:*:*)
bindfs-1.14.7/config.guess:725:	HPUX_REV=`echo "$UNAME_RELEASE"|sed -e 's/[^.]*.[0B]*//'`
bindfs-1.14.7/config.guess-726-	echo ia64-hp-hpux"$HPUX_REV"
##############################################
bindfs-1.14.7/config.guess-754-EOF
bindfs-1.14.7/config.guess:755:	$CC_FOR_BUILD -o "$dummy" "$dummy.c" && SYSTEM_NAME=`"$dummy"` &&
bindfs-1.14.7/config.guess-756-		{ echo "$SYSTEM_NAME"; exit; }
##############################################
bindfs-1.14.7/config.guess-825-	FUJITSU_SYS=`uname -p | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/\///'`
bindfs-1.14.7/config.guess:826:	FUJITSU_REL=`echo "$UNAME_RELEASE" | sed -e 's/ /_/'`
bindfs-1.14.7/config.guess-827-	echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}"
##############################################
bindfs-1.14.7/config.guess-830-	FUJITSU_SYS=`uname -p | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/\///'`
bindfs-1.14.7/config.guess:831:	FUJITSU_REL=`echo "$UNAME_RELEASE" | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/ /_/'`
bindfs-1.14.7/config.guess-832-	echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}"
##############################################
bindfs-1.14.7/config.guess-850-	esac
bindfs-1.14.7/config.guess:851:	echo "$UNAME_PROCESSOR"-unknown-freebsd"`echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`"
bindfs-1.14.7/config.guess-852-	exit ;;
##############################################
bindfs-1.14.7/config.guess-886-    prep*:SunOS:5.*:*)
bindfs-1.14.7/config.guess:887:	echo powerpcle-unknown-solaris2"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`"
bindfs-1.14.7/config.guess-888-	exit ;;
##############################################
bindfs-1.14.7/config.guess-890-	# the GNU system
bindfs-1.14.7/config.guess:891:	echo "`echo "$UNAME_MACHINE"|sed -e 's,[-/].*$,,'`-unknown-$LIBC`echo "$UNAME_RELEASE"|sed -e 's,/.*$,,'`"
bindfs-1.14.7/config.guess-892-	exit ;;
##############################################
bindfs-1.14.7/config.guess-894-	# other systems with GNU libc and userland
bindfs-1.14.7/config.guess:895:	echo "$UNAME_MACHINE-unknown-`echo "$UNAME_SYSTEM" | sed 's,^[^/]*/,,' | tr "[:upper:]" "[:lower:]"``echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`-$LIBC"
bindfs-1.14.7/config.guess-896-	exit ;;
##############################################
bindfs-1.14.7/config.guess-988-EOF
bindfs-1.14.7/config.guess:989:	eval "`$CC_FOR_BUILD -E "$dummy.c" 2>/dev/null | grep '^CPU'`"
bindfs-1.14.7/config.guess-990-	test "x$CPU" != x && { echo "$CPU-unknown-linux-$LIBC"; exit; }
##############################################
bindfs-1.14.7/config.guess-1092-    i*86:*:4.*:*)
bindfs-1.14.7/config.guess:1093:	UNAME_REL=`echo "$UNAME_RELEASE" | sed 's/\/MP$//'`
bindfs-1.14.7/config.guess-1094-	if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then
##############################################
bindfs-1.14.7/config.guess-1295-	fi
bindfs-1.14.7/config.guess:1296:	if test "`echo "$UNAME_RELEASE" | sed -e 's/\..*//'`" -le 10 ; then
bindfs-1.14.7/config.guess-1297-	    if [ "$CC_FOR_BUILD" != no_compiler_found ]; then
##############################################
bindfs-1.14.7/config.guess-1393-    *:DragonFly:*:*)
bindfs-1.14.7/config.guess:1394:	echo "$UNAME_MACHINE"-unknown-dragonfly"`echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`"
bindfs-1.14.7/config.guess-1395-	exit ;;
##############################################
bindfs-1.14.7/config.guess-1406-    i*86:skyos:*:*)
bindfs-1.14.7/config.guess:1407:	echo "$UNAME_MACHINE"-pc-skyos"`echo "$UNAME_RELEASE" | sed -e 's/ .*$//'`"
bindfs-1.14.7/config.guess-1408-	exit ;;
##############################################
bindfs-1.14.7/vagrant/test.rb-60-puts "Note: if your terminal goes wonky after this command, type 'reset'"
bindfs-1.14.7/vagrant/test.rb:61:mutex = Thread::Mutex.new  # protects `$stdout` and `errors`
bindfs-1.14.7/vagrant/test.rb-62-errors = []
##############################################
bindfs-1.14.7/aclocal.m4-141-    done
bindfs-1.14.7/aclocal.m4:142:    func_cc_basename_result=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"`
bindfs-1.14.7/aclocal.m4-143-}
##############################################
bindfs-1.14.7/aclocal.m4-453-m4_define([_LT_CONFIG_STATUS_DECLARE],
bindfs-1.14.7/aclocal.m4:454:[$1='`$ECHO "$][$1" | $SED "$delay_single_quote_subst"`'])
bindfs-1.14.7/aclocal.m4-455-
##############################################
bindfs-1.14.7/aclocal.m4-463-#
bindfs-1.14.7/aclocal.m4:464:#    <var>='`$ECHO "$<var>" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/aclocal.m4-465-m4_defun([_LT_CONFIG_STATUS_DECLARATIONS],
##############################################
bindfs-1.14.7/aclocal.m4-573-]], lt_decl_quote_varnames); do
bindfs-1.14.7/aclocal.m4:574:    case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in
bindfs-1.14.7/aclocal.m4-575-    *[[\\\\\\\`\\"\\\$]]*)
bindfs-1.14.7/aclocal.m4:576:      eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" ## exclude from sc_prohibit_nested_quotes
bindfs-1.14.7/aclocal.m4-577-      ;;
##############################################
bindfs-1.14.7/aclocal.m4-586-]], lt_decl_dquote_varnames); do
bindfs-1.14.7/aclocal.m4:587:    case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in
bindfs-1.14.7/aclocal.m4-588-    *[[\\\\\\\`\\"\\\$]]*)
bindfs-1.14.7/aclocal.m4:589:      eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" ## exclude from sc_prohibit_nested_quotes
bindfs-1.14.7/aclocal.m4-590-      ;;
##############################################
bindfs-1.14.7/aclocal.m4-1125-  if test yes = "$lt_cv_ld_force_load"; then
bindfs-1.14.7/aclocal.m4:1126:    _LT_TAGVAR(whole_archive_flag_spec, $1)='`for conv in $convenience\"\"; do test  -n \"$conv\" && new_convenience=\"$new_convenience $wl-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`'
bindfs-1.14.7/aclocal.m4-1127-    m4_case([$1], [F77], [_LT_TAGVAR(compiler_needs_object, $1)=yes],
##############################################
bindfs-1.14.7/aclocal.m4-1178-      }]'
bindfs-1.14.7/aclocal.m4:1179:  _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"`
bindfs-1.14.7/aclocal.m4-1180-  # Check for a 64-bit object if we didn't find anything.
bindfs-1.14.7/aclocal.m4-1181-  if test -z "$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])"; then
bindfs-1.14.7/aclocal.m4:1182:    _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"`
bindfs-1.14.7/aclocal.m4-1183-  fi],[])
##############################################
bindfs-1.14.7/aclocal.m4-1214-if test "X`( print -r -- -n ) 2>/dev/null`" = X-n && \
bindfs-1.14.7/aclocal.m4:1215:   test "X`print -r -- $ECHO 2>/dev/null`" = "X$ECHO"; then
bindfs-1.14.7/aclocal.m4-1216-  ECHO='print -r --'
bindfs-1.14.7/aclocal.m4:1217:elif test "X`printf %s $ECHO 2>/dev/null`" = "X$ECHO"; then
bindfs-1.14.7/aclocal.m4-1218-  ECHO='printf %s\n'
##############################################
bindfs-1.14.7/aclocal.m4-1249-    PATH=/empty FPATH=/empty; export PATH FPATH
bindfs-1.14.7/aclocal.m4:1250:    test "X`printf %s $ECHO`" = "X$ECHO" \
bindfs-1.14.7/aclocal.m4:1251:      || test "X`print -r -- $ECHO`" = "X$ECHO" )])])
bindfs-1.14.7/aclocal.m4-1252-
##############################################
bindfs-1.14.7/aclocal.m4-1273-   if test yes = "$GCC"; then
bindfs-1.14.7/aclocal.m4:1274:     lt_sysroot=`$CC --print-sysroot 2>/dev/null`
bindfs-1.14.7/aclocal.m4-1275-   fi
##############################################
bindfs-1.14.7/aclocal.m4-1277- /*)
bindfs-1.14.7/aclocal.m4:1278:   lt_sysroot=`echo "$with_sysroot" | sed -e "$sed_quote_subst"`
bindfs-1.14.7/aclocal.m4-1279-   ;; #(
##############################################
bindfs-1.14.7/aclocal.m4-1307-  if AC_TRY_EVAL(ac_compile); then
bindfs-1.14.7/aclocal.m4:1308:    case `/usr/bin/file conftest.$ac_objext` in
bindfs-1.14.7/aclocal.m4-1309-      *ELF-32*)
##############################################
bindfs-1.14.7/aclocal.m4-1324-    if test yes = "$lt_cv_prog_gnu_ld"; then
bindfs-1.14.7/aclocal.m4:1325:      case `/usr/bin/file conftest.$ac_objext` in
bindfs-1.14.7/aclocal.m4-1326-	*32-bit*)
##############################################
bindfs-1.14.7/aclocal.m4-1336-    else
bindfs-1.14.7/aclocal.m4:1337:      case `/usr/bin/file conftest.$ac_objext` in
bindfs-1.14.7/aclocal.m4-1338-	*32-bit*)
##############################################
bindfs-1.14.7/aclocal.m4-1358-    emul=elf
bindfs-1.14.7/aclocal.m4:1359:    case `/usr/bin/file conftest.$ac_objext` in
bindfs-1.14.7/aclocal.m4-1360-      *32-bit*)
##############################################
bindfs-1.14.7/aclocal.m4-1366-    esac
bindfs-1.14.7/aclocal.m4:1367:    case `/usr/bin/file conftest.$ac_objext` in
bindfs-1.14.7/aclocal.m4-1368-      *MSB*)
##############################################
bindfs-1.14.7/aclocal.m4-1374-    esac
bindfs-1.14.7/aclocal.m4:1375:    case `/usr/bin/file conftest.$ac_objext` in
bindfs-1.14.7/aclocal.m4-1376-      *N32*)
##############################################
bindfs-1.14.7/aclocal.m4-1739-    # And add a safety zone
bindfs-1.14.7/aclocal.m4:1740:    lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4`
bindfs-1.14.7/aclocal.m4:1741:    lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3`
bindfs-1.14.7/aclocal.m4-1742-    ;;
##############################################
bindfs-1.14.7/aclocal.m4-1772-    if test -n "$kargmax"; then
bindfs-1.14.7/aclocal.m4:1773:      lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[[	 ]]//'`
bindfs-1.14.7/aclocal.m4-1774-    else
##############################################
bindfs-1.14.7/aclocal.m4-1781-       test undefined != "$lt_cv_sys_max_cmd_len"; then
bindfs-1.14.7/aclocal.m4:1782:      lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4`
bindfs-1.14.7/aclocal.m4:1783:      lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3`
bindfs-1.14.7/aclocal.m4-1784-    else
##############################################
bindfs-1.14.7/aclocal.m4-1793-      # we can't tell.
bindfs-1.14.7/aclocal.m4:1794:      while { test X`env echo "$teststring$teststring" 2>/dev/null` \
bindfs-1.14.7/aclocal.m4-1795-	         = "X$teststring$teststring"; } >/dev/null 2>&1 &&
##############################################
bindfs-1.14.7/aclocal.m4-1797-      do
bindfs-1.14.7/aclocal.m4:1798:        i=`expr $i + 1`
bindfs-1.14.7/aclocal.m4-1799-        teststring=$teststring$teststring
##############################################
bindfs-1.14.7/aclocal.m4-1801-      # Only check the string length outside the loop.
bindfs-1.14.7/aclocal.m4:1802:      lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1`
bindfs-1.14.7/aclocal.m4-1803-      teststring=
##############################################
bindfs-1.14.7/aclocal.m4-1806-      # linker.  It appears as though 1/2 is a usable value.
bindfs-1.14.7/aclocal.m4:1807:      lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2`
bindfs-1.14.7/aclocal.m4-1808-    fi
##############################################
bindfs-1.14.7/aclocal.m4-2272-    *:)
bindfs-1.14.7/aclocal.m4:2273:        eval @S|@1=\"`$ECHO @S|@2 | $SED 's/:/ /g'` \@S|@@S|@1\"
bindfs-1.14.7/aclocal.m4-2274-        ;;
bindfs-1.14.7/aclocal.m4-2275-    x:*)
bindfs-1.14.7/aclocal.m4:2276:        eval @S|@1=\"\@S|@@S|@1 `$ECHO @S|@2 | $SED 's/:/ /g'`\"
bindfs-1.14.7/aclocal.m4-2277-        ;;
bindfs-1.14.7/aclocal.m4-2278-    *::*)
bindfs-1.14.7/aclocal.m4:2279:        eval @S|@1=\"\@S|@@S|@1\ `$ECHO @S|@2 | $SED -e 's/.*:://' -e 's/:/ /g'`\"
bindfs-1.14.7/aclocal.m4:2280:        eval @S|@1=\"`$ECHO @S|@2 | $SED -e 's/::.*//' -e 's/:/ /g'`\ \@S|@@S|@1\"
bindfs-1.14.7/aclocal.m4-2281-        ;;
bindfs-1.14.7/aclocal.m4-2282-    *)
bindfs-1.14.7/aclocal.m4:2283:        eval @S|@1=\"`$ECHO @S|@2 | $SED 's/:/ /g'`\"
bindfs-1.14.7/aclocal.m4-2284-        ;;
##############################################
bindfs-1.14.7/aclocal.m4-2312-  esac
bindfs-1.14.7/aclocal.m4:2313:  lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e $lt_sed_strip_eq`
bindfs-1.14.7/aclocal.m4-2314-  case $lt_search_path_spec in
##############################################
bindfs-1.14.7/aclocal.m4-2319-    # okay in the real world where ";" in dirpaths is itself problematic.
bindfs-1.14.7/aclocal.m4:2320:    lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED 's/;/ /g'`
bindfs-1.14.7/aclocal.m4-2321-    ;;
bindfs-1.14.7/aclocal.m4-2322-  *)
bindfs-1.14.7/aclocal.m4:2323:    lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED "s/$PATH_SEPARATOR/ /g"`
bindfs-1.14.7/aclocal.m4-2324-    ;;
##############################################
bindfs-1.14.7/aclocal.m4-2328-  lt_tmp_lt_search_path_spec=
bindfs-1.14.7/aclocal.m4:2329:  lt_multi_os_dir=/`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null`
bindfs-1.14.7/aclocal.m4-2330-  # ...but if some path component already ends with the multilib dir we assume
##############################################
bindfs-1.14.7/aclocal.m4-2370-  esac
bindfs-1.14.7/aclocal.m4:2371:  sys_lib_search_path_spec=`$ECHO "$lt_search_path_spec" | $lt_NL2SP`
bindfs-1.14.7/aclocal.m4-2372-else
##############################################
bindfs-1.14.7/aclocal.m4-2511-    # Create ${libname}_ixlibrary.a entries in /sys/libs.
bindfs-1.14.7/aclocal.m4:2512:    finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([[^/]]*\)\.ixlibrary$%\1%'\''`; $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done'
bindfs-1.14.7/aclocal.m4-2513-    ;;
##############################################
bindfs-1.14.7/aclocal.m4-2547-    # DLL is installed to $(libdir)/../bin by postinstall_cmds
bindfs-1.14.7/aclocal.m4:2548:    postinstall_cmds='base_file=`basename \$file`~
bindfs-1.14.7/aclocal.m4:2549:      dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~
bindfs-1.14.7/aclocal.m4:2550:      dldir=$destdir/`dirname \$dlpath`~
bindfs-1.14.7/aclocal.m4-2551-      test -d \$dldir || mkdir -p \$dldir~
##############################################
bindfs-1.14.7/aclocal.m4-2556-      fi'
bindfs-1.14.7/aclocal.m4:2557:    postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~
bindfs-1.14.7/aclocal.m4-2558-      dlpath=$dir/\$dldll~
##############################################
bindfs-1.14.7/aclocal.m4-2564-      # Cygwin DLLs use 'cyg' prefix rather than 'lib'
bindfs-1.14.7/aclocal.m4:2565:      soname_spec='`echo $libname | sed -e 's/^lib/cyg/'``echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext'
bindfs-1.14.7/aclocal.m4-2566-m4_if([$1], [],[
##############################################
bindfs-1.14.7/aclocal.m4-2570-      # MinGW DLLs use traditional 'lib' prefix
bindfs-1.14.7/aclocal.m4:2571:      soname_spec='$libname`echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext'
bindfs-1.14.7/aclocal.m4-2572-      ;;
##############################################
bindfs-1.14.7/aclocal.m4-2574-      # pw32 DLLs use 'pw' prefix rather than 'lib'
bindfs-1.14.7/aclocal.m4:2575:      library_names_spec='`echo $libname | sed -e 's/^lib/pw/'``echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext'
bindfs-1.14.7/aclocal.m4-2576-      ;;
##############################################
bindfs-1.14.7/aclocal.m4-2583-    libname_spec='$name'
bindfs-1.14.7/aclocal.m4:2584:    soname_spec='$libname`echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext'
bindfs-1.14.7/aclocal.m4-2585-    library_names_spec='$libname.dll.lib'
##############################################
bindfs-1.14.7/aclocal.m4-2595-        # Let DOS variable expansion print the short 8.3 style file name.
bindfs-1.14.7/aclocal.m4:2596:        lt_path=`cd "$lt_path" 2>/dev/null && cmd //C "for %i in (".") do @echo %~si"`
bindfs-1.14.7/aclocal.m4-2597-        sys_lib_search_path_spec="$sys_lib_search_path_spec $lt_path"
##############################################
bindfs-1.14.7/aclocal.m4-2600-      # Convert to MSYS style.
bindfs-1.14.7/aclocal.m4:2601:      sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | sed -e 's|\\\\|/|g' -e 's| \\([[a-zA-Z]]\\):| /\\1|g' -e 's|^ ||'`
bindfs-1.14.7/aclocal.m4-2602-      ;;
##############################################
bindfs-1.14.7/aclocal.m4-2606-      # like /cygdrive/c/PROGRA~1:/cygdr...
bindfs-1.14.7/aclocal.m4:2607:      sys_lib_search_path_spec=`cygpath --path --unix "$LIB"`
bindfs-1.14.7/aclocal.m4:2608:      sys_lib_search_path_spec=`cygpath --path --dos "$sys_lib_search_path_spec" 2>/dev/null`
bindfs-1.14.7/aclocal.m4:2609:      sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"`
bindfs-1.14.7/aclocal.m4-2610-      ;;
##############################################
bindfs-1.14.7/aclocal.m4-2614-        # It is most probably a Windows format PATH.
bindfs-1.14.7/aclocal.m4:2615:        sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'`
bindfs-1.14.7/aclocal.m4-2616-      else
bindfs-1.14.7/aclocal.m4:2617:        sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"`
bindfs-1.14.7/aclocal.m4-2618-      fi
##############################################
bindfs-1.14.7/aclocal.m4-2624-    # DLL is installed to $(libdir)/../bin by postinstall_cmds
bindfs-1.14.7/aclocal.m4:2625:    postinstall_cmds='base_file=`basename \$file`~
bindfs-1.14.7/aclocal.m4:2626:      dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~
bindfs-1.14.7/aclocal.m4:2627:      dldir=$destdir/`dirname \$dlpath`~
bindfs-1.14.7/aclocal.m4-2628-      test -d \$dldir || mkdir -p \$dldir~
bindfs-1.14.7/aclocal.m4-2629-      $install_prog $dir/$dlname \$dldir/$dlname'
bindfs-1.14.7/aclocal.m4:2630:    postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~
bindfs-1.14.7/aclocal.m4-2631-      dlpath=$dir/\$dldll~
##############################################
bindfs-1.14.7/aclocal.m4-2638-    # Assume MSVC wrapper
bindfs-1.14.7/aclocal.m4:2639:    library_names_spec='$libname`echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext $libname.lib'
bindfs-1.14.7/aclocal.m4-2640-    dynamic_linker='Win32 ld.exe'
##############################################
bindfs-1.14.7/aclocal.m4-2655-  shlibpath_var=DYLD_LIBRARY_PATH
bindfs-1.14.7/aclocal.m4:2656:  shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`'
bindfs-1.14.7/aclocal.m4-2657-m4_if([$1], [],[
##############################################
bindfs-1.14.7/aclocal.m4-2889-  if test -f /etc/ld.so.conf; then
bindfs-1.14.7/aclocal.m4:2890:    lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[	 ]*hwcap[	 ]/d;s/[:,	]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '`
bindfs-1.14.7/aclocal.m4-2891-    sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra"
##############################################
bindfs-1.14.7/aclocal.m4-2955-  need_lib_prefix=no
bindfs-1.14.7/aclocal.m4:2956:  if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then
bindfs-1.14.7/aclocal.m4-2957-    need_version=no
##############################################
bindfs-1.14.7/aclocal.m4-2982-  sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec
bindfs-1.14.7/aclocal.m4:2983:  postinstall_cmds='base_file=`basename \$file`~
bindfs-1.14.7/aclocal.m4:2984:    dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; $ECHO \$dlname'\''`~
bindfs-1.14.7/aclocal.m4:2985:    dldir=$destdir/`dirname \$dlpath`~
bindfs-1.14.7/aclocal.m4-2986-    test -d \$dldir || mkdir -p \$dldir~
##############################################
bindfs-1.14.7/aclocal.m4-2991-    fi'
bindfs-1.14.7/aclocal.m4:2992:  postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; $ECHO \$dlname'\''`~
bindfs-1.14.7/aclocal.m4-2993-    dlpath=$dir/\$dldll~
##############################################
bindfs-1.14.7/aclocal.m4-3202-	"file_magic "*)
bindfs-1.14.7/aclocal.m4:3203:	  file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"`
bindfs-1.14.7/aclocal.m4-3204-	  MAGIC_CMD=$lt_cv_path_MAGIC_CMD
##############################################
bindfs-1.14.7/aclocal.m4-3285-    # gcc leaves a trailing carriage return, which upsets mingw
bindfs-1.14.7/aclocal.m4:3286:    ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;;
bindfs-1.14.7/aclocal.m4-3287-  *)
bindfs-1.14.7/aclocal.m4:3288:    ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;
bindfs-1.14.7/aclocal.m4-3289-  esac
##############################################
bindfs-1.14.7/aclocal.m4-3294-      # Canonicalize the pathname of ld
bindfs-1.14.7/aclocal.m4:3295:      ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'`
bindfs-1.14.7/aclocal.m4-3296-      while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do
bindfs-1.14.7/aclocal.m4:3297:	ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"`
bindfs-1.14.7/aclocal.m4-3298-      done
##############################################
bindfs-1.14.7/aclocal.m4-3325-      # Break only if it was the GNU/non-GNU ld that we prefer.
bindfs-1.14.7/aclocal.m4:3326:      case `"$lt_cv_path_LD" -v 2>&1 </dev/null` in
bindfs-1.14.7/aclocal.m4-3327-      *GNU* | *'with BFD'*)
##############################################
bindfs-1.14.7/aclocal.m4-3365-[# I'd rather use --version here, but apparently some GNU lds only accept -v.
bindfs-1.14.7/aclocal.m4:3366:case `$LD -v 2>&1 </dev/null` in
bindfs-1.14.7/aclocal.m4-3367-*GNU* | *'with BFD'*)
##############################################
bindfs-1.14.7/aclocal.m4-3592-openbsd* | bitrig*)
bindfs-1.14.7/aclocal.m4:3593:  if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then
bindfs-1.14.7/aclocal.m4-3594-    lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|\.so|_pic\.a)$'
##############################################
bindfs-1.14.7/aclocal.m4-3659-    else
bindfs-1.14.7/aclocal.m4:3660:      file_magic_glob=`echo aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ | $SED -e "s/\(..\)/s\/[[\1]]\/[[\1]]\/g;/g"`
bindfs-1.14.7/aclocal.m4-3661-    fi
##############################################
bindfs-1.14.7/aclocal.m4-3710-	esac
bindfs-1.14.7/aclocal.m4:3711:	case `"$tmp_nm" -B $lt_bad_file 2>&1 | sed '1q'` in
bindfs-1.14.7/aclocal.m4-3712-	*$lt_bad_file* | *'Invalid file or object type'*)
##############################################
bindfs-1.14.7/aclocal.m4-3716-	*)
bindfs-1.14.7/aclocal.m4:3717:	  case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in
bindfs-1.14.7/aclocal.m4-3718-	  */dev/null*)
##############################################
bindfs-1.14.7/aclocal.m4-3742-    AC_CHECK_TOOLS(DUMPBIN, [dumpbin "link -dump"], :)
bindfs-1.14.7/aclocal.m4:3743:    case `$DUMPBIN -symbols -headers /dev/null 2>&1 | sed '1q'` in
bindfs-1.14.7/aclocal.m4-3744-    *COFF*)
##############################################
bindfs-1.14.7/aclocal.m4-3801-  # decide which one to use based on capabilities of $DLLTOOL
bindfs-1.14.7/aclocal.m4:3802:  case `$DLLTOOL --help 2>&1` in
bindfs-1.14.7/aclocal.m4-3803-  *--identify-strict*)
##############################################
bindfs-1.14.7/aclocal.m4-3975-# If we're using GNU nm, then use its standard symbol codes.
bindfs-1.14.7/aclocal.m4:3976:case `$NM -V 2>&1` in
bindfs-1.14.7/aclocal.m4-3977-*GNU* | *'with BFD'*)
##############################################
bindfs-1.14.7/aclocal.m4-4023-mingw*)
bindfs-1.14.7/aclocal.m4:4024:  opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp
bindfs-1.14.7/aclocal.m4-4025-  ;;
##############################################
bindfs-1.14.7/aclocal.m4-4079-    nlist=conftest.nm
bindfs-1.14.7/aclocal.m4:4080:    if AC_TRY_EVAL(NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist) && test -s "$nlist"; then
bindfs-1.14.7/aclocal.m4-4081-      # Try sorting and uniquifying the output.
##############################################
bindfs-1.14.7/aclocal.m4-4427-	  *)
bindfs-1.14.7/aclocal.m4:4428:	    case `$CC -V 2>&1 | sed 5q` in
bindfs-1.14.7/aclocal.m4-4429-	    *Sun\ C*)
##############################################
bindfs-1.14.7/aclocal.m4-4763-      *)
bindfs-1.14.7/aclocal.m4:4764:	case `$CC -V 2>&1 | sed 5q` in
bindfs-1.14.7/aclocal.m4-4765-	*Sun\ Ceres\ Fortran* | *Sun*Fortran*\ [[1-7]].* | *Sun*Fortran*\ 8.[[0-3]]*)
##############################################
bindfs-1.14.7/aclocal.m4-4946-    else
bindfs-1.14.7/aclocal.m4:4947:      _LT_TAGVAR(export_symbols_cmds, $1)='`func_echo_all $NM | $SED -e '\''s/B\([[^B]]*\)$/P\1/'\''` -PCpgl $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) && ([substr](\$ 1,1,1) != ".")) { if ((\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) { print \$ 1 " weak" } else { print \$ 1 } } }'\'' | sort -u > $export_symbols'
bindfs-1.14.7/aclocal.m4-4948-    fi
##############################################
bindfs-1.14.7/aclocal.m4-5045-	# shared libraries, regardless of the interface used.
bindfs-1.14.7/aclocal.m4:5046:	case `$LD -v 2>&1` in
bindfs-1.14.7/aclocal.m4-5047-	  *\ \(GNU\ Binutils\)\ 2.19.5*) ;;
##############################################
bindfs-1.14.7/aclocal.m4-5077-    supports_anon_versioning=no
bindfs-1.14.7/aclocal.m4:5078:    case `$LD -v | $SED -e 's/([^)]\+)\s\+//' 2>&1` in
bindfs-1.14.7/aclocal.m4-5079-      *GNU\ gold*) supports_anon_versioning=yes ;;
##############################################
bindfs-1.14.7/aclocal.m4-5180-	prefix_cmds="$SED"~
bindfs-1.14.7/aclocal.m4:5181:	if test EXPORTS = "`$SED 1q $export_symbols`"; then
bindfs-1.14.7/aclocal.m4-5182-	  prefix_cmds="$prefix_cmds -e 1d";
##############################################
bindfs-1.14.7/aclocal.m4-5202-      # time.  Moving up from 0x10000000 also allows more sbrk(2) space.
bindfs-1.14.7/aclocal.m4:5203:      _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
bindfs-1.14.7/aclocal.m4:5204:      _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s|^|_|" $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--retain-symbols-file,$output_objdir/$soname.expsym $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
bindfs-1.14.7/aclocal.m4-5205-      ;;
##############################################
bindfs-1.14.7/aclocal.m4-5220-        pgcc*)				# Portland Group C compiler
bindfs-1.14.7/aclocal.m4:5221:	  _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\"\"; do test  -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive'
bindfs-1.14.7/aclocal.m4-5222-	  tmp_addflag=' $pic_flag'
##############################################
bindfs-1.14.7/aclocal.m4-5225-					# Portland Group f77 and f90 compilers
bindfs-1.14.7/aclocal.m4:5226:	  _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\"\"; do test  -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive'
bindfs-1.14.7/aclocal.m4-5227-	  tmp_addflag=' $pic_flag -Mnomain' ;;
##############################################
bindfs-1.14.7/aclocal.m4-5242-	nvcc*)	# Cuda Compiler Driver 2.2
bindfs-1.14.7/aclocal.m4:5243:	  _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\"\"; do test  -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive'
bindfs-1.14.7/aclocal.m4-5244-	  _LT_TAGVAR(compiler_needs_object, $1)=yes
##############################################
bindfs-1.14.7/aclocal.m4-5246-	esac
bindfs-1.14.7/aclocal.m4:5247:	case `$CC -V 2>&1 | sed 5q` in
bindfs-1.14.7/aclocal.m4-5248-	*Sun\ C*)			# Sun C 5.9
bindfs-1.14.7/aclocal.m4:5249:	  _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive'
bindfs-1.14.7/aclocal.m4-5250-	  _LT_TAGVAR(compiler_needs_object, $1)=yes
##############################################
bindfs-1.14.7/aclocal.m4-5317-    sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*)
bindfs-1.14.7/aclocal.m4:5318:      case `$LD -v 2>&1` in
bindfs-1.14.7/aclocal.m4-5319-        *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.1[[0-5]].*)
##############################################
bindfs-1.14.7/aclocal.m4-5406-	else
bindfs-1.14.7/aclocal.m4:5407:	  _LT_TAGVAR(export_symbols_cmds, $1)='`func_echo_all $NM | $SED -e '\''s/B\([[^B]]*\)$/P\1/'\''` -PCpgl $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) && ([substr](\$ 1,1,1) != ".")) { if ((\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) { print \$ 1 " weak" } else { print \$ 1 } } }'\'' | sort -u > $export_symbols'
bindfs-1.14.7/aclocal.m4-5408-	fi
##############################################
bindfs-1.14.7/aclocal.m4-5471-	# below for broken collect2 doesn't work under 4.3+
bindfs-1.14.7/aclocal.m4:5472:	  collect2name=`$CC -print-prog-name=collect2`
bindfs-1.14.7/aclocal.m4-5473-	  if test -f "$collect2name" &&
##############################################
bindfs-1.14.7/aclocal.m4-5527-        _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-blibpath:$libdir:'"$aix_libpath"
bindfs-1.14.7/aclocal.m4:5528:        _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs $wl'$no_entry_flag' $compiler_flags `if test -n "$allow_undefined_flag"; then func_echo_all "$wl$allow_undefined_flag"; else :; fi` $wl'$exp_sym_flag:\$export_symbols' '$shared_flag
bindfs-1.14.7/aclocal.m4-5529-      else
##############################################
bindfs-1.14.7/aclocal.m4-5552-	  # -brtl affects multiple linker settings, -berok does not and is overridden later
bindfs-1.14.7/aclocal.m4:5553:	  compiler_flags_filtered='`func_echo_all "$compiler_flags " | $SED -e "s%-brtl\\([[, ]]\\)%-berok\\1%g"`'
bindfs-1.14.7/aclocal.m4-5554-	  if test svr4 != "$with_aix_soname"; then
##############################################
bindfs-1.14.7/aclocal.m4-5643-	# FIXME: Setting linknames here is a bad hack.
bindfs-1.14.7/aclocal.m4:5644:	_LT_TAGVAR(archive_cmds, $1)='$CC -o $lib $libobjs $compiler_flags `func_echo_all "$deplibs" | $SED '\''s/ -lc$//'\''` -link -dll~linknames='
bindfs-1.14.7/aclocal.m4-5645-	# The linker will automatically build a .lib file if we build a DLL.
##############################################
bindfs-1.14.7/aclocal.m4-5781-      if test yes = "$GCC"; then
bindfs-1.14.7/aclocal.m4:5782:	_LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib'
bindfs-1.14.7/aclocal.m4-5783-	# Try to use the -exported_symbol ld option, if it does not
##############################################
bindfs-1.14.7/aclocal.m4-5804-	if test yes = "$lt_cv_irix_exported_symbol"; then
bindfs-1.14.7/aclocal.m4:5805:          _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations $wl-exports_file $wl$export_symbols -o $lib'
bindfs-1.14.7/aclocal.m4-5806-	fi
##############################################
bindfs-1.14.7/aclocal.m4-5808-      else
bindfs-1.14.7/aclocal.m4:5809:	_LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib'
bindfs-1.14.7/aclocal.m4:5810:	_LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -exports_file $export_symbols -o $lib'
bindfs-1.14.7/aclocal.m4-5811-      fi
##############################################
bindfs-1.14.7/aclocal.m4-5855-	_LT_TAGVAR(hardcode_direct_absolute, $1)=yes
bindfs-1.14.7/aclocal.m4:5856:	if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then
bindfs-1.14.7/aclocal.m4-5857-	  _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'
##############################################
bindfs-1.14.7/aclocal.m4-5886-	prefix_cmds="$SED"~
bindfs-1.14.7/aclocal.m4:5887:	if test EXPORTS = "`$SED 1q $export_symbols`"; then
bindfs-1.14.7/aclocal.m4-5888-	  prefix_cmds="$prefix_cmds -e 1d";
##############################################
bindfs-1.14.7/aclocal.m4-5900-	_LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\*'
bindfs-1.14.7/aclocal.m4:5901:	_LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib'
bindfs-1.14.7/aclocal.m4-5902-      else
bindfs-1.14.7/aclocal.m4-5903-	_LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*'
bindfs-1.14.7/aclocal.m4:5904:	_LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib'
bindfs-1.14.7/aclocal.m4-5905-      fi
##############################################
bindfs-1.14.7/aclocal.m4-5913-	_LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\*'
bindfs-1.14.7/aclocal.m4:5914:	_LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $pic_flag $libobjs $deplibs $compiler_flags $wl-msym $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib'
bindfs-1.14.7/aclocal.m4-5915-	_LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir'
##############################################
bindfs-1.14.7/aclocal.m4-5917-	_LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*'
bindfs-1.14.7/aclocal.m4:5918:	_LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib'
bindfs-1.14.7/aclocal.m4:5919:	_LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~
bindfs-1.14.7/aclocal.m4:5920:          $CC -shared$allow_undefined_flag $wl-input $wl$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib~$RM $lib.exp'
bindfs-1.14.7/aclocal.m4-5921-
##############################################
bindfs-1.14.7/aclocal.m4-5936-      else
bindfs-1.14.7/aclocal.m4:5937:	case `$CC -V 2>&1` in
bindfs-1.14.7/aclocal.m4-5938-	*"Compilers 5.0"*)
##############################################
bindfs-1.14.7/aclocal.m4-6129-	  _LT_TAGVAR(allow_undefined_flag, $1)=
bindfs-1.14.7/aclocal.m4:6130:	  if AC_TRY_EVAL(_LT_TAGVAR(archive_cmds, $1) 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1)
bindfs-1.14.7/aclocal.m4-6131-	  then
##############################################
bindfs-1.14.7/aclocal.m4-6429-        # ancient GNU ld didn't support --whole-archive et. al.
bindfs-1.14.7/aclocal.m4:6430:        if eval "`$CC -print-prog-name=ld` --help 2>&1" |
bindfs-1.14.7/aclocal.m4-6431-	  $GREP 'no-whole-archive' > /dev/null; then
##############################################
bindfs-1.14.7/aclocal.m4-6539-          # below for broken collect2 doesn't work under 4.3+
bindfs-1.14.7/aclocal.m4:6540:	  collect2name=`$CC -print-prog-name=collect2`
bindfs-1.14.7/aclocal.m4-6541-	  if test -f "$collect2name" &&
##############################################
bindfs-1.14.7/aclocal.m4-6597-
bindfs-1.14.7/aclocal.m4:6598:          _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs $wl'$no_entry_flag' $compiler_flags `if test -n "$allow_undefined_flag"; then func_echo_all "$wl$allow_undefined_flag"; else :; fi` $wl'$exp_sym_flag:\$export_symbols' '$shared_flag
bindfs-1.14.7/aclocal.m4-6599-        else
##############################################
bindfs-1.14.7/aclocal.m4-6622-	    # -brtl affects multiple linker settings, -berok does not and is overridden later
bindfs-1.14.7/aclocal.m4:6623:	    compiler_flags_filtered='`func_echo_all "$compiler_flags " | $SED -e "s%-brtl\\([[, ]]\\)%-berok\\1%g"`'
bindfs-1.14.7/aclocal.m4-6624-	    if test svr4 != "$with_aix_soname"; then
##############################################
bindfs-1.14.7/aclocal.m4-6751-	  prefix_cmds="$SED"~
bindfs-1.14.7/aclocal.m4:6752:	  if test EXPORTS = "`$SED 1q $export_symbols`"; then
bindfs-1.14.7/aclocal.m4-6753-	    prefix_cmds="$prefix_cmds -e 1d";
##############################################
bindfs-1.14.7/aclocal.m4-6825-            # dependencies.
bindfs-1.14.7/aclocal.m4:6826:            output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP "\-L"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"'
bindfs-1.14.7/aclocal.m4-6827-            ;;
##############################################
bindfs-1.14.7/aclocal.m4-6890-	    # dependencies.
bindfs-1.14.7/aclocal.m4:6891:	    output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP "\-L"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"'
bindfs-1.14.7/aclocal.m4-6892-	    ;;
##############################################
bindfs-1.14.7/aclocal.m4-6926-	# time.  Moving up from 0x10000000 also allows more sbrk(2) space.
bindfs-1.14.7/aclocal.m4:6927:	_LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
bindfs-1.14.7/aclocal.m4:6928:	_LT_TAGVAR(archive_expsym_cmds, $1)='sed "s|^|_|" $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--retain-symbols-file,$output_objdir/$soname.expsym $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
bindfs-1.14.7/aclocal.m4-6929-	;;
##############################################
bindfs-1.14.7/aclocal.m4-6933-	    # SGI C++
bindfs-1.14.7/aclocal.m4:6934:	    _LT_TAGVAR(archive_cmds, $1)='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib'
bindfs-1.14.7/aclocal.m4-6935-
##############################################
bindfs-1.14.7/aclocal.m4-6944-	      if test no = "$with_gnu_ld"; then
bindfs-1.14.7/aclocal.m4:6945:	        _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib'
bindfs-1.14.7/aclocal.m4-6946-	      else
bindfs-1.14.7/aclocal.m4:6947:	        _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` -o $lib'
bindfs-1.14.7/aclocal.m4-6948-	      fi
##############################################
bindfs-1.14.7/aclocal.m4-6965-	    # to its proper name (with version) after linking.
bindfs-1.14.7/aclocal.m4:6966:	    _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\$tempext\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib'
bindfs-1.14.7/aclocal.m4:6967:	    _LT_TAGVAR(archive_expsym_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\$tempext\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib $wl-retain-symbols-file,$export_symbols; mv \$templib $lib'
bindfs-1.14.7/aclocal.m4-6968-	    # Commands to make compiler produce verbose output that lists
##############################################
bindfs-1.14.7/aclocal.m4-6975-	    # dependencies.
bindfs-1.14.7/aclocal.m4:6976:	    output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | $GREP "ld"`; rm -f libconftest$shared_ext; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"'
bindfs-1.14.7/aclocal.m4-6977-
##############################################
bindfs-1.14.7/aclocal.m4-6990-	    # earlier do not add the objects themselves.
bindfs-1.14.7/aclocal.m4:6991:	    case `$CC -V 2>&1` in
bindfs-1.14.7/aclocal.m4-6992-	      *"Version 7."*)
##############################################
bindfs-1.14.7/aclocal.m4-7011-            # Portland Group C++ compiler
bindfs-1.14.7/aclocal.m4:7012:	    case `$CC -V` in
bindfs-1.14.7/aclocal.m4-7013-	    *pgCC\ [[1-5]].* | *pgcpp\ [[1-5]].*)
##############################################
bindfs-1.14.7/aclocal.m4-7016-               $CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~
bindfs-1.14.7/aclocal.m4:7017:               compile_command="$compile_command `find $tpldir -name \*.o | sort | $NL2SP`"'
bindfs-1.14.7/aclocal.m4-7018-	      _LT_TAGVAR(old_archive_cmds, $1)='tpldir=Template.dir~
##############################################
bindfs-1.14.7/aclocal.m4-7020-                $CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~
bindfs-1.14.7/aclocal.m4:7021:                $AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \*.o | sort | $NL2SP`~
bindfs-1.14.7/aclocal.m4-7022-                $RANLIB $oldlib'
##############################################
bindfs-1.14.7/aclocal.m4-7025-                $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~
bindfs-1.14.7/aclocal.m4:7026:                $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib'
bindfs-1.14.7/aclocal.m4-7027-	      _LT_TAGVAR(archive_expsym_cmds, $1)='tpldir=Template.dir~
##############################################
bindfs-1.14.7/aclocal.m4-7029-                $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~
bindfs-1.14.7/aclocal.m4:7030:                $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib'
bindfs-1.14.7/aclocal.m4-7031-	      ;;
##############################################
bindfs-1.14.7/aclocal.m4-7039-	    _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic'
bindfs-1.14.7/aclocal.m4:7040:	    _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\"\"; do test  -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive'
bindfs-1.14.7/aclocal.m4-7041-            ;;
##############################################
bindfs-1.14.7/aclocal.m4-7058-	    # dependencies.
bindfs-1.14.7/aclocal.m4:7059:	    output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "X$list" | $Xsed'
bindfs-1.14.7/aclocal.m4-7060-	    ;;
##############################################
bindfs-1.14.7/aclocal.m4-7073-	  *)
bindfs-1.14.7/aclocal.m4:7074:	    case `$CC -V 2>&1 | sed 5q` in
bindfs-1.14.7/aclocal.m4-7075-	    *Sun\ C*)
##############################################
bindfs-1.14.7/aclocal.m4-7080-	      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
bindfs-1.14.7/aclocal.m4:7081:	      _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive'
bindfs-1.14.7/aclocal.m4-7082-	      _LT_TAGVAR(compiler_needs_object, $1)=yes
##############################################
bindfs-1.14.7/aclocal.m4-7145-	  _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir'
bindfs-1.14.7/aclocal.m4:7146:	  if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`"; then
bindfs-1.14.7/aclocal.m4-7147-	    _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-retain-symbols-file,$export_symbols -o $lib'
##############################################
bindfs-1.14.7/aclocal.m4-7164-	    # to its proper name (with version) after linking.
bindfs-1.14.7/aclocal.m4:7165:	    _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo "$lib" | $SED -e "s/\$tempext\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib'
bindfs-1.14.7/aclocal.m4-7166-
##############################################
bindfs-1.14.7/aclocal.m4-7185-	        _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\*'
bindfs-1.14.7/aclocal.m4:7186:	        _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $soname `test -n "$verstring" && func_echo_all "$wl-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib'
bindfs-1.14.7/aclocal.m4-7187-	        _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir'
##############################################
bindfs-1.14.7/aclocal.m4-7190-	        _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*'
bindfs-1.14.7/aclocal.m4:7191:	        _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib'
bindfs-1.14.7/aclocal.m4:7192:	        _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~
bindfs-1.14.7/aclocal.m4-7193-                  echo "-hidden">> $lib.exp~
bindfs-1.14.7/aclocal.m4:7194:                  $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname $wl-input $wl$lib.exp  `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib~
bindfs-1.14.7/aclocal.m4-7195-                  $RM $lib.exp'
##############################################
bindfs-1.14.7/aclocal.m4-7209-	    # dependencies.
bindfs-1.14.7/aclocal.m4:7210:	    output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld" | $GREP -v "ld:"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"'
bindfs-1.14.7/aclocal.m4-7211-	    ;;
##############################################
bindfs-1.14.7/aclocal.m4-7216-	        osf3*)
bindfs-1.14.7/aclocal.m4:7217:	          _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib'
bindfs-1.14.7/aclocal.m4-7218-		  ;;
bindfs-1.14.7/aclocal.m4-7219-	        *)
bindfs-1.14.7/aclocal.m4:7220:	          _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-msym $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib'
bindfs-1.14.7/aclocal.m4-7221-		  ;;
##############################################
bindfs-1.14.7/aclocal.m4-7469-  case @S|@2 in
bindfs-1.14.7/aclocal.m4:7470:  .*) func_stripname_result=`$ECHO "@S|@3" | $SED "s%^@S|@1%%; s%\\\\@S|@2\$%%"`;;
bindfs-1.14.7/aclocal.m4:7471:  *)  func_stripname_result=`$ECHO "@S|@3" | $SED "s%^@S|@1%%; s%@S|@2\$%%"`;;
bindfs-1.14.7/aclocal.m4-7472-  esac
##############################################
bindfs-1.14.7/aclocal.m4-7558-
bindfs-1.14.7/aclocal.m4:7559:  for p in `eval "$output_verbose_link_cmd"`; do
bindfs-1.14.7/aclocal.m4-7560-    case $prev$p in
##############################################
bindfs-1.14.7/aclocal.m4-7662-if test -n "${_LT_TAGVAR(compiler_lib_search_path, $1)}"; then
bindfs-1.14.7/aclocal.m4:7663: _LT_TAGVAR(compiler_lib_search_dirs, $1)=`echo " ${_LT_TAGVAR(compiler_lib_search_path, $1)}" | $SED -e 's! -L! !g' -e 's!^ !!'`
bindfs-1.14.7/aclocal.m4-7664-fi
##############################################
bindfs-1.14.7/aclocal.m4-8272-    test 10 -lt "$lt_ac_count" && break
bindfs-1.14.7/aclocal.m4:8273:    lt_ac_count=`expr $lt_ac_count + 1`
bindfs-1.14.7/aclocal.m4-8274-    if test "$lt_ac_count" -gt "$lt_ac_max"; then
##############################################
bindfs-1.14.7/aclocal.m4-8888-m4_define([lt_combine],
bindfs-1.14.7/aclocal.m4:8889:[m4_if(m4_eval([$# > 3]), [1],
bindfs-1.14.7/aclocal.m4-8890-       [m4_pushdef([_Lt_sep], [m4_define([_Lt_sep], m4_defn([lt_car]))])]]dnl
##############################################
bindfs-1.14.7/aclocal.m4-9178-    PKG_CHECK_EXISTS([$3],
bindfs-1.14.7/aclocal.m4:9179:                     [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`
bindfs-1.14.7/aclocal.m4-9180-		      test "x$?" != "x0" && pkg_failed=yes ],
##############################################
bindfs-1.14.7/aclocal.m4-9226-        if test $_pkg_short_errors_supported = yes; then
bindfs-1.14.7/aclocal.m4:9227:	        $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$2" 2>&1`
bindfs-1.14.7/aclocal.m4-9228-        else 
bindfs-1.14.7/aclocal.m4:9229:	        $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$2" 2>&1`
bindfs-1.14.7/aclocal.m4-9230-        fi
##############################################
bindfs-1.14.7/aclocal.m4-9415-# iff we strip the leading $srcdir from $ac_aux_dir.  That would be:
bindfs-1.14.7/aclocal.m4:9416:#   am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"`
bindfs-1.14.7/aclocal.m4-9417-# and then we would define $MISSING as
##############################################
bindfs-1.14.7/aclocal.m4-9430-# Expand $ac_aux_dir to an absolute path.
bindfs-1.14.7/aclocal.m4:9431:am_aux_dir=`cd "$ac_aux_dir" && pwd`
bindfs-1.14.7/aclocal.m4-9432-])
##############################################
bindfs-1.14.7/aclocal.m4-9528-  if test "$am_compiler_list" = ""; then
bindfs-1.14.7/aclocal.m4:9529:     am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp`
bindfs-1.14.7/aclocal.m4-9530-  fi
##############################################
bindfs-1.14.7/aclocal.m4-9679-    # Strip MF so we end up with the name of the file.
bindfs-1.14.7/aclocal.m4:9680:    mf=`echo "$mf" | sed -e 's/:.*$//'`
bindfs-1.14.7/aclocal.m4-9681-    # Check whether this is an Automake generated Makefile or not.
##############################################
bindfs-1.14.7/aclocal.m4-9688-    if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
bindfs-1.14.7/aclocal.m4:9689:      dirpart=`AS_DIRNAME("$mf")`
bindfs-1.14.7/aclocal.m4-9690-    else
##############################################
bindfs-1.14.7/aclocal.m4-9694-    # from the Makefile without running 'make'.
bindfs-1.14.7/aclocal.m4:9695:    DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
bindfs-1.14.7/aclocal.m4-9696-    test -z "$DEPDIR" && continue
bindfs-1.14.7/aclocal.m4:9697:    am__include=`sed -n 's/^am__include = //p' < "$mf"`
bindfs-1.14.7/aclocal.m4-9698-    test -z "$am__include" && continue
bindfs-1.14.7/aclocal.m4:9699:    am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
bindfs-1.14.7/aclocal.m4-9700-    # Find all dependency output files, they are included files with
##############################################
bindfs-1.14.7/aclocal.m4-9708-      test -f "$dirpart/$file" && continue
bindfs-1.14.7/aclocal.m4:9709:      fdir=`AS_DIRNAME(["$file"])`
bindfs-1.14.7/aclocal.m4-9710-      AS_MKDIR_P([$dirpart/$fdir])
##############################################
bindfs-1.14.7/aclocal.m4-9766-AC_REQUIRE([AC_PROG_INSTALL])dnl
bindfs-1.14.7/aclocal.m4:9767:if test "`cd $srcdir && pwd`" != "`pwd`"; then
bindfs-1.14.7/aclocal.m4-9768-  # Use -I$(srcdir) only when $(srcdir) != ., so that make's output
##############################################
bindfs-1.14.7/aclocal.m4-9925-    * )
bindfs-1.14.7/aclocal.m4:9926:      _am_stamp_count=`expr $_am_stamp_count + 1` ;;
bindfs-1.14.7/aclocal.m4-9927-  esac
bindfs-1.14.7/aclocal.m4-9928-done
bindfs-1.14.7/aclocal.m4:9929:echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
bindfs-1.14.7/aclocal.m4-9930-
##############################################
bindfs-1.14.7/aclocal.m4-9996-# Ignore all kinds of additional output from 'make'.
bindfs-1.14.7/aclocal.m4:9997:case `$am_make -s -f confmf 2> /dev/null` in #(
bindfs-1.14.7/aclocal.m4-9998-*the\ am__doit\ target*)
##############################################
bindfs-1.14.7/aclocal.m4-10006-   echo '.include "confinc"' > confmf
bindfs-1.14.7/aclocal.m4:10007:   case `$am_make -s -f confmf 2> /dev/null` in #(
bindfs-1.14.7/aclocal.m4-10008-   *the\ am__doit\ target*)
##############################################
bindfs-1.14.7/aclocal.m4-10188-     echo "timestamp, slept: $am_has_slept" > conftest.file
bindfs-1.14.7/aclocal.m4:10189:     set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null`
bindfs-1.14.7/aclocal.m4-10190-     if test "$[*]" = "X"; then
bindfs-1.14.7/aclocal.m4-10191-	# -L didn't work.
bindfs-1.14.7/aclocal.m4:10192:	set X `ls -t "$srcdir/configure" conftest.file`
bindfs-1.14.7/aclocal.m4-10193-     fi
##############################################
bindfs-1.14.7/compile-67-	mingw/*)
bindfs-1.14.7/compile:68:	  file=`cmd //C echo "$file " | sed -e 's/"\(.*\) " *$/\1/'`
bindfs-1.14.7/compile-69-	  ;;
bindfs-1.14.7/compile-70-	cygwin/*)
bindfs-1.14.7/compile:71:	  file=`cygpath -m "$file" || echo "$file"`
bindfs-1.14.7/compile-72-	  ;;
bindfs-1.14.7/compile-73-	wine/*)
bindfs-1.14.7/compile:74:	  file=`winepath -w "$file" || echo "$file"`
bindfs-1.14.7/compile-75-	  ;;
##############################################
bindfs-1.14.7/compile-309-# Name of file we expect compiler to create.
bindfs-1.14.7/compile:310:cofile=`echo "$cfile" | sed 's|^.*[\\/]||; s|^[a-zA-Z]:||; s/\.c$/.o/'`
bindfs-1.14.7/compile-311-
##############################################
bindfs-1.14.7/compile-315-# object file name, since that is what matters with a parallel build.
bindfs-1.14.7/compile:316:lockdir=`echo "$cofile" | sed -e 's|[/\\:.-]|_|g'`.d
bindfs-1.14.7/compile-317-while true; do
##############################################
bindfs-1.14.7/Makefile.in-49-  { \
bindfs-1.14.7/Makefile.in:50:    flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
bindfs-1.14.7/Makefile.in-51-  }; \
##############################################
bindfs-1.14.7/Makefile.in-179-  while test -n "$$dir1"; do \
bindfs-1.14.7/Makefile.in:180:    first=`echo "$$dir1" | sed -e "$$sed_first"`; \
bindfs-1.14.7/Makefile.in-181-    if test "$$first" != "."; then \
bindfs-1.14.7/Makefile.in-182-      if test "$$first" = ".."; then \
bindfs-1.14.7/Makefile.in:183:        dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
bindfs-1.14.7/Makefile.in:184:        dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
bindfs-1.14.7/Makefile.in-185-      else \
bindfs-1.14.7/Makefile.in:186:        first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
bindfs-1.14.7/Makefile.in-187-        if test "$$first2" = "$$first"; then \
bindfs-1.14.7/Makefile.in:188:          dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
bindfs-1.14.7/Makefile.in-189-        else \
##############################################
bindfs-1.14.7/Makefile.in-194-    fi; \
bindfs-1.14.7/Makefile.in:195:    dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
bindfs-1.14.7/Makefile.in-196-  done; \
##############################################
bindfs-1.14.7/Makefile.in-405-	dot_seen=no; \
bindfs-1.14.7/Makefile.in:406:	target=`echo $@ | sed s/-recursive//`; \
bindfs-1.14.7/Makefile.in-407-	case "$@" in \
##############################################
bindfs-1.14.7/Makefile.in-468-GTAGS:
bindfs-1.14.7/Makefile.in:469:	here=`$(am__cd) $(top_builddir) && pwd` \
bindfs-1.14.7/Makefile.in-470-	  && $(am__cd) $(top_srcdir) \
##############################################
bindfs-1.14.7/Makefile.in-500-	test -d "$(distdir)" || mkdir "$(distdir)"
bindfs-1.14.7/Makefile.in:501:	@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
bindfs-1.14.7/Makefile.in:502:	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
bindfs-1.14.7/Makefile.in-503-	list='$(DISTFILES)'; \
##############################################
bindfs-1.14.7/Makefile.in-514-	  if test -d $$d/$$file; then \
bindfs-1.14.7/Makefile.in:515:	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
bindfs-1.14.7/Makefile.in-516-	    if test -d "$(distdir)/$$file"; then \
##############################################
bindfs-1.14.7/Makefile.in-625-	test -d $(distdir)/_build || exit 0; \
bindfs-1.14.7/Makefile.in:626:	dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
bindfs-1.14.7/Makefile.in-627-	  && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
##############################################
bindfs-1.14.7/Makefile.in-669-	}; \
bindfs-1.14.7/Makefile.in:670:	test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \
bindfs-1.14.7/Makefile.in-671-	   || { echo "ERROR: files left after uninstall:" ; \
##############################################
bindfs-1.14.7/Makefile.in-681-	fi
bindfs-1.14.7/Makefile.in:682:	@test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
bindfs-1.14.7/Makefile.in-683-	  || { echo "ERROR: files left in build directory after distclean:" ; \
##############################################
bindfs-1.14.7/Makefile.in-813-vagrant-clean:
bindfs-1.14.7/Makefile.in:814:	-for i in vagrant/*/Vagrantfile; do cd `dirname $$i` && (vagrant destroy -f || true) ; cd $$OLDPWD; done
bindfs-1.14.7/Makefile.in-815-	-rm -Rf vagrant/*/.vagrant vagrant/*/*.log
##############################################
bindfs-1.14.7/ltmain.sh-103-#
bindfs-1.14.7/ltmain.sh:104:#   . `echo "$0" | ${SED-sed} 's|[^/]*$||'`/build-aux/funclib.sh
bindfs-1.14.7/ltmain.sh-105-#
##############################################
bindfs-1.14.7/ltmain.sh-202-          func_executable_p "$_G_path_prog" || continue
bindfs-1.14.7/ltmain.sh:203:          case `"$_G_path_prog" --version 2>&1` in
bindfs-1.14.7/ltmain.sh-204-            *GNU*) func_path_progs_result=$_G_path_prog _G_path_prog_found=: ;;
##############################################
bindfs-1.14.7/ltmain.sh-249-      diff conftest.out conftest.nl >/dev/null 2>&1 || break
bindfs-1.14.7/ltmain.sh:250:      _G_count=`expr $_G_count + 1`
bindfs-1.14.7/ltmain.sh-251-      if test "$_G_count" -gt "$_G_path_prog_max"; then
##############################################
bindfs-1.14.7/ltmain.sh-285-      diff conftest.out conftest.nl >/dev/null 2>&1 || break
bindfs-1.14.7/ltmain.sh:286:      _G_count=`expr $_G_count + 1`
bindfs-1.14.7/ltmain.sh-287-      if test "$_G_count" -gt "$_G_path_prog_max"; then
##############################################
bindfs-1.14.7/ltmain.sh-410-# The name of this program.
bindfs-1.14.7/ltmain.sh:411:progname=`$ECHO "$progpath" |$SED "$sed_basename"`
bindfs-1.14.7/ltmain.sh-412-
##############################################
bindfs-1.14.7/ltmain.sh-416-  *[\\/]*)
bindfs-1.14.7/ltmain.sh:417:     progdir=`$ECHO "$progpath" |$SED "$sed_dirname"`
bindfs-1.14.7/ltmain.sh:418:     progdir=`cd "$progdir" && pwd`
bindfs-1.14.7/ltmain.sh-419-     progpath=$progdir/$progname
##############################################
bindfs-1.14.7/ltmain.sh-610-
bindfs-1.14.7/ltmain.sh:611:    eval _G_current_value='`$ECHO $'$1'`'
bindfs-1.14.7/ltmain.sh:612:    _G_delim=`expr "$2" : '\(.\)'`
bindfs-1.14.7/ltmain.sh-613-
##############################################
bindfs-1.14.7/ltmain.sh-639-
bindfs-1.14.7/ltmain.sh:640:    func_arith_result=`expr "$@"`
bindfs-1.14.7/ltmain.sh-641-  }
##############################################
bindfs-1.14.7/ltmain.sh-660-  # ...otherwise fall back to using sed.
bindfs-1.14.7/ltmain.sh:661:  _b='func_basename_result=`$ECHO "$1" |$SED "$sed_basename"`'
bindfs-1.14.7/ltmain.sh:662:  _d='func_dirname_result=`$ECHO "$1"  |$SED "$sed_dirname"`
bindfs-1.14.7/ltmain.sh-663-      if test "X$func_dirname_result" = "X$1"; then
##############################################
bindfs-1.14.7/ltmain.sh-757-      test -n "$_G_tc" && {
bindfs-1.14.7/ltmain.sh:758:        _G_esc_tc=`$ECHO "$_G_tc" | $SED "$sed_make_literal_regex"`
bindfs-1.14.7/ltmain.sh:759:        _G_indent=`$ECHO "$_G_indent" | $SED "s|$_G_esc_tc||g"`
bindfs-1.14.7/ltmain.sh-760-      }
bindfs-1.14.7/ltmain.sh-761-    done
bindfs-1.14.7/ltmain.sh:762:    _G_indent="$progname: "`echo "$_G_indent" | $SED 's|.| |g'`"  " ## exclude from sc_prohibit_nested_quotes
bindfs-1.14.7/ltmain.sh-763-
##############################################
bindfs-1.14.7/ltmain.sh-831-
bindfs-1.14.7/ltmain.sh:832:    func_len_result=`expr "$1" : ".*" 2>/dev/null || echo $max_cmd_len`
bindfs-1.14.7/ltmain.sh-833-  }
##############################################
bindfs-1.14.7/ltmain.sh-863-        # ...otherwise throw away the child directory and loop
bindfs-1.14.7/ltmain.sh:864:        _G_directory_path=`$ECHO "$_G_directory_path" | $SED -e "$sed_dirname"`
bindfs-1.14.7/ltmain.sh-865-      done
bindfs-1.14.7/ltmain.sh:866:      _G_dir_list=`$ECHO "$_G_dir_list" | $SED 's|:*$||'`
bindfs-1.14.7/ltmain.sh-867-
##############################################
bindfs-1.14.7/ltmain.sh-901-      # If mktemp works, use that first and foremost
bindfs-1.14.7/ltmain.sh:902:      _G_tmpdir=`mktemp -d "$_G_template-XXXXXXXX" 2>/dev/null`
bindfs-1.14.7/ltmain.sh-903-
##############################################
bindfs-1.14.7/ltmain.sh-1111-        *[\\\`\"\$]*)
bindfs-1.14.7/ltmain.sh:1112:	  _G_unquoted_arg=`printf '%s\n' "$1" |$SED "$sed_quote_subst"` ;;
bindfs-1.14.7/ltmain.sh-1113-        *)
##############################################
bindfs-1.14.7/ltmain.sh-1198-    case $2 in
bindfs-1.14.7/ltmain.sh:1199:      .*) func_stripname_result=`$ECHO "$3" | $SED -e "s%^$1%%" -e "s%\\\\$2\$%%"`;;
bindfs-1.14.7/ltmain.sh:1200:      *)  func_stripname_result=`$ECHO "$3" | $SED -e "s%^$1%%" -e "s%$2\$%%"`;;
bindfs-1.14.7/ltmain.sh-1201-    esac
##############################################
bindfs-1.14.7/ltmain.sh-1271-    [0-9]* | *[!a-zA-Z0-9_]*)
bindfs-1.14.7/ltmain.sh:1272:      func_tr_sh_result=`$ECHO "$1" | $SED -e 's/^\([0-9]\)/_\1/' -e 's/[^a-zA-Z0-9_]/_/g'`
bindfs-1.14.7/ltmain.sh-1273-      ;;
##############################################
bindfs-1.14.7/ltmain.sh-1358-
bindfs-1.14.7/ltmain.sh:1359:    test "x$1" = x`func_sort_ver "$1" "$2" | $SED 1q`
bindfs-1.14.7/ltmain.sh-1360-}
##############################################
bindfs-1.14.7/ltmain.sh-1424-# The default options also support '--debug', which will turn on shell
bindfs-1.14.7/ltmain.sh:1425:# execution tracing (see the comment above debug_cmd below for another
bindfs-1.14.7/ltmain.sh-1426-# use), and '--verbose' and the func_verbose function to allow your script
##############################################
bindfs-1.14.7/ltmain.sh-1517-
bindfs-1.14.7/ltmain.sh:1518:    eval ${1}_hooks='`$ECHO "\$'$1'_hooks" |$SED "s| '$2'||"`'
bindfs-1.14.7/ltmain.sh-1519-}
##############################################
bindfs-1.14.7/ltmain.sh-1870-
bindfs-1.14.7/ltmain.sh:1871:      func_split_equals_lhs=`expr "x$1" : 'x\([^=]*\)'`
bindfs-1.14.7/ltmain.sh-1872-      func_split_equals_rhs=
bindfs-1.14.7/ltmain.sh-1873-      test "x$func_split_equals_lhs" = "x$1" \
bindfs-1.14.7/ltmain.sh:1874:        || func_split_equals_rhs=`expr "x$1" : 'x[^=]*=\(.*\)$'`
bindfs-1.14.7/ltmain.sh-1875-  }
##############################################
bindfs-1.14.7/ltmain.sh-1898-
bindfs-1.14.7/ltmain.sh:1899:      func_split_short_opt_name=`expr "x$1" : 'x-\(.\)'`
bindfs-1.14.7/ltmain.sh:1900:      func_split_short_opt_arg=`expr "x$1" : 'x-.\(.*\)$'`
bindfs-1.14.7/ltmain.sh-1901-  }
##############################################
bindfs-1.14.7/ltmain.sh-2071-       version:        $progname $scriptversion Debian-2.4.6-2
bindfs-1.14.7/ltmain.sh:2072:       automake:       `($AUTOMAKE --version) 2>/dev/null |$SED 1q`
bindfs-1.14.7/ltmain.sh:2073:       autoconf:       `($AUTOCONF --version) 2>/dev/null |$SED 1q`
bindfs-1.14.7/ltmain.sh-2074-
##############################################
bindfs-1.14.7/ltmain.sh-2110-  {
bindfs-1.14.7/ltmain.sh:2111:    func_lo2o_result=`$ECHO "$1" | $SED "$lo2o"`
bindfs-1.14.7/ltmain.sh-2112-  }
##############################################
bindfs-1.14.7/ltmain.sh-2115-  {
bindfs-1.14.7/ltmain.sh:2116:    func_xform_result=`$ECHO "$1" | $SED 's|\.[^.]*$|.lo|'`
bindfs-1.14.7/ltmain.sh-2117-  }
##############################################
bindfs-1.14.7/ltmain.sh-2206-	  # quotes we have to do it in 2 steps:
bindfs-1.14.7/ltmain.sh:2207:	  extractedcf=`$SED -n -e "$sed_extractcf" < "$progpath"`
bindfs-1.14.7/ltmain.sh-2208-	  eval "$extractedcf"
##############################################
bindfs-1.14.7/ltmain.sh-2659-      done
bindfs-1.14.7/ltmain.sh:2660:      CC_expanded=`func_echo_all $CC`
bindfs-1.14.7/ltmain.sh:2661:      CC_quoted_expanded=`func_echo_all $CC_quoted`
bindfs-1.14.7/ltmain.sh-2662-      case $@ in
##############################################
bindfs-1.14.7/ltmain.sh-2672-	    # Evaluate the configuration.
bindfs-1.14.7/ltmain.sh:2673:	    eval "`$SED -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $progpath`"
bindfs-1.14.7/ltmain.sh-2674-	    CC_quoted=
##############################################
bindfs-1.14.7/ltmain.sh-2678-	    done
bindfs-1.14.7/ltmain.sh:2679:	    CC_expanded=`func_echo_all $CC`
bindfs-1.14.7/ltmain.sh:2680:	    CC_quoted_expanded=`func_echo_all $CC_quoted`
bindfs-1.14.7/ltmain.sh-2681-	    case "$@ " in
##############################################
bindfs-1.14.7/ltmain.sh-2770-    # zero AND non-empty stdout, which explains the odd construction:
bindfs-1.14.7/ltmain.sh:2771:    func_convert_core_file_wine_to_w32_tmp=`winepath -w "$1" 2>/dev/null`
bindfs-1.14.7/ltmain.sh-2772-    if test "$?" -eq 0 && test -n "$func_convert_core_file_wine_to_w32_tmp"; then
##############################################
bindfs-1.14.7/ltmain.sh-2838-  if test -n "$LT_CYGPATH" && test -f "$LT_CYGPATH"; then
bindfs-1.14.7/ltmain.sh:2839:    func_cygpath_result=`$LT_CYGPATH "$@" 2>/dev/null`
bindfs-1.14.7/ltmain.sh-2840-    if test "$?" -ne 0; then
##############################################
bindfs-1.14.7/ltmain.sh-3009-    # LT_CYGPATH in this case.
bindfs-1.14.7/ltmain.sh:3010:    func_to_host_file_result=`cygpath -m "$1"`
bindfs-1.14.7/ltmain.sh-3011-  fi
##############################################
bindfs-1.14.7/ltmain.sh-3166-    func_to_host_path_tmp1=$func_stripname_result
bindfs-1.14.7/ltmain.sh:3167:    func_to_host_path_result=`cygpath -m -p "$func_to_host_path_tmp1"`
bindfs-1.14.7/ltmain.sh-3168-    func_convert_path_check : ";" \
##############################################
bindfs-1.14.7/ltmain.sh-3376-    *.[cCFSifmso] | \
bindfs-1.14.7/ltmain.sh:3377:    *.ada | *.adb | *.ads | *.asm | \
bindfs-1.14.7/ltmain.sh-3378-    *.c++ | *.cc | *.ii | *.class | *.cpp | *.cxx | \
##############################################
bindfs-1.14.7/ltmain.sh-3453-    if test no = "$compiler_c_o"; then
bindfs-1.14.7/ltmain.sh:3454:      output_obj=`$ECHO "$srcfile" | $SED 's%^.*/%%; s%\.[^.]*$%%'`.$objext
bindfs-1.14.7/ltmain.sh-3455-      lockfile=$output_obj.lock
##############################################
bindfs-1.14.7/ltmain.sh-3472-*** ERROR, $lockfile exists and contains:
bindfs-1.14.7/ltmain.sh:3473:`cat $lockfile 2>/dev/null`
bindfs-1.14.7/ltmain.sh-3474-
##############################################
bindfs-1.14.7/ltmain.sh-3520-      if test warn = "$need_locks" &&
bindfs-1.14.7/ltmain.sh:3521:	 test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then
bindfs-1.14.7/ltmain.sh-3522-	$ECHO "\
bindfs-1.14.7/ltmain.sh-3523-*** ERROR, $lockfile contains:
bindfs-1.14.7/ltmain.sh:3524:`cat $lockfile 2>/dev/null`
bindfs-1.14.7/ltmain.sh-3525-
##############################################
bindfs-1.14.7/ltmain.sh-3569-      if test warn = "$need_locks" &&
bindfs-1.14.7/ltmain.sh:3570:	 test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then
bindfs-1.14.7/ltmain.sh-3571-	$ECHO "\
bindfs-1.14.7/ltmain.sh-3572-*** ERROR, $lockfile contains:
bindfs-1.14.7/ltmain.sh:3573:`cat $lockfile 2>/dev/null`
bindfs-1.14.7/ltmain.sh-3574-
##############################################
bindfs-1.14.7/ltmain.sh-3895-      # Get the absolute pathname.
bindfs-1.14.7/ltmain.sh:3896:      absdir=`cd "$dir" && pwd`
bindfs-1.14.7/ltmain.sh-3897-      test -n "$absdir" && dir=$absdir
##############################################
bindfs-1.14.7/ltmain.sh-3994-      if test -n "$lt_sysroot"; then
bindfs-1.14.7/ltmain.sh:3995:        sysroot_regex=`$ECHO "$lt_sysroot" | $SED "$sed_make_literal_regex"`
bindfs-1.14.7/ltmain.sh-3996-        sysroot_cmd="s/\([ ']\)$sysroot_regex/\1/g;"
##############################################
bindfs-1.14.7/ltmain.sh-4278-	  # Determine the prefix the user has applied to our future dir.
bindfs-1.14.7/ltmain.sh:4279:	  inst_prefix_dir=`$ECHO "$destdir" | $SED -e "s%$libdir\$%%"`
bindfs-1.14.7/ltmain.sh-4280-
##############################################
bindfs-1.14.7/ltmain.sh-4291-	    # Stick the inst_prefix_dir data into the link command.
bindfs-1.14.7/ltmain.sh:4292:	    relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%-inst-prefix-dir $inst_prefix_dir%"`
bindfs-1.14.7/ltmain.sh-4293-	  else
bindfs-1.14.7/ltmain.sh:4294:	    relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%%"`
bindfs-1.14.7/ltmain.sh-4295-	  fi
##############################################
bindfs-1.14.7/ltmain.sh-4458-	    fi
bindfs-1.14.7/ltmain.sh:4459:	    libfile=$libdir/`$ECHO "$lib" | $SED 's%^.*/%%g'`
bindfs-1.14.7/ltmain.sh-4460-	    if test -n "$libdir" && test ! -f "$libfile"; then
##############################################
bindfs-1.14.7/ltmain.sh-4477-	        # Replace the output file specification.
bindfs-1.14.7/ltmain.sh:4478:	        relink_command=`$ECHO "$relink_command" | $SED 's%@OUTPUT@%'"$outputname"'%g'`
bindfs-1.14.7/ltmain.sh-4479-
##############################################
bindfs-1.14.7/ltmain.sh-4496-	    # Install the binary that we compiled earlier.
bindfs-1.14.7/ltmain.sh:4497:	    file=`$ECHO "$file$stripped_ext" | $SED "s%\([^/]*\)$%$objdir/\1%"`
bindfs-1.14.7/ltmain.sh-4498-	  fi
##############################################
bindfs-1.14.7/ltmain.sh-4570-    my_pic_p=${3-false}
bindfs-1.14.7/ltmain.sh:4571:    my_prefix=`$ECHO "$my_originator" | $SED 's%[^a-zA-Z0-9]%_%g'`
bindfs-1.14.7/ltmain.sh-4572-    my_dlsyms=
##############################################
bindfs-1.14.7/ltmain.sh-4628-	  # Add our own program objects to the symbol list.
bindfs-1.14.7/ltmain.sh:4629:	  progfiles=`$ECHO "$objs$old_deplibs" | $SP2NL | $SED "$lo2o" | $NL2SP`
bindfs-1.14.7/ltmain.sh-4630-	  for progfile in $progfiles; do
##############################################
bindfs-1.14.7/ltmain.sh-4690-	          # Use subshell, to avoid clobbering current variable values
bindfs-1.14.7/ltmain.sh:4691:	          dlprefile_dlname=`source "$curr_lafile" && echo "$dlname"`
bindfs-1.14.7/ltmain.sh-4692-	          if test -n "$dlprefile_dlname"; then
##############################################
bindfs-1.14.7/ltmain.sh-4859-	  if test -f "$output_objdir/$my_outputname.def"; then
bindfs-1.14.7/ltmain.sh:4860:	    compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"`
bindfs-1.14.7/ltmain.sh:4861:	    finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"`
bindfs-1.14.7/ltmain.sh-4862-	  else
bindfs-1.14.7/ltmain.sh:4863:	    compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"`
bindfs-1.14.7/ltmain.sh:4864:	    finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"`
bindfs-1.14.7/ltmain.sh-4865-	  fi
##############################################
bindfs-1.14.7/ltmain.sh-4867-	*)
bindfs-1.14.7/ltmain.sh:4868:	  compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"`
bindfs-1.14.7/ltmain.sh:4869:	  finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"`
bindfs-1.14.7/ltmain.sh-4870-	  ;;
##############################################
bindfs-1.14.7/ltmain.sh-4882-      # Nullify the symbol file.
bindfs-1.14.7/ltmain.sh:4883:      compile_command=`$ECHO "$compile_command" | $SED "s% @SYMFILE@%%"`
bindfs-1.14.7/ltmain.sh:4884:      finalize_command=`$ECHO "$finalize_command" | $SED "s% @SYMFILE@%%"`
bindfs-1.14.7/ltmain.sh-4885-    fi
##############################################
bindfs-1.14.7/ltmain.sh-4896-  func_to_tool_file "$1" func_convert_file_msys_to_w32
bindfs-1.14.7/ltmain.sh:4897:  func_cygming_gnu_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $EGREP ' (_head_[A-Za-z0-9_]+_[ad]l*|[A-Za-z0-9_]+_[ad]l*_iname)$'`
bindfs-1.14.7/ltmain.sh-4898-  test -n "$func_cygming_gnu_implib_tmp"
##############################################
bindfs-1.14.7/ltmain.sh-4909-  func_to_tool_file "$1" func_convert_file_msys_to_w32
bindfs-1.14.7/ltmain.sh:4910:  func_cygming_ms_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $GREP '_NULL_IMPORT_DESCRIPTOR'`
bindfs-1.14.7/ltmain.sh-4911-  test -n "$func_cygming_ms_implib_tmp"
##############################################
bindfs-1.14.7/ltmain.sh-4925-  win32_libid_type=unknown
bindfs-1.14.7/ltmain.sh:4926:  win32_fileres=`file -L $1 2>/dev/null`
bindfs-1.14.7/ltmain.sh-4927-  case $win32_fileres in
##############################################
bindfs-1.14.7/ltmain.sh-4990-
bindfs-1.14.7/ltmain.sh:4991:  sharedlib_from_linklib_result=`$DLLTOOL --identify-strict --identify "$1"`
bindfs-1.14.7/ltmain.sh-4992-}
##############################################
bindfs-1.14.7/ltmain.sh-5008-
bindfs-1.14.7/ltmain.sh:5009:  match_literal=`$ECHO "$1" | $SED "$sed_make_literal_regex"`
bindfs-1.14.7/ltmain.sh-5010-  $OBJDUMP -s --section "$1" "$2" 2>/dev/null |
##############################################
bindfs-1.14.7/ltmain.sh-5072-    # binutils import library
bindfs-1.14.7/ltmain.sh:5073:    sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$7' "$1"`
bindfs-1.14.7/ltmain.sh-5074-  elif func_cygming_ms_implib_p "$1"; then
bindfs-1.14.7/ltmain.sh-5075-    # ms-generated import library
bindfs-1.14.7/ltmain.sh:5076:    sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$6' "$1"`
bindfs-1.14.7/ltmain.sh-5077-  else
##############################################
bindfs-1.14.7/ltmain.sh-5156-	  darwin_base_archive=$func_basename_result
bindfs-1.14.7/ltmain.sh:5157:	  darwin_arches=`$LIPO -info "$darwin_archive" 2>/dev/null | $GREP Architectures 2>/dev/null || true`
bindfs-1.14.7/ltmain.sh-5158-	  if test -n "$darwin_arches"; then
bindfs-1.14.7/ltmain.sh:5159:	    darwin_arches=`$ECHO "$darwin_arches" | $SED -e 's/.*are://'`
bindfs-1.14.7/ltmain.sh-5160-	    darwin_arch=
##############################################
bindfs-1.14.7/ltmain.sh-5170-            ## Okay now we've a bunch of thin objects, gotta fatten them up :)
bindfs-1.14.7/ltmain.sh:5171:	    darwin_filelist=`find unfat-$$ -type f -name \*.o -print -o -name \*.lo -print | $SED -e "$sed_basename" | sort -u`
bindfs-1.14.7/ltmain.sh-5172-	    darwin_file=
##############################################
bindfs-1.14.7/ltmain.sh-5174-	    for darwin_file in $darwin_filelist; do
bindfs-1.14.7/ltmain.sh:5175:	      darwin_files=`find unfat-$$ -name $darwin_file -print | sort | $NL2SP`
bindfs-1.14.7/ltmain.sh-5176-	      $LIPO -create -output "$darwin_file" $darwin_files
##############################################
bindfs-1.14.7/ltmain.sh-5189-      esac
bindfs-1.14.7/ltmain.sh:5190:      my_oldobjs="$my_oldobjs "`find $my_xdir -name \*.$objext -print -o -name \*.lo -print | sort | $NL2SP`
bindfs-1.14.7/ltmain.sh-5191-    done
##############################################
bindfs-1.14.7/ltmain.sh-5260-
bindfs-1.14.7/ltmain.sh:5261:    qECHO=`$ECHO "$ECHO" | $SED "$sed_quote_subst"`
bindfs-1.14.7/ltmain.sh-5262-    $ECHO "\
##############################################
bindfs-1.14.7/ltmain.sh-5295-    --lt-dump-script)
bindfs-1.14.7/ltmain.sh:5296:        lt_dump_D=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%/[^/]*$%%'\`
bindfs-1.14.7/ltmain.sh-5297-        test \"X\$lt_dump_D\" = \"X\$lt_script_arg0\" && lt_dump_D=.
bindfs-1.14.7/ltmain.sh:5298:        lt_dump_F=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%^.*/%%'\`
bindfs-1.14.7/ltmain.sh-5299-        cat \"\$lt_dump_D/\$lt_dump_F\"
##############################################
bindfs-1.14.7/ltmain.sh-5322-    \$ECHO \"$outputname:$output:\$LINENO: newargv[\$lt_dump_args_N]: \$lt_arg\"
bindfs-1.14.7/ltmain.sh:5323:    lt_dump_args_N=\`expr \$lt_dump_args_N + 1\`
bindfs-1.14.7/ltmain.sh-5324-  done
##############################################
bindfs-1.14.7/ltmain.sh-5380-  # Find the directory that this script lives in.
bindfs-1.14.7/ltmain.sh:5381:  thisdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*$%%'\`
bindfs-1.14.7/ltmain.sh-5382-  test \"x\$thisdir\" = \"x\$file\" && thisdir=.
##############################################
bindfs-1.14.7/ltmain.sh-5384-  # Follow symbolic links until we get to the real thisdir.
bindfs-1.14.7/ltmain.sh:5385:  file=\`ls -ld \"\$file\" | $SED -n 's/.*-> //p'\`
bindfs-1.14.7/ltmain.sh-5386-  while test -n \"\$file\"; do
bindfs-1.14.7/ltmain.sh:5387:    destdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*\$%%'\`
bindfs-1.14.7/ltmain.sh-5388-
##############################################
bindfs-1.14.7/ltmain.sh-5396-
bindfs-1.14.7/ltmain.sh:5397:    file=\`\$ECHO \"\$file\" | $SED 's%^.*/%%'\`
bindfs-1.14.7/ltmain.sh:5398:    file=\`ls -ld \"\$thisdir/\$file\" | $SED -n 's/.*-> //p'\`
bindfs-1.14.7/ltmain.sh-5399-  done
##############################################
bindfs-1.14.7/ltmain.sh-5410-    case \"\$thisdir\" in
bindfs-1.14.7/ltmain.sh:5411:    *[\\\\/]$objdir ) thisdir=\`\$ECHO \"\$thisdir\" | $SED 's%[\\\\/][^\\\\/]*$%%'\` ;;
bindfs-1.14.7/ltmain.sh-5412-    $objdir )   thisdir=. ;;
##############################################
bindfs-1.14.7/ltmain.sh-5416-  # Try to get the absolute directory name.
bindfs-1.14.7/ltmain.sh:5417:  absdir=\`cd \"\$thisdir\" && pwd\`
bindfs-1.14.7/ltmain.sh-5418-  test -n \"\$absdir\" && thisdir=\"\$absdir\"
##############################################
bindfs-1.14.7/ltmain.sh-5426-  if test ! -f \"\$progdir/\$program\" ||
bindfs-1.14.7/ltmain.sh:5427:     { file=\`ls -1dt \"\$progdir/\$program\" \"\$progdir/../\$program\" 2>/dev/null | $SED 1q\`; \\
bindfs-1.14.7/ltmain.sh-5428-       test \"X\$file\" != \"X\$progdir/\$program\"; }; then
##############################################
bindfs-1.14.7/ltmain.sh-5441-    if test -n \"\$relink_command\"; then
bindfs-1.14.7/ltmain.sh:5442:      if relink_command_output=\`eval \$relink_command 2>&1\`; then :
bindfs-1.14.7/ltmain.sh-5443-      else
##############################################
bindfs-1.14.7/ltmain.sh-5485-    # The second colon is a workaround for a bug in BeOS R4 sed
bindfs-1.14.7/ltmain.sh:5486:    $shlibpath_var=\`\$ECHO \"\$$shlibpath_var\" | $SED 's/::*\$//'\`
bindfs-1.14.7/ltmain.sh-5487-
##############################################
bindfs-1.14.7/ltmain.sh-6464-
bindfs-1.14.7/ltmain.sh:6465:    case `eval $file_magic_cmd \"\$1\" 2>/dev/null | $SED -e 10q` in
bindfs-1.14.7/ltmain.sh-6466-    *import*) : ;;
##############################################
bindfs-1.14.7/ltmain.sh-6712-	    moreargs=
bindfs-1.14.7/ltmain.sh:6713:	    for fil in `cat "$save_arg"`
bindfs-1.14.7/ltmain.sh-6714-	    do
##############################################
bindfs-1.14.7/ltmain.sh-6973-	*)
bindfs-1.14.7/ltmain.sh:6974:	  absdir=`cd "$dir" && pwd`
bindfs-1.14.7/ltmain.sh-6975-	  test -z "$absdir" && \
##############################################
bindfs-1.14.7/ltmain.sh-6994-	*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*)
bindfs-1.14.7/ltmain.sh:6995:	  testbindir=`$ECHO "$dir" | $SED 's*/lib$*/bin*'`
bindfs-1.14.7/ltmain.sh-6996-	  case :$dllsearchpath: in
##############################################
bindfs-1.14.7/ltmain.sh-7290-      -Z*)
bindfs-1.14.7/ltmain.sh:7291:        if test os2 = "`expr $host : '.*\(os2\)'`"; then
bindfs-1.14.7/ltmain.sh-7292-          # OS/2 uses -Zxxx to specify OS/2-specific options
##############################################
bindfs-1.14.7/ltmain.sh-7460-      # get the directories listed in $shlibpath_var
bindfs-1.14.7/ltmain.sh:7461:      eval shlib_search_path=\`\$ECHO \"\$$shlibpath_var\" \| \$SED \'s/:/ /g\'\`
bindfs-1.14.7/ltmain.sh-7462-    else
##############################################
bindfs-1.14.7/ltmain.sh-7779-		  set dummy $deplibs_check_method; shift
bindfs-1.14.7/ltmain.sh:7780:		  match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"`
bindfs-1.14.7/ltmain.sh-7781-		  if eval "\$ECHO \"$deplib\"" 2>/dev/null | $SED 10q \
##############################################
bindfs-1.14.7/ltmain.sh-7869-	if test -n "$inherited_linker_flags"; then
bindfs-1.14.7/ltmain.sh:7870:	  tmp_inherited_linker_flags=`$ECHO "$inherited_linker_flags" | $SED 's/-framework \([^ $]*\)/\1.ltframework/g'`
bindfs-1.14.7/ltmain.sh-7871-	  for tmp_inherited_linker_flag in $tmp_inherited_linker_flags; do
##############################################
bindfs-1.14.7/ltmain.sh-7877-	fi
bindfs-1.14.7/ltmain.sh:7878:	dependency_libs=`$ECHO " $dependency_libs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'`
bindfs-1.14.7/ltmain.sh-7879-	if test lib,link = "$linkmode,$pass" ||
##############################################
bindfs-1.14.7/ltmain.sh-7950-	*)
bindfs-1.14.7/ltmain.sh:7951:	  abs_ladir=`cd "$ladir" && pwd`
bindfs-1.14.7/ltmain.sh-7952-	  if test -z "$abs_ladir"; then
##############################################
bindfs-1.14.7/ltmain.sh-8203-	    shift
bindfs-1.14.7/ltmain.sh:8204:	    libname=`eval "\\$ECHO \"$libname_spec\""`
bindfs-1.14.7/ltmain.sh-8205-	    # use dlname if we got it. it's perfectly good, no?
##############################################
bindfs-1.14.7/ltmain.sh-8495-		*)
bindfs-1.14.7/ltmain.sh:8496:		  absdir=`cd "$dir" && pwd`
bindfs-1.14.7/ltmain.sh-8497-		  if test -z "$absdir"; then
##############################################
bindfs-1.14.7/ltmain.sh-8506-		  depdepl=
bindfs-1.14.7/ltmain.sh:8507:		  eval deplibrary_names=`$SED -n -e 's/^library_names=\(.*\)$/\1/p' $deplib`
bindfs-1.14.7/ltmain.sh-8508-		  if test -n "$deplibrary_names"; then
##############################################
bindfs-1.14.7/ltmain.sh-8513-		      depdepl=$absdir/$objdir/$depdepl
bindfs-1.14.7/ltmain.sh:8514:		      darwin_install_name=`$OTOOL -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'`
bindfs-1.14.7/ltmain.sh-8515-                      if test -z "$darwin_install_name"; then
bindfs-1.14.7/ltmain.sh:8516:                          darwin_install_name=`$OTOOL64 -L $depdepl  | awk '{if (NR == 2) {print $1;exit}}'`
bindfs-1.14.7/ltmain.sh-8517-                      fi
##############################################
bindfs-1.14.7/ltmain.sh-8528-		else
bindfs-1.14.7/ltmain.sh:8529:		  eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $deplib`
bindfs-1.14.7/ltmain.sh-8530-		  test -z "$libdir" && \
##############################################
bindfs-1.14.7/ltmain.sh-8551-	else
bindfs-1.14.7/ltmain.sh:8552:	  compiler_flags="$compiler_flags "`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'`
bindfs-1.14.7/ltmain.sh-8553-	fi
##############################################
bindfs-1.14.7/ltmain.sh-8640-        linux*)
bindfs-1.14.7/ltmain.sh:8641:          case `$CC -V 2>&1 | sed 5q` in
bindfs-1.14.7/ltmain.sh-8642-          *Sun\ C*) # Sun C++ 5.9
##############################################
bindfs-1.14.7/ltmain.sh-9048-	removelist=
bindfs-1.14.7/ltmain.sh:9049:	tempremovelist=`$ECHO "$output_objdir/*"`
bindfs-1.14.7/ltmain.sh-9050-	for p in $tempremovelist; do
##############################################
bindfs-1.14.7/ltmain.sh-9074-	# Transform .lo files to .o files.
bindfs-1.14.7/ltmain.sh:9075:	oldobjs="$objs "`$ECHO "$libobjs" | $SP2NL | $SED "/\.$libext$/d; $lo2o" | $NL2SP`
bindfs-1.14.7/ltmain.sh-9076-      fi
##############################################
bindfs-1.14.7/ltmain.sh-9079-      #for path in $notinst_path; do
bindfs-1.14.7/ltmain.sh:9080:      #	lib_search_path=`$ECHO "$lib_search_path " | $SED "s% $path % %g"`
bindfs-1.14.7/ltmain.sh:9081:      #	deplibs=`$ECHO "$deplibs " | $SED "s% -L$path % %g"`
bindfs-1.14.7/ltmain.sh:9082:      #	dependency_libs=`$ECHO "$dependency_libs " | $SED "s% -L$path % %g"`
bindfs-1.14.7/ltmain.sh-9083-      #done
##############################################
bindfs-1.14.7/ltmain.sh-9200-		if test -n "$i"; then
bindfs-1.14.7/ltmain.sh:9201:		  libname=`eval "\\$ECHO \"$libname_spec\""`
bindfs-1.14.7/ltmain.sh:9202:		  deplib_matches=`eval "\\$ECHO \"$library_names_spec\""`
bindfs-1.14.7/ltmain.sh-9203-		  set dummy $deplib_matches; shift
bindfs-1.14.7/ltmain.sh-9204-		  deplib_match=$1
bindfs-1.14.7/ltmain.sh:9205:		  if test `expr "$ldd_output" : ".*$deplib_match"` -ne 0; then
bindfs-1.14.7/ltmain.sh-9206-		    func_append newdeplibs " $i"
##############################################
bindfs-1.14.7/ltmain.sh-9243-		  if test -n "$i"; then
bindfs-1.14.7/ltmain.sh:9244:		    libname=`eval "\\$ECHO \"$libname_spec\""`
bindfs-1.14.7/ltmain.sh:9245:		    deplib_matches=`eval "\\$ECHO \"$library_names_spec\""`
bindfs-1.14.7/ltmain.sh-9246-		    set dummy $deplib_matches; shift
bindfs-1.14.7/ltmain.sh-9247-		    deplib_match=$1
bindfs-1.14.7/ltmain.sh:9248:		    if test `expr "$ldd_output" : ".*$deplib_match"` -ne 0; then
bindfs-1.14.7/ltmain.sh-9249-		      func_append newdeplibs " $i"
##############################################
bindfs-1.14.7/ltmain.sh-9278-	  set dummy $deplibs_check_method; shift
bindfs-1.14.7/ltmain.sh:9279:	  file_magic_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"`
bindfs-1.14.7/ltmain.sh-9280-	  for a_deplib in $deplibs; do
##############################################
bindfs-1.14.7/ltmain.sh-9293-	      if test -n "$a_deplib"; then
bindfs-1.14.7/ltmain.sh:9294:		libname=`eval "\\$ECHO \"$libname_spec\""`
bindfs-1.14.7/ltmain.sh-9295-		if test -n "$file_magic_glob"; then
bindfs-1.14.7/ltmain.sh:9296:		  libnameglob=`func_echo_all "$libname" | $SED -e $file_magic_glob`
bindfs-1.14.7/ltmain.sh-9297-		else
##############################################
bindfs-1.14.7/ltmain.sh-9303-		    shopt -s nocaseglob
bindfs-1.14.7/ltmain.sh:9304:		    potential_libs=`ls $i/$libnameglob[.-]* 2>/dev/null`
bindfs-1.14.7/ltmain.sh-9305-		    $nocaseglob
bindfs-1.14.7/ltmain.sh-9306-		  else
bindfs-1.14.7/ltmain.sh:9307:		    potential_libs=`ls $i/$libnameglob[.-]* 2>/dev/null`
bindfs-1.14.7/ltmain.sh-9308-		  fi
##############################################
bindfs-1.14.7/ltmain.sh-9321-		      while test -h "$potlib" 2>/dev/null; do
bindfs-1.14.7/ltmain.sh:9322:			potliblink=`ls -ld $potlib | $SED 's/.* -> //'`
bindfs-1.14.7/ltmain.sh-9323-			case $potliblink in
bindfs-1.14.7/ltmain.sh-9324-			[\\/]* | [A-Za-z]:[\\/]*) potlib=$potliblink;;
bindfs-1.14.7/ltmain.sh:9325:			*) potlib=`$ECHO "$potlib" | $SED 's|[^/]*$||'`"$potliblink";;
bindfs-1.14.7/ltmain.sh-9326-			esac
##############################################
bindfs-1.14.7/ltmain.sh-9362-	  set dummy $deplibs_check_method; shift
bindfs-1.14.7/ltmain.sh:9363:	  match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"`
bindfs-1.14.7/ltmain.sh-9364-	  for a_deplib in $deplibs; do
##############################################
bindfs-1.14.7/ltmain.sh-9377-	      if test -n "$a_deplib"; then
bindfs-1.14.7/ltmain.sh:9378:		libname=`eval "\\$ECHO \"$libname_spec\""`
bindfs-1.14.7/ltmain.sh-9379-		for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do
bindfs-1.14.7/ltmain.sh:9380:		  potential_libs=`ls $i/$libname[.-]* 2>/dev/null`
bindfs-1.14.7/ltmain.sh-9381-		  for potent_lib in $potential_libs; do
##############################################
bindfs-1.14.7/ltmain.sh-9416-	  newdeplibs=
bindfs-1.14.7/ltmain.sh:9417:	  tmp_deplibs=`$ECHO " $deplibs" | $SED 's/ -lc$//; s/ -[LR][^ ]*//g'`
bindfs-1.14.7/ltmain.sh-9418-	  if test yes = "$allow_libtool_libs_with_static_runtimes"; then
##############################################
bindfs-1.14.7/ltmain.sh-9420-	      # can't use Xsed below, because $i might contain '/'
bindfs-1.14.7/ltmain.sh:9421:	      tmp_deplibs=`$ECHO " $tmp_deplibs" | $SED "s|$i||"`
bindfs-1.14.7/ltmain.sh-9422-	    done
##############################################
bindfs-1.14.7/ltmain.sh-9446-	  # On Rhapsody replace the C library with the System framework
bindfs-1.14.7/ltmain.sh:9447:	  newdeplibs=`$ECHO " $newdeplibs" | $SED 's/ -lc / System.ltframework /'`
bindfs-1.14.7/ltmain.sh-9448-	  ;;
##############################################
bindfs-1.14.7/ltmain.sh-9498-	*-*-darwin*)
bindfs-1.14.7/ltmain.sh:9499:	  newdeplibs=`$ECHO " $newdeplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'`
bindfs-1.14.7/ltmain.sh:9500:	  new_inherited_linker_flags=`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'`
bindfs-1.14.7/ltmain.sh:9501:	  deplibs=`$ECHO " $deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'`
bindfs-1.14.7/ltmain.sh-9502-	  ;;
##############################################
bindfs-1.14.7/ltmain.sh-9625-	# Use standard objects if they are pic
bindfs-1.14.7/ltmain.sh:9626:	test -z "$pic_flag" && libobjs=`$ECHO "$libobjs" | $SP2NL | $SED "$lo2o" | $NL2SP`
bindfs-1.14.7/ltmain.sh-9627-	test "X$libobjs" = "X " && libobjs=
##############################################
bindfs-1.14.7/ltmain.sh-10139-	  eval tmp_whole_archive_flags=\"$whole_archive_flag_spec\"
bindfs-1.14.7/ltmain.sh:10140:	  test -n "$wl" || tmp_whole_archive_flags=`$ECHO "$tmp_whole_archive_flags" | $SED 's|,| |g'`
bindfs-1.14.7/ltmain.sh-10141-	  reload_conv_objs=$reload_objs\ $tmp_whole_archive_flags
##############################################
bindfs-1.14.7/ltmain.sh-10154-      # Create the old-style object.
bindfs-1.14.7/ltmain.sh:10155:      reload_objs=$objs$old_deplibs' '`$ECHO "$libobjs" | $SP2NL | $SED "/\.$libext$/d; /\.lib$/d; $lo2o" | $NL2SP`' '$reload_conv_objs
bindfs-1.14.7/ltmain.sh-10156-
##############################################
bindfs-1.14.7/ltmain.sh-10212-	# On Rhapsody replace the C library is the System framework
bindfs-1.14.7/ltmain.sh:10213:	compile_deplibs=`$ECHO " $compile_deplibs" | $SED 's/ -lc / System.ltframework /'`
bindfs-1.14.7/ltmain.sh:10214:	finalize_deplibs=`$ECHO " $finalize_deplibs" | $SED 's/ -lc / System.ltframework /'`
bindfs-1.14.7/ltmain.sh-10215-	;;
##############################################
bindfs-1.14.7/ltmain.sh-10230-	# Time to change all our "foo.ltframework" stuff back to "-framework foo"
bindfs-1.14.7/ltmain.sh:10231:	compile_deplibs=`$ECHO " $compile_deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'`
bindfs-1.14.7/ltmain.sh:10232:	finalize_deplibs=`$ECHO " $finalize_deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'`
bindfs-1.14.7/ltmain.sh-10233-	;;
##############################################
bindfs-1.14.7/ltmain.sh-10308-	*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*)
bindfs-1.14.7/ltmain.sh:10309:	  testbindir=`$ECHO "$libdir" | $SED -e 's*/lib$*/bin*'`
bindfs-1.14.7/ltmain.sh-10310-	  case :$dllsearchpath: in
##############################################
bindfs-1.14.7/ltmain.sh-10368-	# Transform all the library objects into standard objects.
bindfs-1.14.7/ltmain.sh:10369:	compile_command=`$ECHO "$compile_command" | $SP2NL | $SED "$lo2o" | $NL2SP`
bindfs-1.14.7/ltmain.sh:10370:	finalize_command=`$ECHO "$finalize_command" | $SP2NL | $SED "$lo2o" | $NL2SP`
bindfs-1.14.7/ltmain.sh-10371-      fi
##############################################
bindfs-1.14.7/ltmain.sh-10396-	# Replace the output file specification.
bindfs-1.14.7/ltmain.sh:10397:	compile_command=`$ECHO "$compile_command" | $SED 's%@OUTPUT@%'"$output"'%g'`
bindfs-1.14.7/ltmain.sh-10398-	link_command=$compile_command$compile_rpath
##############################################
bindfs-1.14.7/ltmain.sh-10405-	  func_to_tool_file "$output"
bindfs-1.14.7/ltmain.sh:10406:	  postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'`
bindfs-1.14.7/ltmain.sh-10407-	  func_execute_cmds "$postlink_cmds" 'exit $?'
##############################################
bindfs-1.14.7/ltmain.sh-10449-	# Replace the output file specification.
bindfs-1.14.7/ltmain.sh:10450:	link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output"'%g'`
bindfs-1.14.7/ltmain.sh-10451-	# Delete the old output file.
##############################################
bindfs-1.14.7/ltmain.sh-10457-	  func_to_tool_file "$output"
bindfs-1.14.7/ltmain.sh:10458:	  postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'`
bindfs-1.14.7/ltmain.sh-10459-	  func_execute_cmds "$postlink_cmds" 'exit $?'
##############################################
bindfs-1.14.7/ltmain.sh-10475-	  link_command=$finalize_var$compile_command$finalize_rpath
bindfs-1.14.7/ltmain.sh:10476:	  relink_command=`$ECHO "$compile_var$compile_command$compile_rpath" | $SED 's%@OUTPUT@%\$progdir/\$file%g'`
bindfs-1.14.7/ltmain.sh-10477-          ;;
##############################################
bindfs-1.14.7/ltmain.sh-10488-      # Replace the output file specification.
bindfs-1.14.7/ltmain.sh:10489:      link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output_objdir/$outputname"'%g'`
bindfs-1.14.7/ltmain.sh-10490-
##############################################
bindfs-1.14.7/ltmain.sh-10497-	func_to_tool_file "$output_objdir/$outputname"
bindfs-1.14.7/ltmain.sh:10498:	postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output_objdir/$outputname"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'`
bindfs-1.14.7/ltmain.sh-10499-	func_execute_cmds "$postlink_cmds" 'exit $?'
##############################################
bindfs-1.14.7/ltmain.sh-10518-	relink_command="(cd `pwd`; $relink_command)"
bindfs-1.14.7/ltmain.sh:10519:	relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"`
bindfs-1.14.7/ltmain.sh-10520-      fi
##############################################
bindfs-1.14.7/ltmain.sh-10764-      relink_command="(cd `pwd`; $SHELL \"$progpath\" $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)"
bindfs-1.14.7/ltmain.sh:10765:      relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"`
bindfs-1.14.7/ltmain.sh-10766-      if test yes = "$hardcode_automatic"; then
##############################################
bindfs-1.14.7/ltmain.sh-10785-		func_resolve_sysroot "$deplib"
bindfs-1.14.7/ltmain.sh:10786:		eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $func_resolve_sysroot_result`
bindfs-1.14.7/ltmain.sh-10787-		test -z "$libdir" && \
##############################################
bindfs-1.14.7/ltmain.sh-10811-		name=$func_basename_result
bindfs-1.14.7/ltmain.sh:10812:		eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $lib`
bindfs-1.14.7/ltmain.sh-10813-		test -z "$libdir" && \
##############################################
bindfs-1.14.7/ltmain.sh-10830-		name=$func_basename_result
bindfs-1.14.7/ltmain.sh:10831:		eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $lib`
bindfs-1.14.7/ltmain.sh-10832-		test -z "$libdir" && \
##############################################
bindfs-1.14.7/ltmain.sh-11149-# ### BEGIN LIBTOOL TAG CONFIG: disable-static
bindfs-1.14.7/ltmain.sh:11150:build_old_libs=`case $build_libtool_libs in yes) echo no;; *) echo yes;; esac`
bindfs-1.14.7/ltmain.sh-11151-# ### END LIBTOOL TAG CONFIG: disable-static
##############################################
bindfs-1.14.7/src/Makefile.in-51-  { \
bindfs-1.14.7/src/Makefile.in:52:    flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
bindfs-1.14.7/src/Makefile.in-53-  }; \
##############################################
bindfs-1.14.7/src/Makefile.in-156-  esac
bindfs-1.14.7/src/Makefile.in:157:am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
bindfs-1.14.7/src/Makefile.in-158-am__vpath_adj = case $$p in \
bindfs-1.14.7/src/Makefile.in:159:    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
bindfs-1.14.7/src/Makefile.in-160-    *) f=$$p;; \
bindfs-1.14.7/src/Makefile.in-161-  esac;
bindfs-1.14.7/src/Makefile.in:162:am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
bindfs-1.14.7/src/Makefile.in-163-am__install_max = 40
bindfs-1.14.7/src/Makefile.in-164-am__nobase_strip_setup = \
bindfs-1.14.7/src/Makefile.in:165:  srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
bindfs-1.14.7/src/Makefile.in-166-am__nobase_strip = \
##############################################
bindfs-1.14.7/src/Makefile.in-417-	test -n "$(EXEEXT)" || exit 0; \
bindfs-1.14.7/src/Makefile.in:418:	list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
bindfs-1.14.7/src/Makefile.in-419-	echo " rm -f" $$list; \
##############################################
bindfs-1.14.7/src/Makefile.in-447-.c.obj:
bindfs-1.14.7/src/Makefile.in:448:@am__fastdepCC_TRUE@	$(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
bindfs-1.14.7/src/Makefile.in-449-@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
##############################################
bindfs-1.14.7/src/Makefile.in-451-@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
bindfs-1.14.7/src/Makefile.in:452:@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
bindfs-1.14.7/src/Makefile.in-453-
##############################################
bindfs-1.14.7/src/Makefile.in-470-	test -n "$(man1dir)" \
bindfs-1.14.7/src/Makefile.in:471:	  && test -n "`echo $$list1$$list2`" \
bindfs-1.14.7/src/Makefile.in-472-	  || exit 0; \
##############################################
bindfs-1.14.7/src/Makefile.in-539-GTAGS:
bindfs-1.14.7/src/Makefile.in:540:	here=`$(am__cd) $(top_builddir) && pwd` \
bindfs-1.14.7/src/Makefile.in-541-	  && $(am__cd) $(top_srcdir) \
##############################################
bindfs-1.14.7/src/Makefile.in-562-distdir: $(DISTFILES)
bindfs-1.14.7/src/Makefile.in:563:	@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
bindfs-1.14.7/src/Makefile.in:564:	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
bindfs-1.14.7/src/Makefile.in-565-	list='$(DISTFILES)'; \
##############################################
bindfs-1.14.7/src/Makefile.in-576-	  if test -d $$d/$$file; then \
bindfs-1.14.7/src/Makefile.in:577:	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
bindfs-1.14.7/src/Makefile.in-578-	    if test -d "$(distdir)/$$file"; then \
##############################################
bindfs-1.14.7/configure-45-if test -z "$BASH_VERSION$ZSH_VERSION" \
bindfs-1.14.7/configure:46:    && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
bindfs-1.14.7/configure-47-  as_echo='print -r --'
bindfs-1.14.7/configure-48-  as_echo_n='print -rn --'
bindfs-1.14.7/configure:49:elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
bindfs-1.14.7/configure-50-  as_echo='printf %s\n'
##############################################
bindfs-1.14.7/configure-52-else
bindfs-1.14.7/configure:53:  if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
bindfs-1.14.7/configure-54-    as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
##############################################
bindfs-1.14.7/configure-62-	expr "X$arg" : "X\\(.*\\)$as_nl";
bindfs-1.14.7/configure:63:	arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
bindfs-1.14.7/configure-64-      esac;
##############################################
bindfs-1.14.7/configure-199-  eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" &&
bindfs-1.14.7/configure:200:  test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1
bindfs-1.14.7/configure-201-
##############################################
bindfs-1.14.7/configure-206-    PATH=/empty FPATH=/empty; export PATH FPATH
bindfs-1.14.7/configure:207:    test \"X\`printf %s \$ECHO\`\" = \"X\$ECHO\" \\
bindfs-1.14.7/configure:208:      || test \"X\`print -r -- \$ECHO\`\" = \"X\$ECHO\" ) || exit 1
bindfs-1.14.7/configure-209-test \$(( 1 + 1 )) = 2 || exit 1"
##############################################
bindfs-1.14.7/configure-335-      case $as_dir in #(
bindfs-1.14.7/configure:336:      *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
bindfs-1.14.7/configure-337-      *) as_qdir=$as_dir;;
##############################################
bindfs-1.14.7/configure-408-  {
bindfs-1.14.7/configure:409:    as_val=`expr "$@" || test $? -eq 1`
bindfs-1.14.7/configure-410-  }
##############################################
bindfs-1.14.7/configure-415-# ----------------------------------------
bindfs-1.14.7/configure:416:# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
bindfs-1.14.7/configure-417-# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
##############################################
bindfs-1.14.7/configure-478-  eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" &&
bindfs-1.14.7/configure:479:  test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || {
bindfs-1.14.7/configure-480-  # Blame Lee E. McMahon (1931-1989) for sed's syntax.  :-)
##############################################
bindfs-1.14.7/configure-855-  case $ac_option in
bindfs-1.14.7/configure:856:  *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;;
bindfs-1.14.7/configure-857-  *=)   ac_optarg= ;;
##############################################
bindfs-1.14.7/configure-899-  -disable-* | --disable-*)
bindfs-1.14.7/configure:900:    ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
bindfs-1.14.7/configure-901-    # Reject names that are not valid shell variable names.
##############################################
bindfs-1.14.7/configure-904-    ac_useropt_orig=$ac_useropt
bindfs-1.14.7/configure:905:    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
bindfs-1.14.7/configure-906-    case $ac_user_opts in
##############################################
bindfs-1.14.7/configure-925-  -enable-* | --enable-*)
bindfs-1.14.7/configure:926:    ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
bindfs-1.14.7/configure-927-    # Reject names that are not valid shell variable names.
##############################################
bindfs-1.14.7/configure-930-    ac_useropt_orig=$ac_useropt
bindfs-1.14.7/configure:931:    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
bindfs-1.14.7/configure-932-    case $ac_user_opts in
##############################################
bindfs-1.14.7/configure-1138-  -with-* | --with-*)
bindfs-1.14.7/configure:1139:    ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
bindfs-1.14.7/configure-1140-    # Reject names that are not valid shell variable names.
##############################################
bindfs-1.14.7/configure-1143-    ac_useropt_orig=$ac_useropt
bindfs-1.14.7/configure:1144:    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
bindfs-1.14.7/configure-1145-    case $ac_user_opts in
##############################################
bindfs-1.14.7/configure-1154-  -without-* | --without-*)
bindfs-1.14.7/configure:1155:    ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'`
bindfs-1.14.7/configure-1156-    # Reject names that are not valid shell variable names.
##############################################
bindfs-1.14.7/configure-1159-    ac_useropt_orig=$ac_useropt
bindfs-1.14.7/configure:1160:    ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
bindfs-1.14.7/configure-1161-    case $ac_user_opts in
##############################################
bindfs-1.14.7/configure-1192-  *=*)
bindfs-1.14.7/configure:1193:    ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='`
bindfs-1.14.7/configure-1194-    # Reject names that are not valid shell variable names.
##############################################
bindfs-1.14.7/configure-1213-if test -n "$ac_prev"; then
bindfs-1.14.7/configure:1214:  ac_option=--`echo $ac_prev | sed 's/_/-/g'`
bindfs-1.14.7/configure-1215-  as_fn_error $? "missing argument to $ac_option"
##############################################
bindfs-1.14.7/configure-1235-    */ )
bindfs-1.14.7/configure:1236:      ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'`
bindfs-1.14.7/configure-1237-      eval $ac_var=\$ac_val;;
##############################################
bindfs-1.14.7/configure-1270-ac_ls_di=`ls -di .` &&
bindfs-1.14.7/configure:1271:ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` ||
bindfs-1.14.7/configure-1272-  as_fn_error $? "working directory cannot be determined"
##############################################
bindfs-1.14.7/configure-1326-case $srcdir in
bindfs-1.14.7/configure:1327:*/) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;;
bindfs-1.14.7/configure-1328-esac
##############################################
bindfs-1.14.7/configure-1369-By default, \`make install' will install all the files in
bindfs-1.14.7/configure:1370:\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc.  You can specify
bindfs-1.14.7/configure:1371:an installation prefix other than \`$ac_default_prefix' using \`--prefix',
bindfs-1.14.7/configure-1372-for instance \`--prefix=\$HOME'.
##############################################
bindfs-1.14.7/configure-1486-*)
bindfs-1.14.7/configure:1487:  ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
bindfs-1.14.7/configure-1488-  # A ".." for each directory in $ac_dir_suffix.
bindfs-1.14.7/configure:1489:  ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
bindfs-1.14.7/configure-1490-  case $ac_top_builddir_sub in
##############################################
bindfs-1.14.7/configure-1883-    *\'*)
bindfs-1.14.7/configure:1884:      ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
bindfs-1.14.7/configure-1885-    esac
##############################################
bindfs-1.14.7/configure-1966-      case $ac_val in
bindfs-1.14.7/configure:1967:      *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
bindfs-1.14.7/configure-1968-      esac
##############################################
bindfs-1.14.7/configure-1981-	case $ac_val in
bindfs-1.14.7/configure:1982:	*\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
bindfs-1.14.7/configure-1983-	esac
##############################################
bindfs-1.14.7/configure-2101-    set,)
bindfs-1.14.7/configure:2102:      { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
bindfs-1.14.7/configure:2103:$as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
bindfs-1.14.7/configure-2104-      ac_cache_corrupted=: ;;
##############################################
bindfs-1.14.7/configure-2112-	# differences in whitespace do not lead to failure.
bindfs-1.14.7/configure:2113:	ac_old_val_w=`echo x $ac_old_val`
bindfs-1.14.7/configure:2114:	ac_new_val_w=`echo x $ac_new_val`
bindfs-1.14.7/configure-2115-	if test "$ac_old_val_w" != "$ac_new_val_w"; then
##############################################
bindfs-1.14.7/configure-2132-    case $ac_new_val in
bindfs-1.14.7/configure:2133:    *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
bindfs-1.14.7/configure-2134-    *) ac_arg=$ac_var=$ac_new_val ;;
##############################################
bindfs-1.14.7/configure-2308-     echo "timestamp, slept: $am_has_slept" > conftest.file
bindfs-1.14.7/configure:2309:     set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null`
bindfs-1.14.7/configure-2310-     if test "$*" = "X"; then
bindfs-1.14.7/configure-2311-	# -L didn't work.
bindfs-1.14.7/configure:2312:	set X `ls -t "$srcdir/configure" conftest.file`
bindfs-1.14.7/configure-2313-     fi
##############################################
bindfs-1.14.7/configure-2359-ac_script='s/[\\$]/&&/g;s/;s,x,x,$//'
bindfs-1.14.7/configure:2360:program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"`
bindfs-1.14.7/configure-2361-
bindfs-1.14.7/configure-2362-# Expand $ac_aux_dir to an absolute path.
bindfs-1.14.7/configure:2363:am_aux_dir=`cd "$ac_aux_dir" && pwd`
bindfs-1.14.7/configure-2364-
##############################################
bindfs-1.14.7/configure-2504-	   as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext" || continue
bindfs-1.14.7/configure:2505:	   case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #(
bindfs-1.14.7/configure-2506-	     'mkdir (GNU coreutils) '* | \
##############################################
bindfs-1.14.7/configure-2577-set x ${MAKE-make}
bindfs-1.14.7/configure:2578:ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'`
bindfs-1.14.7/configure-2579-if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then :
##############################################
bindfs-1.14.7/configure-2587-# GNU make sometimes prints "make[1]: Entering ...", which would confuse us.
bindfs-1.14.7/configure:2588:case `${MAKE-make} -f conftest.make 2>/dev/null` in
bindfs-1.14.7/configure-2589-  *@@@%%%=?*=@@@%%%*)
##############################################
bindfs-1.14.7/configure-2653-
bindfs-1.14.7/configure:2654:if test "`cd $srcdir && pwd`" != "`pwd`"; then
bindfs-1.14.7/configure-2655-  # Use -I$(srcdir) only when $(srcdir) != ., so that make's output
##############################################
bindfs-1.14.7/configure-3117-$as_echo_n "checking whether the C compiler works... " >&6; }
bindfs-1.14.7/configure:3118:ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'`
bindfs-1.14.7/configure-3119-
##############################################
bindfs-1.14.7/configure-3161-	then :; else
bindfs-1.14.7/configure:3162:	   ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
bindfs-1.14.7/configure-3163-	fi
##############################################
bindfs-1.14.7/configure-3221-    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;;
bindfs-1.14.7/configure:3222:    *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
bindfs-1.14.7/configure-3223-	  break;;
##############################################
bindfs-1.14.7/configure-3330-    *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;;
bindfs-1.14.7/configure:3331:    *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'`
bindfs-1.14.7/configure-3332-       break;;
##############################################
bindfs-1.14.7/configure-3638-# Ignore all kinds of additional output from 'make'.
bindfs-1.14.7/configure:3639:case `$am_make -s -f confmf 2> /dev/null` in #(
bindfs-1.14.7/configure-3640-*the\ am__doit\ target*)
##############################################
bindfs-1.14.7/configure-3648-   echo '.include "confinc"' > confmf
bindfs-1.14.7/configure:3649:   case `$am_make -s -f confmf 2> /dev/null` in #(
bindfs-1.14.7/configure-3650-   *the\ am__doit\ target*)
##############################################
bindfs-1.14.7/configure-3711-  if test "$am_compiler_list" = ""; then
bindfs-1.14.7/configure:3712:     am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp`
bindfs-1.14.7/configure-3713-  fi
##############################################
bindfs-1.14.7/configure-3852-test "x$ac_build_alias" = x &&
bindfs-1.14.7/configure:3853:  ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"`
bindfs-1.14.7/configure-3854-test "x$ac_build_alias" = x &&
bindfs-1.14.7/configure-3855-  as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5
bindfs-1.14.7/configure:3856:ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` ||
bindfs-1.14.7/configure-3857-  as_fn_error $? "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5
##############################################
bindfs-1.14.7/configure-3876-IFS=$ac_save_IFS
bindfs-1.14.7/configure:3877:case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac
bindfs-1.14.7/configure-3878-
##############################################
bindfs-1.14.7/configure-3887-else
bindfs-1.14.7/configure:3888:  ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` ||
bindfs-1.14.7/configure-3889-    as_fn_error $? "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5
##############################################
bindfs-1.14.7/configure-3909-IFS=$ac_save_IFS
bindfs-1.14.7/configure:3910:case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac
bindfs-1.14.7/configure-3911-
##############################################
bindfs-1.14.7/configure-3937-if test "X`( print -r -- -n ) 2>/dev/null`" = X-n && \
bindfs-1.14.7/configure:3938:   test "X`print -r -- $ECHO 2>/dev/null`" = "X$ECHO"; then
bindfs-1.14.7/configure-3939-  ECHO='print -r --'
bindfs-1.14.7/configure:3940:elif test "X`printf %s $ECHO 2>/dev/null`" = "X$ECHO"; then
bindfs-1.14.7/configure-3941-  ECHO='printf %s\n'
##############################################
bindfs-1.14.7/configure-4006-  # Check for GNU $ac_path_SED
bindfs-1.14.7/configure:4007:case `"$ac_path_SED" --version 2>&1` in
bindfs-1.14.7/configure-4008-*GNU*)
##############################################
bindfs-1.14.7/configure-4082-  # Check for GNU $ac_path_GREP
bindfs-1.14.7/configure:4083:case `"$ac_path_GREP" --version 2>&1` in
bindfs-1.14.7/configure-4084-*GNU*)
##############################################
bindfs-1.14.7/configure-4148-  # Check for GNU $ac_path_EGREP
bindfs-1.14.7/configure:4149:case `"$ac_path_EGREP" --version 2>&1` in
bindfs-1.14.7/configure-4150-*GNU*)
##############################################
bindfs-1.14.7/configure-4215-  # Check for GNU $ac_path_FGREP
bindfs-1.14.7/configure:4216:case `"$ac_path_FGREP" --version 2>&1` in
bindfs-1.14.7/configure-4217-*GNU*)
##############################################
bindfs-1.14.7/configure-4295-    # gcc leaves a trailing carriage return, which upsets mingw
bindfs-1.14.7/configure:4296:    ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;;
bindfs-1.14.7/configure-4297-  *)
bindfs-1.14.7/configure:4298:    ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;
bindfs-1.14.7/configure-4299-  esac
##############################################
bindfs-1.14.7/configure-4304-      # Canonicalize the pathname of ld
bindfs-1.14.7/configure:4305:      ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'`
bindfs-1.14.7/configure-4306-      while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do
bindfs-1.14.7/configure:4307:	ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"`
bindfs-1.14.7/configure-4308-      done
##############################################
bindfs-1.14.7/configure-4339-      # Break only if it was the GNU/non-GNU ld that we prefer.
bindfs-1.14.7/configure:4340:      case `"$lt_cv_path_LD" -v 2>&1 </dev/null` in
bindfs-1.14.7/configure-4341-      *GNU* | *'with BFD'*)
##############################################
bindfs-1.14.7/configure-4370-  # I'd rather use --version here, but apparently some GNU lds only accept -v.
bindfs-1.14.7/configure:4371:case `$LD -v 2>&1 </dev/null` in
bindfs-1.14.7/configure-4372-*GNU* | *'with BFD'*)
##############################################
bindfs-1.14.7/configure-4420-	esac
bindfs-1.14.7/configure:4421:	case `"$tmp_nm" -B $lt_bad_file 2>&1 | sed '1q'` in
bindfs-1.14.7/configure-4422-	*$lt_bad_file* | *'Invalid file or object type'*)
##############################################
bindfs-1.14.7/configure-4426-	*)
bindfs-1.14.7/configure:4427:	  case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in
bindfs-1.14.7/configure-4428-	  */dev/null*)
##############################################
bindfs-1.14.7/configure-4554-
bindfs-1.14.7/configure:4555:    case `$DUMPBIN -symbols -headers /dev/null 2>&1 | sed '1q'` in
bindfs-1.14.7/configure-4556-    *COFF*)
##############################################
bindfs-1.14.7/configure-4666-    # And add a safety zone
bindfs-1.14.7/configure:4667:    lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4`
bindfs-1.14.7/configure:4668:    lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3`
bindfs-1.14.7/configure-4669-    ;;
##############################################
bindfs-1.14.7/configure-4699-    if test -n "$kargmax"; then
bindfs-1.14.7/configure:4700:      lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[	 ]//'`
bindfs-1.14.7/configure-4701-    else
##############################################
bindfs-1.14.7/configure-4708-       test undefined != "$lt_cv_sys_max_cmd_len"; then
bindfs-1.14.7/configure:4709:      lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4`
bindfs-1.14.7/configure:4710:      lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3`
bindfs-1.14.7/configure-4711-    else
##############################################
bindfs-1.14.7/configure-4720-      # we can't tell.
bindfs-1.14.7/configure:4721:      while { test X`env echo "$teststring$teststring" 2>/dev/null` \
bindfs-1.14.7/configure-4722-	         = "X$teststring$teststring"; } >/dev/null 2>&1 &&
##############################################
bindfs-1.14.7/configure-4724-      do
bindfs-1.14.7/configure:4725:        i=`expr $i + 1`
bindfs-1.14.7/configure-4726-        teststring=$teststring$teststring
##############################################
bindfs-1.14.7/configure-4728-      # Only check the string length outside the loop.
bindfs-1.14.7/configure:4729:      lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1`
bindfs-1.14.7/configure-4730-      teststring=
##############################################
bindfs-1.14.7/configure-4733-      # linker.  It appears as though 1/2 is a usable value.
bindfs-1.14.7/configure:4734:      lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2`
bindfs-1.14.7/configure-4735-    fi
##############################################
bindfs-1.14.7/configure-5144-openbsd* | bitrig*)
bindfs-1.14.7/configure:5145:  if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then
bindfs-1.14.7/configure-5146-    lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|\.so|_pic\.a)$'
##############################################
bindfs-1.14.7/configure-5214-    else
bindfs-1.14.7/configure:5215:      file_magic_glob=`echo aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ | $SED -e "s/\(..\)/s\/[\1]\/[\1]\/g;/g"`
bindfs-1.14.7/configure-5216-    fi
##############################################
bindfs-1.14.7/configure-5359-  # decide which one to use based on capabilities of $DLLTOOL
bindfs-1.14.7/configure:5360:  case `$DLLTOOL --help 2>&1` in
bindfs-1.14.7/configure-5361-  *--identify-strict*)
##############################################
bindfs-1.14.7/configure-5881-# If we're using GNU nm, then use its standard symbol codes.
bindfs-1.14.7/configure:5882:case `$NM -V 2>&1` in
bindfs-1.14.7/configure-5883-*GNU* | *'with BFD'*)
##############################################
bindfs-1.14.7/configure-5929-mingw*)
bindfs-1.14.7/configure:5930:  opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp
bindfs-1.14.7/configure-5931-  ;;
##############################################
bindfs-1.14.7/configure-6161-   if test yes = "$GCC"; then
bindfs-1.14.7/configure:6162:     lt_sysroot=`$CC --print-sysroot 2>/dev/null`
bindfs-1.14.7/configure-6163-   fi
##############################################
bindfs-1.14.7/configure-6165- /*)
bindfs-1.14.7/configure:6166:   lt_sysroot=`echo "$with_sysroot" | sed -e "$sed_quote_subst"`
bindfs-1.14.7/configure-6167-   ;; #(
##############################################
bindfs-1.14.7/configure-6260-    done
bindfs-1.14.7/configure:6261:    func_cc_basename_result=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"`
bindfs-1.14.7/configure-6262-}
##############################################
bindfs-1.14.7/configure-6282-  test $ac_status = 0; }; then
bindfs-1.14.7/configure:6283:    case `/usr/bin/file conftest.$ac_objext` in
bindfs-1.14.7/configure-6284-      *ELF-32*)
##############################################
bindfs-1.14.7/configure-6303-    if test yes = "$lt_cv_prog_gnu_ld"; then
bindfs-1.14.7/configure:6304:      case `/usr/bin/file conftest.$ac_objext` in
bindfs-1.14.7/configure-6305-	*32-bit*)
##############################################
bindfs-1.14.7/configure-6315-    else
bindfs-1.14.7/configure:6316:      case `/usr/bin/file conftest.$ac_objext` in
bindfs-1.14.7/configure-6317-	*32-bit*)
##############################################
bindfs-1.14.7/configure-6341-    emul=elf
bindfs-1.14.7/configure:6342:    case `/usr/bin/file conftest.$ac_objext` in
bindfs-1.14.7/configure-6343-      *32-bit*)
##############################################
bindfs-1.14.7/configure-6349-    esac
bindfs-1.14.7/configure:6350:    case `/usr/bin/file conftest.$ac_objext` in
bindfs-1.14.7/configure-6351-      *MSB*)
##############################################
bindfs-1.14.7/configure-6357-    esac
bindfs-1.14.7/configure:6358:    case `/usr/bin/file conftest.$ac_objext` in
bindfs-1.14.7/configure-6359-      *N32*)
##############################################
bindfs-1.14.7/configure-7290-    *:)
bindfs-1.14.7/configure:7291:        eval $1=\"`$ECHO $2 | $SED 's/:/ /g'` \$$1\"
bindfs-1.14.7/configure-7292-        ;;
bindfs-1.14.7/configure-7293-    x:*)
bindfs-1.14.7/configure:7294:        eval $1=\"\$$1 `$ECHO $2 | $SED 's/:/ /g'`\"
bindfs-1.14.7/configure-7295-        ;;
bindfs-1.14.7/configure-7296-    *::*)
bindfs-1.14.7/configure:7297:        eval $1=\"\$$1\ `$ECHO $2 | $SED -e 's/.*:://' -e 's/:/ /g'`\"
bindfs-1.14.7/configure:7298:        eval $1=\"`$ECHO $2 | $SED -e 's/::.*//' -e 's/:/ /g'`\ \$$1\"
bindfs-1.14.7/configure-7299-        ;;
bindfs-1.14.7/configure-7300-    *)
bindfs-1.14.7/configure:7301:        eval $1=\"`$ECHO $2 | $SED 's/:/ /g'`\"
bindfs-1.14.7/configure-7302-        ;;
##############################################
bindfs-1.14.7/configure-7559-do :
bindfs-1.14.7/configure:7560:  as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh`
bindfs-1.14.7/configure-7561-ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default
##############################################
bindfs-1.14.7/configure-7564-  cat >>confdefs.h <<_ACEOF
bindfs-1.14.7/configure:7565:#define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1
bindfs-1.14.7/configure-7566-_ACEOF
##############################################
bindfs-1.14.7/configure-7922-	"file_magic "*)
bindfs-1.14.7/configure:7923:	  file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"`
bindfs-1.14.7/configure-7924-	  MAGIC_CMD=$lt_cv_path_MAGIC_CMD
##############################################
bindfs-1.14.7/configure-7988-	"file_magic "*)
bindfs-1.14.7/configure:7989:	  file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"`
bindfs-1.14.7/configure-7990-	  MAGIC_CMD=$lt_cv_path_MAGIC_CMD
##############################################
bindfs-1.14.7/configure-8382-      *)
bindfs-1.14.7/configure:8383:	case `$CC -V 2>&1 | sed 5q` in
bindfs-1.14.7/configure-8384-	*Sun\ Ceres\ Fortran* | *Sun*Fortran*\ [1-7].* | *Sun*Fortran*\ 8.[0-3]*)
##############################################
bindfs-1.14.7/configure-8831-	# shared libraries, regardless of the interface used.
bindfs-1.14.7/configure:8832:	case `$LD -v 2>&1` in
bindfs-1.14.7/configure-8833-	  *\ \(GNU\ Binutils\)\ 2.19.5*) ;;
##############################################
bindfs-1.14.7/configure-8863-    supports_anon_versioning=no
bindfs-1.14.7/configure:8864:    case `$LD -v | $SED -e 's/(^)\+)\s\+//' 2>&1` in
bindfs-1.14.7/configure-8865-      *GNU\ gold*) supports_anon_versioning=yes ;;
##############################################
bindfs-1.14.7/configure-8932-	# is; otherwise, prepend EXPORTS...
bindfs-1.14.7/configure:8933:	archive_expsym_cmds='if   test DEF = "`$SED -n     -e '\''s/^[	 ]*//'\''     -e '\''/^\(;.*\)*$/d'\''     -e '\''s/^\(EXPORTS\|LIBRARY\)\([	 ].*\)*$/DEF/p'\''     -e q     $export_symbols`" ; then
bindfs-1.14.7/configure-8934-          cp $export_symbols $output_objdir/$soname.def;
##############################################
bindfs-1.14.7/configure-8966-	prefix_cmds="$SED"~
bindfs-1.14.7/configure:8967:	if test EXPORTS = "`$SED 1q $export_symbols`"; then
bindfs-1.14.7/configure-8968-	  prefix_cmds="$prefix_cmds -e 1d";
##############################################
bindfs-1.14.7/configure-8988-      # time.  Moving up from 0x10000000 also allows more sbrk(2) space.
bindfs-1.14.7/configure:8989:      archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
bindfs-1.14.7/configure:8990:      archive_expsym_cmds='sed "s|^|_|" $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--retain-symbols-file,$output_objdir/$soname.expsym $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
bindfs-1.14.7/configure-8991-      ;;
##############################################
bindfs-1.14.7/configure-9006-        pgcc*)				# Portland Group C compiler
bindfs-1.14.7/configure:9007:	  whole_archive_flag_spec='$wl--whole-archive`for conv in $convenience\"\"; do test  -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive'
bindfs-1.14.7/configure-9008-	  tmp_addflag=' $pic_flag'
##############################################
bindfs-1.14.7/configure-9011-					# Portland Group f77 and f90 compilers
bindfs-1.14.7/configure:9012:	  whole_archive_flag_spec='$wl--whole-archive`for conv in $convenience\"\"; do test  -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive'
bindfs-1.14.7/configure-9013-	  tmp_addflag=' $pic_flag -Mnomain' ;;
##############################################
bindfs-1.14.7/configure-9028-	nvcc*)	# Cuda Compiler Driver 2.2
bindfs-1.14.7/configure:9029:	  whole_archive_flag_spec='$wl--whole-archive`for conv in $convenience\"\"; do test  -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive'
bindfs-1.14.7/configure-9030-	  compiler_needs_object=yes
##############################################
bindfs-1.14.7/configure-9032-	esac
bindfs-1.14.7/configure:9033:	case `$CC -V 2>&1 | sed 5q` in
bindfs-1.14.7/configure-9034-	*Sun\ C*)			# Sun C 5.9
bindfs-1.14.7/configure:9035:	  whole_archive_flag_spec='$wl--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive'
bindfs-1.14.7/configure-9036-	  compiler_needs_object=yes
##############################################
bindfs-1.14.7/configure-9103-    sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*)
bindfs-1.14.7/configure:9104:      case `$LD -v 2>&1` in
bindfs-1.14.7/configure-9105-        *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*)
##############################################
bindfs-1.14.7/configure-9192-	else
bindfs-1.14.7/configure:9193:	  export_symbols_cmds='`func_echo_all $NM | $SED -e '\''s/B\([^B]*\)$/P\1/'\''` -PCpgl $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) && (substr(\$ 1,1,1) != ".")) { if ((\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) { print \$ 1 " weak" } else { print \$ 1 } } }'\'' | sort -u > $export_symbols'
bindfs-1.14.7/configure-9194-	fi
##############################################
bindfs-1.14.7/configure-9257-	# below for broken collect2 doesn't work under 4.3+
bindfs-1.14.7/configure:9258:	  collect2name=`$CC -print-prog-name=collect2`
bindfs-1.14.7/configure-9259-	  if test -f "$collect2name" &&
##############################################
bindfs-1.14.7/configure-9337-      }'
bindfs-1.14.7/configure:9338:  lt_cv_aix_libpath_=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"`
bindfs-1.14.7/configure-9339-  # Check for a 64-bit object if we didn't find anything.
bindfs-1.14.7/configure-9340-  if test -z "$lt_cv_aix_libpath_"; then
bindfs-1.14.7/configure:9341:    lt_cv_aix_libpath_=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"`
bindfs-1.14.7/configure-9342-  fi
##############################################
bindfs-1.14.7/configure-9355-        hardcode_libdir_flag_spec='$wl-blibpath:$libdir:'"$aix_libpath"
bindfs-1.14.7/configure:9356:        archive_expsym_cmds='$CC -o $output_objdir/$soname $libobjs $deplibs $wl'$no_entry_flag' $compiler_flags `if test -n "$allow_undefined_flag"; then func_echo_all "$wl$allow_undefined_flag"; else :; fi` $wl'$exp_sym_flag:\$export_symbols' '$shared_flag
bindfs-1.14.7/configure-9357-      else
##############################################
bindfs-1.14.7/configure-9390-      }'
bindfs-1.14.7/configure:9391:  lt_cv_aix_libpath_=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"`
bindfs-1.14.7/configure-9392-  # Check for a 64-bit object if we didn't find anything.
bindfs-1.14.7/configure-9393-  if test -z "$lt_cv_aix_libpath_"; then
bindfs-1.14.7/configure:9394:    lt_cv_aix_libpath_=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"`
bindfs-1.14.7/configure-9395-  fi
##############################################
bindfs-1.14.7/configure-9422-	  # -brtl affects multiple linker settings, -berok does not and is overridden later
bindfs-1.14.7/configure:9423:	  compiler_flags_filtered='`func_echo_all "$compiler_flags " | $SED -e "s%-brtl\\([, ]\\)%-berok\\1%g"`'
bindfs-1.14.7/configure-9424-	  if test svr4 != "$with_aix_soname"; then
##############################################
bindfs-1.14.7/configure-9475-	archive_cmds='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~linknames='
bindfs-1.14.7/configure:9476:	archive_expsym_cmds='if   test DEF = "`$SED -n     -e '\''s/^[	 ]*//'\''     -e '\''/^\(;.*\)*$/d'\''     -e '\''s/^\(EXPORTS\|LIBRARY\)\([	 ].*\)*$/DEF/p'\''     -e q     $export_symbols`" ; then
bindfs-1.14.7/configure-9477-            cp "$export_symbols" "$output_objdir/$soname.def";
##############################################
bindfs-1.14.7/configure-9513-	# FIXME: Setting linknames here is a bad hack.
bindfs-1.14.7/configure:9514:	archive_cmds='$CC -o $lib $libobjs $compiler_flags `func_echo_all "$deplibs" | $SED '\''s/ -lc$//'\''` -link -dll~linknames='
bindfs-1.14.7/configure-9515-	# The linker will automatically build a .lib file if we build a DLL.
##############################################
bindfs-1.14.7/configure-9531-  if test yes = "$lt_cv_ld_force_load"; then
bindfs-1.14.7/configure:9532:    whole_archive_flag_spec='`for conv in $convenience\"\"; do test  -n \"$conv\" && new_convenience=\"$new_convenience $wl-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`'
bindfs-1.14.7/configure-9533-
##############################################
bindfs-1.14.7/configure-9711-      if test yes = "$GCC"; then
bindfs-1.14.7/configure:9712:	archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib'
bindfs-1.14.7/configure-9713-	# Try to use the -exported_symbol ld option, if it does not
##############################################
bindfs-1.14.7/configure-9739-	if test yes = "$lt_cv_irix_exported_symbol"; then
bindfs-1.14.7/configure:9740:          archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations $wl-exports_file $wl$export_symbols -o $lib'
bindfs-1.14.7/configure-9741-	fi
##############################################
bindfs-1.14.7/configure-9743-      else
bindfs-1.14.7/configure:9744:	archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib'
bindfs-1.14.7/configure:9745:	archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -exports_file $export_symbols -o $lib'
bindfs-1.14.7/configure-9746-      fi
##############################################
bindfs-1.14.7/configure-9790-	hardcode_direct_absolute=yes
bindfs-1.14.7/configure:9791:	if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then
bindfs-1.14.7/configure-9792-	  archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'
##############################################
bindfs-1.14.7/configure-9821-	prefix_cmds="$SED"~
bindfs-1.14.7/configure:9822:	if test EXPORTS = "`$SED 1q $export_symbols`"; then
bindfs-1.14.7/configure-9823-	  prefix_cmds="$prefix_cmds -e 1d";
##############################################
bindfs-1.14.7/configure-9835-	allow_undefined_flag=' $wl-expect_unresolved $wl\*'
bindfs-1.14.7/configure:9836:	archive_cmds='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib'
bindfs-1.14.7/configure-9837-      else
bindfs-1.14.7/configure-9838-	allow_undefined_flag=' -expect_unresolved \*'
bindfs-1.14.7/configure:9839:	archive_cmds='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib'
bindfs-1.14.7/configure-9840-      fi
##############################################
bindfs-1.14.7/configure-9848-	allow_undefined_flag=' $wl-expect_unresolved $wl\*'
bindfs-1.14.7/configure:9849:	archive_cmds='$CC -shared$allow_undefined_flag $pic_flag $libobjs $deplibs $compiler_flags $wl-msym $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib'
bindfs-1.14.7/configure-9850-	hardcode_libdir_flag_spec='$wl-rpath $wl$libdir'
##############################################
bindfs-1.14.7/configure-9852-	allow_undefined_flag=' -expect_unresolved \*'
bindfs-1.14.7/configure:9853:	archive_cmds='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib'
bindfs-1.14.7/configure:9854:	archive_expsym_cmds='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~
bindfs-1.14.7/configure:9855:          $CC -shared$allow_undefined_flag $wl-input $wl$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib~$RM $lib.exp'
bindfs-1.14.7/configure-9856-
##############################################
bindfs-1.14.7/configure-9871-      else
bindfs-1.14.7/configure:9872:	case `$CC -V 2>&1` in
bindfs-1.14.7/configure-9873-	*"Compilers 5.0"*)
##############################################
bindfs-1.14.7/configure-10270-  esac
bindfs-1.14.7/configure:10271:  lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e $lt_sed_strip_eq`
bindfs-1.14.7/configure-10272-  case $lt_search_path_spec in
##############################################
bindfs-1.14.7/configure-10277-    # okay in the real world where ";" in dirpaths is itself problematic.
bindfs-1.14.7/configure:10278:    lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED 's/;/ /g'`
bindfs-1.14.7/configure-10279-    ;;
bindfs-1.14.7/configure-10280-  *)
bindfs-1.14.7/configure:10281:    lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED "s/$PATH_SEPARATOR/ /g"`
bindfs-1.14.7/configure-10282-    ;;
##############################################
bindfs-1.14.7/configure-10286-  lt_tmp_lt_search_path_spec=
bindfs-1.14.7/configure:10287:  lt_multi_os_dir=/`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null`
bindfs-1.14.7/configure-10288-  # ...but if some path component already ends with the multilib dir we assume
##############################################
bindfs-1.14.7/configure-10328-  esac
bindfs-1.14.7/configure:10329:  sys_lib_search_path_spec=`$ECHO "$lt_search_path_spec" | $lt_NL2SP`
bindfs-1.14.7/configure-10330-else
##############################################
bindfs-1.14.7/configure-10468-    # Create ${libname}_ixlibrary.a entries in /sys/libs.
bindfs-1.14.7/configure:10469:    finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done'
bindfs-1.14.7/configure-10470-    ;;
##############################################
bindfs-1.14.7/configure-10504-    # DLL is installed to $(libdir)/../bin by postinstall_cmds
bindfs-1.14.7/configure:10505:    postinstall_cmds='base_file=`basename \$file`~
bindfs-1.14.7/configure:10506:      dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~
bindfs-1.14.7/configure:10507:      dldir=$destdir/`dirname \$dlpath`~
bindfs-1.14.7/configure-10508-      test -d \$dldir || mkdir -p \$dldir~
##############################################
bindfs-1.14.7/configure-10513-      fi'
bindfs-1.14.7/configure:10514:    postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~
bindfs-1.14.7/configure-10515-      dlpath=$dir/\$dldll~
##############################################
bindfs-1.14.7/configure-10521-      # Cygwin DLLs use 'cyg' prefix rather than 'lib'
bindfs-1.14.7/configure:10522:      soname_spec='`echo $libname | sed -e 's/^lib/cyg/'``echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext'
bindfs-1.14.7/configure-10523-
##############################################
bindfs-1.14.7/configure-10527-      # MinGW DLLs use traditional 'lib' prefix
bindfs-1.14.7/configure:10528:      soname_spec='$libname`echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext'
bindfs-1.14.7/configure-10529-      ;;
##############################################
bindfs-1.14.7/configure-10531-      # pw32 DLLs use 'pw' prefix rather than 'lib'
bindfs-1.14.7/configure:10532:      library_names_spec='`echo $libname | sed -e 's/^lib/pw/'``echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext'
bindfs-1.14.7/configure-10533-      ;;
##############################################
bindfs-1.14.7/configure-10540-    libname_spec='$name'
bindfs-1.14.7/configure:10541:    soname_spec='$libname`echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext'
bindfs-1.14.7/configure-10542-    library_names_spec='$libname.dll.lib'
##############################################
bindfs-1.14.7/configure-10552-        # Let DOS variable expansion print the short 8.3 style file name.
bindfs-1.14.7/configure:10553:        lt_path=`cd "$lt_path" 2>/dev/null && cmd //C "for %i in (".") do @echo %~si"`
bindfs-1.14.7/configure-10554-        sys_lib_search_path_spec="$sys_lib_search_path_spec $lt_path"
##############################################
bindfs-1.14.7/configure-10557-      # Convert to MSYS style.
bindfs-1.14.7/configure:10558:      sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | sed -e 's|\\\\|/|g' -e 's| \\([a-zA-Z]\\):| /\\1|g' -e 's|^ ||'`
bindfs-1.14.7/configure-10559-      ;;
##############################################
bindfs-1.14.7/configure-10563-      # like /cygdrive/c/PROGRA~1:/cygdr...
bindfs-1.14.7/configure:10564:      sys_lib_search_path_spec=`cygpath --path --unix "$LIB"`
bindfs-1.14.7/configure:10565:      sys_lib_search_path_spec=`cygpath --path --dos "$sys_lib_search_path_spec" 2>/dev/null`
bindfs-1.14.7/configure:10566:      sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"`
bindfs-1.14.7/configure-10567-      ;;
##############################################
bindfs-1.14.7/configure-10571-        # It is most probably a Windows format PATH.
bindfs-1.14.7/configure:10572:        sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'`
bindfs-1.14.7/configure-10573-      else
bindfs-1.14.7/configure:10574:        sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"`
bindfs-1.14.7/configure-10575-      fi
##############################################
bindfs-1.14.7/configure-10581-    # DLL is installed to $(libdir)/../bin by postinstall_cmds
bindfs-1.14.7/configure:10582:    postinstall_cmds='base_file=`basename \$file`~
bindfs-1.14.7/configure:10583:      dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~
bindfs-1.14.7/configure:10584:      dldir=$destdir/`dirname \$dlpath`~
bindfs-1.14.7/configure-10585-      test -d \$dldir || mkdir -p \$dldir~
bindfs-1.14.7/configure-10586-      $install_prog $dir/$dlname \$dldir/$dlname'
bindfs-1.14.7/configure:10587:    postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~
bindfs-1.14.7/configure-10588-      dlpath=$dir/\$dldll~
##############################################
bindfs-1.14.7/configure-10595-    # Assume MSVC wrapper
bindfs-1.14.7/configure:10596:    library_names_spec='$libname`echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext $libname.lib'
bindfs-1.14.7/configure-10597-    dynamic_linker='Win32 ld.exe'
##############################################
bindfs-1.14.7/configure-10612-  shlibpath_var=DYLD_LIBRARY_PATH
bindfs-1.14.7/configure:10613:  shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`'
bindfs-1.14.7/configure-10614-
##############################################
bindfs-1.14.7/configure-10865-  if test -f /etc/ld.so.conf; then
bindfs-1.14.7/configure:10866:    lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[	 ]*hwcap[	 ]/d;s/[:,	]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '`
bindfs-1.14.7/configure-10867-    sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra"
##############################################
bindfs-1.14.7/configure-10931-  need_lib_prefix=no
bindfs-1.14.7/configure:10932:  if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then
bindfs-1.14.7/configure-10933-    need_version=no
##############################################
bindfs-1.14.7/configure-10958-  sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec
bindfs-1.14.7/configure:10959:  postinstall_cmds='base_file=`basename \$file`~
bindfs-1.14.7/configure:10960:    dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; $ECHO \$dlname'\''`~
bindfs-1.14.7/configure:10961:    dldir=$destdir/`dirname \$dlpath`~
bindfs-1.14.7/configure-10962-    test -d \$dldir || mkdir -p \$dldir~
##############################################
bindfs-1.14.7/configure-10967-    fi'
bindfs-1.14.7/configure:10968:  postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; $ECHO \$dlname'\''`~
bindfs-1.14.7/configure-10969-    dlpath=$dir/\$dldll~
##############################################
bindfs-1.14.7/configure-11942-do :
bindfs-1.14.7/configure:11943:  as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
bindfs-1.14.7/configure-11944-ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
##############################################
bindfs-1.14.7/configure-11946-  cat >>confdefs.h <<_ACEOF
bindfs-1.14.7/configure:11947:#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
bindfs-1.14.7/configure-11948-_ACEOF
##############################################
bindfs-1.14.7/configure-11954-do :
bindfs-1.14.7/configure:11955:  as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
bindfs-1.14.7/configure-11956-ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
##############################################
bindfs-1.14.7/configure-11958-  cat >>confdefs.h <<_ACEOF
bindfs-1.14.7/configure:11959:#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
bindfs-1.14.7/configure-11960-_ACEOF
##############################################
bindfs-1.14.7/configure-11966-do :
bindfs-1.14.7/configure:11967:  as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
bindfs-1.14.7/configure-11968-ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
##############################################
bindfs-1.14.7/configure-11970-  cat >>confdefs.h <<_ACEOF
bindfs-1.14.7/configure:11971:#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
bindfs-1.14.7/configure-11972-_ACEOF
##############################################
bindfs-1.14.7/configure-12136-  test $ac_status = 0; }; then
bindfs-1.14.7/configure:12137:  pkg_cv_fuse_CFLAGS=`$PKG_CONFIG --cflags "fuse >= 2.9.0" 2>/dev/null`
bindfs-1.14.7/configure-12138-		      test "x$?" != "x0" && pkg_failed=yes
##############################################
bindfs-1.14.7/configure-12153-  test $ac_status = 0; }; then
bindfs-1.14.7/configure:12154:  pkg_cv_fuse_LIBS=`$PKG_CONFIG --libs "fuse >= 2.9.0" 2>/dev/null`
bindfs-1.14.7/configure-12155-		      test "x$?" != "x0" && pkg_failed=yes
##############################################
bindfs-1.14.7/configure-12174-        if test $_pkg_short_errors_supported = yes; then
bindfs-1.14.7/configure:12175:	        fuse_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "fuse >= 2.9.0" 2>&1`
bindfs-1.14.7/configure-12176-        else
bindfs-1.14.7/configure:12177:	        fuse_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "fuse >= 2.9.0" 2>&1`
bindfs-1.14.7/configure-12178-        fi
##############################################
bindfs-1.14.7/configure-12195-  test $ac_status = 0; }; then
bindfs-1.14.7/configure:12196:  pkg_cv_fuse_CFLAGS=`$PKG_CONFIG --cflags "fuse >= 2.8.0" 2>/dev/null`
bindfs-1.14.7/configure-12197-		      test "x$?" != "x0" && pkg_failed=yes
##############################################
bindfs-1.14.7/configure-12212-  test $ac_status = 0; }; then
bindfs-1.14.7/configure:12213:  pkg_cv_fuse_LIBS=`$PKG_CONFIG --libs "fuse >= 2.8.0" 2>/dev/null`
bindfs-1.14.7/configure-12214-		      test "x$?" != "x0" && pkg_failed=yes
##############################################
bindfs-1.14.7/configure-12233-        if test $_pkg_short_errors_supported = yes; then
bindfs-1.14.7/configure:12234:	        fuse_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "fuse >= 2.8.0" 2>&1`
bindfs-1.14.7/configure-12235-        else
bindfs-1.14.7/configure:12236:	        fuse_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "fuse >= 2.8.0" 2>&1`
bindfs-1.14.7/configure-12237-        fi
##############################################
bindfs-1.14.7/configure-12289-  test $ac_status = 0; }; then
bindfs-1.14.7/configure:12290:  pkg_cv_fuse_CFLAGS=`$PKG_CONFIG --cflags "fuse >= 2.8.0" 2>/dev/null`
bindfs-1.14.7/configure-12291-		      test "x$?" != "x0" && pkg_failed=yes
##############################################
bindfs-1.14.7/configure-12306-  test $ac_status = 0; }; then
bindfs-1.14.7/configure:12307:  pkg_cv_fuse_LIBS=`$PKG_CONFIG --libs "fuse >= 2.8.0" 2>/dev/null`
bindfs-1.14.7/configure-12308-		      test "x$?" != "x0" && pkg_failed=yes
##############################################
bindfs-1.14.7/configure-12327-        if test $_pkg_short_errors_supported = yes; then
bindfs-1.14.7/configure:12328:	        fuse_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "fuse >= 2.8.0" 2>&1`
bindfs-1.14.7/configure-12329-        else
bindfs-1.14.7/configure:12330:	        fuse_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "fuse >= 2.8.0" 2>&1`
bindfs-1.14.7/configure-12331-        fi
##############################################
bindfs-1.14.7/configure-12476-  ac_script='s/\$U\././;s/\.o$//;s/\.obj$//'
bindfs-1.14.7/configure:12477:  ac_i=`$as_echo "$ac_i" | sed "$ac_script"`
bindfs-1.14.7/configure-12478-  # 2. Prepend LIBOBJDIR.  When used with automake>=1.10 LIBOBJDIR
##############################################
bindfs-1.14.7/configure-12571-if test -z "$BASH_VERSION$ZSH_VERSION" \
bindfs-1.14.7/configure:12572:    && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then
bindfs-1.14.7/configure-12573-  as_echo='print -r --'
bindfs-1.14.7/configure-12574-  as_echo_n='print -rn --'
bindfs-1.14.7/configure:12575:elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
bindfs-1.14.7/configure-12576-  as_echo='printf %s\n'
##############################################
bindfs-1.14.7/configure-12578-else
bindfs-1.14.7/configure:12579:  if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
bindfs-1.14.7/configure-12580-    as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
##############################################
bindfs-1.14.7/configure-12588-	expr "X$arg" : "X\\(.*\\)$as_nl";
bindfs-1.14.7/configure:12589:	arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
bindfs-1.14.7/configure-12590-      esac;
##############################################
bindfs-1.14.7/configure-12665-# ----------------------------------------
bindfs-1.14.7/configure:12666:# Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are
bindfs-1.14.7/configure-12667-# provided, also output the error to LOG_FD, referencing LINENO. Then exit the
##############################################
bindfs-1.14.7/configure-12737-  {
bindfs-1.14.7/configure:12738:    as_val=`expr "$@" || test $? -eq 1`
bindfs-1.14.7/configure-12739-  }
##############################################
bindfs-1.14.7/configure-12841-      case $as_dir in #(
bindfs-1.14.7/configure:12842:      *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
bindfs-1.14.7/configure-12843-      *) as_qdir=$as_dir;;
##############################################
bindfs-1.14.7/configure-12976-cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
bindfs-1.14.7/configure:12977:ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
bindfs-1.14.7/configure-12978-ac_cs_version="\\
##############################################
bindfs-1.14.7/configure-13001-  --*=?*)
bindfs-1.14.7/configure:13002:    ac_option=`expr "X$1" : 'X\([^=]*\)='`
bindfs-1.14.7/configure:13003:    ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'`
bindfs-1.14.7/configure-13004-    ac_shift=:
##############################################
bindfs-1.14.7/configure-13006-  --*=)
bindfs-1.14.7/configure:13007:    ac_option=`expr "X$1" : 'X\([^=]*\)='`
bindfs-1.14.7/configure-13008-    ac_optarg=
##############################################
bindfs-1.14.7/configure-13030-    case $ac_optarg in
bindfs-1.14.7/configure:13031:    *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
bindfs-1.14.7/configure-13032-    '') as_fn_error $? "missing file argument" ;;
##############################################
bindfs-1.14.7/configure-13038-    case $ac_optarg in
bindfs-1.14.7/configure:13039:    *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
bindfs-1.14.7/configure-13040-    esac
##############################################
bindfs-1.14.7/configure-13107-delay_variable_subst='$delay_variable_subst'
bindfs-1.14.7/configure:13108:macro_version='`$ECHO "$macro_version" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13109:macro_revision='`$ECHO "$macro_revision" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13110:enable_shared='`$ECHO "$enable_shared" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13111:enable_static='`$ECHO "$enable_static" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13112:pic_mode='`$ECHO "$pic_mode" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13113:enable_fast_install='`$ECHO "$enable_fast_install" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13114:shared_archive_member_spec='`$ECHO "$shared_archive_member_spec" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13115:SHELL='`$ECHO "$SHELL" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13116:ECHO='`$ECHO "$ECHO" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13117:PATH_SEPARATOR='`$ECHO "$PATH_SEPARATOR" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13118:host_alias='`$ECHO "$host_alias" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13119:host='`$ECHO "$host" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13120:host_os='`$ECHO "$host_os" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13121:build_alias='`$ECHO "$build_alias" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13122:build='`$ECHO "$build" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13123:build_os='`$ECHO "$build_os" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13124:SED='`$ECHO "$SED" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13125:Xsed='`$ECHO "$Xsed" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13126:GREP='`$ECHO "$GREP" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13127:EGREP='`$ECHO "$EGREP" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13128:FGREP='`$ECHO "$FGREP" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13129:LD='`$ECHO "$LD" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13130:NM='`$ECHO "$NM" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13131:LN_S='`$ECHO "$LN_S" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13132:max_cmd_len='`$ECHO "$max_cmd_len" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13133:ac_objext='`$ECHO "$ac_objext" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13134:exeext='`$ECHO "$exeext" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13135:lt_unset='`$ECHO "$lt_unset" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13136:lt_SP2NL='`$ECHO "$lt_SP2NL" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13137:lt_NL2SP='`$ECHO "$lt_NL2SP" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13138:lt_cv_to_host_file_cmd='`$ECHO "$lt_cv_to_host_file_cmd" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13139:lt_cv_to_tool_file_cmd='`$ECHO "$lt_cv_to_tool_file_cmd" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13140:reload_flag='`$ECHO "$reload_flag" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13141:reload_cmds='`$ECHO "$reload_cmds" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13142:OBJDUMP='`$ECHO "$OBJDUMP" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13143:deplibs_check_method='`$ECHO "$deplibs_check_method" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13144:file_magic_cmd='`$ECHO "$file_magic_cmd" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13145:file_magic_glob='`$ECHO "$file_magic_glob" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13146:want_nocaseglob='`$ECHO "$want_nocaseglob" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13147:DLLTOOL='`$ECHO "$DLLTOOL" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13148:sharedlib_from_linklib_cmd='`$ECHO "$sharedlib_from_linklib_cmd" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13149:AR='`$ECHO "$AR" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13150:AR_FLAGS='`$ECHO "$AR_FLAGS" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13151:archiver_list_spec='`$ECHO "$archiver_list_spec" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13152:STRIP='`$ECHO "$STRIP" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13153:RANLIB='`$ECHO "$RANLIB" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13154:old_postinstall_cmds='`$ECHO "$old_postinstall_cmds" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13155:old_postuninstall_cmds='`$ECHO "$old_postuninstall_cmds" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13156:old_archive_cmds='`$ECHO "$old_archive_cmds" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13157:lock_old_archive_extraction='`$ECHO "$lock_old_archive_extraction" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13158:CC='`$ECHO "$CC" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13159:CFLAGS='`$ECHO "$CFLAGS" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13160:compiler='`$ECHO "$compiler" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13161:GCC='`$ECHO "$GCC" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13162:lt_cv_sys_global_symbol_pipe='`$ECHO "$lt_cv_sys_global_symbol_pipe" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13163:lt_cv_sys_global_symbol_to_cdecl='`$ECHO "$lt_cv_sys_global_symbol_to_cdecl" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13164:lt_cv_sys_global_symbol_to_import='`$ECHO "$lt_cv_sys_global_symbol_to_import" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13165:lt_cv_sys_global_symbol_to_c_name_address='`$ECHO "$lt_cv_sys_global_symbol_to_c_name_address" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13166:lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='`$ECHO "$lt_cv_sys_global_symbol_to_c_name_address_lib_prefix" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13167:lt_cv_nm_interface='`$ECHO "$lt_cv_nm_interface" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13168:nm_file_list_spec='`$ECHO "$nm_file_list_spec" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13169:lt_sysroot='`$ECHO "$lt_sysroot" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13170:lt_cv_truncate_bin='`$ECHO "$lt_cv_truncate_bin" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13171:objdir='`$ECHO "$objdir" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13172:MAGIC_CMD='`$ECHO "$MAGIC_CMD" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13173:lt_prog_compiler_no_builtin_flag='`$ECHO "$lt_prog_compiler_no_builtin_flag" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13174:lt_prog_compiler_pic='`$ECHO "$lt_prog_compiler_pic" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13175:lt_prog_compiler_wl='`$ECHO "$lt_prog_compiler_wl" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13176:lt_prog_compiler_static='`$ECHO "$lt_prog_compiler_static" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13177:lt_cv_prog_compiler_c_o='`$ECHO "$lt_cv_prog_compiler_c_o" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13178:need_locks='`$ECHO "$need_locks" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13179:MANIFEST_TOOL='`$ECHO "$MANIFEST_TOOL" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13180:DSYMUTIL='`$ECHO "$DSYMUTIL" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13181:NMEDIT='`$ECHO "$NMEDIT" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13182:LIPO='`$ECHO "$LIPO" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13183:OTOOL='`$ECHO "$OTOOL" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13184:OTOOL64='`$ECHO "$OTOOL64" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13185:libext='`$ECHO "$libext" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13186:shrext_cmds='`$ECHO "$shrext_cmds" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13187:extract_expsyms_cmds='`$ECHO "$extract_expsyms_cmds" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13188:archive_cmds_need_lc='`$ECHO "$archive_cmds_need_lc" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13189:enable_shared_with_static_runtimes='`$ECHO "$enable_shared_with_static_runtimes" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13190:export_dynamic_flag_spec='`$ECHO "$export_dynamic_flag_spec" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13191:whole_archive_flag_spec='`$ECHO "$whole_archive_flag_spec" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13192:compiler_needs_object='`$ECHO "$compiler_needs_object" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13193:old_archive_from_new_cmds='`$ECHO "$old_archive_from_new_cmds" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13194:old_archive_from_expsyms_cmds='`$ECHO "$old_archive_from_expsyms_cmds" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13195:archive_cmds='`$ECHO "$archive_cmds" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13196:archive_expsym_cmds='`$ECHO "$archive_expsym_cmds" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13197:module_cmds='`$ECHO "$module_cmds" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13198:module_expsym_cmds='`$ECHO "$module_expsym_cmds" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13199:with_gnu_ld='`$ECHO "$with_gnu_ld" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13200:allow_undefined_flag='`$ECHO "$allow_undefined_flag" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13201:no_undefined_flag='`$ECHO "$no_undefined_flag" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13202:hardcode_libdir_flag_spec='`$ECHO "$hardcode_libdir_flag_spec" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13203:hardcode_libdir_separator='`$ECHO "$hardcode_libdir_separator" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13204:hardcode_direct='`$ECHO "$hardcode_direct" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13205:hardcode_direct_absolute='`$ECHO "$hardcode_direct_absolute" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13206:hardcode_minus_L='`$ECHO "$hardcode_minus_L" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13207:hardcode_shlibpath_var='`$ECHO "$hardcode_shlibpath_var" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13208:hardcode_automatic='`$ECHO "$hardcode_automatic" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13209:inherit_rpath='`$ECHO "$inherit_rpath" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13210:link_all_deplibs='`$ECHO "$link_all_deplibs" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13211:always_export_symbols='`$ECHO "$always_export_symbols" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13212:export_symbols_cmds='`$ECHO "$export_symbols_cmds" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13213:exclude_expsyms='`$ECHO "$exclude_expsyms" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13214:include_expsyms='`$ECHO "$include_expsyms" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13215:prelink_cmds='`$ECHO "$prelink_cmds" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13216:postlink_cmds='`$ECHO "$postlink_cmds" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13217:file_list_spec='`$ECHO "$file_list_spec" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13218:variables_saved_for_relink='`$ECHO "$variables_saved_for_relink" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13219:need_lib_prefix='`$ECHO "$need_lib_prefix" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13220:need_version='`$ECHO "$need_version" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13221:version_type='`$ECHO "$version_type" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13222:runpath_var='`$ECHO "$runpath_var" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13223:shlibpath_var='`$ECHO "$shlibpath_var" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13224:shlibpath_overrides_runpath='`$ECHO "$shlibpath_overrides_runpath" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13225:libname_spec='`$ECHO "$libname_spec" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13226:library_names_spec='`$ECHO "$library_names_spec" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13227:soname_spec='`$ECHO "$soname_spec" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13228:install_override_mode='`$ECHO "$install_override_mode" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13229:postinstall_cmds='`$ECHO "$postinstall_cmds" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13230:postuninstall_cmds='`$ECHO "$postuninstall_cmds" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13231:finish_cmds='`$ECHO "$finish_cmds" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13232:finish_eval='`$ECHO "$finish_eval" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13233:hardcode_into_libs='`$ECHO "$hardcode_into_libs" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13234:sys_lib_search_path_spec='`$ECHO "$sys_lib_search_path_spec" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13235:configure_time_dlsearch_path='`$ECHO "$configure_time_dlsearch_path" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13236:configure_time_lt_sys_library_path='`$ECHO "$configure_time_lt_sys_library_path" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13237:hardcode_action='`$ECHO "$hardcode_action" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13238:enable_dlopen='`$ECHO "$enable_dlopen" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13239:enable_dlopen_self='`$ECHO "$enable_dlopen_self" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13240:enable_dlopen_self_static='`$ECHO "$enable_dlopen_self_static" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13241:old_striplib='`$ECHO "$old_striplib" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure:13242:striplib='`$ECHO "$striplib" | $SED "$delay_single_quote_subst"`'
bindfs-1.14.7/configure-13243-
##############################################
bindfs-1.14.7/configure-13324-striplib; do
bindfs-1.14.7/configure:13325:    case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in
bindfs-1.14.7/configure-13326-    *[\\\\\\\`\\"\\\$]*)
bindfs-1.14.7/configure:13327:      eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" ## exclude from sc_prohibit_nested_quotes
bindfs-1.14.7/configure-13328-      ;;
##############################################
bindfs-1.14.7/configure-13355-configure_time_lt_sys_library_path; do
bindfs-1.14.7/configure:13356:    case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in
bindfs-1.14.7/configure-13357-    *[\\\\\\\`\\"\\\$]*)
bindfs-1.14.7/configure:13358:      eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" ## exclude from sc_prohibit_nested_quotes
bindfs-1.14.7/configure-13359-      ;;
##############################################
bindfs-1.14.7/configure-13453-fi
bindfs-1.14.7/configure:13454:ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
bindfs-1.14.7/configure-13455-if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
##############################################
bindfs-1.14.7/configure-13470-  as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5
bindfs-1.14.7/configure:13471:ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'`
bindfs-1.14.7/configure-13472-ac_delim='%!_!# '
##############################################
bindfs-1.14.7/configure-13476-
bindfs-1.14.7/configure:13477:  ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X`
bindfs-1.14.7/configure-13478-  if test $ac_delim_n = $ac_delim_num; then
##############################################
bindfs-1.14.7/configure-13614-for ac_last_try in false false :; do
bindfs-1.14.7/configure:13615:  ac_tt=`sed -n "/$ac_delim/p" confdefs.h`
bindfs-1.14.7/configure-13616-  if test -z "$ac_tt"; then
##############################################
bindfs-1.14.7/configure-13746-      esac
bindfs-1.14.7/configure:13747:      case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
bindfs-1.14.7/configure-13748-      as_fn_append ac_file_inputs " '$ac_f'"
##############################################
bindfs-1.14.7/configure-13805-*)
bindfs-1.14.7/configure:13806:  ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
bindfs-1.14.7/configure-13807-  # A ".." for each directory in $ac_dir_suffix.
bindfs-1.14.7/configure:13808:  ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
bindfs-1.14.7/configure-13809-  case $ac_top_builddir_sub in
##############################################
bindfs-1.14.7/configure-13866-/@mandir@/p'
bindfs-1.14.7/configure:13867:case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in
bindfs-1.14.7/configure-13868-*datarootdir*) ac_datarootdir_seen=yes;;
##############################################
bindfs-1.14.7/configure-13883-
bindfs-1.14.7/configure:13884:# Neutralize VPATH when `$srcdir' = `.'.
bindfs-1.14.7/configure-13885-# Shell code in configure.ac might set extrasub.
##############################################
bindfs-1.14.7/configure-13911-test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
bindfs-1.14.7/configure:13912:  { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } &&
bindfs-1.14.7/configure-13913-  { ac_out=`sed -n '/^[	 ]*datarootdir[	 ]*:*=/p' \
##############################################
bindfs-1.14.7/configure-13957-    * )
bindfs-1.14.7/configure:13958:      _am_stamp_count=`expr $_am_stamp_count + 1` ;;
bindfs-1.14.7/configure-13959-  esac
##############################################
bindfs-1.14.7/configure-14004-    # Strip MF so we end up with the name of the file.
bindfs-1.14.7/configure:14005:    mf=`echo "$mf" | sed -e 's/:.*$//'`
bindfs-1.14.7/configure-14006-    # Check whether this is an Automake generated Makefile or not.
##############################################
bindfs-1.14.7/configure-14041-    # from the Makefile without running 'make'.
bindfs-1.14.7/configure:14042:    DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
bindfs-1.14.7/configure-14043-    test -z "$DEPDIR" && continue
bindfs-1.14.7/configure:14044:    am__include=`sed -n 's/^am__include = //p' < "$mf"`
bindfs-1.14.7/configure-14045-    test -z "$am__include" && continue
bindfs-1.14.7/configure:14046:    am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
bindfs-1.14.7/configure-14047-    # Find all dependency output files, they are included files with
##############################################
bindfs-1.14.7/configure-14562-    *:)
bindfs-1.14.7/configure:14563:        eval $1=\"`$ECHO $2 | $SED 's/:/ /g'` \$$1\"
bindfs-1.14.7/configure-14564-        ;;
bindfs-1.14.7/configure-14565-    x:*)
bindfs-1.14.7/configure:14566:        eval $1=\"\$$1 `$ECHO $2 | $SED 's/:/ /g'`\"
bindfs-1.14.7/configure-14567-        ;;
bindfs-1.14.7/configure-14568-    *::*)
bindfs-1.14.7/configure:14569:        eval $1=\"\$$1\ `$ECHO $2 | $SED -e 's/.*:://' -e 's/:/ /g'`\"
bindfs-1.14.7/configure:14570:        eval $1=\"`$ECHO $2 | $SED -e 's/::.*//' -e 's/:/ /g'`\ \$$1\"
bindfs-1.14.7/configure-14571-        ;;
bindfs-1.14.7/configure-14572-    *)
bindfs-1.14.7/configure:14573:        eval $1=\"`$ECHO $2 | $SED 's/:/ /g'`\"
bindfs-1.14.7/configure-14574-        ;;
##############################################
bindfs-1.14.7/configure-14589-    done
bindfs-1.14.7/configure:14590:    func_cc_basename_result=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"`
bindfs-1.14.7/configure-14591-}
##############################################
bindfs-1.14.7/config.sub-52-
bindfs-1.14.7/config.sub:53:me=`echo "$0" | sed -e 's,.*/,,'`
bindfs-1.14.7/config.sub-54-
##############################################
bindfs-1.14.7/config.sub-114-# Here we must recognize all the valid KERNEL-OS combinations.
bindfs-1.14.7/config.sub:115:maybe_os=`echo "$1" | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'`
bindfs-1.14.7/config.sub-116-case $maybe_os in
##############################################
bindfs-1.14.7/config.sub-122-    os=-$maybe_os
bindfs-1.14.7/config.sub:123:    basic_machine=`echo "$1" | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`
bindfs-1.14.7/config.sub-124-    ;;
##############################################
bindfs-1.14.7/config.sub-126-    os=-linux-android
bindfs-1.14.7/config.sub:127:    basic_machine=`echo "$1" | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`-unknown
bindfs-1.14.7/config.sub-128-    ;;
bindfs-1.14.7/config.sub-129-  *)
bindfs-1.14.7/config.sub:130:    basic_machine=`echo "$1" | sed 's/-[^-]*$//'`
bindfs-1.14.7/config.sub-131-    if [ "$basic_machine" != "$1" ]
bindfs-1.14.7/config.sub:132:    then os=`echo "$1" | sed 's/.*-/-/'`
bindfs-1.14.7/config.sub-133-    else os=; fi
##############################################
bindfs-1.14.7/config.sub-180-		os=-sco5v6
bindfs-1.14.7/config.sub:181:		basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'`
bindfs-1.14.7/config.sub-182-		;;
##############################################
bindfs-1.14.7/config.sub-184-		os=-sco3.2v5
bindfs-1.14.7/config.sub:185:		basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'`
bindfs-1.14.7/config.sub-186-		;;
##############################################
bindfs-1.14.7/config.sub-188-		os=-sco3.2v4
bindfs-1.14.7/config.sub:189:		basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'`
bindfs-1.14.7/config.sub-190-		;;
bindfs-1.14.7/config.sub-191-	-sco3.2.[4-9]*)
bindfs-1.14.7/config.sub:192:		os=`echo $os | sed -e 's/sco3.2./sco3.2v/'`
bindfs-1.14.7/config.sub:193:		basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'`
bindfs-1.14.7/config.sub-194-		;;
##############################################
bindfs-1.14.7/config.sub-196-		# Don't forget version if it is 3.2v4 or newer.
bindfs-1.14.7/config.sub:197:		basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'`
bindfs-1.14.7/config.sub-198-		;;
##############################################
bindfs-1.14.7/config.sub-200-		# Don't forget version if it is 3.2v4 or newer.
bindfs-1.14.7/config.sub:201:		basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'`
bindfs-1.14.7/config.sub-202-		;;
##############################################
bindfs-1.14.7/config.sub-204-		os=-sco3.2v2
bindfs-1.14.7/config.sub:205:		basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'`
bindfs-1.14.7/config.sub-206-		;;
bindfs-1.14.7/config.sub-207-	-udk*)
bindfs-1.14.7/config.sub:208:		basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'`
bindfs-1.14.7/config.sub-209-		;;
##############################################
bindfs-1.14.7/config.sub-211-		os=-isc2.2
bindfs-1.14.7/config.sub:212:		basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'`
bindfs-1.14.7/config.sub-213-		;;
##############################################
bindfs-1.14.7/config.sub-217-	-isc*)
bindfs-1.14.7/config.sub:218:		basic_machine=`echo "$1" | sed -e 's/86-.*/86-pc/'`
bindfs-1.14.7/config.sub-219-		;;
##############################################
bindfs-1.14.7/config.sub-229-	-ptx*)
bindfs-1.14.7/config.sub:230:		basic_machine=`echo "$1" | sed -e 's/86-.*/86-sequent/'`
bindfs-1.14.7/config.sub-231-		;;
##############################################
bindfs-1.14.7/config.sub-364-	*-*-*)
bindfs-1.14.7/config.sub:365:		echo Invalid configuration \`"$1"\': machine \`"$basic_machine"\' not recognized 1>&2
bindfs-1.14.7/config.sub-366-		exit 1
##############################################
bindfs-1.14.7/config.sub-493-	amd64-*)
bindfs-1.14.7/config.sub:494:		basic_machine=x86_64-`echo "$basic_machine" | sed 's/^[^-]*-//'`
bindfs-1.14.7/config.sub-495-		;;
##############################################
bindfs-1.14.7/config.sub-538-	blackfin-*)
bindfs-1.14.7/config.sub:539:		basic_machine=bfin-`echo "$basic_machine" | sed 's/^[^-]*-//'`
bindfs-1.14.7/config.sub-540-		os=-linux
##############################################
bindfs-1.14.7/config.sub-546-	c54x-*)
bindfs-1.14.7/config.sub:547:		basic_machine=tic54x-`echo "$basic_machine" | sed 's/^[^-]*-//'`
bindfs-1.14.7/config.sub-548-		;;
bindfs-1.14.7/config.sub-549-	c55x-*)
bindfs-1.14.7/config.sub:550:		basic_machine=tic55x-`echo "$basic_machine" | sed 's/^[^-]*-//'`
bindfs-1.14.7/config.sub-551-		;;
bindfs-1.14.7/config.sub-552-	c6x-*)
bindfs-1.14.7/config.sub:553:		basic_machine=tic6x-`echo "$basic_machine" | sed 's/^[^-]*-//'`
bindfs-1.14.7/config.sub-554-		;;
##############################################
bindfs-1.14.7/config.sub-650-	e500v[12]-*)
bindfs-1.14.7/config.sub:651:		basic_machine=powerpc-`echo "$basic_machine" | sed 's/^[^-]*-//'`
bindfs-1.14.7/config.sub-652-		os=$os"spe"
##############################################
bindfs-1.14.7/config.sub-754-	i*86v32)
bindfs-1.14.7/config.sub:755:		basic_machine=`echo "$1" | sed -e 's/86.*/86-pc/'`
bindfs-1.14.7/config.sub-756-		os=-sysv32
##############################################
bindfs-1.14.7/config.sub-758-	i*86v4*)
bindfs-1.14.7/config.sub:759:		basic_machine=`echo "$1" | sed -e 's/86.*/86-pc/'`
bindfs-1.14.7/config.sub-760-		os=-sysv4
##############################################
bindfs-1.14.7/config.sub-762-	i*86v)
bindfs-1.14.7/config.sub:763:		basic_machine=`echo "$1" | sed -e 's/86.*/86-pc/'`
bindfs-1.14.7/config.sub-764-		os=-sysv
##############################################
bindfs-1.14.7/config.sub-766-	i*86sol2)
bindfs-1.14.7/config.sub:767:		basic_machine=`echo "$1" | sed -e 's/86.*/86-pc/'`
bindfs-1.14.7/config.sub-768-		os=-solaris2
##############################################
bindfs-1.14.7/config.sub-792-	leon-*|leon[3-9]-*)
bindfs-1.14.7/config.sub:793:		basic_machine=sparc-`echo "$basic_machine" | sed 's/-.*//'`
bindfs-1.14.7/config.sub-794-		;;
##############################################
bindfs-1.14.7/config.sub-799-	m68knommu-*)
bindfs-1.14.7/config.sub:800:		basic_machine=m68k-`echo "$basic_machine" | sed 's/^[^-]*-//'`
bindfs-1.14.7/config.sub-801-		os=-linux
##############################################
bindfs-1.14.7/config.sub-833-	mips3*-*)
bindfs-1.14.7/config.sub:834:		basic_machine=`echo "$basic_machine" | sed -e 's/mips3/mips64/'`
bindfs-1.14.7/config.sub-835-		;;
bindfs-1.14.7/config.sub-836-	mips3*)
bindfs-1.14.7/config.sub:837:		basic_machine=`echo "$basic_machine" | sed -e 's/mips3/mips64/'`-unknown
bindfs-1.14.7/config.sub-838-		;;
##############################################
bindfs-1.14.7/config.sub-855-	ms1-*)
bindfs-1.14.7/config.sub:856:		basic_machine=`echo "$basic_machine" | sed -e 's/ms1-/mt-/'`
bindfs-1.14.7/config.sub-857-		;;
##############################################
bindfs-1.14.7/config.sub-980-	parisc-*)
bindfs-1.14.7/config.sub:981:		basic_machine=hppa-`echo "$basic_machine" | sed 's/^[^-]*-//'`
bindfs-1.14.7/config.sub-982-		os=-linux
##############################################
bindfs-1.14.7/config.sub-996-	pc98-*)
bindfs-1.14.7/config.sub:997:		basic_machine=i386-`echo "$basic_machine" | sed 's/^[^-]*-//'`
bindfs-1.14.7/config.sub-998-		;;
##############################################
bindfs-1.14.7/config.sub-1011-	pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*)
bindfs-1.14.7/config.sub:1012:		basic_machine=i586-`echo "$basic_machine" | sed 's/^[^-]*-//'`
bindfs-1.14.7/config.sub-1013-		;;
bindfs-1.14.7/config.sub-1014-	pentiumpro-* | p6-* | 6x86-* | athlon-*)
bindfs-1.14.7/config.sub:1015:		basic_machine=i686-`echo "$basic_machine" | sed 's/^[^-]*-//'`
bindfs-1.14.7/config.sub-1016-		;;
bindfs-1.14.7/config.sub-1017-	pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*)
bindfs-1.14.7/config.sub:1018:		basic_machine=i686-`echo "$basic_machine" | sed 's/^[^-]*-//'`
bindfs-1.14.7/config.sub-1019-		;;
bindfs-1.14.7/config.sub-1020-	pentium4-*)
bindfs-1.14.7/config.sub:1021:		basic_machine=i786-`echo "$basic_machine" | sed 's/^[^-]*-//'`
bindfs-1.14.7/config.sub-1022-		;;
##############################################
bindfs-1.14.7/config.sub-1030-	ppc-* | ppcbe-*)
bindfs-1.14.7/config.sub:1031:		basic_machine=powerpc-`echo "$basic_machine" | sed 's/^[^-]*-//'`
bindfs-1.14.7/config.sub-1032-		;;
##############################################
bindfs-1.14.7/config.sub-1036-	ppcle-* | powerpclittle-*)
bindfs-1.14.7/config.sub:1037:		basic_machine=powerpcle-`echo "$basic_machine" | sed 's/^[^-]*-//'`
bindfs-1.14.7/config.sub-1038-		;;
##############################################
bindfs-1.14.7/config.sub-1040-		;;
bindfs-1.14.7/config.sub:1041:	ppc64-*) basic_machine=powerpc64-`echo "$basic_machine" | sed 's/^[^-]*-//'`
bindfs-1.14.7/config.sub-1042-		;;
##############################################
bindfs-1.14.7/config.sub-1046-	ppc64le-* | powerpc64little-*)
bindfs-1.14.7/config.sub:1047:		basic_machine=powerpc64le-`echo "$basic_machine" | sed 's/^[^-]*-//'`
bindfs-1.14.7/config.sub-1048-		;;
##############################################
bindfs-1.14.7/config.sub-1122-	strongarm-* | thumb-*)
bindfs-1.14.7/config.sub:1123:		basic_machine=arm-`echo "$basic_machine" | sed 's/^[^-]*-//'`
bindfs-1.14.7/config.sub-1124-		;;
##############################################
bindfs-1.14.7/config.sub-1255-	xscale-* | xscalee[bl]-*)
bindfs-1.14.7/config.sub:1256:		basic_machine=`echo "$basic_machine" | sed 's/^xscale/arm/'`
bindfs-1.14.7/config.sub-1257-		;;
##############################################
bindfs-1.14.7/config.sub-1317-	*)
bindfs-1.14.7/config.sub:1318:		echo Invalid configuration \`"$1"\': machine \`"$basic_machine"\' not recognized 1>&2
bindfs-1.14.7/config.sub-1319-		exit 1
##############################################
bindfs-1.14.7/config.sub-1325-	*-digital*)
bindfs-1.14.7/config.sub:1326:		basic_machine=`echo "$basic_machine" | sed 's/digital.*/dec/'`
bindfs-1.14.7/config.sub-1327-		;;
bindfs-1.14.7/config.sub-1328-	*-commodore*)
bindfs-1.14.7/config.sub:1329:		basic_machine=`echo "$basic_machine" | sed 's/commodore.*/cbm/'`
bindfs-1.14.7/config.sub-1330-		;;
##############################################
bindfs-1.14.7/config.sub-1346-	-solaris1 | -solaris1.*)
bindfs-1.14.7/config.sub:1347:		os=`echo $os | sed -e 's|solaris1|sunos4|'`
bindfs-1.14.7/config.sub-1348-		;;
##############################################
bindfs-1.14.7/config.sub-1355-	-gnu/linux*)
bindfs-1.14.7/config.sub:1356:		os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'`
bindfs-1.14.7/config.sub-1357-		;;
##############################################
bindfs-1.14.7/config.sub-1407-	-nto*)
bindfs-1.14.7/config.sub:1408:		os=`echo $os | sed -e 's|nto|nto-qnx|'`
bindfs-1.14.7/config.sub-1409-		;;
##############################################
bindfs-1.14.7/config.sub-1414-	-mac*)
bindfs-1.14.7/config.sub:1415:		os=`echo "$os" | sed -e 's|mac|macos|'`
bindfs-1.14.7/config.sub-1416-		;;
##############################################
bindfs-1.14.7/config.sub-1420-	-linux*)
bindfs-1.14.7/config.sub:1421:		os=`echo $os | sed -e 's|linux|linux-gnu|'`
bindfs-1.14.7/config.sub-1422-		;;
bindfs-1.14.7/config.sub-1423-	-sunos5*)
bindfs-1.14.7/config.sub:1424:		os=`echo "$os" | sed -e 's|sunos5|solaris2|'`
bindfs-1.14.7/config.sub-1425-		;;
bindfs-1.14.7/config.sub-1426-	-sunos6*)
bindfs-1.14.7/config.sub:1427:		os=`echo "$os" | sed -e 's|sunos6|solaris3|'`
bindfs-1.14.7/config.sub-1428-		;;
##############################################
bindfs-1.14.7/config.sub-1469-	-sinix5.*)
bindfs-1.14.7/config.sub:1470:		os=`echo $os | sed -e 's|sinix|sysv|'`
bindfs-1.14.7/config.sub-1471-		;;
##############################################
bindfs-1.14.7/config.sub-1528-		# Get rid of the `-' at the beginning of $os.
bindfs-1.14.7/config.sub:1529:		os=`echo $os | sed 's/[^-]*-//'`
bindfs-1.14.7/config.sub:1530:		echo Invalid configuration \`"$1"\': system \`"$os"\' not recognized 1>&2
bindfs-1.14.7/config.sub-1531-		exit 1
##############################################
bindfs-1.14.7/config.sub-1788-		esac
bindfs-1.14.7/config.sub:1789:		basic_machine=`echo "$basic_machine" | sed "s/unknown/$vendor/"`
bindfs-1.14.7/config.sub-1790-		;;
##############################################
bindfs-1.14.7/install-sh-234-      fi
bindfs-1.14.7/install-sh:235:      cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;;
bindfs-1.14.7/install-sh-236-    *)
##############################################
bindfs-1.14.7/install-sh-281-      dstdir=$dst
bindfs-1.14.7/install-sh:282:      dst=$dstdir/`basename "$src"`
bindfs-1.14.7/install-sh-283-      dstdir_status=0
bindfs-1.14.7/install-sh-284-    else
bindfs-1.14.7/install-sh:285:      dstdir=`dirname "$dst"`
bindfs-1.14.7/install-sh-286-      test -d "$dstdir"
##############################################
bindfs-1.14.7/install-sh-344-                   test_tmpdir="$tmpdir/a"
bindfs-1.14.7/install-sh:345:                   ls_ld_tmpdir=`ls -ld "$test_tmpdir"`
bindfs-1.14.7/install-sh-346-                   case $ls_ld_tmpdir in
##############################################
bindfs-1.14.7/install-sh-351-                   $mkdirprog -m$different_mode -p -- "$test_tmpdir" && {
bindfs-1.14.7/install-sh:352:                     ls_ld_tmpdir_1=`ls -ld "$test_tmpdir"`
bindfs-1.14.7/install-sh-353-                     test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1"
##############################################
bindfs-1.14.7/install-sh-409-            case $prefix in
bindfs-1.14.7/install-sh:410:              *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;;
bindfs-1.14.7/install-sh-411-              *) qprefix=$prefix;;
##############################################
bindfs-1.14.7/install-sh-458-    if $copy_on_change &&
bindfs-1.14.7/install-sh:459:       old=`LC_ALL=C ls -dlL "$dst"     2>/dev/null` &&
bindfs-1.14.7/install-sh:460:       new=`LC_ALL=C ls -dlL "$dsttmp"  2>/dev/null` &&
bindfs-1.14.7/install-sh-461-       set -f &&