nutcracker 0.4.1.22 → 0.4.1.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/ext/nutcracker/Makefile.in +9 -6
- data/ext/nutcracker/aclocal.m4 +86 -103
- data/ext/nutcracker/autom4te.cache/output.0 +96 -95
- data/ext/nutcracker/autom4te.cache/output.1 +96 -95
- data/ext/nutcracker/autom4te.cache/requests +221 -221
- data/ext/nutcracker/autom4te.cache/traces.0 +92 -106
- data/ext/nutcracker/autom4te.cache/traces.1 +9 -9
- data/ext/nutcracker/config/compile +4 -4
- data/ext/nutcracker/config/config.guess +281 -278
- data/ext/nutcracker/config/config.sub +107 -142
- data/ext/nutcracker/config/depcomp +4 -4
- data/ext/nutcracker/config/install-sh +31 -14
- data/ext/nutcracker/config/missing +7 -7
- data/ext/nutcracker/configure +96 -95
- data/ext/nutcracker/contrib/Makefile.in +9 -6
- data/ext/nutcracker/contrib/yaml-0.1.4/Makefile.in +9 -6
- data/ext/nutcracker/contrib/yaml-0.1.4/aclocal.m4 +86 -103
- data/ext/nutcracker/contrib/yaml-0.1.4/autom4te.cache/output.0 +96 -95
- data/ext/nutcracker/contrib/yaml-0.1.4/autom4te.cache/output.1 +96 -95
- data/ext/nutcracker/contrib/yaml-0.1.4/autom4te.cache/output.2 +96 -95
- data/ext/nutcracker/contrib/yaml-0.1.4/autom4te.cache/requests +390 -390
- data/ext/nutcracker/contrib/yaml-0.1.4/autom4te.cache/traces.0 +92 -106
- data/ext/nutcracker/contrib/yaml-0.1.4/autom4te.cache/traces.1 +9 -9
- data/ext/nutcracker/contrib/yaml-0.1.4/autom4te.cache/traces.2 +92 -106
- data/ext/nutcracker/contrib/yaml-0.1.4/config/compile +4 -4
- data/ext/nutcracker/contrib/yaml-0.1.4/config/config.guess +281 -278
- data/ext/nutcracker/contrib/yaml-0.1.4/config/config.sub +107 -142
- data/ext/nutcracker/contrib/yaml-0.1.4/config/depcomp +4 -4
- data/ext/nutcracker/contrib/yaml-0.1.4/config/install-sh +31 -14
- data/ext/nutcracker/contrib/yaml-0.1.4/config/missing +7 -7
- data/ext/nutcracker/contrib/yaml-0.1.4/config/test-driver +4 -4
- data/ext/nutcracker/contrib/yaml-0.1.4/configure +96 -95
- data/ext/nutcracker/contrib/yaml-0.1.4/src/Makefile.in +53 -26
- data/ext/nutcracker/contrib/yaml-0.1.4/tests/Makefile.in +58 -22
- data/ext/nutcracker/src/Makefile.in +93 -41
- data/ext/nutcracker/src/event/Makefile.in +36 -21
- data/ext/nutcracker/src/hashkit/Makefile.in +64 -29
- data/ext/nutcracker/src/proto/Makefile.in +33 -20
- data/lib/nutcracker.rb +6 -4
- data/lib/nutcracker/version.rb +1 -1
- 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=
|
4
|
+
scriptversion=2018-03-07.03; # UTC
|
5
5
|
|
6
|
-
# Copyright (C) 1999-
|
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 <
|
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 '
|
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=
|
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
|
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
|
-
|
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
|
-
|
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
|
-
|
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 -- "$
|
345
|
-
ls_ld_tmpdir_1=`ls -ld "$
|
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/
|
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=$
|
431
|
-
rmtmp=$
|
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 '
|
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=
|
4
|
+
scriptversion=2018-03-07.03; # UTC
|
5
5
|
|
6
|
-
# Copyright (C) 1996-
|
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 <
|
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=
|
105
|
-
flex_URL=
|
106
|
-
gnu_software_URL=
|
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 '
|
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"
|
data/ext/nutcracker/configure
CHANGED
@@ -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.
|
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
|
-
# <
|
3100
|
-
# <
|
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: <
|
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
|
-
|
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
|
-
|
4092
|
-
|
4093
|
-
|
4094
|
-
|
4095
|
-
|
4096
|
-
|
4097
|
-
|
4098
|
-
|
4099
|
-
|
4100
|
-
|
4101
|
-
|
4102
|
-
|
4103
|
-
|
4104
|
-
|
4105
|
-
|
4106
|
-
|
4107
|
-
|
4108
|
-
|
4109
|
-
|
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
|
-
|
4112
|
-
|
4113
|
-
|
4114
|
-
|
4115
|
-
|
4116
|
-
|
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"
|
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
|
-
|
19472
|
-
|
19473
|
-
|
19474
|
-
|
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
|
-
|
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
|
-
|
19480
|
-
# Check whether this is an Automake generated Makefile
|
19481
|
-
#
|
19482
|
-
#
|
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
|
-
|
19488
|
-
|
19489
|
-
|
19490
|
-
|
19491
|
-
X"$
|
19492
|
-
X"$
|
19493
|
-
|
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
|
-
|
19512
|
-
|
19513
|
-
|
19514
|
-
|
19515
|
-
|
19516
|
-
|
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
|
-
|
19554
|
-
|
19555
|
-
|
19556
|
-
|
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)
|