memcached 1.7.0 → 1.7.2
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 +9 -9
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/CHANGELOG +4 -0
- data/Manifest +2 -36
- data/README.rdoc +2 -2
- data/Rakefile +1 -0
- data/ext/extconf.rb +1 -1
- data/ext/lib64/libmemcached.la +41 -0
- data/ext/lib64/pkgconfig/libmemcached.pc +10 -0
- data/ext/libmemcached-0.32/Makefile.am +1 -1
- data/ext/libmemcached-0.32/Makefile.in +242 -162
- data/ext/libmemcached-0.32/aclocal.m4 +533 -342
- data/ext/libmemcached-0.32/config.h.in +5 -3
- data/ext/libmemcached-0.32/configure +449 -431
- data/ext/libmemcached-0.32/configure.ac +0 -2
- data/memcached.gemspec +0 -0
- data/memcached.pem +16 -16
- metadata +26 -59
- metadata.gz.sig +0 -0
- data/ext/libmemcached-0.32/docs/Makefile.am +0 -415
- data/ext/libmemcached-0.32/docs/Makefile.in +0 -920
- data/ext/libmemcached-0.32/docs/libmemcached.pod +0 -123
- data/ext/libmemcached-0.32/docs/libmemcached_examples.pod +0 -115
- data/ext/libmemcached-0.32/docs/libmemcachedutil.pod +0 -40
- data/ext/libmemcached-0.32/docs/memcached_analyze.pod +0 -52
- data/ext/libmemcached-0.32/docs/memcached_auto.pod +0 -97
- data/ext/libmemcached-0.32/docs/memcached_behavior.pod +0 -224
- data/ext/libmemcached-0.32/docs/memcached_callback.pod +0 -123
- data/ext/libmemcached-0.32/docs/memcached_create.pod +0 -61
- data/ext/libmemcached-0.32/docs/memcached_delete.pod +0 -54
- data/ext/libmemcached-0.32/docs/memcached_dump.pod +0 -53
- data/ext/libmemcached-0.32/docs/memcached_flush.pod +0 -46
- data/ext/libmemcached-0.32/docs/memcached_flush_buffers.pod +0 -42
- data/ext/libmemcached-0.32/docs/memcached_generate_hash_value.pod +0 -57
- data/ext/libmemcached-0.32/docs/memcached_get.pod +0 -161
- data/ext/libmemcached-0.32/docs/memcached_memory_allocators.pod +0 -73
- data/ext/libmemcached-0.32/docs/memcached_pool.pod +0 -77
- data/ext/libmemcached-0.32/docs/memcached_quit.pod +0 -47
- data/ext/libmemcached-0.32/docs/memcached_sasl.pod +0 -63
- data/ext/libmemcached-0.32/docs/memcached_server_st.pod +0 -75
- data/ext/libmemcached-0.32/docs/memcached_servers.pod +0 -102
- data/ext/libmemcached-0.32/docs/memcached_set.pod +0 -187
- data/ext/libmemcached-0.32/docs/memcached_stats.pod +0 -82
- data/ext/libmemcached-0.32/docs/memcached_strerror.pod +0 -46
- data/ext/libmemcached-0.32/docs/memcached_user_data.pod +0 -49
- data/ext/libmemcached-0.32/docs/memcached_verbosity.pod +0 -41
- data/ext/libmemcached-0.32/docs/memcached_version.pod +0 -56
- data/ext/libmemcached-0.32/docs/memcat.pod +0 -37
- data/ext/libmemcached-0.32/docs/memcp.pod +0 -40
- data/ext/libmemcached-0.32/docs/memdump.pod +0 -31
- data/ext/libmemcached-0.32/docs/memerror.pod +0 -30
- data/ext/libmemcached-0.32/docs/memflush.pod +0 -35
- data/ext/libmemcached-0.32/docs/memrm.pod +0 -34
- data/ext/libmemcached-0.32/docs/memslap.pod +0 -33
- data/ext/libmemcached-0.32/docs/memstat.pod +0 -35
@@ -119,9 +119,6 @@
|
|
119
119
|
/* Define to 1 if assertions should be disabled. */
|
120
120
|
#undef NDEBUG
|
121
121
|
|
122
|
-
/* Define to 1 if your C compiler doesn't accept -c and -o together. */
|
123
|
-
#undef NO_MINUS_C_MINUS_O
|
124
|
-
|
125
122
|
/* Name of package */
|
126
123
|
#undef PACKAGE
|
127
124
|
|
@@ -174,6 +171,11 @@
|
|
174
171
|
# endif
|
175
172
|
#endif
|
176
173
|
|
174
|
+
/* Enable large inode numbers on Mac OS X 10.5. */
|
175
|
+
#ifndef _DARWIN_USE_64_BIT_INODE
|
176
|
+
# define _DARWIN_USE_64_BIT_INODE 1
|
177
|
+
#endif
|
178
|
+
|
177
179
|
/* Number of bits in a file offset, on hosts where this is settable. */
|
178
180
|
#undef _FILE_OFFSET_BITS
|
179
181
|
|
@@ -1,13 +1,11 @@
|
|
1
1
|
#! /bin/sh
|
2
2
|
# Guess values for system-dependent variables and create Makefiles.
|
3
|
-
# Generated by GNU Autoconf 2.
|
3
|
+
# Generated by GNU Autoconf 2.69 for libmemcached 0.32.
|
4
4
|
#
|
5
5
|
# Report bugs to <http://tangent.org/552/libmemcached.html>.
|
6
6
|
#
|
7
7
|
#
|
8
|
-
# Copyright (C) 1992
|
9
|
-
# 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software
|
10
|
-
# Foundation, Inc.
|
8
|
+
# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
|
11
9
|
#
|
12
10
|
#
|
13
11
|
# This configure script is free software; the Free Software Foundation
|
@@ -136,6 +134,31 @@ export LANGUAGE
|
|
136
134
|
# CDPATH.
|
137
135
|
(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
|
138
136
|
|
137
|
+
# Use a proper internal environment variable to ensure we don't fall
|
138
|
+
# into an infinite loop, continuously re-executing ourselves.
|
139
|
+
if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then
|
140
|
+
_as_can_reexec=no; export _as_can_reexec;
|
141
|
+
# We cannot yet assume a decent shell, so we have to provide a
|
142
|
+
# neutralization value for shells without unset; and this also
|
143
|
+
# works around shells that cannot unset nonexistent variables.
|
144
|
+
# Preserve -v and -x to the replacement shell.
|
145
|
+
BASH_ENV=/dev/null
|
146
|
+
ENV=/dev/null
|
147
|
+
(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
|
148
|
+
case $- in # ((((
|
149
|
+
*v*x* | *x*v* ) as_opts=-vx ;;
|
150
|
+
*v* ) as_opts=-v ;;
|
151
|
+
*x* ) as_opts=-x ;;
|
152
|
+
* ) as_opts= ;;
|
153
|
+
esac
|
154
|
+
exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"}
|
155
|
+
# Admittedly, this is quite paranoid, since all the known shells bail
|
156
|
+
# out after a failed `exec'.
|
157
|
+
$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2
|
158
|
+
as_fn_exit 255
|
159
|
+
fi
|
160
|
+
# We don't want this to propagate to other subprocesses.
|
161
|
+
{ _as_can_reexec=; unset _as_can_reexec;}
|
139
162
|
if test "x$CONFIG_SHELL" = x; then
|
140
163
|
as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then :
|
141
164
|
emulate sh
|
@@ -169,7 +192,8 @@ if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then :
|
|
169
192
|
else
|
170
193
|
exitcode=1; echo positional parameters were not saved.
|
171
194
|
fi
|
172
|
-
test x\$exitcode = x0 || exit 1
|
195
|
+
test x\$exitcode = x0 || exit 1
|
196
|
+
test -x / || exit 1"
|
173
197
|
as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO
|
174
198
|
as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO
|
175
199
|
eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" &&
|
@@ -222,21 +246,25 @@ IFS=$as_save_IFS
|
|
222
246
|
|
223
247
|
|
224
248
|
if test "x$CONFIG_SHELL" != x; then :
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
249
|
+
export CONFIG_SHELL
|
250
|
+
# We cannot yet assume a decent shell, so we have to provide a
|
251
|
+
# neutralization value for shells without unset; and this also
|
252
|
+
# works around shells that cannot unset nonexistent variables.
|
253
|
+
# Preserve -v and -x to the replacement shell.
|
254
|
+
BASH_ENV=/dev/null
|
255
|
+
ENV=/dev/null
|
256
|
+
(unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV
|
257
|
+
case $- in # ((((
|
258
|
+
*v*x* | *x*v* ) as_opts=-vx ;;
|
259
|
+
*v* ) as_opts=-v ;;
|
260
|
+
*x* ) as_opts=-x ;;
|
261
|
+
* ) as_opts= ;;
|
262
|
+
esac
|
263
|
+
exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"}
|
264
|
+
# Admittedly, this is quite paranoid, since all the known shells bail
|
265
|
+
# out after a failed `exec'.
|
266
|
+
$as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2
|
267
|
+
exit 255
|
240
268
|
fi
|
241
269
|
|
242
270
|
if test x$as_have_required = xno; then :
|
@@ -339,6 +367,14 @@ $as_echo X"$as_dir" |
|
|
339
367
|
|
340
368
|
|
341
369
|
} # as_fn_mkdir_p
|
370
|
+
|
371
|
+
# as_fn_executable_p FILE
|
372
|
+
# -----------------------
|
373
|
+
# Test if FILE is an executable regular file.
|
374
|
+
as_fn_executable_p ()
|
375
|
+
{
|
376
|
+
test -f "$1" && test -x "$1"
|
377
|
+
} # as_fn_executable_p
|
342
378
|
# as_fn_append VAR VALUE
|
343
379
|
# ----------------------
|
344
380
|
# Append the text in VALUE to the end of the definition contained in VAR. Take
|
@@ -460,6 +496,10 @@ as_cr_alnum=$as_cr_Letters$as_cr_digits
|
|
460
496
|
chmod +x "$as_me.lineno" ||
|
461
497
|
{ $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; }
|
462
498
|
|
499
|
+
# If we had to re-execute with $CONFIG_SHELL, we're ensured to have
|
500
|
+
# already done that, so ensure we don't try to do so again and fall
|
501
|
+
# in an infinite loop. This has already happened in practice.
|
502
|
+
_as_can_reexec=no; export _as_can_reexec
|
463
503
|
# Don't try to exec as it changes $[0], causing all sort of problems
|
464
504
|
# (the dirname of $[0] is not the place where we might find the
|
465
505
|
# original and so on. Autoconf is especially sensitive to this).
|
@@ -494,16 +534,16 @@ if (echo >conf$$.file) 2>/dev/null; then
|
|
494
534
|
# ... but there are two gotchas:
|
495
535
|
# 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
|
496
536
|
# 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
|
497
|
-
# In both cases, we have to default to `cp -
|
537
|
+
# In both cases, we have to default to `cp -pR'.
|
498
538
|
ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
|
499
|
-
as_ln_s='cp -
|
539
|
+
as_ln_s='cp -pR'
|
500
540
|
elif ln conf$$.file conf$$ 2>/dev/null; then
|
501
541
|
as_ln_s=ln
|
502
542
|
else
|
503
|
-
as_ln_s='cp -
|
543
|
+
as_ln_s='cp -pR'
|
504
544
|
fi
|
505
545
|
else
|
506
|
-
as_ln_s='cp -
|
546
|
+
as_ln_s='cp -pR'
|
507
547
|
fi
|
508
548
|
rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
|
509
549
|
rmdir conf$$.dir 2>/dev/null
|
@@ -515,28 +555,8 @@ else
|
|
515
555
|
as_mkdir_p=false
|
516
556
|
fi
|
517
557
|
|
518
|
-
|
519
|
-
|
520
|
-
else
|
521
|
-
if ls -dL / >/dev/null 2>&1; then
|
522
|
-
as_ls_L_option=L
|
523
|
-
else
|
524
|
-
as_ls_L_option=
|
525
|
-
fi
|
526
|
-
as_test_x='
|
527
|
-
eval sh -c '\''
|
528
|
-
if test -d "$1"; then
|
529
|
-
test -d "$1/.";
|
530
|
-
else
|
531
|
-
case $1 in #(
|
532
|
-
-*)set "./$1";;
|
533
|
-
esac;
|
534
|
-
case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #((
|
535
|
-
???[sx]*):;;*)false;;esac;fi
|
536
|
-
'\'' sh
|
537
|
-
'
|
538
|
-
fi
|
539
|
-
as_executable_p=$as_test_x
|
558
|
+
as_test_x='test -x'
|
559
|
+
as_executable_p=as_fn_executable_p
|
540
560
|
|
541
561
|
# Sed expression to map a string onto a valid CPP name.
|
542
562
|
as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
|
@@ -632,7 +652,6 @@ LIBSASL
|
|
632
652
|
HAVE_LIBSASL
|
633
653
|
DEPRECATED
|
634
654
|
MEMC_BINARY
|
635
|
-
POD2MAN
|
636
655
|
INCLUDE_HSIEH_SRC_FALSE
|
637
656
|
INCLUDE_HSIEH_SRC_TRUE
|
638
657
|
BUILD_LIBMEMCACHEDUTIL_FALSE
|
@@ -705,6 +724,7 @@ ISAINFO
|
|
705
724
|
am__fastdepCC_FALSE
|
706
725
|
am__fastdepCC_TRUE
|
707
726
|
CCDEPMODE
|
727
|
+
am__nodep
|
708
728
|
AMDEPBACKSLASH
|
709
729
|
AMDEP_FALSE
|
710
730
|
AMDEP_TRUE
|
@@ -718,6 +738,10 @@ CPPFLAGS
|
|
718
738
|
LDFLAGS
|
719
739
|
CFLAGS
|
720
740
|
CC
|
741
|
+
AM_BACKSLASH
|
742
|
+
AM_DEFAULT_VERBOSITY
|
743
|
+
AM_DEFAULT_V
|
744
|
+
AM_V
|
721
745
|
am__untar
|
722
746
|
am__tar
|
723
747
|
AMTAR
|
@@ -794,6 +818,7 @@ SHELL'
|
|
794
818
|
ac_subst_files=''
|
795
819
|
ac_user_opts='
|
796
820
|
enable_option_checking
|
821
|
+
enable_silent_rules
|
797
822
|
enable_dependency_tracking
|
798
823
|
enable_64bit
|
799
824
|
enable_shared
|
@@ -1290,8 +1315,6 @@ target=$target_alias
|
|
1290
1315
|
if test "x$host_alias" != x; then
|
1291
1316
|
if test "x$build_alias" = x; then
|
1292
1317
|
cross_compiling=maybe
|
1293
|
-
$as_echo "$as_me: WARNING: if you wanted to set the --build type, don't use --host.
|
1294
|
-
If a cross compiler is detected then cross compile mode will be used" >&2
|
1295
1318
|
elif test "x$build_alias" != "x$host_alias"; then
|
1296
1319
|
cross_compiling=yes
|
1297
1320
|
fi
|
@@ -1456,8 +1479,12 @@ Optional Features:
|
|
1456
1479
|
--disable-option-checking ignore unrecognized --enable/--with options
|
1457
1480
|
--disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no)
|
1458
1481
|
--enable-FEATURE[=ARG] include FEATURE [ARG=yes]
|
1459
|
-
--
|
1460
|
-
--
|
1482
|
+
--enable-silent-rules less verbose build output (undo: "make V=1")
|
1483
|
+
--disable-silent-rules verbose build output (undo: "make V=0")
|
1484
|
+
--enable-dependency-tracking
|
1485
|
+
do not reject slow dependency extractors
|
1486
|
+
--disable-dependency-tracking
|
1487
|
+
speeds up one-time build
|
1461
1488
|
|
1462
1489
|
--disable-64bit Build 64 bit binary [default=on]
|
1463
1490
|
--enable-shared[=PKGS] build shared libraries [default=yes]
|
@@ -1493,7 +1520,7 @@ Optional Packages:
|
|
1493
1520
|
--with-lib-prefix[=DIR] search for libraries in DIR/include and DIR/lib
|
1494
1521
|
--without-lib-prefix don't search for libraries in includedir and libdir
|
1495
1522
|
--with-memcached Memcached binary to use for make test
|
1496
|
-
--with-gnu-ld assume the C compiler uses GNU ld default=no
|
1523
|
+
--with-gnu-ld assume the C compiler uses GNU ld [default=no]
|
1497
1524
|
--with-libsasl-prefix[=DIR] search for libsasl in DIR/include and DIR/lib
|
1498
1525
|
--without-libsasl-prefix don't search for libsasl in includedir and libdir
|
1499
1526
|
--with-libsasl2-prefix[=DIR] search for libsasl2 in DIR/include and DIR/lib
|
@@ -1579,9 +1606,9 @@ test -n "$ac_init_help" && exit $ac_status
|
|
1579
1606
|
if $ac_init_version; then
|
1580
1607
|
cat <<\_ACEOF
|
1581
1608
|
libmemcached configure 0.32
|
1582
|
-
generated by GNU Autoconf 2.
|
1609
|
+
generated by GNU Autoconf 2.69
|
1583
1610
|
|
1584
|
-
Copyright (C)
|
1611
|
+
Copyright (C) 2012 Free Software Foundation, Inc.
|
1585
1612
|
This configure script is free software; the Free Software Foundation
|
1586
1613
|
gives unlimited permission to copy, distribute and modify it.
|
1587
1614
|
_ACEOF
|
@@ -1942,7 +1969,7 @@ $as_echo "$ac_try_echo"; } >&5
|
|
1942
1969
|
test ! -s conftest.err
|
1943
1970
|
} && test -s conftest$ac_exeext && {
|
1944
1971
|
test "$cross_compiling" = yes ||
|
1945
|
-
|
1972
|
+
test -x conftest$ac_exeext
|
1946
1973
|
}; then :
|
1947
1974
|
ac_retval=0
|
1948
1975
|
else
|
@@ -2092,7 +2119,7 @@ $as_echo "$ac_try_echo"; } >&5
|
|
2092
2119
|
test ! -s conftest.err
|
2093
2120
|
} && test -s conftest$ac_exeext && {
|
2094
2121
|
test "$cross_compiling" = yes ||
|
2095
|
-
|
2122
|
+
test -x conftest$ac_exeext
|
2096
2123
|
}; then :
|
2097
2124
|
ac_retval=0
|
2098
2125
|
else
|
@@ -2260,7 +2287,7 @@ This file contains any messages produced by compilers while
|
|
2260
2287
|
running configure, to aid debugging if configure makes a mistake.
|
2261
2288
|
|
2262
2289
|
It was created by libmemcached $as_me 0.32, which was
|
2263
|
-
generated by GNU Autoconf 2.
|
2290
|
+
generated by GNU Autoconf 2.69. Invocation command line was
|
2264
2291
|
|
2265
2292
|
$ $0 $@
|
2266
2293
|
|
@@ -2758,7 +2785,7 @@ test -n "$target_alias" &&
|
|
2758
2785
|
test "$program_prefix$program_suffix$program_transform_name" = \
|
2759
2786
|
NONENONEs,x,x, &&
|
2760
2787
|
program_prefix=${target_alias}-
|
2761
|
-
am__api_version='1.
|
2788
|
+
am__api_version='1.14'
|
2762
2789
|
|
2763
2790
|
# Find a good install program. We prefer a C program (faster),
|
2764
2791
|
# so one script is as good as another. But avoid the broken or
|
@@ -2797,7 +2824,7 @@ case $as_dir/ in #((
|
|
2797
2824
|
# by default.
|
2798
2825
|
for ac_prog in ginstall scoinst install; do
|
2799
2826
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
2800
|
-
if
|
2827
|
+
if as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext"; then
|
2801
2828
|
if test $ac_prog = install &&
|
2802
2829
|
grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then
|
2803
2830
|
# AIX install. It has an incompatible calling convention.
|
@@ -2855,9 +2882,6 @@ test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
|
|
2855
2882
|
|
2856
2883
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5
|
2857
2884
|
$as_echo_n "checking whether build environment is sane... " >&6; }
|
2858
|
-
# Just in case
|
2859
|
-
sleep 1
|
2860
|
-
echo timestamp > conftest.file
|
2861
2885
|
# Reject unsafe characters in $srcdir or the absolute working directory
|
2862
2886
|
# name. Accept space and tab only in the latter.
|
2863
2887
|
am_lf='
|
@@ -2868,32 +2892,40 @@ case `pwd` in
|
|
2868
2892
|
esac
|
2869
2893
|
case $srcdir in
|
2870
2894
|
*[\\\"\#\$\&\'\`$am_lf\ \ ]*)
|
2871
|
-
as_fn_error $? "unsafe srcdir value:
|
2895
|
+
as_fn_error $? "unsafe srcdir value: '$srcdir'" "$LINENO" 5;;
|
2872
2896
|
esac
|
2873
2897
|
|
2874
|
-
# Do
|
2898
|
+
# Do 'set' in a subshell so we don't clobber the current shell's
|
2875
2899
|
# arguments. Must try -L first in case configure is actually a
|
2876
2900
|
# symlink; some systems play weird games with the mod time of symlinks
|
2877
2901
|
# (eg FreeBSD returns the mod time of the symlink's containing
|
2878
2902
|
# directory).
|
2879
2903
|
if (
|
2880
|
-
|
2881
|
-
|
2882
|
-
|
2883
|
-
|
2884
|
-
|
2885
|
-
|
2886
|
-
|
2887
|
-
|
2888
|
-
|
2889
|
-
|
2890
|
-
|
2891
|
-
|
2892
|
-
|
2893
|
-
|
2894
|
-
|
2895
|
-
|
2896
|
-
|
2904
|
+
am_has_slept=no
|
2905
|
+
for am_try in 1 2; do
|
2906
|
+
echo "timestamp, slept: $am_has_slept" > conftest.file
|
2907
|
+
set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null`
|
2908
|
+
if test "$*" = "X"; then
|
2909
|
+
# -L didn't work.
|
2910
|
+
set X `ls -t "$srcdir/configure" conftest.file`
|
2911
|
+
fi
|
2912
|
+
if test "$*" != "X $srcdir/configure conftest.file" \
|
2913
|
+
&& test "$*" != "X conftest.file $srcdir/configure"; then
|
2914
|
+
|
2915
|
+
# If neither matched, then we have a broken ls. This can happen
|
2916
|
+
# if, for instance, CONFIG_SHELL is bash and it inherits a
|
2917
|
+
# broken ls alias from the environment. This has actually
|
2918
|
+
# happened. Such a system could not be considered "sane".
|
2919
|
+
as_fn_error $? "ls -t appears to fail. Make sure there is not a broken
|
2920
|
+
alias in your environment" "$LINENO" 5
|
2921
|
+
fi
|
2922
|
+
if test "$2" = conftest.file || test $am_try -eq 2; then
|
2923
|
+
break
|
2924
|
+
fi
|
2925
|
+
# Just in case.
|
2926
|
+
sleep 1
|
2927
|
+
am_has_slept=yes
|
2928
|
+
done
|
2897
2929
|
test "$2" = conftest.file
|
2898
2930
|
)
|
2899
2931
|
then
|
@@ -2905,6 +2937,16 @@ Check your system clock" "$LINENO" 5
|
|
2905
2937
|
fi
|
2906
2938
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
2907
2939
|
$as_echo "yes" >&6; }
|
2940
|
+
# If we didn't sleep, we still need to ensure time stamps of config.status and
|
2941
|
+
# generated files are strictly newer.
|
2942
|
+
am_sleep_pid=
|
2943
|
+
if grep 'slept: no' conftest.file >/dev/null 2>&1; then
|
2944
|
+
( sleep 1 ) &
|
2945
|
+
am_sleep_pid=$!
|
2946
|
+
fi
|
2947
|
+
|
2948
|
+
rm -f conftest.file
|
2949
|
+
|
2908
2950
|
test "$program_prefix" != NONE &&
|
2909
2951
|
program_transform_name="s&^&$program_prefix&;$program_transform_name"
|
2910
2952
|
# Use a double $ so make ignores it.
|
@@ -2927,12 +2969,12 @@ if test x"${MISSING+set}" != xset; then
|
|
2927
2969
|
esac
|
2928
2970
|
fi
|
2929
2971
|
# Use eval to expand $SHELL
|
2930
|
-
if eval "$MISSING --
|
2931
|
-
am_missing_run="$MISSING
|
2972
|
+
if eval "$MISSING --is-lightweight"; then
|
2973
|
+
am_missing_run="$MISSING "
|
2932
2974
|
else
|
2933
2975
|
am_missing_run=
|
2934
|
-
{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING:
|
2935
|
-
$as_echo "$as_me: WARNING:
|
2976
|
+
{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: 'missing' script is too old or missing" >&5
|
2977
|
+
$as_echo "$as_me: WARNING: 'missing' script is too old or missing" >&2;}
|
2936
2978
|
fi
|
2937
2979
|
|
2938
2980
|
if test x"${install_sh}" != xset; then
|
@@ -2944,10 +2986,10 @@ if test x"${install_sh}" != xset; then
|
|
2944
2986
|
esac
|
2945
2987
|
fi
|
2946
2988
|
|
2947
|
-
# Installed binaries are usually stripped using
|
2948
|
-
# run
|
2989
|
+
# Installed binaries are usually stripped using 'strip' when the user
|
2990
|
+
# run "make install-strip". However 'strip' might not be the right
|
2949
2991
|
# tool to use in cross-compilation environments, therefore Automake
|
2950
|
-
# will honor the
|
2992
|
+
# will honor the 'STRIP' environment variable to overrule this program.
|
2951
2993
|
if test "$cross_compiling" != no; then
|
2952
2994
|
if test -n "$ac_tool_prefix"; then
|
2953
2995
|
# Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args.
|
@@ -2966,7 +3008,7 @@ do
|
|
2966
3008
|
IFS=$as_save_IFS
|
2967
3009
|
test -z "$as_dir" && as_dir=.
|
2968
3010
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
2969
|
-
if
|
3011
|
+
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
2970
3012
|
ac_cv_prog_STRIP="${ac_tool_prefix}strip"
|
2971
3013
|
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
2972
3014
|
break 2
|
@@ -3006,7 +3048,7 @@ do
|
|
3006
3048
|
IFS=$as_save_IFS
|
3007
3049
|
test -z "$as_dir" && as_dir=.
|
3008
3050
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
3009
|
-
if
|
3051
|
+
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
3010
3052
|
ac_cv_prog_ac_ct_STRIP="strip"
|
3011
3053
|
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
3012
3054
|
break 2
|
@@ -3057,7 +3099,7 @@ do
|
|
3057
3099
|
test -z "$as_dir" && as_dir=.
|
3058
3100
|
for ac_prog in mkdir gmkdir; do
|
3059
3101
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
3060
|
-
|
3102
|
+
as_fn_executable_p "$as_dir/$ac_prog$ac_exec_ext" || continue
|
3061
3103
|
case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #(
|
3062
3104
|
'mkdir (GNU coreutils) '* | \
|
3063
3105
|
'mkdir (coreutils) '* | \
|
@@ -3086,12 +3128,6 @@ fi
|
|
3086
3128
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5
|
3087
3129
|
$as_echo "$MKDIR_P" >&6; }
|
3088
3130
|
|
3089
|
-
mkdir_p="$MKDIR_P"
|
3090
|
-
case $mkdir_p in
|
3091
|
-
[\\/$]* | ?:[\\/]*) ;;
|
3092
|
-
*/*) mkdir_p="\$(top_builddir)/$mkdir_p" ;;
|
3093
|
-
esac
|
3094
|
-
|
3095
3131
|
for ac_prog in gawk mawk nawk awk
|
3096
3132
|
do
|
3097
3133
|
# Extract the first word of "$ac_prog", so it can be a program name with args.
|
@@ -3110,7 +3146,7 @@ do
|
|
3110
3146
|
IFS=$as_save_IFS
|
3111
3147
|
test -z "$as_dir" && as_dir=.
|
3112
3148
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
3113
|
-
if
|
3149
|
+
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
3114
3150
|
ac_cv_prog_AWK="$ac_prog"
|
3115
3151
|
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
3116
3152
|
break 2
|
@@ -3174,6 +3210,45 @@ else
|
|
3174
3210
|
fi
|
3175
3211
|
rmdir .tst 2>/dev/null
|
3176
3212
|
|
3213
|
+
# Check whether --enable-silent-rules was given.
|
3214
|
+
if test "${enable_silent_rules+set}" = set; then :
|
3215
|
+
enableval=$enable_silent_rules;
|
3216
|
+
fi
|
3217
|
+
|
3218
|
+
case $enable_silent_rules in # (((
|
3219
|
+
yes) AM_DEFAULT_VERBOSITY=0;;
|
3220
|
+
no) AM_DEFAULT_VERBOSITY=1;;
|
3221
|
+
*) AM_DEFAULT_VERBOSITY=1;;
|
3222
|
+
esac
|
3223
|
+
am_make=${MAKE-make}
|
3224
|
+
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5
|
3225
|
+
$as_echo_n "checking whether $am_make supports nested variables... " >&6; }
|
3226
|
+
if ${am_cv_make_support_nested_variables+:} false; then :
|
3227
|
+
$as_echo_n "(cached) " >&6
|
3228
|
+
else
|
3229
|
+
if $as_echo 'TRUE=$(BAR$(V))
|
3230
|
+
BAR0=false
|
3231
|
+
BAR1=true
|
3232
|
+
V=1
|
3233
|
+
am__doit:
|
3234
|
+
@$(TRUE)
|
3235
|
+
.PHONY: am__doit' | $am_make -f - >/dev/null 2>&1; then
|
3236
|
+
am_cv_make_support_nested_variables=yes
|
3237
|
+
else
|
3238
|
+
am_cv_make_support_nested_variables=no
|
3239
|
+
fi
|
3240
|
+
fi
|
3241
|
+
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5
|
3242
|
+
$as_echo "$am_cv_make_support_nested_variables" >&6; }
|
3243
|
+
if test $am_cv_make_support_nested_variables = yes; then
|
3244
|
+
AM_V='$(V)'
|
3245
|
+
AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
|
3246
|
+
else
|
3247
|
+
AM_V=$AM_DEFAULT_VERBOSITY
|
3248
|
+
AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY
|
3249
|
+
fi
|
3250
|
+
AM_BACKSLASH='\'
|
3251
|
+
|
3177
3252
|
DEPDIR="${am__leading_dot}deps"
|
3178
3253
|
|
3179
3254
|
ac_config_commands="$ac_config_commands depfiles"
|
@@ -3193,7 +3268,7 @@ am__quote=
|
|
3193
3268
|
_am_result=none
|
3194
3269
|
# First try GNU make style include.
|
3195
3270
|
echo "include confinc" > confmf
|
3196
|
-
# Ignore all kinds of additional output from
|
3271
|
+
# Ignore all kinds of additional output from 'make'.
|
3197
3272
|
case `$am_make -s -f confmf 2> /dev/null` in #(
|
3198
3273
|
*the\ am__doit\ target*)
|
3199
3274
|
am__include=include
|
@@ -3226,6 +3301,7 @@ fi
|
|
3226
3301
|
if test "x$enable_dependency_tracking" != xno; then
|
3227
3302
|
am_depcomp="$ac_aux_dir/depcomp"
|
3228
3303
|
AMDEPBACKSLASH='\'
|
3304
|
+
am__nodep='_no'
|
3229
3305
|
fi
|
3230
3306
|
if test "x$enable_dependency_tracking" != xno; then
|
3231
3307
|
AMDEP_TRUE=
|
@@ -3258,7 +3334,7 @@ do
|
|
3258
3334
|
IFS=$as_save_IFS
|
3259
3335
|
test -z "$as_dir" && as_dir=.
|
3260
3336
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
3261
|
-
if
|
3337
|
+
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
3262
3338
|
ac_cv_prog_CC="${ac_tool_prefix}gcc"
|
3263
3339
|
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
3264
3340
|
break 2
|
@@ -3298,7 +3374,7 @@ do
|
|
3298
3374
|
IFS=$as_save_IFS
|
3299
3375
|
test -z "$as_dir" && as_dir=.
|
3300
3376
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
3301
|
-
if
|
3377
|
+
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
3302
3378
|
ac_cv_prog_ac_ct_CC="gcc"
|
3303
3379
|
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
3304
3380
|
break 2
|
@@ -3351,7 +3427,7 @@ do
|
|
3351
3427
|
IFS=$as_save_IFS
|
3352
3428
|
test -z "$as_dir" && as_dir=.
|
3353
3429
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
3354
|
-
if
|
3430
|
+
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
3355
3431
|
ac_cv_prog_CC="${ac_tool_prefix}cc"
|
3356
3432
|
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
3357
3433
|
break 2
|
@@ -3392,7 +3468,7 @@ do
|
|
3392
3468
|
IFS=$as_save_IFS
|
3393
3469
|
test -z "$as_dir" && as_dir=.
|
3394
3470
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
3395
|
-
if
|
3471
|
+
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
3396
3472
|
if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then
|
3397
3473
|
ac_prog_rejected=yes
|
3398
3474
|
continue
|
@@ -3450,7 +3526,7 @@ do
|
|
3450
3526
|
IFS=$as_save_IFS
|
3451
3527
|
test -z "$as_dir" && as_dir=.
|
3452
3528
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
3453
|
-
if
|
3529
|
+
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
3454
3530
|
ac_cv_prog_CC="$ac_tool_prefix$ac_prog"
|
3455
3531
|
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
3456
3532
|
break 2
|
@@ -3494,7 +3570,7 @@ do
|
|
3494
3570
|
IFS=$as_save_IFS
|
3495
3571
|
test -z "$as_dir" && as_dir=.
|
3496
3572
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
3497
|
-
if
|
3573
|
+
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
3498
3574
|
ac_cv_prog_ac_ct_CC="$ac_prog"
|
3499
3575
|
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
3500
3576
|
break 2
|
@@ -3940,8 +4016,7 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
|
3940
4016
|
/* end confdefs.h. */
|
3941
4017
|
#include <stdarg.h>
|
3942
4018
|
#include <stdio.h>
|
3943
|
-
|
3944
|
-
#include <sys/stat.h>
|
4019
|
+
struct stat;
|
3945
4020
|
/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */
|
3946
4021
|
struct buf { int x; };
|
3947
4022
|
FILE * (*rcsopen) (struct buf *, struct stat *, int);
|
@@ -4026,6 +4101,65 @@ ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
|
|
4026
4101
|
ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
|
4027
4102
|
ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
4028
4103
|
|
4104
|
+
ac_ext=c
|
4105
|
+
ac_cpp='$CPP $CPPFLAGS'
|
4106
|
+
ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
|
4107
|
+
ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
|
4108
|
+
ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
4109
|
+
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC understands -c and -o together" >&5
|
4110
|
+
$as_echo_n "checking whether $CC understands -c and -o together... " >&6; }
|
4111
|
+
if ${am_cv_prog_cc_c_o+:} false; then :
|
4112
|
+
$as_echo_n "(cached) " >&6
|
4113
|
+
else
|
4114
|
+
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
4115
|
+
/* end confdefs.h. */
|
4116
|
+
|
4117
|
+
int
|
4118
|
+
main ()
|
4119
|
+
{
|
4120
|
+
|
4121
|
+
;
|
4122
|
+
return 0;
|
4123
|
+
}
|
4124
|
+
_ACEOF
|
4125
|
+
# Make sure it works both with $CC and with simple cc.
|
4126
|
+
# Following AC_PROG_CC_C_O, we do the test twice because some
|
4127
|
+
# compilers refuse to overwrite an existing .o file with -o,
|
4128
|
+
# though they will create one.
|
4129
|
+
am_cv_prog_cc_c_o=yes
|
4130
|
+
for am_i in 1 2; do
|
4131
|
+
if { echo "$as_me:$LINENO: $CC -c conftest.$ac_ext -o conftest2.$ac_objext" >&5
|
4132
|
+
($CC -c conftest.$ac_ext -o conftest2.$ac_objext) >&5 2>&5
|
4133
|
+
ac_status=$?
|
4134
|
+
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
4135
|
+
(exit $ac_status); } \
|
4136
|
+
&& test -f conftest2.$ac_objext; then
|
4137
|
+
: OK
|
4138
|
+
else
|
4139
|
+
am_cv_prog_cc_c_o=no
|
4140
|
+
break
|
4141
|
+
fi
|
4142
|
+
done
|
4143
|
+
rm -f core conftest*
|
4144
|
+
unset am_i
|
4145
|
+
fi
|
4146
|
+
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_prog_cc_c_o" >&5
|
4147
|
+
$as_echo "$am_cv_prog_cc_c_o" >&6; }
|
4148
|
+
if test "$am_cv_prog_cc_c_o" != yes; then
|
4149
|
+
# Losing compiler, so override with the script.
|
4150
|
+
# FIXME: It is wrong to rewrite CC.
|
4151
|
+
# But if we don't then we get into trouble of one sort or another.
|
4152
|
+
# A longer-term fix would be to have automake use am__CC in this case,
|
4153
|
+
# and then we could set am__CC="\$(top_srcdir)/compile \$(CC)"
|
4154
|
+
CC="$am_aux_dir/compile $CC"
|
4155
|
+
fi
|
4156
|
+
ac_ext=c
|
4157
|
+
ac_cpp='$CPP $CPPFLAGS'
|
4158
|
+
ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
|
4159
|
+
ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
|
4160
|
+
ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
4161
|
+
|
4162
|
+
|
4029
4163
|
depcc="$CC" am_compiler_list=
|
4030
4164
|
|
4031
4165
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5
|
@@ -4037,8 +4171,9 @@ else
|
|
4037
4171
|
# We make a subdir and do the tests there. Otherwise we can end up
|
4038
4172
|
# making bogus files that we don't know about and never remove. For
|
4039
4173
|
# instance it was reported that on HP-UX the gcc test will end up
|
4040
|
-
# making a dummy file named
|
4041
|
-
# in D
|
4174
|
+
# making a dummy file named 'D' -- because '-MD' means "put the output
|
4175
|
+
# in D".
|
4176
|
+
rm -rf conftest.dir
|
4042
4177
|
mkdir conftest.dir
|
4043
4178
|
# Copy depcomp to subdir because otherwise we won't find it if we're
|
4044
4179
|
# using a relative directory.
|
@@ -4072,16 +4207,16 @@ else
|
|
4072
4207
|
: > sub/conftest.c
|
4073
4208
|
for i in 1 2 3 4 5 6; do
|
4074
4209
|
echo '#include "conftst'$i'.h"' >> sub/conftest.c
|
4075
|
-
# Using
|
4076
|
-
# Solaris
|
4077
|
-
|
4210
|
+
# Using ": > sub/conftst$i.h" creates only sub/conftst1.h with
|
4211
|
+
# Solaris 10 /bin/sh.
|
4212
|
+
echo '/* dummy */' > sub/conftst$i.h
|
4078
4213
|
done
|
4079
4214
|
echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
|
4080
4215
|
|
4081
|
-
# We check with
|
4216
|
+
# We check with '-c' and '-o' for the sake of the "dashmstdout"
|
4082
4217
|
# mode. It turns out that the SunPro C++ compiler does not properly
|
4083
|
-
# handle
|
4084
|
-
# versions had trouble with output in subdirs
|
4218
|
+
# handle '-M -o', and we need to detect this. Also, some Intel
|
4219
|
+
# versions had trouble with output in subdirs.
|
4085
4220
|
am__obj=sub/conftest.${OBJEXT-o}
|
4086
4221
|
am__minus_obj="-o $am__obj"
|
4087
4222
|
case $depmode in
|
@@ -4090,16 +4225,16 @@ else
|
|
4090
4225
|
test "$am__universal" = false || continue
|
4091
4226
|
;;
|
4092
4227
|
nosideeffect)
|
4093
|
-
#
|
4094
|
-
# only be used when explicitly requested
|
4228
|
+
# After this tag, mechanisms are not by side-effect, so they'll
|
4229
|
+
# only be used when explicitly requested.
|
4095
4230
|
if test "x$enable_dependency_tracking" = xyes; then
|
4096
4231
|
continue
|
4097
4232
|
else
|
4098
4233
|
break
|
4099
4234
|
fi
|
4100
4235
|
;;
|
4101
|
-
msvisualcpp | msvcmsys)
|
4102
|
-
# This compiler won't grok
|
4236
|
+
msvc7 | msvc7msys | msvisualcpp | msvcmsys)
|
4237
|
+
# This compiler won't grok '-c -o', but also, the minuso test has
|
4103
4238
|
# not run yet. These depmodes are late enough in the game, and
|
4104
4239
|
# so weak that their functioning should not be impacted.
|
4105
4240
|
am__obj=conftest.${OBJEXT-o}
|
@@ -4199,7 +4334,7 @@ do
|
|
4199
4334
|
IFS=$as_save_IFS
|
4200
4335
|
test -z "$as_dir" && as_dir=.
|
4201
4336
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
4202
|
-
if
|
4337
|
+
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
4203
4338
|
ac_cv_prog_ISAINFO="$ac_prog"
|
4204
4339
|
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
4205
4340
|
break 2
|
@@ -4269,116 +4404,6 @@ fi
|
|
4269
4404
|
|
4270
4405
|
fi
|
4271
4406
|
|
4272
|
-
if test "x$CC" != xcc; then
|
4273
|
-
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC and cc understand -c and -o together" >&5
|
4274
|
-
$as_echo_n "checking whether $CC and cc understand -c and -o together... " >&6; }
|
4275
|
-
else
|
4276
|
-
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether cc understands -c and -o together" >&5
|
4277
|
-
$as_echo_n "checking whether cc understands -c and -o together... " >&6; }
|
4278
|
-
fi
|
4279
|
-
set dummy $CC; ac_cc=`$as_echo "$2" |
|
4280
|
-
sed 's/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/'`
|
4281
|
-
if eval \${ac_cv_prog_cc_${ac_cc}_c_o+:} false; then :
|
4282
|
-
$as_echo_n "(cached) " >&6
|
4283
|
-
else
|
4284
|
-
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
4285
|
-
/* end confdefs.h. */
|
4286
|
-
|
4287
|
-
int
|
4288
|
-
main ()
|
4289
|
-
{
|
4290
|
-
|
4291
|
-
;
|
4292
|
-
return 0;
|
4293
|
-
}
|
4294
|
-
_ACEOF
|
4295
|
-
# Make sure it works both with $CC and with simple cc.
|
4296
|
-
# We do the test twice because some compilers refuse to overwrite an
|
4297
|
-
# existing .o file with -o, though they will create one.
|
4298
|
-
ac_try='$CC -c conftest.$ac_ext -o conftest2.$ac_objext >&5'
|
4299
|
-
rm -f conftest2.*
|
4300
|
-
if { { case "(($ac_try" in
|
4301
|
-
*\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
|
4302
|
-
*) ac_try_echo=$ac_try;;
|
4303
|
-
esac
|
4304
|
-
eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
|
4305
|
-
$as_echo "$ac_try_echo"; } >&5
|
4306
|
-
(eval "$ac_try") 2>&5
|
4307
|
-
ac_status=$?
|
4308
|
-
$as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
|
4309
|
-
test $ac_status = 0; } &&
|
4310
|
-
test -f conftest2.$ac_objext && { { case "(($ac_try" in
|
4311
|
-
*\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
|
4312
|
-
*) ac_try_echo=$ac_try;;
|
4313
|
-
esac
|
4314
|
-
eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
|
4315
|
-
$as_echo "$ac_try_echo"; } >&5
|
4316
|
-
(eval "$ac_try") 2>&5
|
4317
|
-
ac_status=$?
|
4318
|
-
$as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
|
4319
|
-
test $ac_status = 0; };
|
4320
|
-
then
|
4321
|
-
eval ac_cv_prog_cc_${ac_cc}_c_o=yes
|
4322
|
-
if test "x$CC" != xcc; then
|
4323
|
-
# Test first that cc exists at all.
|
4324
|
-
if { ac_try='cc -c conftest.$ac_ext >&5'
|
4325
|
-
{ { case "(($ac_try" in
|
4326
|
-
*\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
|
4327
|
-
*) ac_try_echo=$ac_try;;
|
4328
|
-
esac
|
4329
|
-
eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
|
4330
|
-
$as_echo "$ac_try_echo"; } >&5
|
4331
|
-
(eval "$ac_try") 2>&5
|
4332
|
-
ac_status=$?
|
4333
|
-
$as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
|
4334
|
-
test $ac_status = 0; }; }; then
|
4335
|
-
ac_try='cc -c conftest.$ac_ext -o conftest2.$ac_objext >&5'
|
4336
|
-
rm -f conftest2.*
|
4337
|
-
if { { case "(($ac_try" in
|
4338
|
-
*\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
|
4339
|
-
*) ac_try_echo=$ac_try;;
|
4340
|
-
esac
|
4341
|
-
eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
|
4342
|
-
$as_echo "$ac_try_echo"; } >&5
|
4343
|
-
(eval "$ac_try") 2>&5
|
4344
|
-
ac_status=$?
|
4345
|
-
$as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
|
4346
|
-
test $ac_status = 0; } &&
|
4347
|
-
test -f conftest2.$ac_objext && { { case "(($ac_try" in
|
4348
|
-
*\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
|
4349
|
-
*) ac_try_echo=$ac_try;;
|
4350
|
-
esac
|
4351
|
-
eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\""
|
4352
|
-
$as_echo "$ac_try_echo"; } >&5
|
4353
|
-
(eval "$ac_try") 2>&5
|
4354
|
-
ac_status=$?
|
4355
|
-
$as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
|
4356
|
-
test $ac_status = 0; };
|
4357
|
-
then
|
4358
|
-
# cc works too.
|
4359
|
-
:
|
4360
|
-
else
|
4361
|
-
# cc exists but doesn't like -o.
|
4362
|
-
eval ac_cv_prog_cc_${ac_cc}_c_o=no
|
4363
|
-
fi
|
4364
|
-
fi
|
4365
|
-
fi
|
4366
|
-
else
|
4367
|
-
eval ac_cv_prog_cc_${ac_cc}_c_o=no
|
4368
|
-
fi
|
4369
|
-
rm -f core conftest*
|
4370
|
-
|
4371
|
-
fi
|
4372
|
-
if eval test \$ac_cv_prog_cc_${ac_cc}_c_o = yes; then
|
4373
|
-
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
4374
|
-
$as_echo "yes" >&6; }
|
4375
|
-
else
|
4376
|
-
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
4377
|
-
$as_echo "no" >&6; }
|
4378
|
-
|
4379
|
-
$as_echo "#define NO_MINUS_C_MINUS_O 1" >>confdefs.h
|
4380
|
-
|
4381
|
-
fi
|
4382
4407
|
|
4383
4408
|
|
4384
4409
|
ac_ext=c
|
@@ -4535,7 +4560,7 @@ do
|
|
4535
4560
|
for ac_prog in grep ggrep; do
|
4536
4561
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
4537
4562
|
ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext"
|
4538
|
-
|
4563
|
+
as_fn_executable_p "$ac_path_GREP" || continue
|
4539
4564
|
# Check for GNU ac_path_GREP and select it if it is found.
|
4540
4565
|
# Check for GNU $ac_path_GREP
|
4541
4566
|
case `"$ac_path_GREP" --version 2>&1` in
|
@@ -4601,7 +4626,7 @@ do
|
|
4601
4626
|
for ac_prog in egrep; do
|
4602
4627
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
4603
4628
|
ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext"
|
4604
|
-
|
4629
|
+
as_fn_executable_p "$ac_path_EGREP" || continue
|
4605
4630
|
# Check for GNU ac_path_EGREP and select it if it is found.
|
4606
4631
|
# Check for GNU $ac_path_EGREP
|
4607
4632
|
case `"$ac_path_EGREP" --version 2>&1` in
|
@@ -4965,7 +4990,7 @@ do
|
|
4965
4990
|
for ac_prog in sed gsed; do
|
4966
4991
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
4967
4992
|
ac_path_SED="$as_dir/$ac_prog$ac_exec_ext"
|
4968
|
-
|
4993
|
+
as_fn_executable_p "$ac_path_SED" || continue
|
4969
4994
|
# Check for GNU ac_path_SED and select it if it is found.
|
4970
4995
|
# Check for GNU $ac_path_SED
|
4971
4996
|
case `"$ac_path_SED" --version 2>&1` in
|
@@ -5044,7 +5069,7 @@ do
|
|
5044
5069
|
for ac_prog in fgrep; do
|
5045
5070
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
5046
5071
|
ac_path_FGREP="$as_dir/$ac_prog$ac_exec_ext"
|
5047
|
-
|
5072
|
+
as_fn_executable_p "$ac_path_FGREP" || continue
|
5048
5073
|
# Check for GNU ac_path_FGREP and select it if it is found.
|
5049
5074
|
# Check for GNU $ac_path_FGREP
|
5050
5075
|
case `"$ac_path_FGREP" --version 2>&1` in
|
@@ -5300,7 +5325,7 @@ do
|
|
5300
5325
|
IFS=$as_save_IFS
|
5301
5326
|
test -z "$as_dir" && as_dir=.
|
5302
5327
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
5303
|
-
if
|
5328
|
+
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
5304
5329
|
ac_cv_prog_DUMPBIN="$ac_tool_prefix$ac_prog"
|
5305
5330
|
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
5306
5331
|
break 2
|
@@ -5344,7 +5369,7 @@ do
|
|
5344
5369
|
IFS=$as_save_IFS
|
5345
5370
|
test -z "$as_dir" && as_dir=.
|
5346
5371
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
5347
|
-
if
|
5372
|
+
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
5348
5373
|
ac_cv_prog_ac_ct_DUMPBIN="$ac_prog"
|
5349
5374
|
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
5350
5375
|
break 2
|
@@ -5763,7 +5788,7 @@ do
|
|
5763
5788
|
IFS=$as_save_IFS
|
5764
5789
|
test -z "$as_dir" && as_dir=.
|
5765
5790
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
5766
|
-
if
|
5791
|
+
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
5767
5792
|
ac_cv_prog_OBJDUMP="${ac_tool_prefix}objdump"
|
5768
5793
|
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
5769
5794
|
break 2
|
@@ -5803,7 +5828,7 @@ do
|
|
5803
5828
|
IFS=$as_save_IFS
|
5804
5829
|
test -z "$as_dir" && as_dir=.
|
5805
5830
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
5806
|
-
if
|
5831
|
+
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
5807
5832
|
ac_cv_prog_ac_ct_OBJDUMP="objdump"
|
5808
5833
|
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
5809
5834
|
break 2
|
@@ -6109,7 +6134,7 @@ do
|
|
6109
6134
|
IFS=$as_save_IFS
|
6110
6135
|
test -z "$as_dir" && as_dir=.
|
6111
6136
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
6112
|
-
if
|
6137
|
+
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
6113
6138
|
ac_cv_prog_DLLTOOL="${ac_tool_prefix}dlltool"
|
6114
6139
|
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
6115
6140
|
break 2
|
@@ -6149,7 +6174,7 @@ do
|
|
6149
6174
|
IFS=$as_save_IFS
|
6150
6175
|
test -z "$as_dir" && as_dir=.
|
6151
6176
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
6152
|
-
if
|
6177
|
+
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
6153
6178
|
ac_cv_prog_ac_ct_DLLTOOL="dlltool"
|
6154
6179
|
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
6155
6180
|
break 2
|
@@ -6252,7 +6277,7 @@ do
|
|
6252
6277
|
IFS=$as_save_IFS
|
6253
6278
|
test -z "$as_dir" && as_dir=.
|
6254
6279
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
6255
|
-
if
|
6280
|
+
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
6256
6281
|
ac_cv_prog_AR="$ac_tool_prefix$ac_prog"
|
6257
6282
|
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
6258
6283
|
break 2
|
@@ -6296,7 +6321,7 @@ do
|
|
6296
6321
|
IFS=$as_save_IFS
|
6297
6322
|
test -z "$as_dir" && as_dir=.
|
6298
6323
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
6299
|
-
if
|
6324
|
+
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
6300
6325
|
ac_cv_prog_ac_ct_AR="$ac_prog"
|
6301
6326
|
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
6302
6327
|
break 2
|
@@ -6421,7 +6446,7 @@ do
|
|
6421
6446
|
IFS=$as_save_IFS
|
6422
6447
|
test -z "$as_dir" && as_dir=.
|
6423
6448
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
6424
|
-
if
|
6449
|
+
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
6425
6450
|
ac_cv_prog_STRIP="${ac_tool_prefix}strip"
|
6426
6451
|
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
6427
6452
|
break 2
|
@@ -6461,7 +6486,7 @@ do
|
|
6461
6486
|
IFS=$as_save_IFS
|
6462
6487
|
test -z "$as_dir" && as_dir=.
|
6463
6488
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
6464
|
-
if
|
6489
|
+
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
6465
6490
|
ac_cv_prog_ac_ct_STRIP="strip"
|
6466
6491
|
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
6467
6492
|
break 2
|
@@ -6520,7 +6545,7 @@ do
|
|
6520
6545
|
IFS=$as_save_IFS
|
6521
6546
|
test -z "$as_dir" && as_dir=.
|
6522
6547
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
6523
|
-
if
|
6548
|
+
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
6524
6549
|
ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib"
|
6525
6550
|
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
6526
6551
|
break 2
|
@@ -6560,7 +6585,7 @@ do
|
|
6560
6585
|
IFS=$as_save_IFS
|
6561
6586
|
test -z "$as_dir" && as_dir=.
|
6562
6587
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
6563
|
-
if
|
6588
|
+
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
6564
6589
|
ac_cv_prog_ac_ct_RANLIB="ranlib"
|
6565
6590
|
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
6566
6591
|
break 2
|
@@ -7195,7 +7220,7 @@ do
|
|
7195
7220
|
IFS=$as_save_IFS
|
7196
7221
|
test -z "$as_dir" && as_dir=.
|
7197
7222
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
7198
|
-
if
|
7223
|
+
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
7199
7224
|
ac_cv_prog_MANIFEST_TOOL="${ac_tool_prefix}mt"
|
7200
7225
|
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
7201
7226
|
break 2
|
@@ -7235,7 +7260,7 @@ do
|
|
7235
7260
|
IFS=$as_save_IFS
|
7236
7261
|
test -z "$as_dir" && as_dir=.
|
7237
7262
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
7238
|
-
if
|
7263
|
+
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
7239
7264
|
ac_cv_prog_ac_ct_MANIFEST_TOOL="mt"
|
7240
7265
|
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
7241
7266
|
break 2
|
@@ -7315,7 +7340,7 @@ do
|
|
7315
7340
|
IFS=$as_save_IFS
|
7316
7341
|
test -z "$as_dir" && as_dir=.
|
7317
7342
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
7318
|
-
if
|
7343
|
+
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
7319
7344
|
ac_cv_prog_DSYMUTIL="${ac_tool_prefix}dsymutil"
|
7320
7345
|
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
7321
7346
|
break 2
|
@@ -7355,7 +7380,7 @@ do
|
|
7355
7380
|
IFS=$as_save_IFS
|
7356
7381
|
test -z "$as_dir" && as_dir=.
|
7357
7382
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
7358
|
-
if
|
7383
|
+
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
7359
7384
|
ac_cv_prog_ac_ct_DSYMUTIL="dsymutil"
|
7360
7385
|
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
7361
7386
|
break 2
|
@@ -7407,7 +7432,7 @@ do
|
|
7407
7432
|
IFS=$as_save_IFS
|
7408
7433
|
test -z "$as_dir" && as_dir=.
|
7409
7434
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
7410
|
-
if
|
7435
|
+
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
7411
7436
|
ac_cv_prog_NMEDIT="${ac_tool_prefix}nmedit"
|
7412
7437
|
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
7413
7438
|
break 2
|
@@ -7447,7 +7472,7 @@ do
|
|
7447
7472
|
IFS=$as_save_IFS
|
7448
7473
|
test -z "$as_dir" && as_dir=.
|
7449
7474
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
7450
|
-
if
|
7475
|
+
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
7451
7476
|
ac_cv_prog_ac_ct_NMEDIT="nmedit"
|
7452
7477
|
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
7453
7478
|
break 2
|
@@ -7499,7 +7524,7 @@ do
|
|
7499
7524
|
IFS=$as_save_IFS
|
7500
7525
|
test -z "$as_dir" && as_dir=.
|
7501
7526
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
7502
|
-
if
|
7527
|
+
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
7503
7528
|
ac_cv_prog_LIPO="${ac_tool_prefix}lipo"
|
7504
7529
|
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
7505
7530
|
break 2
|
@@ -7539,7 +7564,7 @@ do
|
|
7539
7564
|
IFS=$as_save_IFS
|
7540
7565
|
test -z "$as_dir" && as_dir=.
|
7541
7566
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
7542
|
-
if
|
7567
|
+
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
7543
7568
|
ac_cv_prog_ac_ct_LIPO="lipo"
|
7544
7569
|
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
7545
7570
|
break 2
|
@@ -7591,7 +7616,7 @@ do
|
|
7591
7616
|
IFS=$as_save_IFS
|
7592
7617
|
test -z "$as_dir" && as_dir=.
|
7593
7618
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
7594
|
-
if
|
7619
|
+
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
7595
7620
|
ac_cv_prog_OTOOL="${ac_tool_prefix}otool"
|
7596
7621
|
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
7597
7622
|
break 2
|
@@ -7631,7 +7656,7 @@ do
|
|
7631
7656
|
IFS=$as_save_IFS
|
7632
7657
|
test -z "$as_dir" && as_dir=.
|
7633
7658
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
7634
|
-
if
|
7659
|
+
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
7635
7660
|
ac_cv_prog_ac_ct_OTOOL="otool"
|
7636
7661
|
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
7637
7662
|
break 2
|
@@ -7683,7 +7708,7 @@ do
|
|
7683
7708
|
IFS=$as_save_IFS
|
7684
7709
|
test -z "$as_dir" && as_dir=.
|
7685
7710
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
7686
|
-
if
|
7711
|
+
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
7687
7712
|
ac_cv_prog_OTOOL64="${ac_tool_prefix}otool64"
|
7688
7713
|
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
7689
7714
|
break 2
|
@@ -7723,7 +7748,7 @@ do
|
|
7723
7748
|
IFS=$as_save_IFS
|
7724
7749
|
test -z "$as_dir" && as_dir=.
|
7725
7750
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
7726
|
-
if
|
7751
|
+
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
7727
7752
|
ac_cv_prog_ac_ct_OTOOL64="otool64"
|
7728
7753
|
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
7729
7754
|
break 2
|
@@ -7953,7 +7978,7 @@ do
|
|
7953
7978
|
IFS=$as_save_IFS
|
7954
7979
|
test -z "$as_dir" && as_dir=.
|
7955
7980
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
7956
|
-
if
|
7981
|
+
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
7957
7982
|
ac_cv_prog_CXX="$ac_tool_prefix$ac_prog"
|
7958
7983
|
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
7959
7984
|
break 2
|
@@ -7997,7 +8022,7 @@ do
|
|
7997
8022
|
IFS=$as_save_IFS
|
7998
8023
|
test -z "$as_dir" && as_dir=.
|
7999
8024
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
8000
|
-
if
|
8025
|
+
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
8001
8026
|
ac_cv_prog_ac_ct_CXX="$ac_prog"
|
8002
8027
|
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
8003
8028
|
break 2
|
@@ -8193,8 +8218,9 @@ else
|
|
8193
8218
|
# We make a subdir and do the tests there. Otherwise we can end up
|
8194
8219
|
# making bogus files that we don't know about and never remove. For
|
8195
8220
|
# instance it was reported that on HP-UX the gcc test will end up
|
8196
|
-
# making a dummy file named
|
8197
|
-
# in D
|
8221
|
+
# making a dummy file named 'D' -- because '-MD' means "put the output
|
8222
|
+
# in D".
|
8223
|
+
rm -rf conftest.dir
|
8198
8224
|
mkdir conftest.dir
|
8199
8225
|
# Copy depcomp to subdir because otherwise we won't find it if we're
|
8200
8226
|
# using a relative directory.
|
@@ -8228,16 +8254,16 @@ else
|
|
8228
8254
|
: > sub/conftest.c
|
8229
8255
|
for i in 1 2 3 4 5 6; do
|
8230
8256
|
echo '#include "conftst'$i'.h"' >> sub/conftest.c
|
8231
|
-
# Using
|
8232
|
-
# Solaris
|
8233
|
-
|
8257
|
+
# Using ": > sub/conftst$i.h" creates only sub/conftst1.h with
|
8258
|
+
# Solaris 10 /bin/sh.
|
8259
|
+
echo '/* dummy */' > sub/conftst$i.h
|
8234
8260
|
done
|
8235
8261
|
echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
|
8236
8262
|
|
8237
|
-
# We check with
|
8263
|
+
# We check with '-c' and '-o' for the sake of the "dashmstdout"
|
8238
8264
|
# mode. It turns out that the SunPro C++ compiler does not properly
|
8239
|
-
# handle
|
8240
|
-
# versions had trouble with output in subdirs
|
8265
|
+
# handle '-M -o', and we need to detect this. Also, some Intel
|
8266
|
+
# versions had trouble with output in subdirs.
|
8241
8267
|
am__obj=sub/conftest.${OBJEXT-o}
|
8242
8268
|
am__minus_obj="-o $am__obj"
|
8243
8269
|
case $depmode in
|
@@ -8246,16 +8272,16 @@ else
|
|
8246
8272
|
test "$am__universal" = false || continue
|
8247
8273
|
;;
|
8248
8274
|
nosideeffect)
|
8249
|
-
#
|
8250
|
-
# only be used when explicitly requested
|
8275
|
+
# After this tag, mechanisms are not by side-effect, so they'll
|
8276
|
+
# only be used when explicitly requested.
|
8251
8277
|
if test "x$enable_dependency_tracking" = xyes; then
|
8252
8278
|
continue
|
8253
8279
|
else
|
8254
8280
|
break
|
8255
8281
|
fi
|
8256
8282
|
;;
|
8257
|
-
msvisualcpp | msvcmsys)
|
8258
|
-
# This compiler won't grok
|
8283
|
+
msvc7 | msvc7msys | msvisualcpp | msvcmsys)
|
8284
|
+
# This compiler won't grok '-c -o', but also, the minuso test has
|
8259
8285
|
# not run yet. These depmodes are late enough in the game, and
|
8260
8286
|
# so weak that their functioning should not be impacted.
|
8261
8287
|
am__obj=conftest.${OBJEXT-o}
|
@@ -16006,18 +16032,70 @@ AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"}
|
|
16006
16032
|
|
16007
16033
|
MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"}
|
16008
16034
|
|
16035
|
+
# For better backward compatibility. To be removed once Automake 1.9.x
|
16036
|
+
# dies out for good. For more background, see:
|
16037
|
+
# <http://lists.gnu.org/archive/html/automake/2012-07/msg00001.html>
|
16038
|
+
# <http://lists.gnu.org/archive/html/automake/2012-07/msg00014.html>
|
16039
|
+
mkdir_p='$(MKDIR_P)'
|
16040
|
+
|
16009
16041
|
# We need awk for the "check" target. The system "awk" is bad on
|
16010
16042
|
# some platforms.
|
16011
|
-
# Always define AMTAR for backward compatibility.
|
16043
|
+
# Always define AMTAR for backward compatibility. Yes, it's still used
|
16044
|
+
# in the wild :-( We should find a proper way to deprecate it ...
|
16045
|
+
AMTAR='$${TAR-tar}'
|
16046
|
+
|
16047
|
+
|
16048
|
+
# We'll loop over all known methods to create a tar archive until one works.
|
16049
|
+
_am_tools='gnutar pax cpio none'
|
16050
|
+
|
16051
|
+
am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'
|
16052
|
+
|
16053
|
+
|
16054
|
+
|
16055
|
+
|
16012
16056
|
|
16013
|
-
AMTAR=${AMTAR-"${am_missing_run}tar"}
|
16014
16057
|
|
16015
|
-
|
16058
|
+
# POSIX will say in a future version that running "rm -f" with no argument
|
16059
|
+
# is OK; and we want to be able to make that assumption in our Makefile
|
16060
|
+
# recipes. So use an aggressive probe to check that the usage we want is
|
16061
|
+
# actually supported "in the wild" to an acceptable degree.
|
16062
|
+
# See automake bug#10828.
|
16063
|
+
# To make any issue more visible, cause the running configure to be aborted
|
16064
|
+
# by default if the 'rm' program in use doesn't match our expectations; the
|
16065
|
+
# user can still override this though.
|
16066
|
+
if rm -f && rm -fr && rm -rf; then : OK; else
|
16067
|
+
cat >&2 <<'END'
|
16068
|
+
Oops!
|
16016
16069
|
|
16070
|
+
Your 'rm' program seems unable to run without file operands specified
|
16071
|
+
on the command line, even when the '-f' option is present. This is contrary
|
16072
|
+
to the behaviour of most rm programs out there, and not conforming with
|
16073
|
+
the upcoming POSIX standard: <http://austingroupbugs.net/view.php?id=542>
|
16017
16074
|
|
16075
|
+
Please tell bug-automake@gnu.org about your system, including the value
|
16076
|
+
of your $PATH and any error possibly output before this message. This
|
16077
|
+
can help us improve future automake versions.
|
16018
16078
|
|
16079
|
+
END
|
16080
|
+
if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then
|
16081
|
+
echo 'Configuration will proceed anyway, since you have set the' >&2
|
16082
|
+
echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2
|
16083
|
+
echo >&2
|
16084
|
+
else
|
16085
|
+
cat >&2 <<'END'
|
16086
|
+
Aborting the configuration process, to ensure you take notice of the issue.
|
16019
16087
|
|
16088
|
+
You can download and install GNU coreutils to get an 'rm' implementation
|
16089
|
+
that behaves properly: <http://www.gnu.org/software/coreutils/>.
|
16020
16090
|
|
16091
|
+
If you want to complete the configuration process using your problematic
|
16092
|
+
'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM
|
16093
|
+
to "yes", and re-run configure.
|
16094
|
+
|
16095
|
+
END
|
16096
|
+
as_fn_error $? "Your 'rm' program is bad, sorry." "$LINENO" 5
|
16097
|
+
fi
|
16098
|
+
fi
|
16021
16099
|
|
16022
16100
|
|
16023
16101
|
|
@@ -16053,7 +16131,7 @@ do
|
|
16053
16131
|
IFS=$as_save_IFS
|
16054
16132
|
test -z "$as_dir" && as_dir=.
|
16055
16133
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
16056
|
-
if
|
16134
|
+
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
16057
16135
|
ac_cv_prog_CXX="$ac_tool_prefix$ac_prog"
|
16058
16136
|
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
16059
16137
|
break 2
|
@@ -16097,7 +16175,7 @@ do
|
|
16097
16175
|
IFS=$as_save_IFS
|
16098
16176
|
test -z "$as_dir" && as_dir=.
|
16099
16177
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
16100
|
-
if
|
16178
|
+
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
16101
16179
|
ac_cv_prog_ac_ct_CXX="$ac_prog"
|
16102
16180
|
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
16103
16181
|
break 2
|
@@ -16293,8 +16371,9 @@ else
|
|
16293
16371
|
# We make a subdir and do the tests there. Otherwise we can end up
|
16294
16372
|
# making bogus files that we don't know about and never remove. For
|
16295
16373
|
# instance it was reported that on HP-UX the gcc test will end up
|
16296
|
-
# making a dummy file named
|
16297
|
-
# in D
|
16374
|
+
# making a dummy file named 'D' -- because '-MD' means "put the output
|
16375
|
+
# in D".
|
16376
|
+
rm -rf conftest.dir
|
16298
16377
|
mkdir conftest.dir
|
16299
16378
|
# Copy depcomp to subdir because otherwise we won't find it if we're
|
16300
16379
|
# using a relative directory.
|
@@ -16328,16 +16407,16 @@ else
|
|
16328
16407
|
: > sub/conftest.c
|
16329
16408
|
for i in 1 2 3 4 5 6; do
|
16330
16409
|
echo '#include "conftst'$i'.h"' >> sub/conftest.c
|
16331
|
-
# Using
|
16332
|
-
# Solaris
|
16333
|
-
|
16410
|
+
# Using ": > sub/conftst$i.h" creates only sub/conftst1.h with
|
16411
|
+
# Solaris 10 /bin/sh.
|
16412
|
+
echo '/* dummy */' > sub/conftst$i.h
|
16334
16413
|
done
|
16335
16414
|
echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
|
16336
16415
|
|
16337
|
-
# We check with
|
16416
|
+
# We check with '-c' and '-o' for the sake of the "dashmstdout"
|
16338
16417
|
# mode. It turns out that the SunPro C++ compiler does not properly
|
16339
|
-
# handle
|
16340
|
-
# versions had trouble with output in subdirs
|
16418
|
+
# handle '-M -o', and we need to detect this. Also, some Intel
|
16419
|
+
# versions had trouble with output in subdirs.
|
16341
16420
|
am__obj=sub/conftest.${OBJEXT-o}
|
16342
16421
|
am__minus_obj="-o $am__obj"
|
16343
16422
|
case $depmode in
|
@@ -16346,16 +16425,16 @@ else
|
|
16346
16425
|
test "$am__universal" = false || continue
|
16347
16426
|
;;
|
16348
16427
|
nosideeffect)
|
16349
|
-
#
|
16350
|
-
# only be used when explicitly requested
|
16428
|
+
# After this tag, mechanisms are not by side-effect, so they'll
|
16429
|
+
# only be used when explicitly requested.
|
16351
16430
|
if test "x$enable_dependency_tracking" = xyes; then
|
16352
16431
|
continue
|
16353
16432
|
else
|
16354
16433
|
break
|
16355
16434
|
fi
|
16356
16435
|
;;
|
16357
|
-
msvisualcpp | msvcmsys)
|
16358
|
-
# This compiler won't grok
|
16436
|
+
msvc7 | msvc7msys | msvisualcpp | msvcmsys)
|
16437
|
+
# This compiler won't grok '-c -o', but also, the minuso test has
|
16359
16438
|
# not run yet. These depmodes are late enough in the game, and
|
16360
16439
|
# so weak that their functioning should not be impacted.
|
16361
16440
|
am__obj=conftest.${OBJEXT-o}
|
@@ -16546,20 +16625,6 @@ ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
|
|
16546
16625
|
ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
|
16547
16626
|
ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
16548
16627
|
|
16549
|
-
# FIXME: we rely on the cache variable name because
|
16550
|
-
# there is no other way.
|
16551
|
-
set dummy $CC
|
16552
|
-
am_cc=`echo $2 | sed 's/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/'`
|
16553
|
-
eval am_t=\$ac_cv_prog_cc_${am_cc}_c_o
|
16554
|
-
if test "$am_t" != yes; then
|
16555
|
-
# Losing compiler, so override with the script.
|
16556
|
-
# FIXME: It is wrong to rewrite CC.
|
16557
|
-
# But if we don't then we get into trouble of one sort or another.
|
16558
|
-
# A longer-term fix would be to have automake use am__CC in this case,
|
16559
|
-
# and then we could set am__CC="\$(top_srcdir)/compile \$(CC)"
|
16560
|
-
CC="$am_aux_dir/compile $CC"
|
16561
|
-
fi
|
16562
|
-
|
16563
16628
|
|
16564
16629
|
|
16565
16630
|
|
@@ -17033,11 +17098,11 @@ else
|
|
17033
17098
|
int
|
17034
17099
|
main ()
|
17035
17100
|
{
|
17036
|
-
|
17101
|
+
|
17037
17102
|
#ifndef __cplusplus
|
17038
|
-
/* Ultrix mips cc rejects this. */
|
17103
|
+
/* Ultrix mips cc rejects this sort of thing. */
|
17039
17104
|
typedef int charset[2];
|
17040
|
-
const charset cs;
|
17105
|
+
const charset cs = { 0, 0 };
|
17041
17106
|
/* SunOS 4.1.1 cc rejects this. */
|
17042
17107
|
char const *const *pcpcc;
|
17043
17108
|
char **ppc;
|
@@ -17054,8 +17119,9 @@ main ()
|
|
17054
17119
|
++pcpcc;
|
17055
17120
|
ppc = (char**) pcpcc;
|
17056
17121
|
pcpcc = (char const *const *) ppc;
|
17057
|
-
{ /* SCO 3.2v4 cc rejects this. */
|
17058
|
-
char
|
17122
|
+
{ /* SCO 3.2v4 cc rejects this sort of thing. */
|
17123
|
+
char tx;
|
17124
|
+
char *t = &tx;
|
17059
17125
|
char const *s = 0 ? (char *) 0 : (char const *) 0;
|
17060
17126
|
|
17061
17127
|
*t++ = 0;
|
@@ -17071,10 +17137,10 @@ main ()
|
|
17071
17137
|
iptr p = 0;
|
17072
17138
|
++p;
|
17073
17139
|
}
|
17074
|
-
{ /* AIX XL C 1.02.0.0 rejects this saying
|
17140
|
+
{ /* AIX XL C 1.02.0.0 rejects this sort of thing, saying
|
17075
17141
|
"k.c", line 2.27: 1506-025 (S) Operand must be a modifiable lvalue. */
|
17076
|
-
struct s { int j; const int *ap[3]; };
|
17077
|
-
struct s *b; b->j = 5;
|
17142
|
+
struct s { int j; const int *ap[3]; } bx;
|
17143
|
+
struct s *b = &bx; b->j = 5;
|
17078
17144
|
}
|
17079
17145
|
{ /* ULTRIX-32 V3.1 (Rev 9) vcc rejects this */
|
17080
17146
|
const int foo = 10;
|
@@ -17467,6 +17533,8 @@ _ACEOF
|
|
17467
17533
|
esac
|
17468
17534
|
rm -rf conftest*
|
17469
17535
|
fi
|
17536
|
+
|
17537
|
+
|
17470
17538
|
fi
|
17471
17539
|
|
17472
17540
|
|
@@ -18167,7 +18235,7 @@ do
|
|
18167
18235
|
IFS=$as_save_IFS
|
18168
18236
|
test -z "$as_dir" && as_dir=.
|
18169
18237
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
18170
|
-
if
|
18238
|
+
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
18171
18239
|
ac_cv_prog_DTRACE="$ac_prog"
|
18172
18240
|
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
18173
18241
|
break 2
|
@@ -18605,7 +18673,7 @@ do
|
|
18605
18673
|
IFS=$as_save_IFS
|
18606
18674
|
test -z "$as_dir" && as_dir=.
|
18607
18675
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
18608
|
-
if
|
18676
|
+
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
18609
18677
|
ac_cv_prog_DOXYGEN="$ac_prog"
|
18610
18678
|
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
18611
18679
|
break 2
|
@@ -18647,7 +18715,7 @@ do
|
|
18647
18715
|
IFS=$as_save_IFS
|
18648
18716
|
test -z "$as_dir" && as_dir=.
|
18649
18717
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
18650
|
-
if
|
18718
|
+
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
18651
18719
|
ac_cv_prog_PERL="$ac_prog"
|
18652
18720
|
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
18653
18721
|
break 2
|
@@ -18863,7 +18931,7 @@ do
|
|
18863
18931
|
IFS=$as_save_IFS
|
18864
18932
|
test -z "$as_dir" && as_dir=.
|
18865
18933
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
18866
|
-
if
|
18934
|
+
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
18867
18935
|
ac_cv_prog_acx_pthread_config="yes"
|
18868
18936
|
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
18869
18937
|
break 2
|
@@ -19019,7 +19087,7 @@ do
|
|
19019
19087
|
IFS=$as_save_IFS
|
19020
19088
|
test -z "$as_dir" && as_dir=.
|
19021
19089
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
19022
|
-
if
|
19090
|
+
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
19023
19091
|
ac_cv_prog_PTHREAD_CC="$ac_prog"
|
19024
19092
|
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
19025
19093
|
break 2
|
@@ -19593,54 +19661,6 @@ else
|
|
19593
19661
|
fi
|
19594
19662
|
|
19595
19663
|
|
19596
|
-
|
19597
|
-
# Extract the first word of "pod2man", so it can be a program name with args.
|
19598
|
-
set dummy pod2man; ac_word=$2
|
19599
|
-
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
|
19600
|
-
$as_echo_n "checking for $ac_word... " >&6; }
|
19601
|
-
if ${ac_cv_path_POD2MAN+:} false; then :
|
19602
|
-
$as_echo_n "(cached) " >&6
|
19603
|
-
else
|
19604
|
-
case $POD2MAN in
|
19605
|
-
[\\/]* | ?:[\\/]*)
|
19606
|
-
ac_cv_path_POD2MAN="$POD2MAN" # Let the user override the test with a path.
|
19607
|
-
;;
|
19608
|
-
*)
|
19609
|
-
as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
|
19610
|
-
as_dummy="$PATH:/usr/bin:/usr/local/bin:/usr/perl5/bin"
|
19611
|
-
for as_dir in $as_dummy
|
19612
|
-
do
|
19613
|
-
IFS=$as_save_IFS
|
19614
|
-
test -z "$as_dir" && as_dir=.
|
19615
|
-
for ac_exec_ext in '' $ac_executable_extensions; do
|
19616
|
-
if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
|
19617
|
-
ac_cv_path_POD2MAN="$as_dir/$ac_word$ac_exec_ext"
|
19618
|
-
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
19619
|
-
break 2
|
19620
|
-
fi
|
19621
|
-
done
|
19622
|
-
done
|
19623
|
-
IFS=$as_save_IFS
|
19624
|
-
|
19625
|
-
test -z "$ac_cv_path_POD2MAN" && ac_cv_path_POD2MAN=""no""
|
19626
|
-
;;
|
19627
|
-
esac
|
19628
|
-
fi
|
19629
|
-
POD2MAN=$ac_cv_path_POD2MAN
|
19630
|
-
if test -n "$POD2MAN"; then
|
19631
|
-
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $POD2MAN" >&5
|
19632
|
-
$as_echo "$POD2MAN" >&6; }
|
19633
|
-
else
|
19634
|
-
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
19635
|
-
$as_echo "no" >&6; }
|
19636
|
-
fi
|
19637
|
-
|
19638
|
-
|
19639
|
-
if test "x$POD2MAN" = "xno"; then :
|
19640
|
-
as_fn_error $? "\"Could not find pod2man anywhere in path\"" "$LINENO" 5
|
19641
|
-
fi
|
19642
|
-
|
19643
|
-
|
19644
19664
|
ac_ext=c
|
19645
19665
|
ac_cpp='$CPP $CPPFLAGS'
|
19646
19666
|
ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
|
@@ -19734,7 +19754,7 @@ do
|
|
19734
19754
|
IFS=$as_save_IFS
|
19735
19755
|
test -z "$as_dir" && as_dir=.
|
19736
19756
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
19737
|
-
if
|
19757
|
+
if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
19738
19758
|
ac_cv_path_MEMC_BINARY="$as_dir/$ac_word$ac_exec_ext"
|
19739
19759
|
$as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
19740
19760
|
break 2
|
@@ -19786,6 +19806,7 @@ fi
|
|
19786
19806
|
|
19787
19807
|
|
19788
19808
|
|
19809
|
+
|
19789
19810
|
# Check whether --with-gnu-ld was given.
|
19790
19811
|
if test "${with_gnu_ld+set}" = set; then :
|
19791
19812
|
withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes
|
@@ -19796,21 +19817,21 @@ fi
|
|
19796
19817
|
# Prepare PATH_SEPARATOR.
|
19797
19818
|
# The user is always right.
|
19798
19819
|
if test "${PATH_SEPARATOR+set}" != set; then
|
19799
|
-
|
19800
|
-
|
19801
|
-
|
19802
|
-
|
19803
|
-
|
19804
|
-
|
19805
|
-
|
19806
|
-
|
19807
|
-
rm -f conf$$.sh
|
19820
|
+
# Determine PATH_SEPARATOR by trying to find /bin/sh in a PATH which
|
19821
|
+
# contains only /bin. Note that ksh looks also at the FPATH variable,
|
19822
|
+
# so we have to set that as well for the test.
|
19823
|
+
PATH_SEPARATOR=:
|
19824
|
+
(PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 \
|
19825
|
+
&& { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 \
|
19826
|
+
|| PATH_SEPARATOR=';'
|
19827
|
+
}
|
19808
19828
|
fi
|
19829
|
+
|
19809
19830
|
ac_prog=ld
|
19810
19831
|
if test "$GCC" = yes; then
|
19811
19832
|
# Check if gcc -print-prog-name=ld gives a path.
|
19812
|
-
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld used by
|
19813
|
-
$as_echo_n "checking for ld used by
|
19833
|
+
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld used by $CC" >&5
|
19834
|
+
$as_echo_n "checking for ld used by $CC... " >&6; }
|
19814
19835
|
case $host in
|
19815
19836
|
*-*-mingw*)
|
19816
19837
|
# gcc leaves a trailing carriage return which upsets mingw
|
@@ -19820,11 +19841,11 @@ $as_echo_n "checking for ld used by GCC... " >&6; }
|
|
19820
19841
|
esac
|
19821
19842
|
case $ac_prog in
|
19822
19843
|
# Accept absolute paths.
|
19823
|
-
[\\/]* | [
|
19844
|
+
[\\/]* | ?:[\\/]*)
|
19824
19845
|
re_direlt='/[^/][^/]*/\.\./'
|
19825
|
-
# Canonicalize the
|
19826
|
-
ac_prog=`echo $ac_prog| sed 's%\\\\%/%g'`
|
19827
|
-
while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do
|
19846
|
+
# Canonicalize the pathname of ld
|
19847
|
+
ac_prog=`echo "$ac_prog"| sed 's%\\\\%/%g'`
|
19848
|
+
while echo "$ac_prog" | grep "$re_direlt" > /dev/null 2>&1; do
|
19828
19849
|
ac_prog=`echo $ac_prog| sed "s%$re_direlt%/%"`
|
19829
19850
|
done
|
19830
19851
|
test -z "$LD" && LD="$ac_prog"
|
@@ -19849,23 +19870,26 @@ if ${acl_cv_path_LD+:} false; then :
|
|
19849
19870
|
$as_echo_n "(cached) " >&6
|
19850
19871
|
else
|
19851
19872
|
if test -z "$LD"; then
|
19852
|
-
|
19873
|
+
acl_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
|
19853
19874
|
for ac_dir in $PATH; do
|
19875
|
+
IFS="$acl_save_ifs"
|
19854
19876
|
test -z "$ac_dir" && ac_dir=.
|
19855
19877
|
if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then
|
19856
19878
|
acl_cv_path_LD="$ac_dir/$ac_prog"
|
19857
19879
|
# Check to see if the program is GNU ld. I'd rather use --version,
|
19858
|
-
# but apparently some GNU ld
|
19880
|
+
# but apparently some variants of GNU ld only accept -v.
|
19859
19881
|
# Break only if it was the GNU/non-GNU ld that we prefer.
|
19860
|
-
case `"$acl_cv_path_LD" -v 2>&1
|
19882
|
+
case `"$acl_cv_path_LD" -v 2>&1 </dev/null` in
|
19861
19883
|
*GNU* | *'with BFD'*)
|
19862
|
-
test "$with_gnu_ld" != no && break
|
19884
|
+
test "$with_gnu_ld" != no && break
|
19885
|
+
;;
|
19863
19886
|
*)
|
19864
|
-
test "$with_gnu_ld" != yes && break
|
19887
|
+
test "$with_gnu_ld" != yes && break
|
19888
|
+
;;
|
19865
19889
|
esac
|
19866
19890
|
fi
|
19867
19891
|
done
|
19868
|
-
IFS="$
|
19892
|
+
IFS="$acl_save_ifs"
|
19869
19893
|
else
|
19870
19894
|
acl_cv_path_LD="$LD" # Let the user override the test with a path.
|
19871
19895
|
fi
|
@@ -19885,12 +19909,14 @@ $as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; }
|
|
19885
19909
|
if ${acl_cv_prog_gnu_ld+:} false; then :
|
19886
19910
|
$as_echo_n "(cached) " >&6
|
19887
19911
|
else
|
19888
|
-
# I'd rather use --version here, but apparently some GNU
|
19912
|
+
# I'd rather use --version here, but apparently some GNU lds only accept -v.
|
19889
19913
|
case `$LD -v 2>&1 </dev/null` in
|
19890
19914
|
*GNU* | *'with BFD'*)
|
19891
|
-
acl_cv_prog_gnu_ld=yes
|
19915
|
+
acl_cv_prog_gnu_ld=yes
|
19916
|
+
;;
|
19892
19917
|
*)
|
19893
|
-
acl_cv_prog_gnu_ld=no
|
19918
|
+
acl_cv_prog_gnu_ld=no
|
19919
|
+
;;
|
19894
19920
|
esac
|
19895
19921
|
fi
|
19896
19922
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $acl_cv_prog_gnu_ld" >&5
|
@@ -20025,7 +20051,7 @@ fi
|
|
20025
20051
|
done
|
20026
20052
|
if test -z "$already_handled"; then
|
20027
20053
|
names_already_handled="$names_already_handled $name"
|
20028
|
-
uppername=`echo "$name" | sed -e 'y|abcdefghijklmnopqrstuvwxyz
|
20054
|
+
uppername=`echo "$name" | sed -e 'y|abcdefghijklmnopqrstuvwxyz./+-|ABCDEFGHIJKLMNOPQRSTUVWXYZ____|'`
|
20029
20055
|
eval value=\"\$HAVE_LIB$uppername\"
|
20030
20056
|
if test -n "$value"; then
|
20031
20057
|
if test "$value" = yes; then
|
@@ -20583,7 +20609,7 @@ fi
|
|
20583
20609
|
done
|
20584
20610
|
if test -z "$already_handled"; then
|
20585
20611
|
names_already_handled="$names_already_handled $name"
|
20586
|
-
uppername=`echo "$name" | sed -e 'y|abcdefghijklmnopqrstuvwxyz
|
20612
|
+
uppername=`echo "$name" | sed -e 'y|abcdefghijklmnopqrstuvwxyz./+-|ABCDEFGHIJKLMNOPQRSTUVWXYZ____|'`
|
20587
20613
|
eval value=\"\$HAVE_LIB$uppername\"
|
20588
20614
|
if test -n "$value"; then
|
20589
20615
|
if test "$value" = yes; then
|
@@ -21107,7 +21133,7 @@ if test "x$ac_cv_sasl" = "xyes"; then :
|
|
21107
21133
|
fi
|
21108
21134
|
|
21109
21135
|
|
21110
|
-
ac_config_files="$ac_config_files Makefile clients/Makefile tests/Makefile
|
21136
|
+
ac_config_files="$ac_config_files Makefile clients/Makefile tests/Makefile libmemcached/Makefile libmemcached/memcached_configure.h libmemcachedutil/Makefile support/Makefile support/libmemcached.pc support/libmemcached.spec support/libmemcached-fc.spec"
|
21111
21137
|
|
21112
21138
|
cat >confcache <<\_ACEOF
|
21113
21139
|
# This file is a shell script that caches the results of configure
|
@@ -21203,7 +21229,6 @@ DEFS=-DHAVE_CONFIG_H
|
|
21203
21229
|
|
21204
21230
|
ac_libobjs=
|
21205
21231
|
ac_ltlibobjs=
|
21206
|
-
U=
|
21207
21232
|
for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue
|
21208
21233
|
# 1. Remove the extension, and $U if already installed.
|
21209
21234
|
ac_script='s/\$U\././;s/\.o$//;s/\.obj$//'
|
@@ -21218,6 +21243,14 @@ LIBOBJS=$ac_libobjs
|
|
21218
21243
|
LTLIBOBJS=$ac_ltlibobjs
|
21219
21244
|
|
21220
21245
|
|
21246
|
+
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking that generated files are newer than configure" >&5
|
21247
|
+
$as_echo_n "checking that generated files are newer than configure... " >&6; }
|
21248
|
+
if test -n "$am_sleep_pid"; then
|
21249
|
+
# Hide warnings about reused PIDs.
|
21250
|
+
wait $am_sleep_pid 2>/dev/null
|
21251
|
+
fi
|
21252
|
+
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: done" >&5
|
21253
|
+
$as_echo "done" >&6; }
|
21221
21254
|
if test -n "$EXEEXT"; then
|
21222
21255
|
am__EXEEXT_TRUE=
|
21223
21256
|
am__EXEEXT_FALSE='#'
|
@@ -21573,16 +21606,16 @@ if (echo >conf$$.file) 2>/dev/null; then
|
|
21573
21606
|
# ... but there are two gotchas:
|
21574
21607
|
# 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
|
21575
21608
|
# 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
|
21576
|
-
# In both cases, we have to default to `cp -
|
21609
|
+
# In both cases, we have to default to `cp -pR'.
|
21577
21610
|
ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
|
21578
|
-
as_ln_s='cp -
|
21611
|
+
as_ln_s='cp -pR'
|
21579
21612
|
elif ln conf$$.file conf$$ 2>/dev/null; then
|
21580
21613
|
as_ln_s=ln
|
21581
21614
|
else
|
21582
|
-
as_ln_s='cp -
|
21615
|
+
as_ln_s='cp -pR'
|
21583
21616
|
fi
|
21584
21617
|
else
|
21585
|
-
as_ln_s='cp -
|
21618
|
+
as_ln_s='cp -pR'
|
21586
21619
|
fi
|
21587
21620
|
rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file
|
21588
21621
|
rmdir conf$$.dir 2>/dev/null
|
@@ -21642,28 +21675,16 @@ else
|
|
21642
21675
|
as_mkdir_p=false
|
21643
21676
|
fi
|
21644
21677
|
|
21645
|
-
|
21646
|
-
|
21647
|
-
|
21648
|
-
|
21649
|
-
|
21650
|
-
|
21651
|
-
|
21652
|
-
|
21653
|
-
|
21654
|
-
|
21655
|
-
if test -d "$1"; then
|
21656
|
-
test -d "$1/.";
|
21657
|
-
else
|
21658
|
-
case $1 in #(
|
21659
|
-
-*)set "./$1";;
|
21660
|
-
esac;
|
21661
|
-
case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #((
|
21662
|
-
???[sx]*):;;*)false;;esac;fi
|
21663
|
-
'\'' sh
|
21664
|
-
'
|
21665
|
-
fi
|
21666
|
-
as_executable_p=$as_test_x
|
21678
|
+
|
21679
|
+
# as_fn_executable_p FILE
|
21680
|
+
# -----------------------
|
21681
|
+
# Test if FILE is an executable regular file.
|
21682
|
+
as_fn_executable_p ()
|
21683
|
+
{
|
21684
|
+
test -f "$1" && test -x "$1"
|
21685
|
+
} # as_fn_executable_p
|
21686
|
+
as_test_x='test -x'
|
21687
|
+
as_executable_p=as_fn_executable_p
|
21667
21688
|
|
21668
21689
|
# Sed expression to map a string onto a valid CPP name.
|
21669
21690
|
as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'"
|
@@ -21685,7 +21706,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
|
|
21685
21706
|
# values after options handling.
|
21686
21707
|
ac_log="
|
21687
21708
|
This file was extended by libmemcached $as_me 0.32, which was
|
21688
|
-
generated by GNU Autoconf 2.
|
21709
|
+
generated by GNU Autoconf 2.69. Invocation command line was
|
21689
21710
|
|
21690
21711
|
CONFIG_FILES = $CONFIG_FILES
|
21691
21712
|
CONFIG_HEADERS = $CONFIG_HEADERS
|
@@ -21751,10 +21772,10 @@ cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
|
|
21751
21772
|
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
|
21752
21773
|
ac_cs_version="\\
|
21753
21774
|
libmemcached config.status 0.32
|
21754
|
-
configured by $0, generated by GNU Autoconf 2.
|
21775
|
+
configured by $0, generated by GNU Autoconf 2.69,
|
21755
21776
|
with options \\"\$ac_cs_config\\"
|
21756
21777
|
|
21757
|
-
Copyright (C)
|
21778
|
+
Copyright (C) 2012 Free Software Foundation, Inc.
|
21758
21779
|
This config.status script is free software; the Free Software Foundation
|
21759
21780
|
gives unlimited permission to copy, distribute and modify it."
|
21760
21781
|
|
@@ -21845,7 +21866,7 @@ fi
|
|
21845
21866
|
_ACEOF
|
21846
21867
|
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
|
21847
21868
|
if \$ac_cs_recheck; then
|
21848
|
-
set X
|
21869
|
+
set X $SHELL '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion
|
21849
21870
|
shift
|
21850
21871
|
\$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6
|
21851
21872
|
CONFIG_SHELL='$SHELL'
|
@@ -22262,7 +22283,6 @@ do
|
|
22262
22283
|
"Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
|
22263
22284
|
"clients/Makefile") CONFIG_FILES="$CONFIG_FILES clients/Makefile" ;;
|
22264
22285
|
"tests/Makefile") CONFIG_FILES="$CONFIG_FILES tests/Makefile" ;;
|
22265
|
-
"docs/Makefile") CONFIG_FILES="$CONFIG_FILES docs/Makefile" ;;
|
22266
22286
|
"libmemcached/Makefile") CONFIG_FILES="$CONFIG_FILES libmemcached/Makefile" ;;
|
22267
22287
|
"libmemcached/memcached_configure.h") CONFIG_FILES="$CONFIG_FILES libmemcached/memcached_configure.h" ;;
|
22268
22288
|
"libmemcachedutil/Makefile") CONFIG_FILES="$CONFIG_FILES libmemcachedutil/Makefile" ;;
|
@@ -22866,7 +22886,7 @@ $as_echo "$as_me: executing $ac_file commands" >&6;}
|
|
22866
22886
|
|
22867
22887
|
case $ac_file$ac_mode in
|
22868
22888
|
"depfiles":C) test x"$AMDEP_TRUE" != x"" || {
|
22869
|
-
# Autoconf
|
22889
|
+
# Older Autoconf quotes --file arguments for eval, but not when files
|
22870
22890
|
# are listed without --file. Let's play safe and only enable the eval
|
22871
22891
|
# if we detect the quoting.
|
22872
22892
|
case $CONFIG_FILES in
|
@@ -22879,7 +22899,7 @@ $as_echo "$as_me: executing $ac_file commands" >&6;}
|
|
22879
22899
|
# Strip MF so we end up with the name of the file.
|
22880
22900
|
mf=`echo "$mf" | sed -e 's/:.*$//'`
|
22881
22901
|
# Check whether this is an Automake generated Makefile or not.
|
22882
|
-
# We used to match only the files named
|
22902
|
+
# We used to match only the files named 'Makefile.in', but
|
22883
22903
|
# some people rename them; so instead we look at the file content.
|
22884
22904
|
# Grep'ing the first line is not enough: some people post-process
|
22885
22905
|
# each Makefile.in and add a new line on top of each file to say so.
|
@@ -22913,21 +22933,19 @@ $as_echo X"$mf" |
|
|
22913
22933
|
continue
|
22914
22934
|
fi
|
22915
22935
|
# Extract the definition of DEPDIR, am__include, and am__quote
|
22916
|
-
# from the Makefile without running
|
22936
|
+
# from the Makefile without running 'make'.
|
22917
22937
|
DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
|
22918
22938
|
test -z "$DEPDIR" && continue
|
22919
22939
|
am__include=`sed -n 's/^am__include = //p' < "$mf"`
|
22920
|
-
test -z "am__include" && continue
|
22940
|
+
test -z "$am__include" && continue
|
22921
22941
|
am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
|
22922
|
-
# When using ansi2knr, U may be empty or an underscore; expand it
|
22923
|
-
U=`sed -n 's/^U = //p' < "$mf"`
|
22924
22942
|
# Find all dependency output files, they are included files with
|
22925
22943
|
# $(DEPDIR) in their names. We invoke sed twice because it is the
|
22926
22944
|
# simplest approach to changing $(DEPDIR) to its actual value in the
|
22927
22945
|
# expansion.
|
22928
22946
|
for file in `sed -n "
|
22929
22947
|
s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
|
22930
|
-
sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'
|
22948
|
+
sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do
|
22931
22949
|
# Make sure the directory exists.
|
22932
22950
|
test -f "$dirpart/$file" && continue
|
22933
22951
|
fdir=`$as_dirname -- "$file" ||
|