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"
|
@@ -1,9 +1,9 @@
|
|
1
1
|
#! /bin/sh
|
2
2
|
# test-driver - basic testsuite driver script.
|
3
3
|
|
4
|
-
scriptversion=
|
4
|
+
scriptversion=2018-03-07.03; # UTC
|
5
5
|
|
6
|
-
# Copyright (C) 2011-
|
6
|
+
# Copyright (C) 2011-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
|
@@ -140,7 +140,7 @@ echo ":copy-in-global-log: $gcopy" >> $trs_file
|
|
140
140
|
# Local Variables:
|
141
141
|
# mode: shell-script
|
142
142
|
# sh-indentation: 2
|
143
|
-
# eval: (add-hook '
|
143
|
+
# eval: (add-hook 'before-save-hook 'time-stamp)
|
144
144
|
# time-stamp-start: "scriptversion="
|
145
145
|
# time-stamp-format: "%:y-%02m-%02d.%02H"
|
146
146
|
# time-stamp-time-zone: "UTC0"
|
@@ -675,7 +675,6 @@ am__nodep
|
|
675
675
|
AMDEPBACKSLASH
|
676
676
|
AMDEP_FALSE
|
677
677
|
AMDEP_TRUE
|
678
|
-
am__quote
|
679
678
|
am__include
|
680
679
|
DEPDIR
|
681
680
|
OBJEXT
|
@@ -753,7 +752,8 @@ PACKAGE_VERSION
|
|
753
752
|
PACKAGE_TARNAME
|
754
753
|
PACKAGE_NAME
|
755
754
|
PATH_SEPARATOR
|
756
|
-
SHELL
|
755
|
+
SHELL
|
756
|
+
am__quote'
|
757
757
|
ac_subst_files=''
|
758
758
|
ac_user_opts='
|
759
759
|
enable_option_checking
|
@@ -2302,7 +2302,7 @@ ac_config_headers="$ac_config_headers config.h"
|
|
2302
2302
|
|
2303
2303
|
|
2304
2304
|
|
2305
|
-
am__api_version='1.
|
2305
|
+
am__api_version='1.16'
|
2306
2306
|
|
2307
2307
|
# Find a good install program. We prefer a C program (faster),
|
2308
2308
|
# so one script is as good as another. But avoid the broken or
|
@@ -2818,8 +2818,8 @@ MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"}
|
|
2818
2818
|
|
2819
2819
|
# For better backward compatibility. To be removed once Automake 1.9.x
|
2820
2820
|
# dies out for good. For more background, see:
|
2821
|
-
# <
|
2822
|
-
# <
|
2821
|
+
# <https://lists.gnu.org/archive/html/automake/2012-07/msg00001.html>
|
2822
|
+
# <https://lists.gnu.org/archive/html/automake/2012-07/msg00014.html>
|
2823
2823
|
mkdir_p='$(MKDIR_P)'
|
2824
2824
|
|
2825
2825
|
# We need awk for the "check" target (and possibly the TAP driver). The
|
@@ -2870,7 +2870,7 @@ END
|
|
2870
2870
|
Aborting the configuration process, to ensure you take notice of the issue.
|
2871
2871
|
|
2872
2872
|
You can download and install GNU coreutils to get an 'rm' implementation
|
2873
|
-
that behaves properly: <
|
2873
|
+
that behaves properly: <https://www.gnu.org/software/coreutils/>.
|
2874
2874
|
|
2875
2875
|
If you want to complete the configuration process using your problematic
|
2876
2876
|
'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM
|
@@ -3760,45 +3760,45 @@ DEPDIR="${am__leading_dot}deps"
|
|
3760
3760
|
|
3761
3761
|
ac_config_commands="$ac_config_commands depfiles"
|
3762
3762
|
|
3763
|
-
|
3764
|
-
|
3765
|
-
cat > confinc << 'END'
|
3763
|
+
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} supports the include directive" >&5
|
3764
|
+
$as_echo_n "checking whether ${MAKE-make} supports the include directive... " >&6; }
|
3765
|
+
cat > confinc.mk << 'END'
|
3766
3766
|
am__doit:
|
3767
|
-
@echo this is the am__doit target
|
3767
|
+
@echo this is the am__doit target >confinc.out
|
3768
3768
|
.PHONY: am__doit
|
3769
3769
|
END
|
3770
|
-
# If we don't find an include directive, just comment out the code.
|
3771
|
-
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for style of include used by $am_make" >&5
|
3772
|
-
$as_echo_n "checking for style of include used by $am_make... " >&6; }
|
3773
3770
|
am__include="#"
|
3774
3771
|
am__quote=
|
3775
|
-
|
3776
|
-
|
3777
|
-
|
3778
|
-
|
3779
|
-
|
3780
|
-
|
3781
|
-
|
3782
|
-
|
3783
|
-
|
3784
|
-
|
3785
|
-
|
3786
|
-
|
3787
|
-
|
3788
|
-
|
3789
|
-
|
3790
|
-
|
3791
|
-
|
3792
|
-
|
3793
|
-
|
3772
|
+
# BSD make does it like this.
|
3773
|
+
echo '.include "confinc.mk" # ignored' > confmf.BSD
|
3774
|
+
# Other make implementations (GNU, Solaris 10, AIX) do it like this.
|
3775
|
+
echo 'include confinc.mk # ignored' > confmf.GNU
|
3776
|
+
_am_result=no
|
3777
|
+
for s in GNU BSD; do
|
3778
|
+
{ echo "$as_me:$LINENO: ${MAKE-make} -f confmf.$s && cat confinc.out" >&5
|
3779
|
+
(${MAKE-make} -f confmf.$s && cat confinc.out) >&5 2>&5
|
3780
|
+
ac_status=$?
|
3781
|
+
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
3782
|
+
(exit $ac_status); }
|
3783
|
+
case $?:`cat confinc.out 2>/dev/null` in #(
|
3784
|
+
'0:this is the am__doit target') :
|
3785
|
+
case $s in #(
|
3786
|
+
BSD) :
|
3787
|
+
am__include='.include' am__quote='"' ;; #(
|
3788
|
+
*) :
|
3789
|
+
am__include='include' am__quote='' ;;
|
3790
|
+
esac ;; #(
|
3791
|
+
*) :
|
3794
3792
|
;;
|
3795
|
-
|
3796
|
-
|
3797
|
-
|
3798
|
-
|
3799
|
-
|
3800
|
-
|
3801
|
-
rm -f confinc confmf
|
3793
|
+
esac
|
3794
|
+
if test "$am__include" != "#"; then
|
3795
|
+
_am_result="yes ($s style)"
|
3796
|
+
break
|
3797
|
+
fi
|
3798
|
+
done
|
3799
|
+
rm -f confinc.* confmf.*
|
3800
|
+
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: ${_am_result}" >&5
|
3801
|
+
$as_echo "${_am_result}" >&6; }
|
3802
3802
|
|
3803
3803
|
# Check whether --enable-dependency-tracking was given.
|
3804
3804
|
if test "${enable_dependency_tracking+set}" = set; then :
|
@@ -13041,7 +13041,7 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
|
|
13041
13041
|
#
|
13042
13042
|
# INIT-COMMANDS
|
13043
13043
|
#
|
13044
|
-
AMDEP_TRUE="$AMDEP_TRUE"
|
13044
|
+
AMDEP_TRUE="$AMDEP_TRUE" MAKE="${MAKE-make}"
|
13045
13045
|
|
13046
13046
|
|
13047
13047
|
# The HP-UX ksh and POSIX shell print the target directory to stdout
|
@@ -13939,29 +13939,35 @@ $as_echo "$as_me: executing $ac_file commands" >&6;}
|
|
13939
13939
|
# Older Autoconf quotes --file arguments for eval, but not when files
|
13940
13940
|
# are listed without --file. Let's play safe and only enable the eval
|
13941
13941
|
# if we detect the quoting.
|
13942
|
-
|
13943
|
-
|
13944
|
-
|
13945
|
-
|
13942
|
+
# TODO: see whether this extra hack can be removed once we start
|
13943
|
+
# requiring Autoconf 2.70 or later.
|
13944
|
+
case $CONFIG_FILES in #(
|
13945
|
+
*\'*) :
|
13946
|
+
eval set x "$CONFIG_FILES" ;; #(
|
13947
|
+
*) :
|
13948
|
+
set x $CONFIG_FILES ;; #(
|
13949
|
+
*) :
|
13950
|
+
;;
|
13951
|
+
esac
|
13946
13952
|
shift
|
13947
|
-
|
13953
|
+
# Used to flag and report bootstrapping failures.
|
13954
|
+
am_rc=0
|
13955
|
+
for am_mf
|
13948
13956
|
do
|
13949
13957
|
# Strip MF so we end up with the name of the file.
|
13950
|
-
|
13951
|
-
# Check whether this is an Automake generated Makefile
|
13952
|
-
#
|
13953
|
-
#
|
13954
|
-
# Grep'ing the first line is not enough: some people post-process
|
13955
|
-
# each Makefile.in and add a new line on top of each file to say so.
|
13956
|
-
# Grep'ing the whole file is not good either: AIX grep has a line
|
13958
|
+
am_mf=`$as_echo "$am_mf" | sed -e 's/:.*$//'`
|
13959
|
+
# Check whether this is an Automake generated Makefile which includes
|
13960
|
+
# dependency-tracking related rules and includes.
|
13961
|
+
# Grep'ing the whole file directly is not great: AIX grep has a line
|
13957
13962
|
# limit of 2048, but all sed's we know have understand at least 4000.
|
13958
|
-
|
13959
|
-
|
13960
|
-
|
13961
|
-
|
13962
|
-
X"$
|
13963
|
-
X"$
|
13964
|
-
|
13963
|
+
sed -n 's,^am--depfiles:.*,X,p' "$am_mf" | grep X >/dev/null 2>&1 \
|
13964
|
+
|| continue
|
13965
|
+
am_dirpart=`$as_dirname -- "$am_mf" ||
|
13966
|
+
$as_expr X"$am_mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
|
13967
|
+
X"$am_mf" : 'X\(//\)[^/]' \| \
|
13968
|
+
X"$am_mf" : 'X\(//\)$' \| \
|
13969
|
+
X"$am_mf" : 'X\(/\)' \| . 2>/dev/null ||
|
13970
|
+
$as_echo X"$am_mf" |
|
13965
13971
|
sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
|
13966
13972
|
s//\1/
|
13967
13973
|
q
|
@@ -13979,53 +13985,48 @@ $as_echo X"$mf" |
|
|
13979
13985
|
q
|
13980
13986
|
}
|
13981
13987
|
s/.*/./; q'`
|
13982
|
-
|
13983
|
-
|
13984
|
-
|
13985
|
-
|
13986
|
-
|
13987
|
-
|
13988
|
-
test -z "$DEPDIR" && continue
|
13989
|
-
am__include=`sed -n 's/^am__include = //p' < "$mf"`
|
13990
|
-
test -z "$am__include" && continue
|
13991
|
-
am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
|
13992
|
-
# Find all dependency output files, they are included files with
|
13993
|
-
# $(DEPDIR) in their names. We invoke sed twice because it is the
|
13994
|
-
# simplest approach to changing $(DEPDIR) to its actual value in the
|
13995
|
-
# expansion.
|
13996
|
-
for file in `sed -n "
|
13997
|
-
s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
|
13998
|
-
sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do
|
13999
|
-
# Make sure the directory exists.
|
14000
|
-
test -f "$dirpart/$file" && continue
|
14001
|
-
fdir=`$as_dirname -- "$file" ||
|
14002
|
-
$as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
|
14003
|
-
X"$file" : 'X\(//\)[^/]' \| \
|
14004
|
-
X"$file" : 'X\(//\)$' \| \
|
14005
|
-
X"$file" : 'X\(/\)' \| . 2>/dev/null ||
|
14006
|
-
$as_echo X"$file" |
|
14007
|
-
sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
|
14008
|
-
s//\1/
|
14009
|
-
q
|
14010
|
-
}
|
14011
|
-
/^X\(\/\/\)[^/].*/{
|
13988
|
+
am_filepart=`$as_basename -- "$am_mf" ||
|
13989
|
+
$as_expr X/"$am_mf" : '.*/\([^/][^/]*\)/*$' \| \
|
13990
|
+
X"$am_mf" : 'X\(//\)$' \| \
|
13991
|
+
X"$am_mf" : 'X\(/\)' \| . 2>/dev/null ||
|
13992
|
+
$as_echo X/"$am_mf" |
|
13993
|
+
sed '/^.*\/\([^/][^/]*\)\/*$/{
|
14012
13994
|
s//\1/
|
14013
13995
|
q
|
14014
13996
|
}
|
14015
|
-
/^X
|
13997
|
+
/^X\/\(\/\/\)$/{
|
14016
13998
|
s//\1/
|
14017
13999
|
q
|
14018
14000
|
}
|
14019
|
-
/^X
|
14001
|
+
/^X\/\(\/\).*/{
|
14020
14002
|
s//\1/
|
14021
14003
|
q
|
14022
14004
|
}
|
14023
14005
|
s/.*/./; q'`
|
14024
|
-
|
14025
|
-
|
14026
|
-
|
14027
|
-
|
14006
|
+
{ echo "$as_me:$LINENO: cd "$am_dirpart" \
|
14007
|
+
&& sed -e '/# am--include-marker/d' "$am_filepart" \
|
14008
|
+
| $MAKE -f - am--depfiles" >&5
|
14009
|
+
(cd "$am_dirpart" \
|
14010
|
+
&& sed -e '/# am--include-marker/d' "$am_filepart" \
|
14011
|
+
| $MAKE -f - am--depfiles) >&5 2>&5
|
14012
|
+
ac_status=$?
|
14013
|
+
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
14014
|
+
(exit $ac_status); } || am_rc=$?
|
14028
14015
|
done
|
14016
|
+
if test $am_rc -ne 0; then
|
14017
|
+
{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
|
14018
|
+
$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
|
14019
|
+
as_fn_error $? "Something went wrong bootstrapping makefile fragments
|
14020
|
+
for automatic dependency tracking. Try re-running configure with the
|
14021
|
+
'--disable-dependency-tracking' option to at least be able to build
|
14022
|
+
the package (albeit without support for automatic dependency tracking).
|
14023
|
+
See \`config.log' for more details" "$LINENO" 5; }
|
14024
|
+
fi
|
14025
|
+
{ am_dirpart=; unset am_dirpart;}
|
14026
|
+
{ am_filepart=; unset am_filepart;}
|
14027
|
+
{ am_mf=; unset am_mf;}
|
14028
|
+
{ am_rc=; unset am_rc;}
|
14029
|
+
rm -f conftest-deps.mk
|
14029
14030
|
}
|
14030
14031
|
;;
|
14031
14032
|
"libtool":C)
|