nutcracker 0.4.1.22 → 0.4.1.23

Sign up to get free protection for your applications and to get access to all the features.
Files changed (42) hide show
  1. checksums.yaml +4 -4
  2. data/ext/nutcracker/Makefile.in +9 -6
  3. data/ext/nutcracker/aclocal.m4 +86 -103
  4. data/ext/nutcracker/autom4te.cache/output.0 +96 -95
  5. data/ext/nutcracker/autom4te.cache/output.1 +96 -95
  6. data/ext/nutcracker/autom4te.cache/requests +221 -221
  7. data/ext/nutcracker/autom4te.cache/traces.0 +92 -106
  8. data/ext/nutcracker/autom4te.cache/traces.1 +9 -9
  9. data/ext/nutcracker/config/compile +4 -4
  10. data/ext/nutcracker/config/config.guess +281 -278
  11. data/ext/nutcracker/config/config.sub +107 -142
  12. data/ext/nutcracker/config/depcomp +4 -4
  13. data/ext/nutcracker/config/install-sh +31 -14
  14. data/ext/nutcracker/config/missing +7 -7
  15. data/ext/nutcracker/configure +96 -95
  16. data/ext/nutcracker/contrib/Makefile.in +9 -6
  17. data/ext/nutcracker/contrib/yaml-0.1.4/Makefile.in +9 -6
  18. data/ext/nutcracker/contrib/yaml-0.1.4/aclocal.m4 +86 -103
  19. data/ext/nutcracker/contrib/yaml-0.1.4/autom4te.cache/output.0 +96 -95
  20. data/ext/nutcracker/contrib/yaml-0.1.4/autom4te.cache/output.1 +96 -95
  21. data/ext/nutcracker/contrib/yaml-0.1.4/autom4te.cache/output.2 +96 -95
  22. data/ext/nutcracker/contrib/yaml-0.1.4/autom4te.cache/requests +390 -390
  23. data/ext/nutcracker/contrib/yaml-0.1.4/autom4te.cache/traces.0 +92 -106
  24. data/ext/nutcracker/contrib/yaml-0.1.4/autom4te.cache/traces.1 +9 -9
  25. data/ext/nutcracker/contrib/yaml-0.1.4/autom4te.cache/traces.2 +92 -106
  26. data/ext/nutcracker/contrib/yaml-0.1.4/config/compile +4 -4
  27. data/ext/nutcracker/contrib/yaml-0.1.4/config/config.guess +281 -278
  28. data/ext/nutcracker/contrib/yaml-0.1.4/config/config.sub +107 -142
  29. data/ext/nutcracker/contrib/yaml-0.1.4/config/depcomp +4 -4
  30. data/ext/nutcracker/contrib/yaml-0.1.4/config/install-sh +31 -14
  31. data/ext/nutcracker/contrib/yaml-0.1.4/config/missing +7 -7
  32. data/ext/nutcracker/contrib/yaml-0.1.4/config/test-driver +4 -4
  33. data/ext/nutcracker/contrib/yaml-0.1.4/configure +96 -95
  34. data/ext/nutcracker/contrib/yaml-0.1.4/src/Makefile.in +53 -26
  35. data/ext/nutcracker/contrib/yaml-0.1.4/tests/Makefile.in +58 -22
  36. data/ext/nutcracker/src/Makefile.in +93 -41
  37. data/ext/nutcracker/src/event/Makefile.in +36 -21
  38. data/ext/nutcracker/src/hashkit/Makefile.in +64 -29
  39. data/ext/nutcracker/src/proto/Makefile.in +33 -20
  40. data/lib/nutcracker.rb +6 -4
  41. data/lib/nutcracker/version.rb +1 -1
  42. metadata +5 -4
@@ -1,9 +1,9 @@
1
1
  #! /bin/sh
2
2
  # depcomp - compile a program generating dependencies as side-effects
3
3
 
4
- scriptversion=2016-01-11.22; # UTC
4
+ scriptversion=2018-03-07.03; # UTC
5
5
 
6
- # Copyright (C) 1999-2017 Free Software Foundation, Inc.
6
+ # Copyright (C) 1999-2018 Free Software Foundation, Inc.
7
7
 
8
8
  # This program is free software; you can redistribute it and/or modify
9
9
  # it under the terms of the GNU General Public License as published by
@@ -16,7 +16,7 @@ scriptversion=2016-01-11.22; # UTC
16
16
  # GNU General Public License for more details.
17
17
 
18
18
  # You should have received a copy of the GNU General Public License
19
- # along with this program. If not, see <http://www.gnu.org/licenses/>.
19
+ # along with this program. If not, see <https://www.gnu.org/licenses/>.
20
20
 
21
21
  # As a special exception to the GNU General Public License, if you
22
22
  # distribute this file as part of a program that contains a
@@ -783,7 +783,7 @@ exit 0
783
783
  # Local Variables:
784
784
  # mode: shell-script
785
785
  # sh-indentation: 2
786
- # eval: (add-hook 'write-file-hooks 'time-stamp)
786
+ # eval: (add-hook 'before-save-hook 'time-stamp)
787
787
  # time-stamp-start: "scriptversion="
788
788
  # time-stamp-format: "%:y-%02m-%02d.%02H"
789
789
  # time-stamp-time-zone: "UTC0"
@@ -1,7 +1,7 @@
1
1
  #!/bin/sh
2
2
  # install - install a program, script, or datafile
3
3
 
4
- scriptversion=2016-01-11.22; # UTC
4
+ scriptversion=2018-03-11.20; # UTC
5
5
 
6
6
  # This originates from X11R5 (mit/util/scripts/install.sh), which was
7
7
  # later released in X11R6 (xc/config/util/install.sh) with the
@@ -271,15 +271,18 @@ do
271
271
  fi
272
272
  dst=$dst_arg
273
273
 
274
- # If destination is a directory, append the input filename; won't work
275
- # if double slashes aren't ignored.
274
+ # If destination is a directory, append the input filename.
276
275
  if test -d "$dst"; then
277
276
  if test "$is_target_a_directory" = never; then
278
277
  echo "$0: $dst_arg: Is a directory" >&2
279
278
  exit 1
280
279
  fi
281
280
  dstdir=$dst
282
- dst=$dstdir/`basename "$src"`
281
+ dstbase=`basename "$src"`
282
+ case $dst in
283
+ */) dst=$dst$dstbase;;
284
+ *) dst=$dst/$dstbase;;
285
+ esac
283
286
  dstdir_status=0
284
287
  else
285
288
  dstdir=`dirname "$dst"`
@@ -288,6 +291,11 @@ do
288
291
  fi
289
292
  fi
290
293
 
294
+ case $dstdir in
295
+ */) dstdirslash=$dstdir;;
296
+ *) dstdirslash=$dstdir/;;
297
+ esac
298
+
291
299
  obsolete_mkdir_used=false
292
300
 
293
301
  if test $dstdir_status != 0; then
@@ -324,34 +332,43 @@ do
324
332
  # is incompatible with FreeBSD 'install' when (umask & 300) != 0.
325
333
  ;;
326
334
  *)
335
+ # Note that $RANDOM variable is not portable (e.g. dash); Use it
336
+ # here however when possible just to lower collision chance.
327
337
  tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$
328
- trap 'ret=$?; rmdir "$tmpdir/d" "$tmpdir" 2>/dev/null; exit $ret' 0
329
338
 
339
+ trap 'ret=$?; rmdir "$tmpdir/a/b" "$tmpdir/a" "$tmpdir" 2>/dev/null; exit $ret' 0
340
+
341
+ # Because "mkdir -p" follows existing symlinks and we likely work
342
+ # directly in world-writeable /tmp, make sure that the '$tmpdir'
343
+ # directory is successfully created first before we actually test
344
+ # 'mkdir -p' feature.
330
345
  if (umask $mkdir_umask &&
331
- exec $mkdirprog $mkdir_mode -p -- "$tmpdir/d") >/dev/null 2>&1
346
+ $mkdirprog $mkdir_mode "$tmpdir" &&
347
+ exec $mkdirprog $mkdir_mode -p -- "$tmpdir/a/b") >/dev/null 2>&1
332
348
  then
333
349
  if test -z "$dir_arg" || {
334
350
  # Check for POSIX incompatibilities with -m.
335
351
  # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or
336
352
  # other-writable bit of parent directory when it shouldn't.
337
353
  # FreeBSD 6.1 mkdir -m -p sets mode of existing directory.
338
- ls_ld_tmpdir=`ls -ld "$tmpdir"`
354
+ test_tmpdir="$tmpdir/a"
355
+ ls_ld_tmpdir=`ls -ld "$test_tmpdir"`
339
356
  case $ls_ld_tmpdir in
340
357
  d????-?r-*) different_mode=700;;
341
358
  d????-?--*) different_mode=755;;
342
359
  *) false;;
343
360
  esac &&
344
- $mkdirprog -m$different_mode -p -- "$tmpdir" && {
345
- ls_ld_tmpdir_1=`ls -ld "$tmpdir"`
361
+ $mkdirprog -m$different_mode -p -- "$test_tmpdir" && {
362
+ ls_ld_tmpdir_1=`ls -ld "$test_tmpdir"`
346
363
  test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1"
347
364
  }
348
365
  }
349
366
  then posix_mkdir=:
350
367
  fi
351
- rmdir "$tmpdir/d" "$tmpdir"
368
+ rmdir "$tmpdir/a/b" "$tmpdir/a" "$tmpdir"
352
369
  else
353
370
  # Remove any dirs left behind by ancient mkdir implementations.
354
- rmdir ./$mkdir_mode ./-p ./-- 2>/dev/null
371
+ rmdir ./$mkdir_mode ./-p ./-- "$tmpdir" 2>/dev/null
355
372
  fi
356
373
  trap '' 0;;
357
374
  esac;;
@@ -427,8 +444,8 @@ do
427
444
  else
428
445
 
429
446
  # Make a couple of temp file names in the proper directory.
430
- dsttmp=$dstdir/_inst.$$_
431
- rmtmp=$dstdir/_rm.$$_
447
+ dsttmp=${dstdirslash}_inst.$$_
448
+ rmtmp=${dstdirslash}_rm.$$_
432
449
 
433
450
  # Trap to clean up those temp files at exit.
434
451
  trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0
@@ -493,7 +510,7 @@ do
493
510
  done
494
511
 
495
512
  # Local variables:
496
- # eval: (add-hook 'write-file-hooks 'time-stamp)
513
+ # eval: (add-hook 'before-save-hook 'time-stamp)
497
514
  # time-stamp-start: "scriptversion="
498
515
  # time-stamp-format: "%:y-%02m-%02d.%02H"
499
516
  # time-stamp-time-zone: "UTC0"
@@ -1,9 +1,9 @@
1
1
  #! /bin/sh
2
2
  # Common wrapper for a few potentially missing GNU programs.
3
3
 
4
- scriptversion=2016-01-11.22; # UTC
4
+ scriptversion=2018-03-07.03; # UTC
5
5
 
6
- # Copyright (C) 1996-2017 Free Software Foundation, Inc.
6
+ # Copyright (C) 1996-2018 Free Software Foundation, Inc.
7
7
  # Originally written by Fran,cois Pinard <pinard@iro.umontreal.ca>, 1996.
8
8
 
9
9
  # This program is free software; you can redistribute it and/or modify
@@ -17,7 +17,7 @@ scriptversion=2016-01-11.22; # UTC
17
17
  # GNU General Public License for more details.
18
18
 
19
19
  # You should have received a copy of the GNU General Public License
20
- # along with this program. If not, see <http://www.gnu.org/licenses/>.
20
+ # along with this program. If not, see <https://www.gnu.org/licenses/>.
21
21
 
22
22
  # As a special exception to the GNU General Public License, if you
23
23
  # distribute this file as part of a program that contains a
@@ -101,9 +101,9 @@ else
101
101
  exit $st
102
102
  fi
103
103
 
104
- perl_URL=http://www.perl.org/
105
- flex_URL=http://flex.sourceforge.net/
106
- gnu_software_URL=http://www.gnu.org/software
104
+ perl_URL=https://www.perl.org/
105
+ flex_URL=https://github.com/westes/flex
106
+ gnu_software_URL=https://www.gnu.org/software
107
107
 
108
108
  program_details ()
109
109
  {
@@ -207,7 +207,7 @@ give_advice "$1" | sed -e '1s/^/WARNING: /' \
207
207
  exit $st
208
208
 
209
209
  # Local variables:
210
- # eval: (add-hook 'write-file-hooks 'time-stamp)
210
+ # eval: (add-hook 'before-save-hook 'time-stamp)
211
211
  # time-stamp-start: "scriptversion="
212
212
  # time-stamp-format: "%:y-%02m-%02d.%02H"
213
213
  # time-stamp-time-zone: "UTC0"
@@ -690,7 +690,6 @@ am__nodep
690
690
  AMDEPBACKSLASH
691
691
  AMDEP_FALSE
692
692
  AMDEP_TRUE
693
- am__quote
694
693
  am__include
695
694
  DEPDIR
696
695
  OBJEXT
@@ -764,7 +763,8 @@ PACKAGE_VERSION
764
763
  PACKAGE_TARNAME
765
764
  PACKAGE_NAME
766
765
  PATH_SEPARATOR
767
- SHELL'
766
+ SHELL
767
+ am__quote'
768
768
  ac_subst_files=''
769
769
  ac_user_opts='
770
770
  enable_option_checking
@@ -2580,7 +2580,7 @@ ac_config_headers="$ac_config_headers config.h:config.h.in"
2580
2580
 
2581
2581
 
2582
2582
  # Initialize automake
2583
- am__api_version='1.15'
2583
+ am__api_version='1.16'
2584
2584
 
2585
2585
  # Find a good install program. We prefer a C program (faster),
2586
2586
  # so one script is as good as another. But avoid the broken or
@@ -3096,8 +3096,8 @@ MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"}
3096
3096
 
3097
3097
  # For better backward compatibility. To be removed once Automake 1.9.x
3098
3098
  # dies out for good. For more background, see:
3099
- # <http://lists.gnu.org/archive/html/automake/2012-07/msg00001.html>
3100
- # <http://lists.gnu.org/archive/html/automake/2012-07/msg00014.html>
3099
+ # <https://lists.gnu.org/archive/html/automake/2012-07/msg00001.html>
3100
+ # <https://lists.gnu.org/archive/html/automake/2012-07/msg00014.html>
3101
3101
  mkdir_p='$(MKDIR_P)'
3102
3102
 
3103
3103
  # We need awk for the "check" target (and possibly the TAP driver). The
@@ -3148,7 +3148,7 @@ END
3148
3148
  Aborting the configuration process, to ensure you take notice of the issue.
3149
3149
 
3150
3150
  You can download and install GNU coreutils to get an 'rm' implementation
3151
- that behaves properly: <http://www.gnu.org/software/coreutils/>.
3151
+ that behaves properly: <https://www.gnu.org/software/coreutils/>.
3152
3152
 
3153
3153
  If you want to complete the configuration process using your problematic
3154
3154
  'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM
@@ -4076,45 +4076,45 @@ DEPDIR="${am__leading_dot}deps"
4076
4076
 
4077
4077
  ac_config_commands="$ac_config_commands depfiles"
4078
4078
 
4079
-
4080
- am_make=${MAKE-make}
4081
- cat > confinc << 'END'
4079
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} supports the include directive" >&5
4080
+ $as_echo_n "checking whether ${MAKE-make} supports the include directive... " >&6; }
4081
+ cat > confinc.mk << 'END'
4082
4082
  am__doit:
4083
- @echo this is the am__doit target
4083
+ @echo this is the am__doit target >confinc.out
4084
4084
  .PHONY: am__doit
4085
4085
  END
4086
- # If we don't find an include directive, just comment out the code.
4087
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for style of include used by $am_make" >&5
4088
- $as_echo_n "checking for style of include used by $am_make... " >&6; }
4089
4086
  am__include="#"
4090
4087
  am__quote=
4091
- _am_result=none
4092
- # First try GNU make style include.
4093
- echo "include confinc" > confmf
4094
- # Ignore all kinds of additional output from 'make'.
4095
- case `$am_make -s -f confmf 2> /dev/null` in #(
4096
- *the\ am__doit\ target*)
4097
- am__include=include
4098
- am__quote=
4099
- _am_result=GNU
4100
- ;;
4101
- esac
4102
- # Now try BSD make style include.
4103
- if test "$am__include" = "#"; then
4104
- echo '.include "confinc"' > confmf
4105
- case `$am_make -s -f confmf 2> /dev/null` in #(
4106
- *the\ am__doit\ target*)
4107
- am__include=.include
4108
- am__quote="\""
4109
- _am_result=BSD
4088
+ # BSD make does it like this.
4089
+ echo '.include "confinc.mk" # ignored' > confmf.BSD
4090
+ # Other make implementations (GNU, Solaris 10, AIX) do it like this.
4091
+ echo 'include confinc.mk # ignored' > confmf.GNU
4092
+ _am_result=no
4093
+ for s in GNU BSD; do
4094
+ { echo "$as_me:$LINENO: ${MAKE-make} -f confmf.$s && cat confinc.out" >&5
4095
+ (${MAKE-make} -f confmf.$s && cat confinc.out) >&5 2>&5
4096
+ ac_status=$?
4097
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
4098
+ (exit $ac_status); }
4099
+ case $?:`cat confinc.out 2>/dev/null` in #(
4100
+ '0:this is the am__doit target') :
4101
+ case $s in #(
4102
+ BSD) :
4103
+ am__include='.include' am__quote='"' ;; #(
4104
+ *) :
4105
+ am__include='include' am__quote='' ;;
4106
+ esac ;; #(
4107
+ *) :
4110
4108
  ;;
4111
- esac
4112
- fi
4113
-
4114
-
4115
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $_am_result" >&5
4116
- $as_echo "$_am_result" >&6; }
4117
- rm -f confinc confmf
4109
+ esac
4110
+ if test "$am__include" != "#"; then
4111
+ _am_result="yes ($s style)"
4112
+ break
4113
+ fi
4114
+ done
4115
+ rm -f confinc.* confmf.*
4116
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${_am_result}" >&5
4117
+ $as_echo "${_am_result}" >&6; }
4118
4118
 
4119
4119
  # Check whether --enable-dependency-tracking was given.
4120
4120
  if test "${enable_dependency_tracking+set}" = set; then :
@@ -18469,7 +18469,7 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
18469
18469
  #
18470
18470
  # INIT-COMMANDS
18471
18471
  #
18472
- AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"
18472
+ AMDEP_TRUE="$AMDEP_TRUE" MAKE="${MAKE-make}"
18473
18473
 
18474
18474
 
18475
18475
  # The HP-UX ksh and POSIX shell print the target directory to stdout
@@ -19468,29 +19468,35 @@ $as_echo "$as_me: executing $ac_file commands" >&6;}
19468
19468
  # Older Autoconf quotes --file arguments for eval, but not when files
19469
19469
  # are listed without --file. Let's play safe and only enable the eval
19470
19470
  # if we detect the quoting.
19471
- case $CONFIG_FILES in
19472
- *\'*) eval set x "$CONFIG_FILES" ;;
19473
- *) set x $CONFIG_FILES ;;
19474
- esac
19471
+ # TODO: see whether this extra hack can be removed once we start
19472
+ # requiring Autoconf 2.70 or later.
19473
+ case $CONFIG_FILES in #(
19474
+ *\'*) :
19475
+ eval set x "$CONFIG_FILES" ;; #(
19476
+ *) :
19477
+ set x $CONFIG_FILES ;; #(
19478
+ *) :
19479
+ ;;
19480
+ esac
19475
19481
  shift
19476
- for mf
19482
+ # Used to flag and report bootstrapping failures.
19483
+ am_rc=0
19484
+ for am_mf
19477
19485
  do
19478
19486
  # Strip MF so we end up with the name of the file.
19479
- mf=`echo "$mf" | sed -e 's/:.*$//'`
19480
- # Check whether this is an Automake generated Makefile or not.
19481
- # We used to match only the files named 'Makefile.in', but
19482
- # some people rename them; so instead we look at the file content.
19483
- # Grep'ing the first line is not enough: some people post-process
19484
- # each Makefile.in and add a new line on top of each file to say so.
19485
- # Grep'ing the whole file is not good either: AIX grep has a line
19487
+ am_mf=`$as_echo "$am_mf" | sed -e 's/:.*$//'`
19488
+ # Check whether this is an Automake generated Makefile which includes
19489
+ # dependency-tracking related rules and includes.
19490
+ # Grep'ing the whole file directly is not great: AIX grep has a line
19486
19491
  # limit of 2048, but all sed's we know have understand at least 4000.
19487
- if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
19488
- dirpart=`$as_dirname -- "$mf" ||
19489
- $as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
19490
- X"$mf" : 'X\(//\)[^/]' \| \
19491
- X"$mf" : 'X\(//\)$' \| \
19492
- X"$mf" : 'X\(/\)' \| . 2>/dev/null ||
19493
- $as_echo X"$mf" |
19492
+ sed -n 's,^am--depfiles:.*,X,p' "$am_mf" | grep X >/dev/null 2>&1 \
19493
+ || continue
19494
+ am_dirpart=`$as_dirname -- "$am_mf" ||
19495
+ $as_expr X"$am_mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
19496
+ X"$am_mf" : 'X\(//\)[^/]' \| \
19497
+ X"$am_mf" : 'X\(//\)$' \| \
19498
+ X"$am_mf" : 'X\(/\)' \| . 2>/dev/null ||
19499
+ $as_echo X"$am_mf" |
19494
19500
  sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
19495
19501
  s//\1/
19496
19502
  q
@@ -19508,53 +19514,48 @@ $as_echo X"$mf" |
19508
19514
  q
19509
19515
  }
19510
19516
  s/.*/./; q'`
19511
- else
19512
- continue
19513
- fi
19514
- # Extract the definition of DEPDIR, am__include, and am__quote
19515
- # from the Makefile without running 'make'.
19516
- DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
19517
- test -z "$DEPDIR" && continue
19518
- am__include=`sed -n 's/^am__include = //p' < "$mf"`
19519
- test -z "$am__include" && continue
19520
- am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
19521
- # Find all dependency output files, they are included files with
19522
- # $(DEPDIR) in their names. We invoke sed twice because it is the
19523
- # simplest approach to changing $(DEPDIR) to its actual value in the
19524
- # expansion.
19525
- for file in `sed -n "
19526
- s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
19527
- sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do
19528
- # Make sure the directory exists.
19529
- test -f "$dirpart/$file" && continue
19530
- fdir=`$as_dirname -- "$file" ||
19531
- $as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
19532
- X"$file" : 'X\(//\)[^/]' \| \
19533
- X"$file" : 'X\(//\)$' \| \
19534
- X"$file" : 'X\(/\)' \| . 2>/dev/null ||
19535
- $as_echo X"$file" |
19536
- sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
19537
- s//\1/
19538
- q
19539
- }
19540
- /^X\(\/\/\)[^/].*/{
19517
+ am_filepart=`$as_basename -- "$am_mf" ||
19518
+ $as_expr X/"$am_mf" : '.*/\([^/][^/]*\)/*$' \| \
19519
+ X"$am_mf" : 'X\(//\)$' \| \
19520
+ X"$am_mf" : 'X\(/\)' \| . 2>/dev/null ||
19521
+ $as_echo X/"$am_mf" |
19522
+ sed '/^.*\/\([^/][^/]*\)\/*$/{
19541
19523
  s//\1/
19542
19524
  q
19543
19525
  }
19544
- /^X\(\/\/\)$/{
19526
+ /^X\/\(\/\/\)$/{
19545
19527
  s//\1/
19546
19528
  q
19547
19529
  }
19548
- /^X\(\/\).*/{
19530
+ /^X\/\(\/\).*/{
19549
19531
  s//\1/
19550
19532
  q
19551
19533
  }
19552
19534
  s/.*/./; q'`
19553
- as_dir=$dirpart/$fdir; as_fn_mkdir_p
19554
- # echo "creating $dirpart/$file"
19555
- echo '# dummy' > "$dirpart/$file"
19556
- done
19535
+ { echo "$as_me:$LINENO: cd "$am_dirpart" \
19536
+ && sed -e '/# am--include-marker/d' "$am_filepart" \
19537
+ | $MAKE -f - am--depfiles" >&5
19538
+ (cd "$am_dirpart" \
19539
+ && sed -e '/# am--include-marker/d' "$am_filepart" \
19540
+ | $MAKE -f - am--depfiles) >&5 2>&5
19541
+ ac_status=$?
19542
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
19543
+ (exit $ac_status); } || am_rc=$?
19557
19544
  done
19545
+ if test $am_rc -ne 0; then
19546
+ { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
19547
+ $as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
19548
+ as_fn_error $? "Something went wrong bootstrapping makefile fragments
19549
+ for automatic dependency tracking. Try re-running configure with the
19550
+ '--disable-dependency-tracking' option to at least be able to build
19551
+ the package (albeit without support for automatic dependency tracking).
19552
+ See \`config.log' for more details" "$LINENO" 5; }
19553
+ fi
19554
+ { am_dirpart=; unset am_dirpart;}
19555
+ { am_filepart=; unset am_filepart;}
19556
+ { am_mf=; unset am_mf;}
19557
+ { am_rc=; unset am_rc;}
19558
+ rm -f conftest-deps.mk
19558
19559
  }
19559
19560
  ;;
19560
19561
  "libtool":C)