rbcdio 0.03 → 0.04
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.
- data/COPYING +623 -289
- data/ChangeLog +342 -219
- data/INSTALL +35 -26
- data/Makefile.am +2 -3
- data/Makefile.in +61 -45
- data/NEWS +7 -3
- data/README +8 -9
- data/THANKS +1 -0
- data/VERSION +1 -1
- data/config.guess +21 -11
- data/config.sub +38 -6
- data/configure +1195 -1031
- data/configure.ac +1 -1
- data/example/README +5 -3
- data/example/audio.rb +0 -0
- data/example/cd-read.rb +0 -0
- data/example/cdchange.rb +0 -0
- data/example/cdtext.rb +70 -0
- data/example/device.rb +0 -0
- data/example/drives.rb +30 -32
- data/example/eject.rb +0 -0
- data/example/iso1.rb +0 -0
- data/example/iso2.rb +0 -0
- data/example/iso3.rb +0 -0
- data/example/tracks.rb +0 -0
- data/ext/cdio/Makefile +92 -56
- data/ext/cdio/rubycdio_wrap.c +387 -101
- data/ext/iso9660/Makefile +93 -57
- data/ext/iso9660/rubyiso9660_wrap.c +127 -70
- data/install-sh +355 -159
- data/lib/cdio.rb +877 -843
- data/missing +34 -27
- data/swig/Makefile +1 -1
- data/swig/cdtext.swg +67 -0
- data/swig/device.swg +3 -3
- data/swig/disc.swg +2 -2
- data/swig/rubycdio.swg +3 -1
- data/swig/track.swg +9 -4
- data/test/cdiotest.rb +214 -216
- data/test/cdtext.rb +44 -0
- data/test/isocopy.rb +8 -9
- data/test/isotest.rb +126 -107
- metadata +21 -29
- data/doc/created.rid +0 -1
- data/doc/fr_class_index.html +0 -42
- data/doc/fr_file_index.html +0 -41
- data/doc/fr_method_index.html +0 -133
- data/doc/index.html +0 -24
- data/doc/rdoc-style.css +0 -208
- data/example/COPYING +0 -340
- data/example/copying +0 -340
- data/example/drivers.rb +0 -60
data/configure
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
#! /bin/sh
|
2
2
|
# From configure.ac Id: configure.ac,v 1.8 2008/09/22 20:26:24 rocky Exp .
|
3
3
|
# Guess values for system-dependent variables and create Makefiles.
|
4
|
-
# Generated by GNU Autoconf 2.
|
4
|
+
# Generated by GNU Autoconf 2.63 for rbcdio 0.04.
|
5
5
|
#
|
6
6
|
# Report bugs to <libcdio-rubycdio-devel@gnu.org>.
|
7
7
|
#
|
8
8
|
# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
|
9
|
-
# 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
|
9
|
+
# 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
|
10
10
|
# This configure script is free software; the Free Software Foundation
|
11
11
|
# gives unlimited permission to copy, distribute and modify it.
|
12
12
|
## --------------------- ##
|
@@ -18,7 +18,7 @@ DUALCASE=1; export DUALCASE # for MKS sh
|
|
18
18
|
if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
|
19
19
|
emulate sh
|
20
20
|
NULLCMD=:
|
21
|
-
#
|
21
|
+
# Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
|
22
22
|
# is contrary to our usage. Disable this feature.
|
23
23
|
alias -g '${1+"$@"}'='"$@"'
|
24
24
|
setopt NO_GLOB_SUBST
|
@@ -40,17 +40,45 @@ as_cr_Letters=$as_cr_letters$as_cr_LETTERS
|
|
40
40
|
as_cr_digits='0123456789'
|
41
41
|
as_cr_alnum=$as_cr_Letters$as_cr_digits
|
42
42
|
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
43
|
+
as_nl='
|
44
|
+
'
|
45
|
+
export as_nl
|
46
|
+
# Printing a long string crashes Solaris 7 /usr/bin/printf.
|
47
|
+
as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
|
48
|
+
as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
|
49
|
+
as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
|
50
|
+
if (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
|
51
|
+
as_echo='printf %s\n'
|
52
|
+
as_echo_n='printf %s'
|
53
|
+
else
|
54
|
+
if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
|
55
|
+
as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
|
56
|
+
as_echo_n='/usr/ucb/echo -n'
|
50
57
|
else
|
51
|
-
|
58
|
+
as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
|
59
|
+
as_echo_n_body='eval
|
60
|
+
arg=$1;
|
61
|
+
case $arg in
|
62
|
+
*"$as_nl"*)
|
63
|
+
expr "X$arg" : "X\\(.*\\)$as_nl";
|
64
|
+
arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
|
65
|
+
esac;
|
66
|
+
expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
|
67
|
+
'
|
68
|
+
export as_echo_n_body
|
69
|
+
as_echo_n='sh -c $as_echo_n_body as_echo'
|
52
70
|
fi
|
53
|
-
|
71
|
+
export as_echo_body
|
72
|
+
as_echo='sh -c $as_echo_body as_echo'
|
73
|
+
fi
|
74
|
+
|
75
|
+
# The user is always right.
|
76
|
+
if test "${PATH_SEPARATOR+set}" != set; then
|
77
|
+
PATH_SEPARATOR=:
|
78
|
+
(PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
|
79
|
+
(PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
|
80
|
+
PATH_SEPARATOR=';'
|
81
|
+
}
|
54
82
|
fi
|
55
83
|
|
56
84
|
# Support unset when possible.
|
@@ -66,8 +94,6 @@ fi
|
|
66
94
|
# there to prevent editors from complaining about space-tab.
|
67
95
|
# (If _AS_PATH_WALK were called with IFS unset, it would disable word
|
68
96
|
# splitting by setting IFS to empty value.)
|
69
|
-
as_nl='
|
70
|
-
'
|
71
97
|
IFS=" "" $as_nl"
|
72
98
|
|
73
99
|
# Find who we are. Look in the path if we contain no directory separator.
|
@@ -90,7 +116,7 @@ if test "x$as_myself" = x; then
|
|
90
116
|
as_myself=$0
|
91
117
|
fi
|
92
118
|
if test ! -f "$as_myself"; then
|
93
|
-
|
119
|
+
$as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
|
94
120
|
{ (exit 1); exit 1; }
|
95
121
|
fi
|
96
122
|
|
@@ -103,17 +129,10 @@ PS2='> '
|
|
103
129
|
PS4='+ '
|
104
130
|
|
105
131
|
# NLS nuisances.
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
do
|
111
|
-
if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then
|
112
|
-
eval $as_var=C; export $as_var
|
113
|
-
else
|
114
|
-
($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var
|
115
|
-
fi
|
116
|
-
done
|
132
|
+
LC_ALL=C
|
133
|
+
export LC_ALL
|
134
|
+
LANGUAGE=C
|
135
|
+
export LANGUAGE
|
117
136
|
|
118
137
|
# Required to use basename.
|
119
138
|
if expr a : '\(a\)' >/dev/null 2>&1 &&
|
@@ -135,7 +154,7 @@ as_me=`$as_basename -- "$0" ||
|
|
135
154
|
$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
|
136
155
|
X"$0" : 'X\(//\)$' \| \
|
137
156
|
X"$0" : 'X\(/\)' \| . 2>/dev/null ||
|
138
|
-
|
157
|
+
$as_echo X/"$0" |
|
139
158
|
sed '/^.*\/\([^/][^/]*\)\/*$/{
|
140
159
|
s//\1/
|
141
160
|
q
|
@@ -161,7 +180,7 @@ else
|
|
161
180
|
as_have_required=no
|
162
181
|
fi
|
163
182
|
|
164
|
-
if test $as_have_required = yes &&
|
183
|
+
if test $as_have_required = yes && (eval ":
|
165
184
|
(as_func_return () {
|
166
185
|
(exit \$1)
|
167
186
|
}
|
@@ -243,7 +262,7 @@ IFS=$as_save_IFS
|
|
243
262
|
if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
|
244
263
|
emulate sh
|
245
264
|
NULLCMD=:
|
246
|
-
#
|
265
|
+
# Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
|
247
266
|
# is contrary to our usage. Disable this feature.
|
248
267
|
alias -g '${1+"$@"}'='"$@"'
|
249
268
|
setopt NO_GLOB_SUBST
|
@@ -264,7 +283,7 @@ _ASEOF
|
|
264
283
|
if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
|
265
284
|
emulate sh
|
266
285
|
NULLCMD=:
|
267
|
-
#
|
286
|
+
# Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
|
268
287
|
# is contrary to our usage. Disable this feature.
|
269
288
|
alias -g '${1+"$@"}'='"$@"'
|
270
289
|
setopt NO_GLOB_SUBST
|
@@ -344,10 +363,10 @@ fi
|
|
344
363
|
|
345
364
|
if test "x$CONFIG_SHELL" != x; then
|
346
365
|
for as_var in BASH_ENV ENV
|
347
|
-
|
348
|
-
|
349
|
-
|
350
|
-
|
366
|
+
do ($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var
|
367
|
+
done
|
368
|
+
export CONFIG_SHELL
|
369
|
+
exec "$CONFIG_SHELL" "$as_myself" ${1+"$@"}
|
351
370
|
fi
|
352
371
|
|
353
372
|
|
@@ -416,9 +435,10 @@ fi
|
|
416
435
|
|
417
436
|
test \$exitcode = 0") || {
|
418
437
|
echo No shell found that supports shell functions.
|
419
|
-
echo Please tell autoconf@gnu.org about your system,
|
420
|
-
echo including any error possibly output before this
|
421
|
-
echo
|
438
|
+
echo Please tell bug-autoconf@gnu.org about your system,
|
439
|
+
echo including any error possibly output before this message.
|
440
|
+
echo This can help us improve future autoconf versions.
|
441
|
+
echo Configuration will now proceed without shell functions.
|
422
442
|
}
|
423
443
|
|
424
444
|
|
@@ -454,7 +474,7 @@ test \$exitcode = 0") || {
|
|
454
474
|
s/-\n.*//
|
455
475
|
' >$as_me.lineno &&
|
456
476
|
chmod +x "$as_me.lineno" ||
|
457
|
-
{
|
477
|
+
{ $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2
|
458
478
|
{ (exit 1); exit 1; }; }
|
459
479
|
|
460
480
|
# Don't try to exec as it changes $[0], causing all sort of problems
|
@@ -482,7 +502,6 @@ case `echo -n x` in
|
|
482
502
|
*)
|
483
503
|
ECHO_N='-n';;
|
484
504
|
esac
|
485
|
-
|
486
505
|
if expr a : '\(a\)' >/dev/null 2>&1 &&
|
487
506
|
test "X`expr 00001 : '.*\(...\)'`" = X001; then
|
488
507
|
as_expr=expr
|
@@ -495,19 +514,22 @@ if test -d conf$$.dir; then
|
|
495
514
|
rm -f conf$$.dir/conf$$.file
|
496
515
|
else
|
497
516
|
rm -f conf$$.dir
|
498
|
-
mkdir conf$$.dir
|
499
|
-
fi
|
500
|
-
echo >conf$$.file
|
501
|
-
if ln -s conf$$.file conf$$ 2>/dev/null; then
|
502
|
-
|
503
|
-
|
504
|
-
|
505
|
-
|
506
|
-
|
507
|
-
|
517
|
+
mkdir conf$$.dir 2>/dev/null
|
518
|
+
fi
|
519
|
+
if (echo >conf$$.file) 2>/dev/null; then
|
520
|
+
if ln -s conf$$.file conf$$ 2>/dev/null; then
|
521
|
+
as_ln_s='ln -s'
|
522
|
+
# ... but there are two gotchas:
|
523
|
+
# 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
|
524
|
+
# 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
|
525
|
+
# In both cases, we have to default to `cp -p'.
|
526
|
+
ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
|
527
|
+
as_ln_s='cp -p'
|
528
|
+
elif ln conf$$.file conf$$ 2>/dev/null; then
|
529
|
+
as_ln_s=ln
|
530
|
+
else
|
508
531
|
as_ln_s='cp -p'
|
509
|
-
|
510
|
-
as_ln_s=ln
|
532
|
+
fi
|
511
533
|
else
|
512
534
|
as_ln_s='cp -p'
|
513
535
|
fi
|
@@ -532,10 +554,10 @@ else
|
|
532
554
|
as_test_x='
|
533
555
|
eval sh -c '\''
|
534
556
|
if test -d "$1"; then
|
535
|
-
|
557
|
+
test -d "$1/.";
|
536
558
|
else
|
537
559
|
case $1 in
|
538
|
-
|
560
|
+
-*)set "./$1";;
|
539
561
|
esac;
|
540
562
|
case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in
|
541
563
|
???[sx]*):;;*)false;;esac;fi
|
@@ -575,113 +597,122 @@ SHELL=${CONFIG_SHELL-/bin/sh}
|
|
575
597
|
# Identity of this package.
|
576
598
|
PACKAGE_NAME='rbcdio'
|
577
599
|
PACKAGE_TARNAME='rbcdio'
|
578
|
-
PACKAGE_VERSION='0.
|
579
|
-
PACKAGE_STRING='rbcdio 0.
|
600
|
+
PACKAGE_VERSION='0.04'
|
601
|
+
PACKAGE_STRING='rbcdio 0.04'
|
580
602
|
PACKAGE_BUGREPORT='libcdio-rubycdio-devel@gnu.org'
|
581
603
|
|
582
|
-
ac_subst_vars='
|
583
|
-
PATH_SEPARATOR
|
584
|
-
PACKAGE_NAME
|
585
|
-
PACKAGE_TARNAME
|
586
|
-
PACKAGE_VERSION
|
587
|
-
PACKAGE_STRING
|
588
|
-
PACKAGE_BUGREPORT
|
589
|
-
exec_prefix
|
590
|
-
prefix
|
591
|
-
program_transform_name
|
592
|
-
bindir
|
593
|
-
sbindir
|
594
|
-
libexecdir
|
595
|
-
datarootdir
|
596
|
-
datadir
|
597
|
-
sysconfdir
|
598
|
-
sharedstatedir
|
599
|
-
localstatedir
|
600
|
-
includedir
|
601
|
-
oldincludedir
|
602
|
-
docdir
|
603
|
-
infodir
|
604
|
-
htmldir
|
605
|
-
dvidir
|
606
|
-
pdfdir
|
607
|
-
psdir
|
608
|
-
libdir
|
609
|
-
localedir
|
610
|
-
mandir
|
611
|
-
DEFS
|
612
|
-
ECHO_C
|
613
|
-
ECHO_N
|
614
|
-
ECHO_T
|
615
|
-
LIBS
|
616
|
-
build_alias
|
617
|
-
host_alias
|
618
|
-
target_alias
|
619
|
-
MAINTAINER_MODE_TRUE
|
620
|
-
MAINTAINER_MODE_FALSE
|
621
|
-
MAINT
|
622
|
-
CC
|
623
|
-
CFLAGS
|
624
|
-
LDFLAGS
|
625
|
-
CPPFLAGS
|
626
|
-
ac_ct_CC
|
627
|
-
EXEEXT
|
628
|
-
OBJEXT
|
629
|
-
INSTALL_PROGRAM
|
630
|
-
INSTALL_SCRIPT
|
631
|
-
INSTALL_DATA
|
632
|
-
CYGPATH_W
|
633
|
-
PACKAGE
|
634
|
-
VERSION
|
635
|
-
ACLOCAL
|
636
|
-
AUTOCONF
|
637
|
-
AUTOMAKE
|
638
|
-
AUTOHEADER
|
639
|
-
MAKEINFO
|
640
|
-
install_sh
|
641
|
-
STRIP
|
642
|
-
INSTALL_STRIP_PROGRAM
|
643
|
-
mkdir_p
|
644
|
-
AWK
|
645
|
-
SET_MAKE
|
646
|
-
am__leading_dot
|
647
|
-
AMTAR
|
648
|
-
am__tar
|
649
|
-
am__untar
|
650
|
-
DEPDIR
|
651
|
-
am__include
|
652
|
-
am__quote
|
653
|
-
AMDEP_TRUE
|
654
|
-
AMDEP_FALSE
|
655
|
-
AMDEPBACKSLASH
|
656
|
-
CCDEPMODE
|
657
|
-
am__fastdepCC_TRUE
|
658
|
-
am__fastdepCC_FALSE
|
659
|
-
CVS2CL
|
660
|
-
SWIG
|
661
|
-
PKG_CONFIG
|
662
|
-
libcdio_CFLAGS
|
663
|
-
libcdio_LIBS
|
664
|
-
libiso9660_CFLAGS
|
665
|
-
libiso9660_LIBS
|
666
|
-
LN_S
|
667
|
-
RUBY
|
668
|
-
RUBY_INC
|
669
|
-
build
|
670
|
-
build_cpu
|
671
|
-
build_vendor
|
672
|
-
build_os
|
673
|
-
host
|
674
|
-
host_cpu
|
675
|
-
host_vendor
|
676
|
-
host_os
|
677
|
-
SO
|
678
|
-
RUBY_LIBS
|
679
|
-
LDSHARED
|
680
|
-
SWIG_FLAGS
|
681
|
-
RUBYCDIO_LIBDIR
|
604
|
+
ac_subst_vars='LTLIBOBJS
|
682
605
|
LIBOBJS
|
683
|
-
|
606
|
+
RUBYCDIO_LIBDIR
|
607
|
+
SWIG_FLAGS
|
608
|
+
LDSHARED
|
609
|
+
RUBY_LIBS
|
610
|
+
SO
|
611
|
+
host_os
|
612
|
+
host_vendor
|
613
|
+
host_cpu
|
614
|
+
host
|
615
|
+
build_os
|
616
|
+
build_vendor
|
617
|
+
build_cpu
|
618
|
+
build
|
619
|
+
RUBY_INC
|
620
|
+
RUBY
|
621
|
+
LN_S
|
622
|
+
libiso9660_LIBS
|
623
|
+
libiso9660_CFLAGS
|
624
|
+
libcdio_LIBS
|
625
|
+
libcdio_CFLAGS
|
626
|
+
PKG_CONFIG
|
627
|
+
SWIG
|
628
|
+
CVS2CL
|
629
|
+
am__fastdepCC_FALSE
|
630
|
+
am__fastdepCC_TRUE
|
631
|
+
CCDEPMODE
|
632
|
+
AMDEPBACKSLASH
|
633
|
+
AMDEP_FALSE
|
634
|
+
AMDEP_TRUE
|
635
|
+
am__quote
|
636
|
+
am__include
|
637
|
+
DEPDIR
|
638
|
+
am__untar
|
639
|
+
am__tar
|
640
|
+
AMTAR
|
641
|
+
am__leading_dot
|
642
|
+
SET_MAKE
|
643
|
+
AWK
|
644
|
+
mkdir_p
|
645
|
+
MKDIR_P
|
646
|
+
INSTALL_STRIP_PROGRAM
|
647
|
+
STRIP
|
648
|
+
install_sh
|
649
|
+
MAKEINFO
|
650
|
+
AUTOHEADER
|
651
|
+
AUTOMAKE
|
652
|
+
AUTOCONF
|
653
|
+
ACLOCAL
|
654
|
+
VERSION
|
655
|
+
PACKAGE
|
656
|
+
CYGPATH_W
|
657
|
+
am__isrc
|
658
|
+
INSTALL_DATA
|
659
|
+
INSTALL_SCRIPT
|
660
|
+
INSTALL_PROGRAM
|
661
|
+
OBJEXT
|
662
|
+
EXEEXT
|
663
|
+
ac_ct_CC
|
664
|
+
CPPFLAGS
|
665
|
+
LDFLAGS
|
666
|
+
CFLAGS
|
667
|
+
CC
|
668
|
+
MAINT
|
669
|
+
MAINTAINER_MODE_FALSE
|
670
|
+
MAINTAINER_MODE_TRUE
|
671
|
+
target_alias
|
672
|
+
host_alias
|
673
|
+
build_alias
|
674
|
+
LIBS
|
675
|
+
ECHO_T
|
676
|
+
ECHO_N
|
677
|
+
ECHO_C
|
678
|
+
DEFS
|
679
|
+
mandir
|
680
|
+
localedir
|
681
|
+
libdir
|
682
|
+
psdir
|
683
|
+
pdfdir
|
684
|
+
dvidir
|
685
|
+
htmldir
|
686
|
+
infodir
|
687
|
+
docdir
|
688
|
+
oldincludedir
|
689
|
+
includedir
|
690
|
+
localstatedir
|
691
|
+
sharedstatedir
|
692
|
+
sysconfdir
|
693
|
+
datadir
|
694
|
+
datarootdir
|
695
|
+
libexecdir
|
696
|
+
sbindir
|
697
|
+
bindir
|
698
|
+
program_transform_name
|
699
|
+
prefix
|
700
|
+
exec_prefix
|
701
|
+
PACKAGE_BUGREPORT
|
702
|
+
PACKAGE_STRING
|
703
|
+
PACKAGE_VERSION
|
704
|
+
PACKAGE_TARNAME
|
705
|
+
PACKAGE_NAME
|
706
|
+
PATH_SEPARATOR
|
707
|
+
SHELL'
|
684
708
|
ac_subst_files=''
|
709
|
+
ac_user_opts='
|
710
|
+
enable_option_checking
|
711
|
+
enable_maintainer_mode
|
712
|
+
enable_dependency_tracking
|
713
|
+
with_site_packages
|
714
|
+
with_ruby
|
715
|
+
'
|
685
716
|
ac_precious_vars='build_alias
|
686
717
|
host_alias
|
687
718
|
target_alias
|
@@ -700,6 +731,8 @@ libiso9660_LIBS'
|
|
700
731
|
# Initialize some variables set by options.
|
701
732
|
ac_init_help=
|
702
733
|
ac_init_version=false
|
734
|
+
ac_unrecognized_opts=
|
735
|
+
ac_unrecognized_sep=
|
703
736
|
# The variables have the same names as the options, with
|
704
737
|
# dashes changed to underlines.
|
705
738
|
cache_file=/dev/null
|
@@ -798,13 +831,21 @@ do
|
|
798
831
|
datarootdir=$ac_optarg ;;
|
799
832
|
|
800
833
|
-disable-* | --disable-*)
|
801
|
-
|
834
|
+
ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
|
802
835
|
# Reject names that are not valid shell variable names.
|
803
|
-
expr "x$
|
804
|
-
{
|
836
|
+
expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
|
837
|
+
{ $as_echo "$as_me: error: invalid feature name: $ac_useropt" >&2
|
805
838
|
{ (exit 1); exit 1; }; }
|
806
|
-
|
807
|
-
|
839
|
+
ac_useropt_orig=$ac_useropt
|
840
|
+
ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
|
841
|
+
case $ac_user_opts in
|
842
|
+
*"
|
843
|
+
"enable_$ac_useropt"
|
844
|
+
"*) ;;
|
845
|
+
*) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig"
|
846
|
+
ac_unrecognized_sep=', ';;
|
847
|
+
esac
|
848
|
+
eval enable_$ac_useropt=no ;;
|
808
849
|
|
809
850
|
-docdir | --docdir | --docdi | --doc | --do)
|
810
851
|
ac_prev=docdir ;;
|
@@ -817,13 +858,21 @@ do
|
|
817
858
|
dvidir=$ac_optarg ;;
|
818
859
|
|
819
860
|
-enable-* | --enable-*)
|
820
|
-
|
861
|
+
ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'`
|
821
862
|
# Reject names that are not valid shell variable names.
|
822
|
-
expr "x$
|
823
|
-
{
|
863
|
+
expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
|
864
|
+
{ $as_echo "$as_me: error: invalid feature name: $ac_useropt" >&2
|
824
865
|
{ (exit 1); exit 1; }; }
|
825
|
-
|
826
|
-
|
866
|
+
ac_useropt_orig=$ac_useropt
|
867
|
+
ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
|
868
|
+
case $ac_user_opts in
|
869
|
+
*"
|
870
|
+
"enable_$ac_useropt"
|
871
|
+
"*) ;;
|
872
|
+
*) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig"
|
873
|
+
ac_unrecognized_sep=', ';;
|
874
|
+
esac
|
875
|
+
eval enable_$ac_useropt=\$ac_optarg ;;
|
827
876
|
|
828
877
|
-exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
|
829
878
|
| --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \
|
@@ -1014,22 +1063,38 @@ do
|
|
1014
1063
|
ac_init_version=: ;;
|
1015
1064
|
|
1016
1065
|
-with-* | --with-*)
|
1017
|
-
|
1066
|
+
ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'`
|
1018
1067
|
# Reject names that are not valid shell variable names.
|
1019
|
-
expr "x$
|
1020
|
-
{
|
1068
|
+
expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
|
1069
|
+
{ $as_echo "$as_me: error: invalid package name: $ac_useropt" >&2
|
1021
1070
|
{ (exit 1); exit 1; }; }
|
1022
|
-
|
1023
|
-
|
1071
|
+
ac_useropt_orig=$ac_useropt
|
1072
|
+
ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
|
1073
|
+
case $ac_user_opts in
|
1074
|
+
*"
|
1075
|
+
"with_$ac_useropt"
|
1076
|
+
"*) ;;
|
1077
|
+
*) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig"
|
1078
|
+
ac_unrecognized_sep=', ';;
|
1079
|
+
esac
|
1080
|
+
eval with_$ac_useropt=\$ac_optarg ;;
|
1024
1081
|
|
1025
1082
|
-without-* | --without-*)
|
1026
|
-
|
1083
|
+
ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'`
|
1027
1084
|
# Reject names that are not valid shell variable names.
|
1028
|
-
expr "x$
|
1029
|
-
{
|
1085
|
+
expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null &&
|
1086
|
+
{ $as_echo "$as_me: error: invalid package name: $ac_useropt" >&2
|
1030
1087
|
{ (exit 1); exit 1; }; }
|
1031
|
-
|
1032
|
-
|
1088
|
+
ac_useropt_orig=$ac_useropt
|
1089
|
+
ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'`
|
1090
|
+
case $ac_user_opts in
|
1091
|
+
*"
|
1092
|
+
"with_$ac_useropt"
|
1093
|
+
"*) ;;
|
1094
|
+
*) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig"
|
1095
|
+
ac_unrecognized_sep=', ';;
|
1096
|
+
esac
|
1097
|
+
eval with_$ac_useropt=no ;;
|
1033
1098
|
|
1034
1099
|
--x)
|
1035
1100
|
# Obsolete; use --with-x.
|
@@ -1049,7 +1114,7 @@ do
|
|
1049
1114
|
| --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
|
1050
1115
|
x_libraries=$ac_optarg ;;
|
1051
1116
|
|
1052
|
-
-*) {
|
1117
|
+
-*) { $as_echo "$as_me: error: unrecognized option: $ac_option
|
1053
1118
|
Try \`$0 --help' for more information." >&2
|
1054
1119
|
{ (exit 1); exit 1; }; }
|
1055
1120
|
;;
|
@@ -1058,16 +1123,16 @@ Try \`$0 --help' for more information." >&2
|
|
1058
1123
|
ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='`
|
1059
1124
|
# Reject names that are not valid shell variable names.
|
1060
1125
|
expr "x$ac_envvar" : ".*[^_$as_cr_alnum]" >/dev/null &&
|
1061
|
-
{
|
1126
|
+
{ $as_echo "$as_me: error: invalid variable name: $ac_envvar" >&2
|
1062
1127
|
{ (exit 1); exit 1; }; }
|
1063
1128
|
eval $ac_envvar=\$ac_optarg
|
1064
1129
|
export $ac_envvar ;;
|
1065
1130
|
|
1066
1131
|
*)
|
1067
1132
|
# FIXME: should be removed in autoconf 3.0.
|
1068
|
-
|
1133
|
+
$as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2
|
1069
1134
|
expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null &&
|
1070
|
-
|
1135
|
+
$as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2
|
1071
1136
|
: ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}
|
1072
1137
|
;;
|
1073
1138
|
|
@@ -1076,22 +1141,38 @@ done
|
|
1076
1141
|
|
1077
1142
|
if test -n "$ac_prev"; then
|
1078
1143
|
ac_option=--`echo $ac_prev | sed 's/_/-/g'`
|
1079
|
-
{
|
1144
|
+
{ $as_echo "$as_me: error: missing argument to $ac_option" >&2
|
1080
1145
|
{ (exit 1); exit 1; }; }
|
1081
1146
|
fi
|
1082
1147
|
|
1083
|
-
|
1148
|
+
if test -n "$ac_unrecognized_opts"; then
|
1149
|
+
case $enable_option_checking in
|
1150
|
+
no) ;;
|
1151
|
+
fatal) { $as_echo "$as_me: error: unrecognized options: $ac_unrecognized_opts" >&2
|
1152
|
+
{ (exit 1); exit 1; }; } ;;
|
1153
|
+
*) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;;
|
1154
|
+
esac
|
1155
|
+
fi
|
1156
|
+
|
1157
|
+
# Check all directory arguments for consistency.
|
1084
1158
|
for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \
|
1085
1159
|
datadir sysconfdir sharedstatedir localstatedir includedir \
|
1086
1160
|
oldincludedir docdir infodir htmldir dvidir pdfdir psdir \
|
1087
1161
|
libdir localedir mandir
|
1088
1162
|
do
|
1089
1163
|
eval ac_val=\$$ac_var
|
1164
|
+
# Remove trailing slashes.
|
1165
|
+
case $ac_val in
|
1166
|
+
*/ )
|
1167
|
+
ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'`
|
1168
|
+
eval $ac_var=\$ac_val;;
|
1169
|
+
esac
|
1170
|
+
# Be sure to have absolute directory names.
|
1090
1171
|
case $ac_val in
|
1091
1172
|
[\\/$]* | ?:[\\/]* ) continue;;
|
1092
1173
|
NONE | '' ) case $ac_var in *prefix ) continue;; esac;;
|
1093
1174
|
esac
|
1094
|
-
{
|
1175
|
+
{ $as_echo "$as_me: error: expected an absolute directory name for --$ac_var: $ac_val" >&2
|
1095
1176
|
{ (exit 1); exit 1; }; }
|
1096
1177
|
done
|
1097
1178
|
|
@@ -1106,7 +1187,7 @@ target=$target_alias
|
|
1106
1187
|
if test "x$host_alias" != x; then
|
1107
1188
|
if test "x$build_alias" = x; then
|
1108
1189
|
cross_compiling=maybe
|
1109
|
-
|
1190
|
+
$as_echo "$as_me: WARNING: If you wanted to set the --build type, don't use --host.
|
1110
1191
|
If a cross compiler is detected then cross compile mode will be used." >&2
|
1111
1192
|
elif test "x$build_alias" != "x$host_alias"; then
|
1112
1193
|
cross_compiling=yes
|
@@ -1122,10 +1203,10 @@ test "$silent" = yes && exec 6>/dev/null
|
|
1122
1203
|
ac_pwd=`pwd` && test -n "$ac_pwd" &&
|
1123
1204
|
ac_ls_di=`ls -di .` &&
|
1124
1205
|
ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` ||
|
1125
|
-
{
|
1206
|
+
{ $as_echo "$as_me: error: working directory cannot be determined" >&2
|
1126
1207
|
{ (exit 1); exit 1; }; }
|
1127
1208
|
test "X$ac_ls_di" = "X$ac_pwd_ls_di" ||
|
1128
|
-
{
|
1209
|
+
{ $as_echo "$as_me: error: pwd does not report name of working directory" >&2
|
1129
1210
|
{ (exit 1); exit 1; }; }
|
1130
1211
|
|
1131
1212
|
|
@@ -1133,12 +1214,12 @@ test "X$ac_ls_di" = "X$ac_pwd_ls_di" ||
|
|
1133
1214
|
if test -z "$srcdir"; then
|
1134
1215
|
ac_srcdir_defaulted=yes
|
1135
1216
|
# Try the directory containing this script, then the parent directory.
|
1136
|
-
ac_confdir=`$as_dirname -- "$
|
1137
|
-
$as_expr X"$
|
1138
|
-
X"$
|
1139
|
-
X"$
|
1140
|
-
X"$
|
1141
|
-
|
1217
|
+
ac_confdir=`$as_dirname -- "$as_myself" ||
|
1218
|
+
$as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
|
1219
|
+
X"$as_myself" : 'X\(//\)[^/]' \| \
|
1220
|
+
X"$as_myself" : 'X\(//\)$' \| \
|
1221
|
+
X"$as_myself" : 'X\(/\)' \| . 2>/dev/null ||
|
1222
|
+
$as_echo X"$as_myself" |
|
1142
1223
|
sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
|
1143
1224
|
s//\1/
|
1144
1225
|
q
|
@@ -1165,12 +1246,12 @@ else
|
|
1165
1246
|
fi
|
1166
1247
|
if test ! -r "$srcdir/$ac_unique_file"; then
|
1167
1248
|
test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .."
|
1168
|
-
{
|
1249
|
+
{ $as_echo "$as_me: error: cannot find sources ($ac_unique_file) in $srcdir" >&2
|
1169
1250
|
{ (exit 1); exit 1; }; }
|
1170
1251
|
fi
|
1171
1252
|
ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work"
|
1172
1253
|
ac_abs_confdir=`(
|
1173
|
-
cd "$srcdir" && test -r "./$ac_unique_file" || {
|
1254
|
+
cd "$srcdir" && test -r "./$ac_unique_file" || { $as_echo "$as_me: error: $ac_msg" >&2
|
1174
1255
|
{ (exit 1); exit 1; }; }
|
1175
1256
|
pwd)`
|
1176
1257
|
# When building in place, set srcdir=.
|
@@ -1197,7 +1278,7 @@ if test "$ac_init_help" = "long"; then
|
|
1197
1278
|
# Omit some internal or obsolete options to make the list less imposing.
|
1198
1279
|
# This message is too long to be a string in the A/UX 3.1 sh.
|
1199
1280
|
cat <<_ACEOF
|
1200
|
-
\`configure' configures rbcdio 0.
|
1281
|
+
\`configure' configures rbcdio 0.04 to adapt to many kinds of systems.
|
1201
1282
|
|
1202
1283
|
Usage: $0 [OPTION]... [VAR=VALUE]...
|
1203
1284
|
|
@@ -1219,9 +1300,9 @@ Configuration:
|
|
1219
1300
|
|
1220
1301
|
Installation directories:
|
1221
1302
|
--prefix=PREFIX install architecture-independent files in PREFIX
|
1222
|
-
|
1303
|
+
[$ac_default_prefix]
|
1223
1304
|
--exec-prefix=EPREFIX install architecture-dependent files in EPREFIX
|
1224
|
-
|
1305
|
+
[PREFIX]
|
1225
1306
|
|
1226
1307
|
By default, \`make install' will install all the files in
|
1227
1308
|
\`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify
|
@@ -1231,25 +1312,25 @@ for instance \`--prefix=\$HOME'.
|
|
1231
1312
|
For better control, use the options below.
|
1232
1313
|
|
1233
1314
|
Fine tuning of the installation directories:
|
1234
|
-
--bindir=DIR
|
1235
|
-
--sbindir=DIR
|
1236
|
-
--libexecdir=DIR
|
1237
|
-
--sysconfdir=DIR
|
1238
|
-
--sharedstatedir=DIR
|
1239
|
-
--localstatedir=DIR
|
1240
|
-
--libdir=DIR
|
1241
|
-
--includedir=DIR
|
1242
|
-
--oldincludedir=DIR
|
1243
|
-
--datarootdir=DIR
|
1244
|
-
--datadir=DIR
|
1245
|
-
--infodir=DIR
|
1246
|
-
--localedir=DIR
|
1247
|
-
--mandir=DIR
|
1248
|
-
--docdir=DIR
|
1249
|
-
--htmldir=DIR
|
1250
|
-
--dvidir=DIR
|
1251
|
-
--pdfdir=DIR
|
1252
|
-
--psdir=DIR
|
1315
|
+
--bindir=DIR user executables [EPREFIX/bin]
|
1316
|
+
--sbindir=DIR system admin executables [EPREFIX/sbin]
|
1317
|
+
--libexecdir=DIR program executables [EPREFIX/libexec]
|
1318
|
+
--sysconfdir=DIR read-only single-machine data [PREFIX/etc]
|
1319
|
+
--sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com]
|
1320
|
+
--localstatedir=DIR modifiable single-machine data [PREFIX/var]
|
1321
|
+
--libdir=DIR object code libraries [EPREFIX/lib]
|
1322
|
+
--includedir=DIR C header files [PREFIX/include]
|
1323
|
+
--oldincludedir=DIR C header files for non-gcc [/usr/include]
|
1324
|
+
--datarootdir=DIR read-only arch.-independent data root [PREFIX/share]
|
1325
|
+
--datadir=DIR read-only architecture-independent data [DATAROOTDIR]
|
1326
|
+
--infodir=DIR info documentation [DATAROOTDIR/info]
|
1327
|
+
--localedir=DIR locale-dependent data [DATAROOTDIR/locale]
|
1328
|
+
--mandir=DIR man documentation [DATAROOTDIR/man]
|
1329
|
+
--docdir=DIR documentation root [DATAROOTDIR/doc/rbcdio]
|
1330
|
+
--htmldir=DIR html documentation [DOCDIR]
|
1331
|
+
--dvidir=DIR dvi documentation [DOCDIR]
|
1332
|
+
--pdfdir=DIR pdf documentation [DOCDIR]
|
1333
|
+
--psdir=DIR ps documentation [DOCDIR]
|
1253
1334
|
_ACEOF
|
1254
1335
|
|
1255
1336
|
cat <<\_ACEOF
|
@@ -1267,11 +1348,12 @@ fi
|
|
1267
1348
|
|
1268
1349
|
if test -n "$ac_init_help"; then
|
1269
1350
|
case $ac_init_help in
|
1270
|
-
short | recursive ) echo "Configuration of rbcdio 0.
|
1351
|
+
short | recursive ) echo "Configuration of rbcdio 0.04:";;
|
1271
1352
|
esac
|
1272
1353
|
cat <<\_ACEOF
|
1273
1354
|
|
1274
1355
|
Optional Features:
|
1356
|
+
--disable-option-checking ignore unrecognized --enable/--with options
|
1275
1357
|
--disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no)
|
1276
1358
|
--enable-FEATURE[=ARG] include FEATURE [ARG=yes]
|
1277
1359
|
--enable-maintainer-mode enable make rules and dependencies not useful
|
@@ -1314,15 +1396,17 @@ fi
|
|
1314
1396
|
if test "$ac_init_help" = "recursive"; then
|
1315
1397
|
# If there are subdirs, report their specific --help.
|
1316
1398
|
for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue
|
1317
|
-
test -d "$ac_dir" ||
|
1399
|
+
test -d "$ac_dir" ||
|
1400
|
+
{ cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } ||
|
1401
|
+
continue
|
1318
1402
|
ac_builddir=.
|
1319
1403
|
|
1320
1404
|
case "$ac_dir" in
|
1321
1405
|
.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
|
1322
1406
|
*)
|
1323
|
-
ac_dir_suffix
|
1407
|
+
ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
|
1324
1408
|
# A ".." for each directory in $ac_dir_suffix.
|
1325
|
-
ac_top_builddir_sub
|
1409
|
+
ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
|
1326
1410
|
case $ac_top_builddir_sub in
|
1327
1411
|
"") ac_top_builddir_sub=. ac_top_build_prefix= ;;
|
1328
1412
|
*) ac_top_build_prefix=$ac_top_builddir_sub/ ;;
|
@@ -1358,7 +1442,7 @@ ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
|
|
1358
1442
|
echo &&
|
1359
1443
|
$SHELL "$ac_srcdir/configure" --help=recursive
|
1360
1444
|
else
|
1361
|
-
|
1445
|
+
$as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2
|
1362
1446
|
fi || ac_status=$?
|
1363
1447
|
cd "$ac_pwd" || { ac_status=$?; break; }
|
1364
1448
|
done
|
@@ -1367,11 +1451,11 @@ fi
|
|
1367
1451
|
test -n "$ac_init_help" && exit $ac_status
|
1368
1452
|
if $ac_init_version; then
|
1369
1453
|
cat <<\_ACEOF
|
1370
|
-
rbcdio configure 0.
|
1371
|
-
generated by GNU Autoconf 2.
|
1454
|
+
rbcdio configure 0.04
|
1455
|
+
generated by GNU Autoconf 2.63
|
1372
1456
|
|
1373
1457
|
Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
|
1374
|
-
2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
|
1458
|
+
2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
|
1375
1459
|
This configure script is free software; the Free Software Foundation
|
1376
1460
|
gives unlimited permission to copy, distribute and modify it.
|
1377
1461
|
_ACEOF
|
@@ -1381,8 +1465,8 @@ cat >config.log <<_ACEOF
|
|
1381
1465
|
This file contains any messages produced by compilers while
|
1382
1466
|
running configure, to aid debugging if configure makes a mistake.
|
1383
1467
|
|
1384
|
-
It was created by rbcdio $as_me 0.
|
1385
|
-
generated by GNU Autoconf 2.
|
1468
|
+
It was created by rbcdio $as_me 0.04, which was
|
1469
|
+
generated by GNU Autoconf 2.63. Invocation command line was
|
1386
1470
|
|
1387
1471
|
$ $0 $@
|
1388
1472
|
|
@@ -1418,7 +1502,7 @@ for as_dir in $PATH
|
|
1418
1502
|
do
|
1419
1503
|
IFS=$as_save_IFS
|
1420
1504
|
test -z "$as_dir" && as_dir=.
|
1421
|
-
|
1505
|
+
$as_echo "PATH: $as_dir"
|
1422
1506
|
done
|
1423
1507
|
IFS=$as_save_IFS
|
1424
1508
|
|
@@ -1453,7 +1537,7 @@ do
|
|
1453
1537
|
| -silent | --silent | --silen | --sile | --sil)
|
1454
1538
|
continue ;;
|
1455
1539
|
*\'*)
|
1456
|
-
ac_arg
|
1540
|
+
ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
|
1457
1541
|
esac
|
1458
1542
|
case $ac_pass in
|
1459
1543
|
1) ac_configure_args0="$ac_configure_args0 '$ac_arg'" ;;
|
@@ -1505,11 +1589,12 @@ _ASBOX
|
|
1505
1589
|
case $ac_val in #(
|
1506
1590
|
*${as_nl}*)
|
1507
1591
|
case $ac_var in #(
|
1508
|
-
*_cv_*) {
|
1509
|
-
|
1592
|
+
*_cv_*) { $as_echo "$as_me:$LINENO: WARNING: cache variable $ac_var contains a newline" >&5
|
1593
|
+
$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
|
1510
1594
|
esac
|
1511
1595
|
case $ac_var in #(
|
1512
1596
|
_ | IFS | as_nl) ;; #(
|
1597
|
+
BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #(
|
1513
1598
|
*) $as_unset $ac_var ;;
|
1514
1599
|
esac ;;
|
1515
1600
|
esac
|
@@ -1539,9 +1624,9 @@ _ASBOX
|
|
1539
1624
|
do
|
1540
1625
|
eval ac_val=\$$ac_var
|
1541
1626
|
case $ac_val in
|
1542
|
-
*\'\''*) ac_val
|
1627
|
+
*\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
|
1543
1628
|
esac
|
1544
|
-
|
1629
|
+
$as_echo "$ac_var='\''$ac_val'\''"
|
1545
1630
|
done | sort
|
1546
1631
|
echo
|
1547
1632
|
|
@@ -1556,9 +1641,9 @@ _ASBOX
|
|
1556
1641
|
do
|
1557
1642
|
eval ac_val=\$$ac_var
|
1558
1643
|
case $ac_val in
|
1559
|
-
*\'\''*) ac_val
|
1644
|
+
*\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;;
|
1560
1645
|
esac
|
1561
|
-
|
1646
|
+
$as_echo "$ac_var='\''$ac_val'\''"
|
1562
1647
|
done | sort
|
1563
1648
|
echo
|
1564
1649
|
fi
|
@@ -1574,8 +1659,8 @@ _ASBOX
|
|
1574
1659
|
echo
|
1575
1660
|
fi
|
1576
1661
|
test "$ac_signal" != 0 &&
|
1577
|
-
|
1578
|
-
|
1662
|
+
$as_echo "$as_me: caught signal $ac_signal"
|
1663
|
+
$as_echo "$as_me: exit $exit_status"
|
1579
1664
|
} >&5
|
1580
1665
|
rm -f core *.core core.conftest.* &&
|
1581
1666
|
rm -f -r conftest* confdefs* conf$$* $ac_clean_files &&
|
@@ -1617,21 +1702,24 @@ _ACEOF
|
|
1617
1702
|
|
1618
1703
|
|
1619
1704
|
# Let the site file select an alternate cache file if it wants to.
|
1620
|
-
# Prefer explicitly selected file to automatically selected ones.
|
1705
|
+
# Prefer an explicitly selected file to automatically selected ones.
|
1706
|
+
ac_site_file1=NONE
|
1707
|
+
ac_site_file2=NONE
|
1621
1708
|
if test -n "$CONFIG_SITE"; then
|
1622
|
-
|
1709
|
+
ac_site_file1=$CONFIG_SITE
|
1623
1710
|
elif test "x$prefix" != xNONE; then
|
1624
|
-
|
1711
|
+
ac_site_file1=$prefix/share/config.site
|
1712
|
+
ac_site_file2=$prefix/etc/config.site
|
1625
1713
|
else
|
1626
|
-
|
1627
|
-
|
1714
|
+
ac_site_file1=$ac_default_prefix/share/config.site
|
1715
|
+
ac_site_file2=$ac_default_prefix/etc/config.site
|
1628
1716
|
fi
|
1629
|
-
|
1630
|
-
for ac_site_file
|
1717
|
+
for ac_site_file in "$ac_site_file1" "$ac_site_file2"
|
1631
1718
|
do
|
1719
|
+
test "x$ac_site_file" = xNONE && continue
|
1632
1720
|
if test -r "$ac_site_file"; then
|
1633
|
-
{
|
1634
|
-
|
1721
|
+
{ $as_echo "$as_me:$LINENO: loading site script $ac_site_file" >&5
|
1722
|
+
$as_echo "$as_me: loading site script $ac_site_file" >&6;}
|
1635
1723
|
sed 's/^/| /' "$ac_site_file" >&5
|
1636
1724
|
. "$ac_site_file"
|
1637
1725
|
fi
|
@@ -1641,16 +1729,16 @@ if test -r "$cache_file"; then
|
|
1641
1729
|
# Some versions of bash will fail to source /dev/null (special
|
1642
1730
|
# files actually), so we avoid doing that.
|
1643
1731
|
if test -f "$cache_file"; then
|
1644
|
-
{
|
1645
|
-
|
1732
|
+
{ $as_echo "$as_me:$LINENO: loading cache $cache_file" >&5
|
1733
|
+
$as_echo "$as_me: loading cache $cache_file" >&6;}
|
1646
1734
|
case $cache_file in
|
1647
1735
|
[\\/]* | ?:[\\/]* ) . "$cache_file";;
|
1648
1736
|
*) . "./$cache_file";;
|
1649
1737
|
esac
|
1650
1738
|
fi
|
1651
1739
|
else
|
1652
|
-
{
|
1653
|
-
|
1740
|
+
{ $as_echo "$as_me:$LINENO: creating cache $cache_file" >&5
|
1741
|
+
$as_echo "$as_me: creating cache $cache_file" >&6;}
|
1654
1742
|
>$cache_file
|
1655
1743
|
fi
|
1656
1744
|
|
@@ -1664,29 +1752,38 @@ for ac_var in $ac_precious_vars; do
|
|
1664
1752
|
eval ac_new_val=\$ac_env_${ac_var}_value
|
1665
1753
|
case $ac_old_set,$ac_new_set in
|
1666
1754
|
set,)
|
1667
|
-
{
|
1668
|
-
|
1755
|
+
{ $as_echo "$as_me:$LINENO: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
|
1756
|
+
$as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
|
1669
1757
|
ac_cache_corrupted=: ;;
|
1670
1758
|
,set)
|
1671
|
-
{
|
1672
|
-
|
1759
|
+
{ $as_echo "$as_me:$LINENO: error: \`$ac_var' was not set in the previous run" >&5
|
1760
|
+
$as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;}
|
1673
1761
|
ac_cache_corrupted=: ;;
|
1674
1762
|
,);;
|
1675
1763
|
*)
|
1676
1764
|
if test "x$ac_old_val" != "x$ac_new_val"; then
|
1677
|
-
|
1678
|
-
echo
|
1679
|
-
|
1680
|
-
|
1681
|
-
|
1682
|
-
|
1683
|
-
|
1765
|
+
# differences in whitespace do not lead to failure.
|
1766
|
+
ac_old_val_w=`echo x $ac_old_val`
|
1767
|
+
ac_new_val_w=`echo x $ac_new_val`
|
1768
|
+
if test "$ac_old_val_w" != "$ac_new_val_w"; then
|
1769
|
+
{ $as_echo "$as_me:$LINENO: error: \`$ac_var' has changed since the previous run:" >&5
|
1770
|
+
$as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;}
|
1771
|
+
ac_cache_corrupted=:
|
1772
|
+
else
|
1773
|
+
{ $as_echo "$as_me:$LINENO: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5
|
1774
|
+
$as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;}
|
1775
|
+
eval $ac_var=\$ac_old_val
|
1776
|
+
fi
|
1777
|
+
{ $as_echo "$as_me:$LINENO: former value: \`$ac_old_val'" >&5
|
1778
|
+
$as_echo "$as_me: former value: \`$ac_old_val'" >&2;}
|
1779
|
+
{ $as_echo "$as_me:$LINENO: current value: \`$ac_new_val'" >&5
|
1780
|
+
$as_echo "$as_me: current value: \`$ac_new_val'" >&2;}
|
1684
1781
|
fi;;
|
1685
1782
|
esac
|
1686
1783
|
# Pass precious variables to config.status.
|
1687
1784
|
if test "$ac_new_set" = set; then
|
1688
1785
|
case $ac_new_val in
|
1689
|
-
*\'*) ac_arg=$ac_var
|
1786
|
+
*\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;;
|
1690
1787
|
*) ac_arg=$ac_var=$ac_new_val ;;
|
1691
1788
|
esac
|
1692
1789
|
case " $ac_configure_args " in
|
@@ -1696,10 +1793,12 @@ echo "$as_me: current value: $ac_new_val" >&2;}
|
|
1696
1793
|
fi
|
1697
1794
|
done
|
1698
1795
|
if $ac_cache_corrupted; then
|
1699
|
-
{
|
1700
|
-
|
1701
|
-
{
|
1702
|
-
|
1796
|
+
{ $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
|
1797
|
+
$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
|
1798
|
+
{ $as_echo "$as_me:$LINENO: error: changes in the environment can compromise the build" >&5
|
1799
|
+
$as_echo "$as_me: error: changes in the environment can compromise the build" >&2;}
|
1800
|
+
{ { $as_echo "$as_me:$LINENO: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5
|
1801
|
+
$as_echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;}
|
1703
1802
|
{ (exit 1); exit 1; }; }
|
1704
1803
|
fi
|
1705
1804
|
|
@@ -1739,8 +1838,8 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
|
1739
1838
|
##
|
1740
1839
|
## In maintainer mode we produce a ChangeLog
|
1741
1840
|
##
|
1742
|
-
{
|
1743
|
-
|
1841
|
+
{ $as_echo "$as_me:$LINENO: checking whether to enable maintainer-specific portions of Makefiles" >&5
|
1842
|
+
$as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; }
|
1744
1843
|
# Check whether --enable-maintainer-mode was given.
|
1745
1844
|
if test "${enable_maintainer_mode+set}" = set; then
|
1746
1845
|
enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval
|
@@ -1748,11 +1847,9 @@ else
|
|
1748
1847
|
USE_MAINTAINER_MODE=no
|
1749
1848
|
fi
|
1750
1849
|
|
1751
|
-
{
|
1752
|
-
|
1753
|
-
|
1754
|
-
|
1755
|
-
if test $USE_MAINTAINER_MODE = yes; then
|
1850
|
+
{ $as_echo "$as_me:$LINENO: result: $USE_MAINTAINER_MODE" >&5
|
1851
|
+
$as_echo "$USE_MAINTAINER_MODE" >&6; }
|
1852
|
+
if test $USE_MAINTAINER_MODE = yes; then
|
1756
1853
|
MAINTAINER_MODE_TRUE=
|
1757
1854
|
MAINTAINER_MODE_FALSE='#'
|
1758
1855
|
else
|
@@ -1774,13 +1871,10 @@ test "$program_prefix" != NONE &&
|
|
1774
1871
|
# Use a double $ so make ignores it.
|
1775
1872
|
test "$program_suffix" != NONE &&
|
1776
1873
|
program_transform_name="s&\$&$program_suffix&;$program_transform_name"
|
1777
|
-
# Double any \ or $.
|
1874
|
+
# Double any \ or $.
|
1778
1875
|
# By default was `s,x,x', remove it if useless.
|
1779
|
-
|
1780
|
-
|
1781
|
-
_ACEOF
|
1782
|
-
program_transform_name=`echo $program_transform_name | sed -f conftest.sed`
|
1783
|
-
rm -f conftest.sed
|
1876
|
+
ac_script='s/[\\$]/&&/g;s/;s,x,x,$//'
|
1877
|
+
program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"`
|
1784
1878
|
|
1785
1879
|
ac_ext=c
|
1786
1880
|
ac_cpp='$CPP $CPPFLAGS'
|
@@ -1790,10 +1884,10 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
|
1790
1884
|
if test -n "$ac_tool_prefix"; then
|
1791
1885
|
# Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args.
|
1792
1886
|
set dummy ${ac_tool_prefix}gcc; ac_word=$2
|
1793
|
-
{
|
1794
|
-
|
1887
|
+
{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
|
1888
|
+
$as_echo_n "checking for $ac_word... " >&6; }
|
1795
1889
|
if test "${ac_cv_prog_CC+set}" = set; then
|
1796
|
-
|
1890
|
+
$as_echo_n "(cached) " >&6
|
1797
1891
|
else
|
1798
1892
|
if test -n "$CC"; then
|
1799
1893
|
ac_cv_prog_CC="$CC" # Let the user override the test.
|
@@ -1806,7 +1900,7 @@ do
|
|
1806
1900
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
1807
1901
|
if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
|
1808
1902
|
ac_cv_prog_CC="${ac_tool_prefix}gcc"
|
1809
|
-
|
1903
|
+
$as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
|
1810
1904
|
break 2
|
1811
1905
|
fi
|
1812
1906
|
done
|
@@ -1817,11 +1911,11 @@ fi
|
|
1817
1911
|
fi
|
1818
1912
|
CC=$ac_cv_prog_CC
|
1819
1913
|
if test -n "$CC"; then
|
1820
|
-
{
|
1821
|
-
|
1914
|
+
{ $as_echo "$as_me:$LINENO: result: $CC" >&5
|
1915
|
+
$as_echo "$CC" >&6; }
|
1822
1916
|
else
|
1823
|
-
{
|
1824
|
-
|
1917
|
+
{ $as_echo "$as_me:$LINENO: result: no" >&5
|
1918
|
+
$as_echo "no" >&6; }
|
1825
1919
|
fi
|
1826
1920
|
|
1827
1921
|
|
@@ -1830,10 +1924,10 @@ if test -z "$ac_cv_prog_CC"; then
|
|
1830
1924
|
ac_ct_CC=$CC
|
1831
1925
|
# Extract the first word of "gcc", so it can be a program name with args.
|
1832
1926
|
set dummy gcc; ac_word=$2
|
1833
|
-
{
|
1834
|
-
|
1927
|
+
{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
|
1928
|
+
$as_echo_n "checking for $ac_word... " >&6; }
|
1835
1929
|
if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
|
1836
|
-
|
1930
|
+
$as_echo_n "(cached) " >&6
|
1837
1931
|
else
|
1838
1932
|
if test -n "$ac_ct_CC"; then
|
1839
1933
|
ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
|
@@ -1846,7 +1940,7 @@ do
|
|
1846
1940
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
1847
1941
|
if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
|
1848
1942
|
ac_cv_prog_ac_ct_CC="gcc"
|
1849
|
-
|
1943
|
+
$as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
|
1850
1944
|
break 2
|
1851
1945
|
fi
|
1852
1946
|
done
|
@@ -1857,11 +1951,11 @@ fi
|
|
1857
1951
|
fi
|
1858
1952
|
ac_ct_CC=$ac_cv_prog_ac_ct_CC
|
1859
1953
|
if test -n "$ac_ct_CC"; then
|
1860
|
-
{
|
1861
|
-
|
1954
|
+
{ $as_echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
|
1955
|
+
$as_echo "$ac_ct_CC" >&6; }
|
1862
1956
|
else
|
1863
|
-
{
|
1864
|
-
|
1957
|
+
{ $as_echo "$as_me:$LINENO: result: no" >&5
|
1958
|
+
$as_echo "no" >&6; }
|
1865
1959
|
fi
|
1866
1960
|
|
1867
1961
|
if test "x$ac_ct_CC" = x; then
|
@@ -1869,12 +1963,8 @@ fi
|
|
1869
1963
|
else
|
1870
1964
|
case $cross_compiling:$ac_tool_warned in
|
1871
1965
|
yes:)
|
1872
|
-
{
|
1873
|
-
|
1874
|
-
configuration is useful to you, please write to autoconf@gnu.org." >&5
|
1875
|
-
echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools
|
1876
|
-
whose name does not start with the host triplet. If you think this
|
1877
|
-
configuration is useful to you, please write to autoconf@gnu.org." >&2;}
|
1966
|
+
{ $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5
|
1967
|
+
$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
|
1878
1968
|
ac_tool_warned=yes ;;
|
1879
1969
|
esac
|
1880
1970
|
CC=$ac_ct_CC
|
@@ -1887,10 +1977,10 @@ if test -z "$CC"; then
|
|
1887
1977
|
if test -n "$ac_tool_prefix"; then
|
1888
1978
|
# Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args.
|
1889
1979
|
set dummy ${ac_tool_prefix}cc; ac_word=$2
|
1890
|
-
{
|
1891
|
-
|
1980
|
+
{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
|
1981
|
+
$as_echo_n "checking for $ac_word... " >&6; }
|
1892
1982
|
if test "${ac_cv_prog_CC+set}" = set; then
|
1893
|
-
|
1983
|
+
$as_echo_n "(cached) " >&6
|
1894
1984
|
else
|
1895
1985
|
if test -n "$CC"; then
|
1896
1986
|
ac_cv_prog_CC="$CC" # Let the user override the test.
|
@@ -1903,7 +1993,7 @@ do
|
|
1903
1993
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
1904
1994
|
if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
|
1905
1995
|
ac_cv_prog_CC="${ac_tool_prefix}cc"
|
1906
|
-
|
1996
|
+
$as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
|
1907
1997
|
break 2
|
1908
1998
|
fi
|
1909
1999
|
done
|
@@ -1914,11 +2004,11 @@ fi
|
|
1914
2004
|
fi
|
1915
2005
|
CC=$ac_cv_prog_CC
|
1916
2006
|
if test -n "$CC"; then
|
1917
|
-
{
|
1918
|
-
|
2007
|
+
{ $as_echo "$as_me:$LINENO: result: $CC" >&5
|
2008
|
+
$as_echo "$CC" >&6; }
|
1919
2009
|
else
|
1920
|
-
{
|
1921
|
-
|
2010
|
+
{ $as_echo "$as_me:$LINENO: result: no" >&5
|
2011
|
+
$as_echo "no" >&6; }
|
1922
2012
|
fi
|
1923
2013
|
|
1924
2014
|
|
@@ -1927,10 +2017,10 @@ fi
|
|
1927
2017
|
if test -z "$CC"; then
|
1928
2018
|
# Extract the first word of "cc", so it can be a program name with args.
|
1929
2019
|
set dummy cc; ac_word=$2
|
1930
|
-
{
|
1931
|
-
|
2020
|
+
{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
|
2021
|
+
$as_echo_n "checking for $ac_word... " >&6; }
|
1932
2022
|
if test "${ac_cv_prog_CC+set}" = set; then
|
1933
|
-
|
2023
|
+
$as_echo_n "(cached) " >&6
|
1934
2024
|
else
|
1935
2025
|
if test -n "$CC"; then
|
1936
2026
|
ac_cv_prog_CC="$CC" # Let the user override the test.
|
@@ -1948,7 +2038,7 @@ do
|
|
1948
2038
|
continue
|
1949
2039
|
fi
|
1950
2040
|
ac_cv_prog_CC="cc"
|
1951
|
-
|
2041
|
+
$as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
|
1952
2042
|
break 2
|
1953
2043
|
fi
|
1954
2044
|
done
|
@@ -1971,11 +2061,11 @@ fi
|
|
1971
2061
|
fi
|
1972
2062
|
CC=$ac_cv_prog_CC
|
1973
2063
|
if test -n "$CC"; then
|
1974
|
-
{
|
1975
|
-
|
2064
|
+
{ $as_echo "$as_me:$LINENO: result: $CC" >&5
|
2065
|
+
$as_echo "$CC" >&6; }
|
1976
2066
|
else
|
1977
|
-
{
|
1978
|
-
|
2067
|
+
{ $as_echo "$as_me:$LINENO: result: no" >&5
|
2068
|
+
$as_echo "no" >&6; }
|
1979
2069
|
fi
|
1980
2070
|
|
1981
2071
|
|
@@ -1986,10 +2076,10 @@ if test -z "$CC"; then
|
|
1986
2076
|
do
|
1987
2077
|
# Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
|
1988
2078
|
set dummy $ac_tool_prefix$ac_prog; ac_word=$2
|
1989
|
-
{
|
1990
|
-
|
2079
|
+
{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
|
2080
|
+
$as_echo_n "checking for $ac_word... " >&6; }
|
1991
2081
|
if test "${ac_cv_prog_CC+set}" = set; then
|
1992
|
-
|
2082
|
+
$as_echo_n "(cached) " >&6
|
1993
2083
|
else
|
1994
2084
|
if test -n "$CC"; then
|
1995
2085
|
ac_cv_prog_CC="$CC" # Let the user override the test.
|
@@ -2002,7 +2092,7 @@ do
|
|
2002
2092
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
2003
2093
|
if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
|
2004
2094
|
ac_cv_prog_CC="$ac_tool_prefix$ac_prog"
|
2005
|
-
|
2095
|
+
$as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
|
2006
2096
|
break 2
|
2007
2097
|
fi
|
2008
2098
|
done
|
@@ -2013,11 +2103,11 @@ fi
|
|
2013
2103
|
fi
|
2014
2104
|
CC=$ac_cv_prog_CC
|
2015
2105
|
if test -n "$CC"; then
|
2016
|
-
{
|
2017
|
-
|
2106
|
+
{ $as_echo "$as_me:$LINENO: result: $CC" >&5
|
2107
|
+
$as_echo "$CC" >&6; }
|
2018
2108
|
else
|
2019
|
-
{
|
2020
|
-
|
2109
|
+
{ $as_echo "$as_me:$LINENO: result: no" >&5
|
2110
|
+
$as_echo "no" >&6; }
|
2021
2111
|
fi
|
2022
2112
|
|
2023
2113
|
|
@@ -2030,10 +2120,10 @@ if test -z "$CC"; then
|
|
2030
2120
|
do
|
2031
2121
|
# Extract the first word of "$ac_prog", so it can be a program name with args.
|
2032
2122
|
set dummy $ac_prog; ac_word=$2
|
2033
|
-
{
|
2034
|
-
|
2123
|
+
{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
|
2124
|
+
$as_echo_n "checking for $ac_word... " >&6; }
|
2035
2125
|
if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
|
2036
|
-
|
2126
|
+
$as_echo_n "(cached) " >&6
|
2037
2127
|
else
|
2038
2128
|
if test -n "$ac_ct_CC"; then
|
2039
2129
|
ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
|
@@ -2046,7 +2136,7 @@ do
|
|
2046
2136
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
2047
2137
|
if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
|
2048
2138
|
ac_cv_prog_ac_ct_CC="$ac_prog"
|
2049
|
-
|
2139
|
+
$as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
|
2050
2140
|
break 2
|
2051
2141
|
fi
|
2052
2142
|
done
|
@@ -2057,11 +2147,11 @@ fi
|
|
2057
2147
|
fi
|
2058
2148
|
ac_ct_CC=$ac_cv_prog_ac_ct_CC
|
2059
2149
|
if test -n "$ac_ct_CC"; then
|
2060
|
-
{
|
2061
|
-
|
2150
|
+
{ $as_echo "$as_me:$LINENO: result: $ac_ct_CC" >&5
|
2151
|
+
$as_echo "$ac_ct_CC" >&6; }
|
2062
2152
|
else
|
2063
|
-
{
|
2064
|
-
|
2153
|
+
{ $as_echo "$as_me:$LINENO: result: no" >&5
|
2154
|
+
$as_echo "no" >&6; }
|
2065
2155
|
fi
|
2066
2156
|
|
2067
2157
|
|
@@ -2073,12 +2163,8 @@ done
|
|
2073
2163
|
else
|
2074
2164
|
case $cross_compiling:$ac_tool_warned in
|
2075
2165
|
yes:)
|
2076
|
-
{
|
2077
|
-
|
2078
|
-
configuration is useful to you, please write to autoconf@gnu.org." >&5
|
2079
|
-
echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools
|
2080
|
-
whose name does not start with the host triplet. If you think this
|
2081
|
-
configuration is useful to you, please write to autoconf@gnu.org." >&2;}
|
2166
|
+
{ $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5
|
2167
|
+
$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
|
2082
2168
|
ac_tool_warned=yes ;;
|
2083
2169
|
esac
|
2084
2170
|
CC=$ac_ct_CC
|
@@ -2088,44 +2174,50 @@ fi
|
|
2088
2174
|
fi
|
2089
2175
|
|
2090
2176
|
|
2091
|
-
test -z "$CC" && { {
|
2177
|
+
test -z "$CC" && { { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
|
2178
|
+
$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
|
2179
|
+
{ { $as_echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH
|
2092
2180
|
See \`config.log' for more details." >&5
|
2093
|
-
|
2181
|
+
$as_echo "$as_me: error: no acceptable C compiler found in \$PATH
|
2094
2182
|
See \`config.log' for more details." >&2;}
|
2095
|
-
{ (exit 1); exit 1; }; }
|
2183
|
+
{ (exit 1); exit 1; }; }; }
|
2096
2184
|
|
2097
2185
|
# Provide some information about the compiler.
|
2098
|
-
|
2099
|
-
|
2186
|
+
$as_echo "$as_me:$LINENO: checking for C compiler version" >&5
|
2187
|
+
set X $ac_compile
|
2188
|
+
ac_compiler=$2
|
2100
2189
|
{ (ac_try="$ac_compiler --version >&5"
|
2101
2190
|
case "(($ac_try" in
|
2102
2191
|
*\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
|
2103
2192
|
*) ac_try_echo=$ac_try;;
|
2104
2193
|
esac
|
2105
|
-
eval "
|
2194
|
+
eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
|
2195
|
+
$as_echo "$ac_try_echo") >&5
|
2106
2196
|
(eval "$ac_compiler --version >&5") 2>&5
|
2107
2197
|
ac_status=$?
|
2108
|
-
|
2198
|
+
$as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
2109
2199
|
(exit $ac_status); }
|
2110
2200
|
{ (ac_try="$ac_compiler -v >&5"
|
2111
2201
|
case "(($ac_try" in
|
2112
2202
|
*\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
|
2113
2203
|
*) ac_try_echo=$ac_try;;
|
2114
2204
|
esac
|
2115
|
-
eval "
|
2205
|
+
eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
|
2206
|
+
$as_echo "$ac_try_echo") >&5
|
2116
2207
|
(eval "$ac_compiler -v >&5") 2>&5
|
2117
2208
|
ac_status=$?
|
2118
|
-
|
2209
|
+
$as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
2119
2210
|
(exit $ac_status); }
|
2120
2211
|
{ (ac_try="$ac_compiler -V >&5"
|
2121
2212
|
case "(($ac_try" in
|
2122
2213
|
*\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
|
2123
2214
|
*) ac_try_echo=$ac_try;;
|
2124
2215
|
esac
|
2125
|
-
eval "
|
2216
|
+
eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
|
2217
|
+
$as_echo "$ac_try_echo") >&5
|
2126
2218
|
(eval "$ac_compiler -V >&5") 2>&5
|
2127
2219
|
ac_status=$?
|
2128
|
-
|
2220
|
+
$as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
2129
2221
|
(exit $ac_status); }
|
2130
2222
|
|
2131
2223
|
cat >conftest.$ac_ext <<_ACEOF
|
@@ -2144,27 +2236,22 @@ main ()
|
|
2144
2236
|
}
|
2145
2237
|
_ACEOF
|
2146
2238
|
ac_clean_files_save=$ac_clean_files
|
2147
|
-
ac_clean_files="$ac_clean_files a.out a.exe b.out"
|
2239
|
+
ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out"
|
2148
2240
|
# Try to create an executable without -o first, disregard a.out.
|
2149
2241
|
# It will help us diagnose broken compilers, and finding out an intuition
|
2150
2242
|
# of exeext.
|
2151
|
-
{
|
2152
|
-
|
2153
|
-
ac_link_default
|
2154
|
-
|
2155
|
-
#
|
2156
|
-
|
2157
|
-
|
2158
|
-
ac_files='a_out.exe a.exe conftest.exe a.out conftest a.* conftest.* b.out'
|
2159
|
-
#
|
2160
|
-
# The IRIX 6 linker writes into existing files which may not be
|
2161
|
-
# executable, retaining their permissions. Remove them first so a
|
2162
|
-
# subsequent execution test works.
|
2243
|
+
{ $as_echo "$as_me:$LINENO: checking for C compiler default output file name" >&5
|
2244
|
+
$as_echo_n "checking for C compiler default output file name... " >&6; }
|
2245
|
+
ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'`
|
2246
|
+
|
2247
|
+
# The possible output files:
|
2248
|
+
ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*"
|
2249
|
+
|
2163
2250
|
ac_rmfiles=
|
2164
2251
|
for ac_file in $ac_files
|
2165
2252
|
do
|
2166
2253
|
case $ac_file in
|
2167
|
-
*.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) ;;
|
2254
|
+
*.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;;
|
2168
2255
|
* ) ac_rmfiles="$ac_rmfiles $ac_file";;
|
2169
2256
|
esac
|
2170
2257
|
done
|
@@ -2175,10 +2262,11 @@ case "(($ac_try" in
|
|
2175
2262
|
*\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
|
2176
2263
|
*) ac_try_echo=$ac_try;;
|
2177
2264
|
esac
|
2178
|
-
eval "
|
2265
|
+
eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
|
2266
|
+
$as_echo "$ac_try_echo") >&5
|
2179
2267
|
(eval "$ac_link_default") 2>&5
|
2180
2268
|
ac_status=$?
|
2181
|
-
|
2269
|
+
$as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
2182
2270
|
(exit $ac_status); }; then
|
2183
2271
|
# Autoconf-2.13 could set the ac_cv_exeext variable to `no'.
|
2184
2272
|
# So ignore a value of `no', otherwise this would lead to `EXEEXT = no'
|
@@ -2189,7 +2277,7 @@ for ac_file in $ac_files ''
|
|
2189
2277
|
do
|
2190
2278
|
test -f "$ac_file" || continue
|
2191
2279
|
case $ac_file in
|
2192
|
-
*.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj )
|
2280
|
+
*.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj )
|
2193
2281
|
;;
|
2194
2282
|
[ab].out )
|
2195
2283
|
# We found the default executable, but exeext='' is most
|
@@ -2216,25 +2304,27 @@ else
|
|
2216
2304
|
ac_file=''
|
2217
2305
|
fi
|
2218
2306
|
|
2219
|
-
{
|
2220
|
-
|
2307
|
+
{ $as_echo "$as_me:$LINENO: result: $ac_file" >&5
|
2308
|
+
$as_echo "$ac_file" >&6; }
|
2221
2309
|
if test -z "$ac_file"; then
|
2222
|
-
|
2310
|
+
$as_echo "$as_me: failed program was:" >&5
|
2223
2311
|
sed 's/^/| /' conftest.$ac_ext >&5
|
2224
2312
|
|
2225
|
-
{ {
|
2313
|
+
{ { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
|
2314
|
+
$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
|
2315
|
+
{ { $as_echo "$as_me:$LINENO: error: C compiler cannot create executables
|
2226
2316
|
See \`config.log' for more details." >&5
|
2227
|
-
|
2317
|
+
$as_echo "$as_me: error: C compiler cannot create executables
|
2228
2318
|
See \`config.log' for more details." >&2;}
|
2229
|
-
{ (exit 77); exit 77; }; }
|
2319
|
+
{ (exit 77); exit 77; }; }; }
|
2230
2320
|
fi
|
2231
2321
|
|
2232
2322
|
ac_exeext=$ac_cv_exeext
|
2233
2323
|
|
2234
2324
|
# Check that the compiler produces executables we can run. If not, either
|
2235
2325
|
# the compiler is broken, or we cross compile.
|
2236
|
-
{
|
2237
|
-
|
2326
|
+
{ $as_echo "$as_me:$LINENO: checking whether the C compiler works" >&5
|
2327
|
+
$as_echo_n "checking whether the C compiler works... " >&6; }
|
2238
2328
|
# FIXME: These cross compiler hacks should be removed for Autoconf 3.0
|
2239
2329
|
# If not cross compiling, check that we can run a simple program.
|
2240
2330
|
if test "$cross_compiling" != yes; then
|
@@ -2243,49 +2333,53 @@ if test "$cross_compiling" != yes; then
|
|
2243
2333
|
*\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
|
2244
2334
|
*) ac_try_echo=$ac_try;;
|
2245
2335
|
esac
|
2246
|
-
eval "
|
2336
|
+
eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
|
2337
|
+
$as_echo "$ac_try_echo") >&5
|
2247
2338
|
(eval "$ac_try") 2>&5
|
2248
2339
|
ac_status=$?
|
2249
|
-
|
2340
|
+
$as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
2250
2341
|
(exit $ac_status); }; }; then
|
2251
2342
|
cross_compiling=no
|
2252
2343
|
else
|
2253
2344
|
if test "$cross_compiling" = maybe; then
|
2254
2345
|
cross_compiling=yes
|
2255
2346
|
else
|
2256
|
-
{ {
|
2347
|
+
{ { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
|
2348
|
+
$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
|
2349
|
+
{ { $as_echo "$as_me:$LINENO: error: cannot run C compiled programs.
|
2257
2350
|
If you meant to cross compile, use \`--host'.
|
2258
2351
|
See \`config.log' for more details." >&5
|
2259
|
-
|
2352
|
+
$as_echo "$as_me: error: cannot run C compiled programs.
|
2260
2353
|
If you meant to cross compile, use \`--host'.
|
2261
2354
|
See \`config.log' for more details." >&2;}
|
2262
|
-
{ (exit 1); exit 1; }; }
|
2355
|
+
{ (exit 1); exit 1; }; }; }
|
2263
2356
|
fi
|
2264
2357
|
fi
|
2265
2358
|
fi
|
2266
|
-
{
|
2267
|
-
|
2359
|
+
{ $as_echo "$as_me:$LINENO: result: yes" >&5
|
2360
|
+
$as_echo "yes" >&6; }
|
2268
2361
|
|
2269
|
-
rm -f a.out a.exe conftest$ac_cv_exeext b.out
|
2362
|
+
rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out
|
2270
2363
|
ac_clean_files=$ac_clean_files_save
|
2271
2364
|
# Check that the compiler produces executables we can run. If not, either
|
2272
2365
|
# the compiler is broken, or we cross compile.
|
2273
|
-
{
|
2274
|
-
|
2275
|
-
{
|
2276
|
-
|
2366
|
+
{ $as_echo "$as_me:$LINENO: checking whether we are cross compiling" >&5
|
2367
|
+
$as_echo_n "checking whether we are cross compiling... " >&6; }
|
2368
|
+
{ $as_echo "$as_me:$LINENO: result: $cross_compiling" >&5
|
2369
|
+
$as_echo "$cross_compiling" >&6; }
|
2277
2370
|
|
2278
|
-
{
|
2279
|
-
|
2371
|
+
{ $as_echo "$as_me:$LINENO: checking for suffix of executables" >&5
|
2372
|
+
$as_echo_n "checking for suffix of executables... " >&6; }
|
2280
2373
|
if { (ac_try="$ac_link"
|
2281
2374
|
case "(($ac_try" in
|
2282
2375
|
*\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
|
2283
2376
|
*) ac_try_echo=$ac_try;;
|
2284
2377
|
esac
|
2285
|
-
eval "
|
2378
|
+
eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
|
2379
|
+
$as_echo "$ac_try_echo") >&5
|
2286
2380
|
(eval "$ac_link") 2>&5
|
2287
2381
|
ac_status=$?
|
2288
|
-
|
2382
|
+
$as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
2289
2383
|
(exit $ac_status); }; then
|
2290
2384
|
# If both `conftest.exe' and `conftest' are `present' (well, observable)
|
2291
2385
|
# catch `conftest.exe'. For instance with Cygwin, `ls conftest' will
|
@@ -2294,31 +2388,33 @@ eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
|
|
2294
2388
|
for ac_file in conftest.exe conftest conftest.*; do
|
2295
2389
|
test -f "$ac_file" || continue
|
2296
2390
|
case $ac_file in
|
2297
|
-
*.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.o | *.obj ) ;;
|
2391
|
+
*.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;;
|
2298
2392
|
*.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
|
2299
2393
|
break;;
|
2300
2394
|
* ) break;;
|
2301
2395
|
esac
|
2302
2396
|
done
|
2303
2397
|
else
|
2304
|
-
{ {
|
2398
|
+
{ { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
|
2399
|
+
$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
|
2400
|
+
{ { $as_echo "$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link
|
2305
2401
|
See \`config.log' for more details." >&5
|
2306
|
-
|
2402
|
+
$as_echo "$as_me: error: cannot compute suffix of executables: cannot compile and link
|
2307
2403
|
See \`config.log' for more details." >&2;}
|
2308
|
-
{ (exit 1); exit 1; }; }
|
2404
|
+
{ (exit 1); exit 1; }; }; }
|
2309
2405
|
fi
|
2310
2406
|
|
2311
2407
|
rm -f conftest$ac_cv_exeext
|
2312
|
-
{
|
2313
|
-
|
2408
|
+
{ $as_echo "$as_me:$LINENO: result: $ac_cv_exeext" >&5
|
2409
|
+
$as_echo "$ac_cv_exeext" >&6; }
|
2314
2410
|
|
2315
2411
|
rm -f conftest.$ac_ext
|
2316
2412
|
EXEEXT=$ac_cv_exeext
|
2317
2413
|
ac_exeext=$EXEEXT
|
2318
|
-
{
|
2319
|
-
|
2414
|
+
{ $as_echo "$as_me:$LINENO: checking for suffix of object files" >&5
|
2415
|
+
$as_echo_n "checking for suffix of object files... " >&6; }
|
2320
2416
|
if test "${ac_cv_objext+set}" = set; then
|
2321
|
-
|
2417
|
+
$as_echo_n "(cached) " >&6
|
2322
2418
|
else
|
2323
2419
|
cat >conftest.$ac_ext <<_ACEOF
|
2324
2420
|
/* confdefs.h. */
|
@@ -2341,40 +2437,43 @@ case "(($ac_try" in
|
|
2341
2437
|
*\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
|
2342
2438
|
*) ac_try_echo=$ac_try;;
|
2343
2439
|
esac
|
2344
|
-
eval "
|
2440
|
+
eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
|
2441
|
+
$as_echo "$ac_try_echo") >&5
|
2345
2442
|
(eval "$ac_compile") 2>&5
|
2346
2443
|
ac_status=$?
|
2347
|
-
|
2444
|
+
$as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
2348
2445
|
(exit $ac_status); }; then
|
2349
2446
|
for ac_file in conftest.o conftest.obj conftest.*; do
|
2350
2447
|
test -f "$ac_file" || continue;
|
2351
2448
|
case $ac_file in
|
2352
|
-
*.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf ) ;;
|
2449
|
+
*.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;;
|
2353
2450
|
*) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'`
|
2354
2451
|
break;;
|
2355
2452
|
esac
|
2356
2453
|
done
|
2357
2454
|
else
|
2358
|
-
|
2455
|
+
$as_echo "$as_me: failed program was:" >&5
|
2359
2456
|
sed 's/^/| /' conftest.$ac_ext >&5
|
2360
2457
|
|
2361
|
-
{ {
|
2458
|
+
{ { $as_echo "$as_me:$LINENO: error: in \`$ac_pwd':" >&5
|
2459
|
+
$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
|
2460
|
+
{ { $as_echo "$as_me:$LINENO: error: cannot compute suffix of object files: cannot compile
|
2362
2461
|
See \`config.log' for more details." >&5
|
2363
|
-
|
2462
|
+
$as_echo "$as_me: error: cannot compute suffix of object files: cannot compile
|
2364
2463
|
See \`config.log' for more details." >&2;}
|
2365
|
-
{ (exit 1); exit 1; }; }
|
2464
|
+
{ (exit 1); exit 1; }; }; }
|
2366
2465
|
fi
|
2367
2466
|
|
2368
2467
|
rm -f conftest.$ac_cv_objext conftest.$ac_ext
|
2369
2468
|
fi
|
2370
|
-
{
|
2371
|
-
|
2469
|
+
{ $as_echo "$as_me:$LINENO: result: $ac_cv_objext" >&5
|
2470
|
+
$as_echo "$ac_cv_objext" >&6; }
|
2372
2471
|
OBJEXT=$ac_cv_objext
|
2373
2472
|
ac_objext=$OBJEXT
|
2374
|
-
{
|
2375
|
-
|
2473
|
+
{ $as_echo "$as_me:$LINENO: checking whether we are using the GNU C compiler" >&5
|
2474
|
+
$as_echo_n "checking whether we are using the GNU C compiler... " >&6; }
|
2376
2475
|
if test "${ac_cv_c_compiler_gnu+set}" = set; then
|
2377
|
-
|
2476
|
+
$as_echo_n "(cached) " >&6
|
2378
2477
|
else
|
2379
2478
|
cat >conftest.$ac_ext <<_ACEOF
|
2380
2479
|
/* confdefs.h. */
|
@@ -2400,20 +2499,21 @@ case "(($ac_try" in
|
|
2400
2499
|
*\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
|
2401
2500
|
*) ac_try_echo=$ac_try;;
|
2402
2501
|
esac
|
2403
|
-
eval "
|
2502
|
+
eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
|
2503
|
+
$as_echo "$ac_try_echo") >&5
|
2404
2504
|
(eval "$ac_compile") 2>conftest.er1
|
2405
2505
|
ac_status=$?
|
2406
2506
|
grep -v '^ *+' conftest.er1 >conftest.err
|
2407
2507
|
rm -f conftest.er1
|
2408
2508
|
cat conftest.err >&5
|
2409
|
-
|
2509
|
+
$as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
2410
2510
|
(exit $ac_status); } && {
|
2411
2511
|
test -z "$ac_c_werror_flag" ||
|
2412
2512
|
test ! -s conftest.err
|
2413
2513
|
} && test -s conftest.$ac_objext; then
|
2414
2514
|
ac_compiler_gnu=yes
|
2415
2515
|
else
|
2416
|
-
|
2516
|
+
$as_echo "$as_me: failed program was:" >&5
|
2417
2517
|
sed 's/^/| /' conftest.$ac_ext >&5
|
2418
2518
|
|
2419
2519
|
ac_compiler_gnu=no
|
@@ -2423,15 +2523,19 @@ rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
|
2423
2523
|
ac_cv_c_compiler_gnu=$ac_compiler_gnu
|
2424
2524
|
|
2425
2525
|
fi
|
2426
|
-
{
|
2427
|
-
|
2428
|
-
|
2526
|
+
{ $as_echo "$as_me:$LINENO: result: $ac_cv_c_compiler_gnu" >&5
|
2527
|
+
$as_echo "$ac_cv_c_compiler_gnu" >&6; }
|
2528
|
+
if test $ac_compiler_gnu = yes; then
|
2529
|
+
GCC=yes
|
2530
|
+
else
|
2531
|
+
GCC=
|
2532
|
+
fi
|
2429
2533
|
ac_test_CFLAGS=${CFLAGS+set}
|
2430
2534
|
ac_save_CFLAGS=$CFLAGS
|
2431
|
-
{
|
2432
|
-
|
2535
|
+
{ $as_echo "$as_me:$LINENO: checking whether $CC accepts -g" >&5
|
2536
|
+
$as_echo_n "checking whether $CC accepts -g... " >&6; }
|
2433
2537
|
if test "${ac_cv_prog_cc_g+set}" = set; then
|
2434
|
-
|
2538
|
+
$as_echo_n "(cached) " >&6
|
2435
2539
|
else
|
2436
2540
|
ac_save_c_werror_flag=$ac_c_werror_flag
|
2437
2541
|
ac_c_werror_flag=yes
|
@@ -2458,20 +2562,21 @@ case "(($ac_try" in
|
|
2458
2562
|
*\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
|
2459
2563
|
*) ac_try_echo=$ac_try;;
|
2460
2564
|
esac
|
2461
|
-
eval "
|
2565
|
+
eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
|
2566
|
+
$as_echo "$ac_try_echo") >&5
|
2462
2567
|
(eval "$ac_compile") 2>conftest.er1
|
2463
2568
|
ac_status=$?
|
2464
2569
|
grep -v '^ *+' conftest.er1 >conftest.err
|
2465
2570
|
rm -f conftest.er1
|
2466
2571
|
cat conftest.err >&5
|
2467
|
-
|
2572
|
+
$as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
2468
2573
|
(exit $ac_status); } && {
|
2469
2574
|
test -z "$ac_c_werror_flag" ||
|
2470
2575
|
test ! -s conftest.err
|
2471
2576
|
} && test -s conftest.$ac_objext; then
|
2472
2577
|
ac_cv_prog_cc_g=yes
|
2473
2578
|
else
|
2474
|
-
|
2579
|
+
$as_echo "$as_me: failed program was:" >&5
|
2475
2580
|
sed 's/^/| /' conftest.$ac_ext >&5
|
2476
2581
|
|
2477
2582
|
CFLAGS=""
|
@@ -2496,20 +2601,21 @@ case "(($ac_try" in
|
|
2496
2601
|
*\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
|
2497
2602
|
*) ac_try_echo=$ac_try;;
|
2498
2603
|
esac
|
2499
|
-
eval "
|
2604
|
+
eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
|
2605
|
+
$as_echo "$ac_try_echo") >&5
|
2500
2606
|
(eval "$ac_compile") 2>conftest.er1
|
2501
2607
|
ac_status=$?
|
2502
2608
|
grep -v '^ *+' conftest.er1 >conftest.err
|
2503
2609
|
rm -f conftest.er1
|
2504
2610
|
cat conftest.err >&5
|
2505
|
-
|
2611
|
+
$as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
2506
2612
|
(exit $ac_status); } && {
|
2507
2613
|
test -z "$ac_c_werror_flag" ||
|
2508
2614
|
test ! -s conftest.err
|
2509
2615
|
} && test -s conftest.$ac_objext; then
|
2510
2616
|
:
|
2511
2617
|
else
|
2512
|
-
|
2618
|
+
$as_echo "$as_me: failed program was:" >&5
|
2513
2619
|
sed 's/^/| /' conftest.$ac_ext >&5
|
2514
2620
|
|
2515
2621
|
ac_c_werror_flag=$ac_save_c_werror_flag
|
@@ -2535,20 +2641,21 @@ case "(($ac_try" in
|
|
2535
2641
|
*\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
|
2536
2642
|
*) ac_try_echo=$ac_try;;
|
2537
2643
|
esac
|
2538
|
-
eval "
|
2644
|
+
eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
|
2645
|
+
$as_echo "$ac_try_echo") >&5
|
2539
2646
|
(eval "$ac_compile") 2>conftest.er1
|
2540
2647
|
ac_status=$?
|
2541
2648
|
grep -v '^ *+' conftest.er1 >conftest.err
|
2542
2649
|
rm -f conftest.er1
|
2543
2650
|
cat conftest.err >&5
|
2544
|
-
|
2651
|
+
$as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
2545
2652
|
(exit $ac_status); } && {
|
2546
2653
|
test -z "$ac_c_werror_flag" ||
|
2547
2654
|
test ! -s conftest.err
|
2548
2655
|
} && test -s conftest.$ac_objext; then
|
2549
2656
|
ac_cv_prog_cc_g=yes
|
2550
2657
|
else
|
2551
|
-
|
2658
|
+
$as_echo "$as_me: failed program was:" >&5
|
2552
2659
|
sed 's/^/| /' conftest.$ac_ext >&5
|
2553
2660
|
|
2554
2661
|
|
@@ -2563,8 +2670,8 @@ fi
|
|
2563
2670
|
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
2564
2671
|
ac_c_werror_flag=$ac_save_c_werror_flag
|
2565
2672
|
fi
|
2566
|
-
{
|
2567
|
-
|
2673
|
+
{ $as_echo "$as_me:$LINENO: result: $ac_cv_prog_cc_g" >&5
|
2674
|
+
$as_echo "$ac_cv_prog_cc_g" >&6; }
|
2568
2675
|
if test "$ac_test_CFLAGS" = set; then
|
2569
2676
|
CFLAGS=$ac_save_CFLAGS
|
2570
2677
|
elif test $ac_cv_prog_cc_g = yes; then
|
@@ -2580,10 +2687,10 @@ else
|
|
2580
2687
|
CFLAGS=
|
2581
2688
|
fi
|
2582
2689
|
fi
|
2583
|
-
{
|
2584
|
-
|
2690
|
+
{ $as_echo "$as_me:$LINENO: checking for $CC option to accept ISO C89" >&5
|
2691
|
+
$as_echo_n "checking for $CC option to accept ISO C89... " >&6; }
|
2585
2692
|
if test "${ac_cv_prog_cc_c89+set}" = set; then
|
2586
|
-
|
2693
|
+
$as_echo_n "(cached) " >&6
|
2587
2694
|
else
|
2588
2695
|
ac_cv_prog_cc_c89=no
|
2589
2696
|
ac_save_CC=$CC
|
@@ -2654,20 +2761,21 @@ case "(($ac_try" in
|
|
2654
2761
|
*\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
|
2655
2762
|
*) ac_try_echo=$ac_try;;
|
2656
2763
|
esac
|
2657
|
-
eval "
|
2764
|
+
eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
|
2765
|
+
$as_echo "$ac_try_echo") >&5
|
2658
2766
|
(eval "$ac_compile") 2>conftest.er1
|
2659
2767
|
ac_status=$?
|
2660
2768
|
grep -v '^ *+' conftest.er1 >conftest.err
|
2661
2769
|
rm -f conftest.er1
|
2662
2770
|
cat conftest.err >&5
|
2663
|
-
|
2771
|
+
$as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
2664
2772
|
(exit $ac_status); } && {
|
2665
2773
|
test -z "$ac_c_werror_flag" ||
|
2666
2774
|
test ! -s conftest.err
|
2667
2775
|
} && test -s conftest.$ac_objext; then
|
2668
2776
|
ac_cv_prog_cc_c89=$ac_arg
|
2669
2777
|
else
|
2670
|
-
|
2778
|
+
$as_echo "$as_me: failed program was:" >&5
|
2671
2779
|
sed 's/^/| /' conftest.$ac_ext >&5
|
2672
2780
|
|
2673
2781
|
|
@@ -2683,15 +2791,15 @@ fi
|
|
2683
2791
|
# AC_CACHE_VAL
|
2684
2792
|
case "x$ac_cv_prog_cc_c89" in
|
2685
2793
|
x)
|
2686
|
-
{
|
2687
|
-
|
2794
|
+
{ $as_echo "$as_me:$LINENO: result: none needed" >&5
|
2795
|
+
$as_echo "none needed" >&6; } ;;
|
2688
2796
|
xno)
|
2689
|
-
{
|
2690
|
-
|
2797
|
+
{ $as_echo "$as_me:$LINENO: result: unsupported" >&5
|
2798
|
+
$as_echo "unsupported" >&6; } ;;
|
2691
2799
|
*)
|
2692
2800
|
CC="$CC $ac_cv_prog_cc_c89"
|
2693
|
-
{
|
2694
|
-
|
2801
|
+
{ $as_echo "$as_me:$LINENO: result: $ac_cv_prog_cc_c89" >&5
|
2802
|
+
$as_echo "$ac_cv_prog_cc_c89" >&6; } ;;
|
2695
2803
|
esac
|
2696
2804
|
|
2697
2805
|
|
@@ -2701,7 +2809,8 @@ ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
|
|
2701
2809
|
ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
|
2702
2810
|
ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
2703
2811
|
|
2704
|
-
am__api_version=
|
2812
|
+
am__api_version='1.10'
|
2813
|
+
|
2705
2814
|
ac_aux_dir=
|
2706
2815
|
for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do
|
2707
2816
|
if test -f "$ac_dir/install-sh"; then
|
@@ -2719,8 +2828,8 @@ for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do
|
|
2719
2828
|
fi
|
2720
2829
|
done
|
2721
2830
|
if test -z "$ac_aux_dir"; then
|
2722
|
-
{ {
|
2723
|
-
|
2831
|
+
{ { $as_echo "$as_me:$LINENO: error: cannot find install-sh or install.sh in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" >&5
|
2832
|
+
$as_echo "$as_me: error: cannot find install-sh or install.sh in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" >&2;}
|
2724
2833
|
{ (exit 1); exit 1; }; }
|
2725
2834
|
fi
|
2726
2835
|
|
@@ -2746,11 +2855,12 @@ ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var.
|
|
2746
2855
|
# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
|
2747
2856
|
# OS/2's system install, which has a completely different semantic
|
2748
2857
|
# ./install, which can be erroneously created by make from ./install.sh.
|
2749
|
-
|
2750
|
-
|
2858
|
+
# Reject install programs that cannot install multiple files.
|
2859
|
+
{ $as_echo "$as_me:$LINENO: checking for a BSD-compatible install" >&5
|
2860
|
+
$as_echo_n "checking for a BSD-compatible install... " >&6; }
|
2751
2861
|
if test -z "$INSTALL"; then
|
2752
2862
|
if test "${ac_cv_path_install+set}" = set; then
|
2753
|
-
|
2863
|
+
$as_echo_n "(cached) " >&6
|
2754
2864
|
else
|
2755
2865
|
as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
|
2756
2866
|
for as_dir in $PATH
|
@@ -2779,17 +2889,29 @@ case $as_dir/ in
|
|
2779
2889
|
# program-specific install script used by HP pwplus--don't use.
|
2780
2890
|
:
|
2781
2891
|
else
|
2782
|
-
|
2783
|
-
|
2892
|
+
rm -rf conftest.one conftest.two conftest.dir
|
2893
|
+
echo one > conftest.one
|
2894
|
+
echo two > conftest.two
|
2895
|
+
mkdir conftest.dir
|
2896
|
+
if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" &&
|
2897
|
+
test -s conftest.one && test -s conftest.two &&
|
2898
|
+
test -s conftest.dir/conftest.one &&
|
2899
|
+
test -s conftest.dir/conftest.two
|
2900
|
+
then
|
2901
|
+
ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c"
|
2902
|
+
break 3
|
2903
|
+
fi
|
2784
2904
|
fi
|
2785
2905
|
fi
|
2786
2906
|
done
|
2787
2907
|
done
|
2788
2908
|
;;
|
2789
2909
|
esac
|
2910
|
+
|
2790
2911
|
done
|
2791
2912
|
IFS=$as_save_IFS
|
2792
2913
|
|
2914
|
+
rm -rf conftest.one conftest.two conftest.dir
|
2793
2915
|
|
2794
2916
|
fi
|
2795
2917
|
if test "${ac_cv_path_install+set}" = set; then
|
@@ -2802,8 +2924,8 @@ fi
|
|
2802
2924
|
INSTALL=$ac_install_sh
|
2803
2925
|
fi
|
2804
2926
|
fi
|
2805
|
-
{
|
2806
|
-
|
2927
|
+
{ $as_echo "$as_me:$LINENO: result: $INSTALL" >&5
|
2928
|
+
$as_echo "$INSTALL" >&6; }
|
2807
2929
|
|
2808
2930
|
# Use test -z because SunOS4 sh mishandles braces in ${var-val}.
|
2809
2931
|
# It thinks the first close brace ends the variable substitution.
|
@@ -2813,8 +2935,8 @@ test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}'
|
|
2813
2935
|
|
2814
2936
|
test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
|
2815
2937
|
|
2816
|
-
{
|
2817
|
-
|
2938
|
+
{ $as_echo "$as_me:$LINENO: checking whether build environment is sane" >&5
|
2939
|
+
$as_echo_n "checking whether build environment is sane... " >&6; }
|
2818
2940
|
# Just in case
|
2819
2941
|
sleep 1
|
2820
2942
|
echo timestamp > conftest.file
|
@@ -2837,9 +2959,9 @@ if (
|
|
2837
2959
|
# if, for instance, CONFIG_SHELL is bash and it inherits a
|
2838
2960
|
# broken ls alias from the environment. This has actually
|
2839
2961
|
# happened. Such a system could not be considered "sane".
|
2840
|
-
{ {
|
2962
|
+
{ { $as_echo "$as_me:$LINENO: error: ls -t appears to fail. Make sure there is not a broken
|
2841
2963
|
alias in your environment" >&5
|
2842
|
-
|
2964
|
+
$as_echo "$as_me: error: ls -t appears to fail. Make sure there is not a broken
|
2843
2965
|
alias in your environment" >&2;}
|
2844
2966
|
{ (exit 1); exit 1; }; }
|
2845
2967
|
fi
|
@@ -2850,14 +2972,14 @@ then
|
|
2850
2972
|
# Ok.
|
2851
2973
|
:
|
2852
2974
|
else
|
2853
|
-
{ {
|
2975
|
+
{ { $as_echo "$as_me:$LINENO: error: newly created file is older than distributed files!
|
2854
2976
|
Check your system clock" >&5
|
2855
|
-
|
2977
|
+
$as_echo "$as_me: error: newly created file is older than distributed files!
|
2856
2978
|
Check your system clock" >&2;}
|
2857
2979
|
{ (exit 1); exit 1; }; }
|
2858
2980
|
fi
|
2859
|
-
{
|
2860
|
-
|
2981
|
+
{ $as_echo "$as_me:$LINENO: result: yes" >&5
|
2982
|
+
$as_echo "yes" >&6; }
|
2861
2983
|
# expand $ac_aux_dir to an absolute path
|
2862
2984
|
am_aux_dir=`cd $ac_aux_dir && pwd`
|
2863
2985
|
|
@@ -2867,51 +2989,66 @@ if eval "$MISSING --run true"; then
|
|
2867
2989
|
am_missing_run="$MISSING --run "
|
2868
2990
|
else
|
2869
2991
|
am_missing_run=
|
2870
|
-
{
|
2871
|
-
|
2872
|
-
fi
|
2873
|
-
|
2874
|
-
|
2875
|
-
|
2876
|
-
|
2877
|
-
|
2878
|
-
|
2879
|
-
# for two reasons:
|
2880
|
-
# 1. if the package is installed by a user who cannot write `.'
|
2881
|
-
# make install will fail,
|
2882
|
-
# 2. the above comment should most certainly read
|
2883
|
-
# $(mkdir_p) $(DESTDIR)$(somedir)
|
2884
|
-
# so it does not work when $(somedir) is undefined and
|
2885
|
-
# $(DESTDIR) is not.
|
2886
|
-
# To support the latter case, we have to write
|
2887
|
-
# test -z "$(somedir)" || $(mkdir_p) $(DESTDIR)$(somedir),
|
2888
|
-
# so the `.' trick is pointless.
|
2889
|
-
mkdir_p='mkdir -p --'
|
2992
|
+
{ $as_echo "$as_me:$LINENO: WARNING: \`missing' script is too old or missing" >&5
|
2993
|
+
$as_echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;}
|
2994
|
+
fi
|
2995
|
+
|
2996
|
+
{ $as_echo "$as_me:$LINENO: checking for a thread-safe mkdir -p" >&5
|
2997
|
+
$as_echo_n "checking for a thread-safe mkdir -p... " >&6; }
|
2998
|
+
if test -z "$MKDIR_P"; then
|
2999
|
+
if test "${ac_cv_path_mkdir+set}" = set; then
|
3000
|
+
$as_echo_n "(cached) " >&6
|
2890
3001
|
else
|
2891
|
-
|
2892
|
-
|
2893
|
-
|
2894
|
-
|
2895
|
-
|
2896
|
-
do
|
2897
|
-
|
2898
|
-
|
2899
|
-
|
2900
|
-
|
2901
|
-
|
3002
|
+
as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
|
3003
|
+
for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin
|
3004
|
+
do
|
3005
|
+
IFS=$as_save_IFS
|
3006
|
+
test -z "$as_dir" && as_dir=.
|
3007
|
+
for ac_prog in mkdir gmkdir; do
|
3008
|
+
for ac_exec_ext in '' $ac_executable_extensions; do
|
3009
|
+
{ test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; } || continue
|
3010
|
+
case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #(
|
3011
|
+
'mkdir (GNU coreutils) '* | \
|
3012
|
+
'mkdir (coreutils) '* | \
|
3013
|
+
'mkdir (fileutils) '4.1*)
|
3014
|
+
ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext
|
3015
|
+
break 3;;
|
3016
|
+
esac
|
3017
|
+
done
|
3018
|
+
done
|
3019
|
+
done
|
3020
|
+
IFS=$as_save_IFS
|
3021
|
+
|
3022
|
+
fi
|
3023
|
+
|
3024
|
+
if test "${ac_cv_path_mkdir+set}" = set; then
|
3025
|
+
MKDIR_P="$ac_cv_path_mkdir -p"
|
2902
3026
|
else
|
2903
|
-
|
3027
|
+
# As a last resort, use the slow shell script. Don't cache a
|
3028
|
+
# value for MKDIR_P within a source directory, because that will
|
3029
|
+
# break other packages using the cache if that directory is
|
3030
|
+
# removed, or if the value is a relative name.
|
3031
|
+
test -d ./--version && rmdir ./--version
|
3032
|
+
MKDIR_P="$ac_install_sh -d"
|
2904
3033
|
fi
|
2905
3034
|
fi
|
3035
|
+
{ $as_echo "$as_me:$LINENO: result: $MKDIR_P" >&5
|
3036
|
+
$as_echo "$MKDIR_P" >&6; }
|
3037
|
+
|
3038
|
+
mkdir_p="$MKDIR_P"
|
3039
|
+
case $mkdir_p in
|
3040
|
+
[\\/$]* | ?:[\\/]*) ;;
|
3041
|
+
*/*) mkdir_p="\$(top_builddir)/$mkdir_p" ;;
|
3042
|
+
esac
|
2906
3043
|
|
2907
3044
|
for ac_prog in gawk mawk nawk awk
|
2908
3045
|
do
|
2909
3046
|
# Extract the first word of "$ac_prog", so it can be a program name with args.
|
2910
3047
|
set dummy $ac_prog; ac_word=$2
|
2911
|
-
{
|
2912
|
-
|
3048
|
+
{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
|
3049
|
+
$as_echo_n "checking for $ac_word... " >&6; }
|
2913
3050
|
if test "${ac_cv_prog_AWK+set}" = set; then
|
2914
|
-
|
3051
|
+
$as_echo_n "(cached) " >&6
|
2915
3052
|
else
|
2916
3053
|
if test -n "$AWK"; then
|
2917
3054
|
ac_cv_prog_AWK="$AWK" # Let the user override the test.
|
@@ -2924,7 +3061,7 @@ do
|
|
2924
3061
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
2925
3062
|
if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
|
2926
3063
|
ac_cv_prog_AWK="$ac_prog"
|
2927
|
-
|
3064
|
+
$as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
|
2928
3065
|
break 2
|
2929
3066
|
fi
|
2930
3067
|
done
|
@@ -2935,22 +3072,23 @@ fi
|
|
2935
3072
|
fi
|
2936
3073
|
AWK=$ac_cv_prog_AWK
|
2937
3074
|
if test -n "$AWK"; then
|
2938
|
-
{
|
2939
|
-
|
3075
|
+
{ $as_echo "$as_me:$LINENO: result: $AWK" >&5
|
3076
|
+
$as_echo "$AWK" >&6; }
|
2940
3077
|
else
|
2941
|
-
{
|
2942
|
-
|
3078
|
+
{ $as_echo "$as_me:$LINENO: result: no" >&5
|
3079
|
+
$as_echo "no" >&6; }
|
2943
3080
|
fi
|
2944
3081
|
|
2945
3082
|
|
2946
3083
|
test -n "$AWK" && break
|
2947
3084
|
done
|
2948
3085
|
|
2949
|
-
{
|
2950
|
-
|
2951
|
-
set x ${MAKE-make}
|
3086
|
+
{ $as_echo "$as_me:$LINENO: checking whether ${MAKE-make} sets \$(MAKE)" >&5
|
3087
|
+
$as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; }
|
3088
|
+
set x ${MAKE-make}
|
3089
|
+
ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'`
|
2952
3090
|
if { as_var=ac_cv_prog_make_${ac_make}_set; eval "test \"\${$as_var+set}\" = set"; }; then
|
2953
|
-
|
3091
|
+
$as_echo_n "(cached) " >&6
|
2954
3092
|
else
|
2955
3093
|
cat >conftest.make <<\_ACEOF
|
2956
3094
|
SHELL = /bin/sh
|
@@ -2967,12 +3105,12 @@ esac
|
|
2967
3105
|
rm -f conftest.make
|
2968
3106
|
fi
|
2969
3107
|
if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then
|
2970
|
-
{
|
2971
|
-
|
3108
|
+
{ $as_echo "$as_me:$LINENO: result: yes" >&5
|
3109
|
+
$as_echo "yes" >&6; }
|
2972
3110
|
SET_MAKE=
|
2973
3111
|
else
|
2974
|
-
{
|
2975
|
-
|
3112
|
+
{ $as_echo "$as_me:$LINENO: result: no" >&5
|
3113
|
+
$as_echo "no" >&6; }
|
2976
3114
|
SET_MAKE="MAKE=${MAKE-make}"
|
2977
3115
|
fi
|
2978
3116
|
|
@@ -2997,8 +3135,8 @@ am__doit:
|
|
2997
3135
|
.PHONY: am__doit
|
2998
3136
|
END
|
2999
3137
|
# If we don't find an include directive, just comment out the code.
|
3000
|
-
{
|
3001
|
-
|
3138
|
+
{ $as_echo "$as_me:$LINENO: checking for style of include used by $am_make" >&5
|
3139
|
+
$as_echo_n "checking for style of include used by $am_make... " >&6; }
|
3002
3140
|
am__include="#"
|
3003
3141
|
am__quote=
|
3004
3142
|
_am_result=none
|
@@ -3025,8 +3163,8 @@ if test "$am__include" = "#"; then
|
|
3025
3163
|
fi
|
3026
3164
|
|
3027
3165
|
|
3028
|
-
{
|
3029
|
-
|
3166
|
+
{ $as_echo "$as_me:$LINENO: result: $_am_result" >&5
|
3167
|
+
$as_echo "$_am_result" >&6; }
|
3030
3168
|
rm -f confinc confmf
|
3031
3169
|
|
3032
3170
|
# Check whether --enable-dependency-tracking was given.
|
@@ -3038,9 +3176,7 @@ if test "x$enable_dependency_tracking" != xno; then
|
|
3038
3176
|
am_depcomp="$ac_aux_dir/depcomp"
|
3039
3177
|
AMDEPBACKSLASH='\'
|
3040
3178
|
fi
|
3041
|
-
|
3042
|
-
|
3043
|
-
if test "x$enable_dependency_tracking" != xno; then
|
3179
|
+
if test "x$enable_dependency_tracking" != xno; then
|
3044
3180
|
AMDEP_TRUE=
|
3045
3181
|
AMDEP_FALSE='#'
|
3046
3182
|
else
|
@@ -3049,13 +3185,16 @@ else
|
|
3049
3185
|
fi
|
3050
3186
|
|
3051
3187
|
|
3052
|
-
|
3053
|
-
#
|
3054
|
-
|
3055
|
-
|
3056
|
-
|
3057
|
-
|
3188
|
+
if test "`cd $srcdir && pwd`" != "`pwd`"; then
|
3189
|
+
# Use -I$(srcdir) only when $(srcdir) != ., so that make's output
|
3190
|
+
# is not polluted with repeated "-I."
|
3191
|
+
am__isrc=' -I$(srcdir)'
|
3192
|
+
# test to see if srcdir already configured
|
3193
|
+
if test -f $srcdir/config.status; then
|
3194
|
+
{ { $as_echo "$as_me:$LINENO: error: source directory already configured; run \"make distclean\" there first" >&5
|
3195
|
+
$as_echo "$as_me: error: source directory already configured; run \"make distclean\" there first" >&2;}
|
3058
3196
|
{ (exit 1); exit 1; }; }
|
3197
|
+
fi
|
3059
3198
|
fi
|
3060
3199
|
|
3061
3200
|
# test whether we have cygpath
|
@@ -3070,7 +3209,7 @@ fi
|
|
3070
3209
|
|
3071
3210
|
# Define the identity of the package.
|
3072
3211
|
PACKAGE='rbcdio'
|
3073
|
-
VERSION='0.
|
3212
|
+
VERSION='0.04'
|
3074
3213
|
|
3075
3214
|
|
3076
3215
|
cat >>confdefs.h <<_ACEOF
|
@@ -3098,7 +3237,7 @@ AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"}
|
|
3098
3237
|
|
3099
3238
|
MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"}
|
3100
3239
|
|
3101
|
-
install_sh=${install_sh-"$am_aux_dir/install-sh"}
|
3240
|
+
install_sh=${install_sh-"\$(SHELL) $am_aux_dir/install-sh"}
|
3102
3241
|
|
3103
3242
|
# Installed binaries are usually stripped using `strip' when the user
|
3104
3243
|
# run `make install-strip'. However `strip' might not be the right
|
@@ -3108,10 +3247,10 @@ if test "$cross_compiling" != no; then
|
|
3108
3247
|
if test -n "$ac_tool_prefix"; then
|
3109
3248
|
# Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args.
|
3110
3249
|
set dummy ${ac_tool_prefix}strip; ac_word=$2
|
3111
|
-
{
|
3112
|
-
|
3250
|
+
{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
|
3251
|
+
$as_echo_n "checking for $ac_word... " >&6; }
|
3113
3252
|
if test "${ac_cv_prog_STRIP+set}" = set; then
|
3114
|
-
|
3253
|
+
$as_echo_n "(cached) " >&6
|
3115
3254
|
else
|
3116
3255
|
if test -n "$STRIP"; then
|
3117
3256
|
ac_cv_prog_STRIP="$STRIP" # Let the user override the test.
|
@@ -3124,7 +3263,7 @@ do
|
|
3124
3263
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
3125
3264
|
if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
|
3126
3265
|
ac_cv_prog_STRIP="${ac_tool_prefix}strip"
|
3127
|
-
|
3266
|
+
$as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
|
3128
3267
|
break 2
|
3129
3268
|
fi
|
3130
3269
|
done
|
@@ -3135,11 +3274,11 @@ fi
|
|
3135
3274
|
fi
|
3136
3275
|
STRIP=$ac_cv_prog_STRIP
|
3137
3276
|
if test -n "$STRIP"; then
|
3138
|
-
{
|
3139
|
-
|
3277
|
+
{ $as_echo "$as_me:$LINENO: result: $STRIP" >&5
|
3278
|
+
$as_echo "$STRIP" >&6; }
|
3140
3279
|
else
|
3141
|
-
{
|
3142
|
-
|
3280
|
+
{ $as_echo "$as_me:$LINENO: result: no" >&5
|
3281
|
+
$as_echo "no" >&6; }
|
3143
3282
|
fi
|
3144
3283
|
|
3145
3284
|
|
@@ -3148,10 +3287,10 @@ if test -z "$ac_cv_prog_STRIP"; then
|
|
3148
3287
|
ac_ct_STRIP=$STRIP
|
3149
3288
|
# Extract the first word of "strip", so it can be a program name with args.
|
3150
3289
|
set dummy strip; ac_word=$2
|
3151
|
-
{
|
3152
|
-
|
3290
|
+
{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
|
3291
|
+
$as_echo_n "checking for $ac_word... " >&6; }
|
3153
3292
|
if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then
|
3154
|
-
|
3293
|
+
$as_echo_n "(cached) " >&6
|
3155
3294
|
else
|
3156
3295
|
if test -n "$ac_ct_STRIP"; then
|
3157
3296
|
ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test.
|
@@ -3164,7 +3303,7 @@ do
|
|
3164
3303
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
3165
3304
|
if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
|
3166
3305
|
ac_cv_prog_ac_ct_STRIP="strip"
|
3167
|
-
|
3306
|
+
$as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
|
3168
3307
|
break 2
|
3169
3308
|
fi
|
3170
3309
|
done
|
@@ -3175,11 +3314,11 @@ fi
|
|
3175
3314
|
fi
|
3176
3315
|
ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP
|
3177
3316
|
if test -n "$ac_ct_STRIP"; then
|
3178
|
-
{
|
3179
|
-
|
3317
|
+
{ $as_echo "$as_me:$LINENO: result: $ac_ct_STRIP" >&5
|
3318
|
+
$as_echo "$ac_ct_STRIP" >&6; }
|
3180
3319
|
else
|
3181
|
-
{
|
3182
|
-
|
3320
|
+
{ $as_echo "$as_me:$LINENO: result: no" >&5
|
3321
|
+
$as_echo "no" >&6; }
|
3183
3322
|
fi
|
3184
3323
|
|
3185
3324
|
if test "x$ac_ct_STRIP" = x; then
|
@@ -3187,12 +3326,8 @@ fi
|
|
3187
3326
|
else
|
3188
3327
|
case $cross_compiling:$ac_tool_warned in
|
3189
3328
|
yes:)
|
3190
|
-
{
|
3191
|
-
|
3192
|
-
configuration is useful to you, please write to autoconf@gnu.org." >&5
|
3193
|
-
echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools
|
3194
|
-
whose name does not start with the host triplet. If you think this
|
3195
|
-
configuration is useful to you, please write to autoconf@gnu.org." >&2;}
|
3329
|
+
{ $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5
|
3330
|
+
$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
|
3196
3331
|
ac_tool_warned=yes ;;
|
3197
3332
|
esac
|
3198
3333
|
STRIP=$ac_ct_STRIP
|
@@ -3202,7 +3337,7 @@ else
|
|
3202
3337
|
fi
|
3203
3338
|
|
3204
3339
|
fi
|
3205
|
-
INSTALL_STRIP_PROGRAM="\$
|
3340
|
+
INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
|
3206
3341
|
|
3207
3342
|
# We need awk for the "check" target. The system "awk" is bad on
|
3208
3343
|
# some platforms.
|
@@ -3217,10 +3352,10 @@ am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'
|
|
3217
3352
|
|
3218
3353
|
depcc="$CC" am_compiler_list=
|
3219
3354
|
|
3220
|
-
{
|
3221
|
-
|
3355
|
+
{ $as_echo "$as_me:$LINENO: checking dependency style of $depcc" >&5
|
3356
|
+
$as_echo_n "checking dependency style of $depcc... " >&6; }
|
3222
3357
|
if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then
|
3223
|
-
|
3358
|
+
$as_echo_n "(cached) " >&6
|
3224
3359
|
else
|
3225
3360
|
if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
|
3226
3361
|
# We make a subdir and do the tests there. Otherwise we can end up
|
@@ -3282,6 +3417,7 @@ else
|
|
3282
3417
|
depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
|
3283
3418
|
$SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \
|
3284
3419
|
>/dev/null 2>conftest.err &&
|
3420
|
+
grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&
|
3285
3421
|
grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
|
3286
3422
|
grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 &&
|
3287
3423
|
${MAKE-make} -s -f confmf > /dev/null 2>&1; then
|
@@ -3307,13 +3443,11 @@ else
|
|
3307
3443
|
fi
|
3308
3444
|
|
3309
3445
|
fi
|
3310
|
-
{
|
3311
|
-
|
3446
|
+
{ $as_echo "$as_me:$LINENO: result: $am_cv_CC_dependencies_compiler_type" >&5
|
3447
|
+
$as_echo "$am_cv_CC_dependencies_compiler_type" >&6; }
|
3312
3448
|
CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type
|
3313
3449
|
|
3314
|
-
|
3315
|
-
|
3316
|
-
if
|
3450
|
+
if
|
3317
3451
|
test "x$enable_dependency_tracking" != xno \
|
3318
3452
|
&& test "$am_cv_CC_dependencies_compiler_type" = gcc3; then
|
3319
3453
|
am__fastdepCC_TRUE=
|
@@ -3331,8 +3465,8 @@ fi
|
|
3331
3465
|
# Turn off warnings that are to be expected.
|
3332
3466
|
wall=''
|
3333
3467
|
|
3334
|
-
{
|
3335
|
-
|
3468
|
+
{ $as_echo "$as_me:$LINENO: checking if $CC supports \"-Wno-strict-aliasing\" flags" >&5
|
3469
|
+
$as_echo_n "checking if $CC supports \"-Wno-strict-aliasing\" flags... " >&6; }
|
3336
3470
|
SAVE_CFLAGS="$CFLAGS"
|
3337
3471
|
CFLAGS=""-Wno-strict-aliasing""
|
3338
3472
|
cat >conftest.$ac_ext <<_ACEOF
|
@@ -3356,20 +3490,21 @@ case "(($ac_try" in
|
|
3356
3490
|
*\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
|
3357
3491
|
*) ac_try_echo=$ac_try;;
|
3358
3492
|
esac
|
3359
|
-
eval "
|
3493
|
+
eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
|
3494
|
+
$as_echo "$ac_try_echo") >&5
|
3360
3495
|
(eval "$ac_compile") 2>conftest.er1
|
3361
3496
|
ac_status=$?
|
3362
3497
|
grep -v '^ *+' conftest.er1 >conftest.err
|
3363
3498
|
rm -f conftest.er1
|
3364
3499
|
cat conftest.err >&5
|
3365
|
-
|
3500
|
+
$as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
3366
3501
|
(exit $ac_status); } && {
|
3367
3502
|
test -z "$ac_c_werror_flag" ||
|
3368
3503
|
test ! -s conftest.err
|
3369
3504
|
} && test -s conftest.$ac_objext; then
|
3370
3505
|
ac_cv_try_cflags_ok=yes
|
3371
3506
|
else
|
3372
|
-
|
3507
|
+
$as_echo "$as_me: failed program was:" >&5
|
3373
3508
|
sed 's/^/| /' conftest.$ac_ext >&5
|
3374
3509
|
|
3375
3510
|
ac_cv_try_cflags_ok=no
|
@@ -3377,15 +3512,15 @@ fi
|
|
3377
3512
|
|
3378
3513
|
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
3379
3514
|
CFLAGS="$SAVE_CFLAGS"
|
3380
|
-
{
|
3381
|
-
|
3515
|
+
{ $as_echo "$as_me:$LINENO: result: $ac_cv_try_cflags_ok" >&5
|
3516
|
+
$as_echo "$ac_cv_try_cflags_ok" >&6; }
|
3382
3517
|
if test x"$ac_cv_try_cflags_ok" = x"yes"; then
|
3383
3518
|
cflgs="-Wno-strict-aliasing"
|
3384
3519
|
else
|
3385
3520
|
:
|
3386
3521
|
fi
|
3387
|
-
{
|
3388
|
-
|
3522
|
+
{ $as_echo "$as_me:$LINENO: checking if $CC supports \"-Wno-unused-function\" flags" >&5
|
3523
|
+
$as_echo_n "checking if $CC supports \"-Wno-unused-function\" flags... " >&6; }
|
3389
3524
|
SAVE_CFLAGS="$CFLAGS"
|
3390
3525
|
CFLAGS=""-Wno-unused-function""
|
3391
3526
|
cat >conftest.$ac_ext <<_ACEOF
|
@@ -3409,20 +3544,21 @@ case "(($ac_try" in
|
|
3409
3544
|
*\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
|
3410
3545
|
*) ac_try_echo=$ac_try;;
|
3411
3546
|
esac
|
3412
|
-
eval "
|
3547
|
+
eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
|
3548
|
+
$as_echo "$ac_try_echo") >&5
|
3413
3549
|
(eval "$ac_compile") 2>conftest.er1
|
3414
3550
|
ac_status=$?
|
3415
3551
|
grep -v '^ *+' conftest.er1 >conftest.err
|
3416
3552
|
rm -f conftest.er1
|
3417
3553
|
cat conftest.err >&5
|
3418
|
-
|
3554
|
+
$as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
3419
3555
|
(exit $ac_status); } && {
|
3420
3556
|
test -z "$ac_c_werror_flag" ||
|
3421
3557
|
test ! -s conftest.err
|
3422
3558
|
} && test -s conftest.$ac_objext; then
|
3423
3559
|
ac_cv_try_cflags_ok=yes
|
3424
3560
|
else
|
3425
|
-
|
3561
|
+
$as_echo "$as_me: failed program was:" >&5
|
3426
3562
|
sed 's/^/| /' conftest.$ac_ext >&5
|
3427
3563
|
|
3428
3564
|
ac_cv_try_cflags_ok=no
|
@@ -3430,8 +3566,8 @@ fi
|
|
3430
3566
|
|
3431
3567
|
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
3432
3568
|
CFLAGS="$SAVE_CFLAGS"
|
3433
|
-
{
|
3434
|
-
|
3569
|
+
{ $as_echo "$as_me:$LINENO: result: $ac_cv_try_cflags_ok" >&5
|
3570
|
+
$as_echo "$ac_cv_try_cflags_ok" >&6; }
|
3435
3571
|
if test x"$ac_cv_try_cflags_ok" = x"yes"; then
|
3436
3572
|
cflgs="$cflgs -Wno-unused-function"
|
3437
3573
|
else
|
@@ -3451,10 +3587,10 @@ CVS2CL=${CVS2CL-"${am_missing_run}cvs2cl"}
|
|
3451
3587
|
##
|
3452
3588
|
# Extract the first word of "swig", so it can be a program name with args.
|
3453
3589
|
set dummy swig; ac_word=$2
|
3454
|
-
{
|
3455
|
-
|
3590
|
+
{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
|
3591
|
+
$as_echo_n "checking for $ac_word... " >&6; }
|
3456
3592
|
if test "${ac_cv_path_SWIG+set}" = set; then
|
3457
|
-
|
3593
|
+
$as_echo_n "(cached) " >&6
|
3458
3594
|
else
|
3459
3595
|
case $SWIG in
|
3460
3596
|
[\\/]* | ?:[\\/]*)
|
@@ -3469,7 +3605,7 @@ do
|
|
3469
3605
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
3470
3606
|
if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
|
3471
3607
|
ac_cv_path_SWIG="$as_dir/$ac_word$ac_exec_ext"
|
3472
|
-
|
3608
|
+
$as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
|
3473
3609
|
break 2
|
3474
3610
|
fi
|
3475
3611
|
done
|
@@ -3482,19 +3618,19 @@ esac
|
|
3482
3618
|
fi
|
3483
3619
|
SWIG=$ac_cv_path_SWIG
|
3484
3620
|
if test -n "$SWIG"; then
|
3485
|
-
{
|
3486
|
-
|
3621
|
+
{ $as_echo "$as_me:$LINENO: result: $SWIG" >&5
|
3622
|
+
$as_echo "$SWIG" >&6; }
|
3487
3623
|
else
|
3488
|
-
{
|
3489
|
-
|
3624
|
+
{ $as_echo "$as_me:$LINENO: result: no" >&5
|
3625
|
+
$as_echo "no" >&6; }
|
3490
3626
|
fi
|
3491
3627
|
|
3492
3628
|
|
3493
3629
|
if test "$SWIG" = no ; then
|
3494
|
-
{
|
3495
|
-
|
3496
|
-
{
|
3497
|
-
|
3630
|
+
{ $as_echo "$as_me:$LINENO: WARNING: Can't find SWIG installed; using C wrapper from distributor." >&5
|
3631
|
+
$as_echo "$as_me: WARNING: Can't find SWIG installed; using C wrapper from distributor." >&2;}
|
3632
|
+
{ $as_echo "$as_me:$LINENO: WARNING: Check http://www.swig.org if you want to install SWIG" >&5
|
3633
|
+
$as_echo "$as_me: WARNING: Check http://www.swig.org if you want to install SWIG" >&2;}
|
3498
3634
|
fi
|
3499
3635
|
|
3500
3636
|
|
@@ -3503,10 +3639,10 @@ if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
|
|
3503
3639
|
if test -n "$ac_tool_prefix"; then
|
3504
3640
|
# Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args.
|
3505
3641
|
set dummy ${ac_tool_prefix}pkg-config; ac_word=$2
|
3506
|
-
{
|
3507
|
-
|
3642
|
+
{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
|
3643
|
+
$as_echo_n "checking for $ac_word... " >&6; }
|
3508
3644
|
if test "${ac_cv_path_PKG_CONFIG+set}" = set; then
|
3509
|
-
|
3645
|
+
$as_echo_n "(cached) " >&6
|
3510
3646
|
else
|
3511
3647
|
case $PKG_CONFIG in
|
3512
3648
|
[\\/]* | ?:[\\/]*)
|
@@ -3521,7 +3657,7 @@ do
|
|
3521
3657
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
3522
3658
|
if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
|
3523
3659
|
ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext"
|
3524
|
-
|
3660
|
+
$as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
|
3525
3661
|
break 2
|
3526
3662
|
fi
|
3527
3663
|
done
|
@@ -3533,11 +3669,11 @@ esac
|
|
3533
3669
|
fi
|
3534
3670
|
PKG_CONFIG=$ac_cv_path_PKG_CONFIG
|
3535
3671
|
if test -n "$PKG_CONFIG"; then
|
3536
|
-
{
|
3537
|
-
|
3672
|
+
{ $as_echo "$as_me:$LINENO: result: $PKG_CONFIG" >&5
|
3673
|
+
$as_echo "$PKG_CONFIG" >&6; }
|
3538
3674
|
else
|
3539
|
-
{
|
3540
|
-
|
3675
|
+
{ $as_echo "$as_me:$LINENO: result: no" >&5
|
3676
|
+
$as_echo "no" >&6; }
|
3541
3677
|
fi
|
3542
3678
|
|
3543
3679
|
|
@@ -3546,10 +3682,10 @@ if test -z "$ac_cv_path_PKG_CONFIG"; then
|
|
3546
3682
|
ac_pt_PKG_CONFIG=$PKG_CONFIG
|
3547
3683
|
# Extract the first word of "pkg-config", so it can be a program name with args.
|
3548
3684
|
set dummy pkg-config; ac_word=$2
|
3549
|
-
{
|
3550
|
-
|
3685
|
+
{ $as_echo "$as_me:$LINENO: checking for $ac_word" >&5
|
3686
|
+
$as_echo_n "checking for $ac_word... " >&6; }
|
3551
3687
|
if test "${ac_cv_path_ac_pt_PKG_CONFIG+set}" = set; then
|
3552
|
-
|
3688
|
+
$as_echo_n "(cached) " >&6
|
3553
3689
|
else
|
3554
3690
|
case $ac_pt_PKG_CONFIG in
|
3555
3691
|
[\\/]* | ?:[\\/]*)
|
@@ -3564,7 +3700,7 @@ do
|
|
3564
3700
|
for ac_exec_ext in '' $ac_executable_extensions; do
|
3565
3701
|
if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
|
3566
3702
|
ac_cv_path_ac_pt_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext"
|
3567
|
-
|
3703
|
+
$as_echo "$as_me:$LINENO: found $as_dir/$ac_word$ac_exec_ext" >&5
|
3568
3704
|
break 2
|
3569
3705
|
fi
|
3570
3706
|
done
|
@@ -3576,11 +3712,11 @@ esac
|
|
3576
3712
|
fi
|
3577
3713
|
ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG
|
3578
3714
|
if test -n "$ac_pt_PKG_CONFIG"; then
|
3579
|
-
{
|
3580
|
-
|
3715
|
+
{ $as_echo "$as_me:$LINENO: result: $ac_pt_PKG_CONFIG" >&5
|
3716
|
+
$as_echo "$ac_pt_PKG_CONFIG" >&6; }
|
3581
3717
|
else
|
3582
|
-
{
|
3583
|
-
|
3718
|
+
{ $as_echo "$as_me:$LINENO: result: no" >&5
|
3719
|
+
$as_echo "no" >&6; }
|
3584
3720
|
fi
|
3585
3721
|
|
3586
3722
|
if test "x$ac_pt_PKG_CONFIG" = x; then
|
@@ -3588,12 +3724,8 @@ fi
|
|
3588
3724
|
else
|
3589
3725
|
case $cross_compiling:$ac_tool_warned in
|
3590
3726
|
yes:)
|
3591
|
-
{
|
3592
|
-
|
3593
|
-
configuration is useful to you, please write to autoconf@gnu.org." >&5
|
3594
|
-
echo "$as_me: WARNING: In the future, Autoconf will not detect cross-tools
|
3595
|
-
whose name does not start with the host triplet. If you think this
|
3596
|
-
configuration is useful to you, please write to autoconf@gnu.org." >&2;}
|
3727
|
+
{ $as_echo "$as_me:$LINENO: WARNING: using cross tools not prefixed with host triplet" >&5
|
3728
|
+
$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
|
3597
3729
|
ac_tool_warned=yes ;;
|
3598
3730
|
esac
|
3599
3731
|
PKG_CONFIG=$ac_pt_PKG_CONFIG
|
@@ -3605,32 +3737,32 @@ fi
|
|
3605
3737
|
fi
|
3606
3738
|
if test -n "$PKG_CONFIG"; then
|
3607
3739
|
_pkg_min_version=0.9.0
|
3608
|
-
{
|
3609
|
-
|
3740
|
+
{ $as_echo "$as_me:$LINENO: checking pkg-config is at least version $_pkg_min_version" >&5
|
3741
|
+
$as_echo_n "checking pkg-config is at least version $_pkg_min_version... " >&6; }
|
3610
3742
|
if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then
|
3611
|
-
{
|
3612
|
-
|
3743
|
+
{ $as_echo "$as_me:$LINENO: result: yes" >&5
|
3744
|
+
$as_echo "yes" >&6; }
|
3613
3745
|
else
|
3614
|
-
{
|
3615
|
-
|
3746
|
+
{ $as_echo "$as_me:$LINENO: result: no" >&5
|
3747
|
+
$as_echo "no" >&6; }
|
3616
3748
|
PKG_CONFIG=""
|
3617
3749
|
fi
|
3618
3750
|
|
3619
3751
|
fi
|
3620
3752
|
|
3621
3753
|
pkg_failed=no
|
3622
|
-
{
|
3623
|
-
|
3754
|
+
{ $as_echo "$as_me:$LINENO: checking for libcdio" >&5
|
3755
|
+
$as_echo_n "checking for libcdio... " >&6; }
|
3624
3756
|
|
3625
3757
|
if test -n "$PKG_CONFIG"; then
|
3626
3758
|
if test -n "$libcdio_CFLAGS"; then
|
3627
3759
|
pkg_cv_libcdio_CFLAGS="$libcdio_CFLAGS"
|
3628
3760
|
else
|
3629
3761
|
if test -n "$PKG_CONFIG" && \
|
3630
|
-
{ (
|
3762
|
+
{ ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"libcdio >= 0.76\"") >&5
|
3631
3763
|
($PKG_CONFIG --exists --print-errors "libcdio >= 0.76") 2>&5
|
3632
3764
|
ac_status=$?
|
3633
|
-
|
3765
|
+
$as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
3634
3766
|
(exit $ac_status); }; then
|
3635
3767
|
pkg_cv_libcdio_CFLAGS=`$PKG_CONFIG --cflags "libcdio >= 0.76" 2>/dev/null`
|
3636
3768
|
else
|
@@ -3645,10 +3777,10 @@ if test -n "$PKG_CONFIG"; then
|
|
3645
3777
|
pkg_cv_libcdio_LIBS="$libcdio_LIBS"
|
3646
3778
|
else
|
3647
3779
|
if test -n "$PKG_CONFIG" && \
|
3648
|
-
{ (
|
3780
|
+
{ ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"libcdio >= 0.76\"") >&5
|
3649
3781
|
($PKG_CONFIG --exists --print-errors "libcdio >= 0.76") 2>&5
|
3650
3782
|
ac_status=$?
|
3651
|
-
|
3783
|
+
$as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
3652
3784
|
(exit $ac_status); }; then
|
3653
3785
|
pkg_cv_libcdio_LIBS=`$PKG_CONFIG --libs "libcdio >= 0.76" 2>/dev/null`
|
3654
3786
|
else
|
@@ -3676,41 +3808,41 @@ fi
|
|
3676
3808
|
# Put the nasty error message in config.log where it belongs
|
3677
3809
|
echo "$libcdio_PKG_ERRORS" >&5
|
3678
3810
|
|
3679
|
-
{
|
3680
|
-
|
3681
|
-
{
|
3682
|
-
|
3683
|
-
{ {
|
3684
|
-
|
3811
|
+
{ $as_echo "$as_me:$LINENO: result: no" >&5
|
3812
|
+
$as_echo "no" >&6; }
|
3813
|
+
{ $as_echo "$as_me:$LINENO: WARNING: Required libcdio library, version 0.76 or greater, not found." >&5
|
3814
|
+
$as_echo "$as_me: WARNING: Required libcdio library, version 0.76 or greater, not found." >&2;}
|
3815
|
+
{ { $as_echo "$as_me:$LINENO: error: Please get libcdio from http://www.gnu.org/software/libcdio/ and install it." >&5
|
3816
|
+
$as_echo "$as_me: error: Please get libcdio from http://www.gnu.org/software/libcdio/ and install it." >&2;}
|
3685
3817
|
{ (exit 1); exit 1; }; }
|
3686
3818
|
elif test $pkg_failed = untried; then
|
3687
|
-
{
|
3688
|
-
|
3689
|
-
{ {
|
3690
|
-
|
3819
|
+
{ $as_echo "$as_me:$LINENO: WARNING: Required libcdio library, version 0.76 or greater, not found." >&5
|
3820
|
+
$as_echo "$as_me: WARNING: Required libcdio library, version 0.76 or greater, not found." >&2;}
|
3821
|
+
{ { $as_echo "$as_me:$LINENO: error: Please get libcdio from http://www.gnu.org/software/libcdio/ and install it." >&5
|
3822
|
+
$as_echo "$as_me: error: Please get libcdio from http://www.gnu.org/software/libcdio/ and install it." >&2;}
|
3691
3823
|
{ (exit 1); exit 1; }; }
|
3692
3824
|
else
|
3693
3825
|
libcdio_CFLAGS=$pkg_cv_libcdio_CFLAGS
|
3694
3826
|
libcdio_LIBS=$pkg_cv_libcdio_LIBS
|
3695
|
-
{
|
3696
|
-
|
3827
|
+
{ $as_echo "$as_me:$LINENO: result: yes" >&5
|
3828
|
+
$as_echo "yes" >&6; }
|
3697
3829
|
:
|
3698
3830
|
fi
|
3699
3831
|
|
3700
3832
|
|
3701
3833
|
pkg_failed=no
|
3702
|
-
{
|
3703
|
-
|
3834
|
+
{ $as_echo "$as_me:$LINENO: checking for libiso9660" >&5
|
3835
|
+
$as_echo_n "checking for libiso9660... " >&6; }
|
3704
3836
|
|
3705
3837
|
if test -n "$PKG_CONFIG"; then
|
3706
3838
|
if test -n "$libiso9660_CFLAGS"; then
|
3707
3839
|
pkg_cv_libiso9660_CFLAGS="$libiso9660_CFLAGS"
|
3708
3840
|
else
|
3709
3841
|
if test -n "$PKG_CONFIG" && \
|
3710
|
-
{ (
|
3842
|
+
{ ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"libiso9660 >= 0.76\"") >&5
|
3711
3843
|
($PKG_CONFIG --exists --print-errors "libiso9660 >= 0.76") 2>&5
|
3712
3844
|
ac_status=$?
|
3713
|
-
|
3845
|
+
$as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
3714
3846
|
(exit $ac_status); }; then
|
3715
3847
|
pkg_cv_libiso9660_CFLAGS=`$PKG_CONFIG --cflags "libiso9660 >= 0.76" 2>/dev/null`
|
3716
3848
|
else
|
@@ -3725,10 +3857,10 @@ if test -n "$PKG_CONFIG"; then
|
|
3725
3857
|
pkg_cv_libiso9660_LIBS="$libiso9660_LIBS"
|
3726
3858
|
else
|
3727
3859
|
if test -n "$PKG_CONFIG" && \
|
3728
|
-
{ (
|
3860
|
+
{ ($as_echo "$as_me:$LINENO: \$PKG_CONFIG --exists --print-errors \"libiso9660 >= 0.76\"") >&5
|
3729
3861
|
($PKG_CONFIG --exists --print-errors "libiso9660 >= 0.76") 2>&5
|
3730
3862
|
ac_status=$?
|
3731
|
-
|
3863
|
+
$as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
3732
3864
|
(exit $ac_status); }; then
|
3733
3865
|
pkg_cv_libiso9660_LIBS=`$PKG_CONFIG --libs "libiso9660 >= 0.76" 2>/dev/null`
|
3734
3866
|
else
|
@@ -3756,24 +3888,24 @@ fi
|
|
3756
3888
|
# Put the nasty error message in config.log where it belongs
|
3757
3889
|
echo "$libiso9660_PKG_ERRORS" >&5
|
3758
3890
|
|
3759
|
-
{
|
3760
|
-
|
3761
|
-
{
|
3762
|
-
|
3763
|
-
{ {
|
3764
|
-
|
3891
|
+
{ $as_echo "$as_me:$LINENO: result: no" >&5
|
3892
|
+
$as_echo "no" >&6; }
|
3893
|
+
{ $as_echo "$as_me:$LINENO: WARNING: Required libiso9660 library, version 0.76 greater not found." >&5
|
3894
|
+
$as_echo "$as_me: WARNING: Required libiso9660 library, version 0.76 greater not found." >&2;}
|
3895
|
+
{ { $as_echo "$as_me:$LINENO: error: Please get libcdio from http://www.gnu.org/software/libcdio/ and install it." >&5
|
3896
|
+
$as_echo "$as_me: error: Please get libcdio from http://www.gnu.org/software/libcdio/ and install it." >&2;}
|
3765
3897
|
{ (exit 1); exit 1; }; }
|
3766
3898
|
elif test $pkg_failed = untried; then
|
3767
|
-
{
|
3768
|
-
|
3769
|
-
{ {
|
3770
|
-
|
3899
|
+
{ $as_echo "$as_me:$LINENO: WARNING: Required libiso9660 library, version 0.76 greater not found." >&5
|
3900
|
+
$as_echo "$as_me: WARNING: Required libiso9660 library, version 0.76 greater not found." >&2;}
|
3901
|
+
{ { $as_echo "$as_me:$LINENO: error: Please get libcdio from http://www.gnu.org/software/libcdio/ and install it." >&5
|
3902
|
+
$as_echo "$as_me: error: Please get libcdio from http://www.gnu.org/software/libcdio/ and install it." >&2;}
|
3771
3903
|
{ (exit 1); exit 1; }; }
|
3772
3904
|
else
|
3773
3905
|
libiso9660_CFLAGS=$pkg_cv_libiso9660_CFLAGS
|
3774
3906
|
libiso9660_LIBS=$pkg_cv_libiso9660_LIBS
|
3775
|
-
{
|
3776
|
-
|
3907
|
+
{ $as_echo "$as_me:$LINENO: result: yes" >&5
|
3908
|
+
$as_echo "yes" >&6; }
|
3777
3909
|
:
|
3778
3910
|
fi
|
3779
3911
|
|
@@ -3782,15 +3914,15 @@ fi
|
|
3782
3914
|
## A symbolic links is used to link a name in users PATH to the python
|
3783
3915
|
## script.
|
3784
3916
|
##
|
3785
|
-
{
|
3786
|
-
|
3917
|
+
{ $as_echo "$as_me:$LINENO: checking whether ln -s works" >&5
|
3918
|
+
$as_echo_n "checking whether ln -s works... " >&6; }
|
3787
3919
|
LN_S=$as_ln_s
|
3788
3920
|
if test "$LN_S" = "ln -s"; then
|
3789
|
-
{
|
3790
|
-
|
3921
|
+
{ $as_echo "$as_me:$LINENO: result: yes" >&5
|
3922
|
+
$as_echo "yes" >&6; }
|
3791
3923
|
else
|
3792
|
-
{
|
3793
|
-
|
3924
|
+
{ $as_echo "$as_me:$LINENO: result: no, using $LN_S" >&5
|
3925
|
+
$as_echo "no, using $LN_S" >&6; }
|
3794
3926
|
fi
|
3795
3927
|
|
3796
3928
|
|
@@ -3819,34 +3951,34 @@ RUBY_INC=`$RUBY -e 'puts "-I " + $:.join(" -I ")'`
|
|
3819
3951
|
|
3820
3952
|
# Make sure we can run config.sub.
|
3821
3953
|
$SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 ||
|
3822
|
-
{ {
|
3823
|
-
|
3954
|
+
{ { $as_echo "$as_me:$LINENO: error: cannot run $SHELL $ac_aux_dir/config.sub" >&5
|
3955
|
+
$as_echo "$as_me: error: cannot run $SHELL $ac_aux_dir/config.sub" >&2;}
|
3824
3956
|
{ (exit 1); exit 1; }; }
|
3825
3957
|
|
3826
|
-
{
|
3827
|
-
|
3958
|
+
{ $as_echo "$as_me:$LINENO: checking build system type" >&5
|
3959
|
+
$as_echo_n "checking build system type... " >&6; }
|
3828
3960
|
if test "${ac_cv_build+set}" = set; then
|
3829
|
-
|
3961
|
+
$as_echo_n "(cached) " >&6
|
3830
3962
|
else
|
3831
3963
|
ac_build_alias=$build_alias
|
3832
3964
|
test "x$ac_build_alias" = x &&
|
3833
3965
|
ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"`
|
3834
3966
|
test "x$ac_build_alias" = x &&
|
3835
|
-
{ {
|
3836
|
-
|
3967
|
+
{ { $as_echo "$as_me:$LINENO: error: cannot guess build type; you must specify one" >&5
|
3968
|
+
$as_echo "$as_me: error: cannot guess build type; you must specify one" >&2;}
|
3837
3969
|
{ (exit 1); exit 1; }; }
|
3838
3970
|
ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` ||
|
3839
|
-
{ {
|
3840
|
-
|
3971
|
+
{ { $as_echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $ac_build_alias failed" >&5
|
3972
|
+
$as_echo "$as_me: error: $SHELL $ac_aux_dir/config.sub $ac_build_alias failed" >&2;}
|
3841
3973
|
{ (exit 1); exit 1; }; }
|
3842
3974
|
|
3843
3975
|
fi
|
3844
|
-
{
|
3845
|
-
|
3976
|
+
{ $as_echo "$as_me:$LINENO: result: $ac_cv_build" >&5
|
3977
|
+
$as_echo "$ac_cv_build" >&6; }
|
3846
3978
|
case $ac_cv_build in
|
3847
3979
|
*-*-*) ;;
|
3848
|
-
*) { {
|
3849
|
-
|
3980
|
+
*) { { $as_echo "$as_me:$LINENO: error: invalid value of canonical build" >&5
|
3981
|
+
$as_echo "$as_me: error: invalid value of canonical build" >&2;}
|
3850
3982
|
{ (exit 1); exit 1; }; };;
|
3851
3983
|
esac
|
3852
3984
|
build=$ac_cv_build
|
@@ -3863,27 +3995,27 @@ IFS=$ac_save_IFS
|
|
3863
3995
|
case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac
|
3864
3996
|
|
3865
3997
|
|
3866
|
-
{
|
3867
|
-
|
3998
|
+
{ $as_echo "$as_me:$LINENO: checking host system type" >&5
|
3999
|
+
$as_echo_n "checking host system type... " >&6; }
|
3868
4000
|
if test "${ac_cv_host+set}" = set; then
|
3869
|
-
|
4001
|
+
$as_echo_n "(cached) " >&6
|
3870
4002
|
else
|
3871
4003
|
if test "x$host_alias" = x; then
|
3872
4004
|
ac_cv_host=$ac_cv_build
|
3873
4005
|
else
|
3874
4006
|
ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` ||
|
3875
|
-
{ {
|
3876
|
-
|
4007
|
+
{ { $as_echo "$as_me:$LINENO: error: $SHELL $ac_aux_dir/config.sub $host_alias failed" >&5
|
4008
|
+
$as_echo "$as_me: error: $SHELL $ac_aux_dir/config.sub $host_alias failed" >&2;}
|
3877
4009
|
{ (exit 1); exit 1; }; }
|
3878
4010
|
fi
|
3879
4011
|
|
3880
4012
|
fi
|
3881
|
-
{
|
3882
|
-
|
4013
|
+
{ $as_echo "$as_me:$LINENO: result: $ac_cv_host" >&5
|
4014
|
+
$as_echo "$ac_cv_host" >&6; }
|
3883
4015
|
case $ac_cv_host in
|
3884
4016
|
*-*-*) ;;
|
3885
|
-
*) { {
|
3886
|
-
|
4017
|
+
*) { { $as_echo "$as_me:$LINENO: error: invalid value of canonical host" >&5
|
4018
|
+
$as_echo "$as_me: error: invalid value of canonical host" >&2;}
|
3887
4019
|
{ (exit 1); exit 1; }; };;
|
3888
4020
|
esac
|
3889
4021
|
host=$ac_cv_host
|
@@ -3929,8 +4061,8 @@ case $host_os in
|
|
3929
4061
|
solaris*)
|
3930
4062
|
SO=.so
|
3931
4063
|
LDSHARED="gcc -shared"
|
3932
|
-
{
|
3933
|
-
|
4064
|
+
{ $as_echo "$as_me:$LINENO: checking if $CC supports \"-fPIC\" flags" >&5
|
4065
|
+
$as_echo_n "checking if $CC supports \"-fPIC\" flags... " >&6; }
|
3934
4066
|
SAVE_CFLAGS="$CFLAGS"
|
3935
4067
|
CFLAGS=""-fPIC""
|
3936
4068
|
cat >conftest.$ac_ext <<_ACEOF
|
@@ -3954,20 +4086,21 @@ case "(($ac_try" in
|
|
3954
4086
|
*\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
|
3955
4087
|
*) ac_try_echo=$ac_try;;
|
3956
4088
|
esac
|
3957
|
-
eval "
|
4089
|
+
eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
|
4090
|
+
$as_echo "$ac_try_echo") >&5
|
3958
4091
|
(eval "$ac_compile") 2>conftest.er1
|
3959
4092
|
ac_status=$?
|
3960
4093
|
grep -v '^ *+' conftest.er1 >conftest.err
|
3961
4094
|
rm -f conftest.er1
|
3962
4095
|
cat conftest.err >&5
|
3963
|
-
|
4096
|
+
$as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
3964
4097
|
(exit $ac_status); } && {
|
3965
4098
|
test -z "$ac_c_werror_flag" ||
|
3966
4099
|
test ! -s conftest.err
|
3967
4100
|
} && test -s conftest.$ac_objext; then
|
3968
4101
|
ac_cv_try_cflags_ok=yes
|
3969
4102
|
else
|
3970
|
-
|
4103
|
+
$as_echo "$as_me: failed program was:" >&5
|
3971
4104
|
sed 's/^/| /' conftest.$ac_ext >&5
|
3972
4105
|
|
3973
4106
|
ac_cv_try_cflags_ok=no
|
@@ -3975,8 +4108,8 @@ fi
|
|
3975
4108
|
|
3976
4109
|
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
3977
4110
|
CFLAGS="$SAVE_CFLAGS"
|
3978
|
-
{
|
3979
|
-
|
4111
|
+
{ $as_echo "$as_me:$LINENO: result: $ac_cv_try_cflags_ok" >&5
|
4112
|
+
$as_echo "$ac_cv_try_cflags_ok" >&6; }
|
3980
4113
|
if test x"$ac_cv_try_cflags_ok" = x"yes"; then
|
3981
4114
|
cflgs="$cflgs -fPIC"
|
3982
4115
|
else
|
@@ -3985,8 +4118,8 @@ echo "${ECHO_T}$ac_cv_try_cflags_ok" >&6; }
|
|
3985
4118
|
CFLAGS="$CFLAGS $cflgs"
|
3986
4119
|
;;
|
3987
4120
|
*)
|
3988
|
-
{
|
3989
|
-
|
4121
|
+
{ $as_echo "$as_me:$LINENO: checking if $CC supports \"-fPIC\" flags" >&5
|
4122
|
+
$as_echo_n "checking if $CC supports \"-fPIC\" flags... " >&6; }
|
3990
4123
|
SAVE_CFLAGS="$CFLAGS"
|
3991
4124
|
CFLAGS=""-fPIC""
|
3992
4125
|
cat >conftest.$ac_ext <<_ACEOF
|
@@ -4010,20 +4143,21 @@ case "(($ac_try" in
|
|
4010
4143
|
*\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
|
4011
4144
|
*) ac_try_echo=$ac_try;;
|
4012
4145
|
esac
|
4013
|
-
eval "
|
4146
|
+
eval ac_try_echo="\"\$as_me:$LINENO: $ac_try_echo\""
|
4147
|
+
$as_echo "$ac_try_echo") >&5
|
4014
4148
|
(eval "$ac_compile") 2>conftest.er1
|
4015
4149
|
ac_status=$?
|
4016
4150
|
grep -v '^ *+' conftest.er1 >conftest.err
|
4017
4151
|
rm -f conftest.er1
|
4018
4152
|
cat conftest.err >&5
|
4019
|
-
|
4153
|
+
$as_echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
4020
4154
|
(exit $ac_status); } && {
|
4021
4155
|
test -z "$ac_c_werror_flag" ||
|
4022
4156
|
test ! -s conftest.err
|
4023
4157
|
} && test -s conftest.$ac_objext; then
|
4024
4158
|
ac_cv_try_cflags_ok=yes
|
4025
4159
|
else
|
4026
|
-
|
4160
|
+
$as_echo "$as_me: failed program was:" >&5
|
4027
4161
|
sed 's/^/| /' conftest.$ac_ext >&5
|
4028
4162
|
|
4029
4163
|
ac_cv_try_cflags_ok=no
|
@@ -4031,8 +4165,8 @@ fi
|
|
4031
4165
|
|
4032
4166
|
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
4033
4167
|
CFLAGS="$SAVE_CFLAGS"
|
4034
|
-
{
|
4035
|
-
|
4168
|
+
{ $as_echo "$as_me:$LINENO: result: $ac_cv_try_cflags_ok" >&5
|
4169
|
+
$as_echo "$ac_cv_try_cflags_ok" >&6; }
|
4036
4170
|
if test x"$ac_cv_try_cflags_ok" = x"yes"; then
|
4037
4171
|
cflgs="$cflgs -fPIC"
|
4038
4172
|
else
|
@@ -4088,11 +4222,12 @@ _ACEOF
|
|
4088
4222
|
case $ac_val in #(
|
4089
4223
|
*${as_nl}*)
|
4090
4224
|
case $ac_var in #(
|
4091
|
-
*_cv_*) {
|
4092
|
-
|
4225
|
+
*_cv_*) { $as_echo "$as_me:$LINENO: WARNING: cache variable $ac_var contains a newline" >&5
|
4226
|
+
$as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;;
|
4093
4227
|
esac
|
4094
4228
|
case $ac_var in #(
|
4095
4229
|
_ | IFS | as_nl) ;; #(
|
4230
|
+
BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #(
|
4096
4231
|
*) $as_unset $ac_var ;;
|
4097
4232
|
esac ;;
|
4098
4233
|
esac
|
@@ -4125,12 +4260,12 @@ echo "$as_me: WARNING: Cache variable $ac_var contains a newline." >&2;} ;;
|
|
4125
4260
|
if diff "$cache_file" confcache >/dev/null 2>&1; then :; else
|
4126
4261
|
if test -w "$cache_file"; then
|
4127
4262
|
test "x$cache_file" != "x/dev/null" &&
|
4128
|
-
{
|
4129
|
-
|
4263
|
+
{ $as_echo "$as_me:$LINENO: updating cache $cache_file" >&5
|
4264
|
+
$as_echo "$as_me: updating cache $cache_file" >&6;}
|
4130
4265
|
cat confcache >$cache_file
|
4131
4266
|
else
|
4132
|
-
{
|
4133
|
-
|
4267
|
+
{ $as_echo "$as_me:$LINENO: not updating unwritable cache $cache_file" >&5
|
4268
|
+
$as_echo "$as_me: not updating unwritable cache $cache_file" >&6;}
|
4134
4269
|
fi
|
4135
4270
|
fi
|
4136
4271
|
rm -f confcache
|
@@ -4147,6 +4282,12 @@ test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
|
|
4147
4282
|
# take arguments), then branch to the quote section. Otherwise,
|
4148
4283
|
# look for a macro that doesn't take arguments.
|
4149
4284
|
ac_script='
|
4285
|
+
:mline
|
4286
|
+
/\\$/{
|
4287
|
+
N
|
4288
|
+
s,\\\n,,
|
4289
|
+
b mline
|
4290
|
+
}
|
4150
4291
|
t clear
|
4151
4292
|
:clear
|
4152
4293
|
s/^[ ]*#[ ]*define[ ][ ]*\([^ (][^ (]*([^)]*)\)[ ]*\(.*\)/-D\1=\2/g
|
@@ -4176,7 +4317,7 @@ ac_ltlibobjs=
|
|
4176
4317
|
for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue
|
4177
4318
|
# 1. Remove the extension, and $U if already installed.
|
4178
4319
|
ac_script='s/\$U\././;s/\.o$//;s/\.obj$//'
|
4179
|
-
ac_i
|
4320
|
+
ac_i=`$as_echo "$ac_i" | sed "$ac_script"`
|
4180
4321
|
# 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR
|
4181
4322
|
# will be set to the directory where LIBOBJS objects are built.
|
4182
4323
|
ac_libobjs="$ac_libobjs \${LIBOBJDIR}$ac_i\$U.$ac_objext"
|
@@ -4188,33 +4329,34 @@ LTLIBOBJS=$ac_ltlibobjs
|
|
4188
4329
|
|
4189
4330
|
|
4190
4331
|
if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then
|
4191
|
-
{ {
|
4332
|
+
{ { $as_echo "$as_me:$LINENO: error: conditional \"MAINTAINER_MODE\" was never defined.
|
4192
4333
|
Usually this means the macro was only invoked conditionally." >&5
|
4193
|
-
|
4334
|
+
$as_echo "$as_me: error: conditional \"MAINTAINER_MODE\" was never defined.
|
4194
4335
|
Usually this means the macro was only invoked conditionally." >&2;}
|
4195
4336
|
{ (exit 1); exit 1; }; }
|
4196
4337
|
fi
|
4197
4338
|
if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then
|
4198
|
-
{ {
|
4339
|
+
{ { $as_echo "$as_me:$LINENO: error: conditional \"AMDEP\" was never defined.
|
4199
4340
|
Usually this means the macro was only invoked conditionally." >&5
|
4200
|
-
|
4341
|
+
$as_echo "$as_me: error: conditional \"AMDEP\" was never defined.
|
4201
4342
|
Usually this means the macro was only invoked conditionally." >&2;}
|
4202
4343
|
{ (exit 1); exit 1; }; }
|
4203
4344
|
fi
|
4204
4345
|
if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then
|
4205
|
-
{ {
|
4346
|
+
{ { $as_echo "$as_me:$LINENO: error: conditional \"am__fastdepCC\" was never defined.
|
4206
4347
|
Usually this means the macro was only invoked conditionally." >&5
|
4207
|
-
|
4348
|
+
$as_echo "$as_me: error: conditional \"am__fastdepCC\" was never defined.
|
4208
4349
|
Usually this means the macro was only invoked conditionally." >&2;}
|
4209
4350
|
{ (exit 1); exit 1; }; }
|
4210
4351
|
fi
|
4211
4352
|
|
4212
4353
|
: ${CONFIG_STATUS=./config.status}
|
4354
|
+
ac_write_fail=0
|
4213
4355
|
ac_clean_files_save=$ac_clean_files
|
4214
4356
|
ac_clean_files="$ac_clean_files $CONFIG_STATUS"
|
4215
|
-
{
|
4216
|
-
|
4217
|
-
cat >$CONFIG_STATUS <<_ACEOF
|
4357
|
+
{ $as_echo "$as_me:$LINENO: creating $CONFIG_STATUS" >&5
|
4358
|
+
$as_echo "$as_me: creating $CONFIG_STATUS" >&6;}
|
4359
|
+
cat >$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
|
4218
4360
|
#! $SHELL
|
4219
4361
|
# Generated by $as_me.
|
4220
4362
|
# Run this file to recreate the current configuration.
|
@@ -4227,7 +4369,7 @@ ac_cs_silent=false
|
|
4227
4369
|
SHELL=\${CONFIG_SHELL-$SHELL}
|
4228
4370
|
_ACEOF
|
4229
4371
|
|
4230
|
-
cat >>$CONFIG_STATUS <<\_ACEOF
|
4372
|
+
cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
|
4231
4373
|
## --------------------- ##
|
4232
4374
|
## M4sh Initialization. ##
|
4233
4375
|
## --------------------- ##
|
@@ -4237,7 +4379,7 @@ DUALCASE=1; export DUALCASE # for MKS sh
|
|
4237
4379
|
if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
|
4238
4380
|
emulate sh
|
4239
4381
|
NULLCMD=:
|
4240
|
-
#
|
4382
|
+
# Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
|
4241
4383
|
# is contrary to our usage. Disable this feature.
|
4242
4384
|
alias -g '${1+"$@"}'='"$@"'
|
4243
4385
|
setopt NO_GLOB_SUBST
|
@@ -4259,17 +4401,45 @@ as_cr_Letters=$as_cr_letters$as_cr_LETTERS
|
|
4259
4401
|
as_cr_digits='0123456789'
|
4260
4402
|
as_cr_alnum=$as_cr_Letters$as_cr_digits
|
4261
4403
|
|
4262
|
-
|
4263
|
-
|
4264
|
-
|
4265
|
-
|
4266
|
-
|
4267
|
-
|
4268
|
-
|
4404
|
+
as_nl='
|
4405
|
+
'
|
4406
|
+
export as_nl
|
4407
|
+
# Printing a long string crashes Solaris 7 /usr/bin/printf.
|
4408
|
+
as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
|
4409
|
+
as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo
|
4410
|
+
as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo
|
4411
|
+
if (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then
|
4412
|
+
as_echo='printf %s\n'
|
4413
|
+
as_echo_n='printf %s'
|
4414
|
+
else
|
4415
|
+
if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then
|
4416
|
+
as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"'
|
4417
|
+
as_echo_n='/usr/ucb/echo -n'
|
4269
4418
|
else
|
4270
|
-
|
4419
|
+
as_echo_body='eval expr "X$1" : "X\\(.*\\)"'
|
4420
|
+
as_echo_n_body='eval
|
4421
|
+
arg=$1;
|
4422
|
+
case $arg in
|
4423
|
+
*"$as_nl"*)
|
4424
|
+
expr "X$arg" : "X\\(.*\\)$as_nl";
|
4425
|
+
arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;;
|
4426
|
+
esac;
|
4427
|
+
expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl"
|
4428
|
+
'
|
4429
|
+
export as_echo_n_body
|
4430
|
+
as_echo_n='sh -c $as_echo_n_body as_echo'
|
4271
4431
|
fi
|
4272
|
-
|
4432
|
+
export as_echo_body
|
4433
|
+
as_echo='sh -c $as_echo_body as_echo'
|
4434
|
+
fi
|
4435
|
+
|
4436
|
+
# The user is always right.
|
4437
|
+
if test "${PATH_SEPARATOR+set}" != set; then
|
4438
|
+
PATH_SEPARATOR=:
|
4439
|
+
(PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && {
|
4440
|
+
(PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 ||
|
4441
|
+
PATH_SEPARATOR=';'
|
4442
|
+
}
|
4273
4443
|
fi
|
4274
4444
|
|
4275
4445
|
# Support unset when possible.
|
@@ -4285,8 +4455,6 @@ fi
|
|
4285
4455
|
# there to prevent editors from complaining about space-tab.
|
4286
4456
|
# (If _AS_PATH_WALK were called with IFS unset, it would disable word
|
4287
4457
|
# splitting by setting IFS to empty value.)
|
4288
|
-
as_nl='
|
4289
|
-
'
|
4290
4458
|
IFS=" "" $as_nl"
|
4291
4459
|
|
4292
4460
|
# Find who we are. Look in the path if we contain no directory separator.
|
@@ -4309,7 +4477,7 @@ if test "x$as_myself" = x; then
|
|
4309
4477
|
as_myself=$0
|
4310
4478
|
fi
|
4311
4479
|
if test ! -f "$as_myself"; then
|
4312
|
-
|
4480
|
+
$as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2
|
4313
4481
|
{ (exit 1); exit 1; }
|
4314
4482
|
fi
|
4315
4483
|
|
@@ -4322,17 +4490,10 @@ PS2='> '
|
|
4322
4490
|
PS4='+ '
|
4323
4491
|
|
4324
4492
|
# NLS nuisances.
|
4325
|
-
|
4326
|
-
|
4327
|
-
|
4328
|
-
|
4329
|
-
do
|
4330
|
-
if (set +x; test -z "`(eval $as_var=C; export $as_var) 2>&1`"); then
|
4331
|
-
eval $as_var=C; export $as_var
|
4332
|
-
else
|
4333
|
-
($as_unset $as_var) >/dev/null 2>&1 && $as_unset $as_var
|
4334
|
-
fi
|
4335
|
-
done
|
4493
|
+
LC_ALL=C
|
4494
|
+
export LC_ALL
|
4495
|
+
LANGUAGE=C
|
4496
|
+
export LANGUAGE
|
4336
4497
|
|
4337
4498
|
# Required to use basename.
|
4338
4499
|
if expr a : '\(a\)' >/dev/null 2>&1 &&
|
@@ -4354,7 +4515,7 @@ as_me=`$as_basename -- "$0" ||
|
|
4354
4515
|
$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
|
4355
4516
|
X"$0" : 'X\(//\)$' \| \
|
4356
4517
|
X"$0" : 'X\(/\)' \| . 2>/dev/null ||
|
4357
|
-
|
4518
|
+
$as_echo X/"$0" |
|
4358
4519
|
sed '/^.*\/\([^/][^/]*\)\/*$/{
|
4359
4520
|
s//\1/
|
4360
4521
|
q
|
@@ -4405,7 +4566,7 @@ $as_unset CDPATH
|
|
4405
4566
|
s/-\n.*//
|
4406
4567
|
' >$as_me.lineno &&
|
4407
4568
|
chmod +x "$as_me.lineno" ||
|
4408
|
-
{
|
4569
|
+
{ $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2
|
4409
4570
|
{ (exit 1); exit 1; }; }
|
4410
4571
|
|
4411
4572
|
# Don't try to exec as it changes $[0], causing all sort of problems
|
@@ -4433,7 +4594,6 @@ case `echo -n x` in
|
|
4433
4594
|
*)
|
4434
4595
|
ECHO_N='-n';;
|
4435
4596
|
esac
|
4436
|
-
|
4437
4597
|
if expr a : '\(a\)' >/dev/null 2>&1 &&
|
4438
4598
|
test "X`expr 00001 : '.*\(...\)'`" = X001; then
|
4439
4599
|
as_expr=expr
|
@@ -4446,19 +4606,22 @@ if test -d conf$$.dir; then
|
|
4446
4606
|
rm -f conf$$.dir/conf$$.file
|
4447
4607
|
else
|
4448
4608
|
rm -f conf$$.dir
|
4449
|
-
mkdir conf$$.dir
|
4450
|
-
fi
|
4451
|
-
echo >conf$$.file
|
4452
|
-
if ln -s conf$$.file conf$$ 2>/dev/null; then
|
4453
|
-
|
4454
|
-
|
4455
|
-
|
4456
|
-
|
4457
|
-
|
4458
|
-
|
4609
|
+
mkdir conf$$.dir 2>/dev/null
|
4610
|
+
fi
|
4611
|
+
if (echo >conf$$.file) 2>/dev/null; then
|
4612
|
+
if ln -s conf$$.file conf$$ 2>/dev/null; then
|
4613
|
+
as_ln_s='ln -s'
|
4614
|
+
# ... but there are two gotchas:
|
4615
|
+
# 1) On MSYS, both `ln -s file dir' and `ln file dir' fail.
|
4616
|
+
# 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable.
|
4617
|
+
# In both cases, we have to default to `cp -p'.
|
4618
|
+
ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe ||
|
4619
|
+
as_ln_s='cp -p'
|
4620
|
+
elif ln conf$$.file conf$$ 2>/dev/null; then
|
4621
|
+
as_ln_s=ln
|
4622
|
+
else
|
4459
4623
|
as_ln_s='cp -p'
|
4460
|
-
|
4461
|
-
as_ln_s=ln
|
4624
|
+
fi
|
4462
4625
|
else
|
4463
4626
|
as_ln_s='cp -p'
|
4464
4627
|
fi
|
@@ -4483,10 +4646,10 @@ else
|
|
4483
4646
|
as_test_x='
|
4484
4647
|
eval sh -c '\''
|
4485
4648
|
if test -d "$1"; then
|
4486
|
-
|
4649
|
+
test -d "$1/.";
|
4487
4650
|
else
|
4488
4651
|
case $1 in
|
4489
|
-
|
4652
|
+
-*)set "./$1";;
|
4490
4653
|
esac;
|
4491
4654
|
case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in
|
4492
4655
|
???[sx]*):;;*)false;;esac;fi
|
@@ -4508,8 +4671,8 @@ exec 6>&1
|
|
4508
4671
|
# report actual input values of CONFIG_FILES etc. instead of their
|
4509
4672
|
# values after options handling.
|
4510
4673
|
ac_log="
|
4511
|
-
This file was extended by rbcdio $as_me 0.
|
4512
|
-
generated by GNU Autoconf 2.
|
4674
|
+
This file was extended by rbcdio $as_me 0.04, which was
|
4675
|
+
generated by GNU Autoconf 2.63. Invocation command line was
|
4513
4676
|
|
4514
4677
|
CONFIG_FILES = $CONFIG_FILES
|
4515
4678
|
CONFIG_HEADERS = $CONFIG_HEADERS
|
@@ -4522,27 +4685,34 @@ on `(hostname || uname -n) 2>/dev/null | sed 1q`
|
|
4522
4685
|
|
4523
4686
|
_ACEOF
|
4524
4687
|
|
4525
|
-
|
4688
|
+
case $ac_config_files in *"
|
4689
|
+
"*) set x $ac_config_files; shift; ac_config_files=$*;;
|
4690
|
+
esac
|
4691
|
+
|
4692
|
+
|
4693
|
+
|
4694
|
+
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
|
4526
4695
|
# Files that config.status was made for.
|
4527
4696
|
config_files="$ac_config_files"
|
4528
4697
|
config_commands="$ac_config_commands"
|
4529
4698
|
|
4530
4699
|
_ACEOF
|
4531
4700
|
|
4532
|
-
cat >>$CONFIG_STATUS <<\_ACEOF
|
4701
|
+
cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
|
4533
4702
|
ac_cs_usage="\
|
4534
4703
|
\`$as_me' instantiates files from templates according to the
|
4535
4704
|
current configuration.
|
4536
4705
|
|
4537
|
-
Usage: $0 [
|
4706
|
+
Usage: $0 [OPTION]... [FILE]...
|
4538
4707
|
|
4539
4708
|
-h, --help print this help, then exit
|
4540
4709
|
-V, --version print version number and configuration settings, then exit
|
4541
|
-
-q, --quiet
|
4710
|
+
-q, --quiet, --silent
|
4711
|
+
do not print progress messages
|
4542
4712
|
-d, --debug don't remove temporary files
|
4543
4713
|
--recheck update $as_me by reconfiguring in the same conditions
|
4544
|
-
|
4545
|
-
|
4714
|
+
--file=FILE[:TEMPLATE]
|
4715
|
+
instantiate the configuration file FILE
|
4546
4716
|
|
4547
4717
|
Configuration files:
|
4548
4718
|
$config_files
|
@@ -4553,24 +4723,26 @@ $config_commands
|
|
4553
4723
|
Report bugs to <bug-autoconf@gnu.org>."
|
4554
4724
|
|
4555
4725
|
_ACEOF
|
4556
|
-
cat >>$CONFIG_STATUS <<_ACEOF
|
4726
|
+
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
|
4557
4727
|
ac_cs_version="\\
|
4558
|
-
rbcdio config.status 0.
|
4559
|
-
configured by $0, generated by GNU Autoconf 2.
|
4560
|
-
with options \\"
|
4728
|
+
rbcdio config.status 0.04
|
4729
|
+
configured by $0, generated by GNU Autoconf 2.63,
|
4730
|
+
with options \\"`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\"
|
4561
4731
|
|
4562
|
-
Copyright (C)
|
4732
|
+
Copyright (C) 2008 Free Software Foundation, Inc.
|
4563
4733
|
This config.status script is free software; the Free Software Foundation
|
4564
4734
|
gives unlimited permission to copy, distribute and modify it."
|
4565
4735
|
|
4566
4736
|
ac_pwd='$ac_pwd'
|
4567
4737
|
srcdir='$srcdir'
|
4568
4738
|
INSTALL='$INSTALL'
|
4739
|
+
MKDIR_P='$MKDIR_P'
|
4740
|
+
AWK='$AWK'
|
4741
|
+
test -n "\$AWK" || AWK=awk
|
4569
4742
|
_ACEOF
|
4570
4743
|
|
4571
|
-
cat >>$CONFIG_STATUS <<\_ACEOF
|
4572
|
-
#
|
4573
|
-
# value. By we need to know if files were specified by the user.
|
4744
|
+
cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
|
4745
|
+
# The default lists apply if the user does not specify any file.
|
4574
4746
|
ac_need_defaults=:
|
4575
4747
|
while test $# != 0
|
4576
4748
|
do
|
@@ -4592,21 +4764,24 @@ do
|
|
4592
4764
|
-recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
|
4593
4765
|
ac_cs_recheck=: ;;
|
4594
4766
|
--version | --versio | --versi | --vers | --ver | --ve | --v | -V )
|
4595
|
-
|
4767
|
+
$as_echo "$ac_cs_version"; exit ;;
|
4596
4768
|
--debug | --debu | --deb | --de | --d | -d )
|
4597
4769
|
debug=: ;;
|
4598
4770
|
--file | --fil | --fi | --f )
|
4599
4771
|
$ac_shift
|
4600
|
-
|
4772
|
+
case $ac_optarg in
|
4773
|
+
*\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;;
|
4774
|
+
esac
|
4775
|
+
CONFIG_FILES="$CONFIG_FILES '$ac_optarg'"
|
4601
4776
|
ac_need_defaults=false;;
|
4602
4777
|
--he | --h | --help | --hel | -h )
|
4603
|
-
|
4778
|
+
$as_echo "$ac_cs_usage"; exit ;;
|
4604
4779
|
-q | -quiet | --quiet | --quie | --qui | --qu | --q \
|
4605
4780
|
| -silent | --silent | --silen | --sile | --sil | --si | --s)
|
4606
4781
|
ac_cs_silent=: ;;
|
4607
4782
|
|
4608
4783
|
# This is an error.
|
4609
|
-
-*) {
|
4784
|
+
-*) { $as_echo "$as_me: error: unrecognized option: $1
|
4610
4785
|
Try \`$0 --help' for more information." >&2
|
4611
4786
|
{ (exit 1); exit 1; }; } ;;
|
4612
4787
|
|
@@ -4625,27 +4800,29 @@ if $ac_cs_silent; then
|
|
4625
4800
|
fi
|
4626
4801
|
|
4627
4802
|
_ACEOF
|
4628
|
-
cat >>$CONFIG_STATUS <<_ACEOF
|
4803
|
+
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
|
4629
4804
|
if \$ac_cs_recheck; then
|
4630
|
-
|
4631
|
-
|
4805
|
+
set X '$SHELL' '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion
|
4806
|
+
shift
|
4807
|
+
\$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6
|
4808
|
+
CONFIG_SHELL='$SHELL'
|
4632
4809
|
export CONFIG_SHELL
|
4633
|
-
exec
|
4810
|
+
exec "\$@"
|
4634
4811
|
fi
|
4635
4812
|
|
4636
4813
|
_ACEOF
|
4637
|
-
cat >>$CONFIG_STATUS <<\_ACEOF
|
4814
|
+
cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
|
4638
4815
|
exec 5>>config.log
|
4639
4816
|
{
|
4640
4817
|
echo
|
4641
4818
|
sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX
|
4642
4819
|
## Running $as_me. ##
|
4643
4820
|
_ASBOX
|
4644
|
-
|
4821
|
+
$as_echo "$ac_log"
|
4645
4822
|
} >&5
|
4646
4823
|
|
4647
4824
|
_ACEOF
|
4648
|
-
cat >>$CONFIG_STATUS <<_ACEOF
|
4825
|
+
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
|
4649
4826
|
#
|
4650
4827
|
# INIT-COMMANDS
|
4651
4828
|
#
|
@@ -4653,7 +4830,7 @@ AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"
|
|
4653
4830
|
|
4654
4831
|
_ACEOF
|
4655
4832
|
|
4656
|
-
cat >>$CONFIG_STATUS <<\_ACEOF
|
4833
|
+
cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
|
4657
4834
|
|
4658
4835
|
# Handling of arguments.
|
4659
4836
|
for ac_config_target in $ac_config_targets
|
@@ -4663,8 +4840,8 @@ do
|
|
4663
4840
|
"Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
|
4664
4841
|
"VERSION") CONFIG_FILES="$CONFIG_FILES VERSION" ;;
|
4665
4842
|
|
4666
|
-
*) { {
|
4667
|
-
|
4843
|
+
*) { { $as_echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5
|
4844
|
+
$as_echo "$as_me: error: invalid argument: $ac_config_target" >&2;}
|
4668
4845
|
{ (exit 1); exit 1; }; };;
|
4669
4846
|
esac
|
4670
4847
|
done
|
@@ -4704,208 +4881,144 @@ $debug ||
|
|
4704
4881
|
(umask 077 && mkdir "$tmp")
|
4705
4882
|
} ||
|
4706
4883
|
{
|
4707
|
-
|
4884
|
+
$as_echo "$as_me: cannot create a temporary directory in ." >&2
|
4708
4885
|
{ (exit 1); exit 1; }
|
4709
4886
|
}
|
4710
4887
|
|
4711
|
-
#
|
4712
|
-
#
|
4713
|
-
#
|
4714
|
-
|
4715
|
-
# No need to generate the scripts if there are no CONFIG_FILES.
|
4716
|
-
# This happens for instance when ./config.status config.h
|
4888
|
+
# Set up the scripts for CONFIG_FILES section.
|
4889
|
+
# No need to generate them if there are no CONFIG_FILES.
|
4890
|
+
# This happens for instance with `./config.status config.h'.
|
4717
4891
|
if test -n "$CONFIG_FILES"; then
|
4718
4892
|
|
4719
|
-
_ACEOF
|
4720
|
-
|
4721
|
-
|
4722
4893
|
|
4723
|
-
|
4724
|
-
|
4725
|
-
|
4726
|
-
|
4727
|
-
|
4728
|
-
|
4729
|
-
PACKAGE_TARNAME!$PACKAGE_TARNAME$ac_delim
|
4730
|
-
PACKAGE_VERSION!$PACKAGE_VERSION$ac_delim
|
4731
|
-
PACKAGE_STRING!$PACKAGE_STRING$ac_delim
|
4732
|
-
PACKAGE_BUGREPORT!$PACKAGE_BUGREPORT$ac_delim
|
4733
|
-
exec_prefix!$exec_prefix$ac_delim
|
4734
|
-
prefix!$prefix$ac_delim
|
4735
|
-
program_transform_name!$program_transform_name$ac_delim
|
4736
|
-
bindir!$bindir$ac_delim
|
4737
|
-
sbindir!$sbindir$ac_delim
|
4738
|
-
libexecdir!$libexecdir$ac_delim
|
4739
|
-
datarootdir!$datarootdir$ac_delim
|
4740
|
-
datadir!$datadir$ac_delim
|
4741
|
-
sysconfdir!$sysconfdir$ac_delim
|
4742
|
-
sharedstatedir!$sharedstatedir$ac_delim
|
4743
|
-
localstatedir!$localstatedir$ac_delim
|
4744
|
-
includedir!$includedir$ac_delim
|
4745
|
-
oldincludedir!$oldincludedir$ac_delim
|
4746
|
-
docdir!$docdir$ac_delim
|
4747
|
-
infodir!$infodir$ac_delim
|
4748
|
-
htmldir!$htmldir$ac_delim
|
4749
|
-
dvidir!$dvidir$ac_delim
|
4750
|
-
pdfdir!$pdfdir$ac_delim
|
4751
|
-
psdir!$psdir$ac_delim
|
4752
|
-
libdir!$libdir$ac_delim
|
4753
|
-
localedir!$localedir$ac_delim
|
4754
|
-
mandir!$mandir$ac_delim
|
4755
|
-
DEFS!$DEFS$ac_delim
|
4756
|
-
ECHO_C!$ECHO_C$ac_delim
|
4757
|
-
ECHO_N!$ECHO_N$ac_delim
|
4758
|
-
ECHO_T!$ECHO_T$ac_delim
|
4759
|
-
LIBS!$LIBS$ac_delim
|
4760
|
-
build_alias!$build_alias$ac_delim
|
4761
|
-
host_alias!$host_alias$ac_delim
|
4762
|
-
target_alias!$target_alias$ac_delim
|
4763
|
-
MAINTAINER_MODE_TRUE!$MAINTAINER_MODE_TRUE$ac_delim
|
4764
|
-
MAINTAINER_MODE_FALSE!$MAINTAINER_MODE_FALSE$ac_delim
|
4765
|
-
MAINT!$MAINT$ac_delim
|
4766
|
-
CC!$CC$ac_delim
|
4767
|
-
CFLAGS!$CFLAGS$ac_delim
|
4768
|
-
LDFLAGS!$LDFLAGS$ac_delim
|
4769
|
-
CPPFLAGS!$CPPFLAGS$ac_delim
|
4770
|
-
ac_ct_CC!$ac_ct_CC$ac_delim
|
4771
|
-
EXEEXT!$EXEEXT$ac_delim
|
4772
|
-
OBJEXT!$OBJEXT$ac_delim
|
4773
|
-
INSTALL_PROGRAM!$INSTALL_PROGRAM$ac_delim
|
4774
|
-
INSTALL_SCRIPT!$INSTALL_SCRIPT$ac_delim
|
4775
|
-
INSTALL_DATA!$INSTALL_DATA$ac_delim
|
4776
|
-
CYGPATH_W!$CYGPATH_W$ac_delim
|
4777
|
-
PACKAGE!$PACKAGE$ac_delim
|
4778
|
-
VERSION!$VERSION$ac_delim
|
4779
|
-
ACLOCAL!$ACLOCAL$ac_delim
|
4780
|
-
AUTOCONF!$AUTOCONF$ac_delim
|
4781
|
-
AUTOMAKE!$AUTOMAKE$ac_delim
|
4782
|
-
AUTOHEADER!$AUTOHEADER$ac_delim
|
4783
|
-
MAKEINFO!$MAKEINFO$ac_delim
|
4784
|
-
install_sh!$install_sh$ac_delim
|
4785
|
-
STRIP!$STRIP$ac_delim
|
4786
|
-
INSTALL_STRIP_PROGRAM!$INSTALL_STRIP_PROGRAM$ac_delim
|
4787
|
-
mkdir_p!$mkdir_p$ac_delim
|
4788
|
-
AWK!$AWK$ac_delim
|
4789
|
-
SET_MAKE!$SET_MAKE$ac_delim
|
4790
|
-
am__leading_dot!$am__leading_dot$ac_delim
|
4791
|
-
AMTAR!$AMTAR$ac_delim
|
4792
|
-
am__tar!$am__tar$ac_delim
|
4793
|
-
am__untar!$am__untar$ac_delim
|
4794
|
-
DEPDIR!$DEPDIR$ac_delim
|
4795
|
-
am__include!$am__include$ac_delim
|
4796
|
-
am__quote!$am__quote$ac_delim
|
4797
|
-
AMDEP_TRUE!$AMDEP_TRUE$ac_delim
|
4798
|
-
AMDEP_FALSE!$AMDEP_FALSE$ac_delim
|
4799
|
-
AMDEPBACKSLASH!$AMDEPBACKSLASH$ac_delim
|
4800
|
-
CCDEPMODE!$CCDEPMODE$ac_delim
|
4801
|
-
am__fastdepCC_TRUE!$am__fastdepCC_TRUE$ac_delim
|
4802
|
-
am__fastdepCC_FALSE!$am__fastdepCC_FALSE$ac_delim
|
4803
|
-
CVS2CL!$CVS2CL$ac_delim
|
4804
|
-
SWIG!$SWIG$ac_delim
|
4805
|
-
PKG_CONFIG!$PKG_CONFIG$ac_delim
|
4806
|
-
libcdio_CFLAGS!$libcdio_CFLAGS$ac_delim
|
4807
|
-
libcdio_LIBS!$libcdio_LIBS$ac_delim
|
4808
|
-
libiso9660_CFLAGS!$libiso9660_CFLAGS$ac_delim
|
4809
|
-
libiso9660_LIBS!$libiso9660_LIBS$ac_delim
|
4810
|
-
LN_S!$LN_S$ac_delim
|
4811
|
-
RUBY!$RUBY$ac_delim
|
4812
|
-
RUBY_INC!$RUBY_INC$ac_delim
|
4813
|
-
build!$build$ac_delim
|
4814
|
-
build_cpu!$build_cpu$ac_delim
|
4815
|
-
build_vendor!$build_vendor$ac_delim
|
4816
|
-
build_os!$build_os$ac_delim
|
4817
|
-
host!$host$ac_delim
|
4818
|
-
host_cpu!$host_cpu$ac_delim
|
4819
|
-
host_vendor!$host_vendor$ac_delim
|
4820
|
-
host_os!$host_os$ac_delim
|
4821
|
-
SO!$SO$ac_delim
|
4822
|
-
RUBY_LIBS!$RUBY_LIBS$ac_delim
|
4823
|
-
_ACEOF
|
4824
|
-
|
4825
|
-
if test `sed -n "s/.*$ac_delim\$/X/p" conf$$subs.sed | grep -c X` = 97; then
|
4826
|
-
break
|
4827
|
-
elif $ac_last_try; then
|
4828
|
-
{ { echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5
|
4829
|
-
echo "$as_me: error: could not make $CONFIG_STATUS" >&2;}
|
4830
|
-
{ (exit 1); exit 1; }; }
|
4831
|
-
else
|
4832
|
-
ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
|
4833
|
-
fi
|
4834
|
-
done
|
4835
|
-
|
4836
|
-
ac_eof=`sed -n '/^CEOF[0-9]*$/s/CEOF/0/p' conf$$subs.sed`
|
4837
|
-
if test -n "$ac_eof"; then
|
4838
|
-
ac_eof=`echo "$ac_eof" | sort -nru | sed 1q`
|
4839
|
-
ac_eof=`expr $ac_eof + 1`
|
4894
|
+
ac_cr='
|
4895
|
+
ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' </dev/null 2>/dev/null`
|
4896
|
+
if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then
|
4897
|
+
ac_cs_awk_cr='\\r'
|
4898
|
+
else
|
4899
|
+
ac_cs_awk_cr=$ac_cr
|
4840
4900
|
fi
|
4841
4901
|
|
4842
|
-
|
4843
|
-
cat >"\$tmp/subs-1.sed" <<\CEOF$ac_eof
|
4844
|
-
/@[a-zA-Z_][a-zA-Z_0-9]*@/!b
|
4845
|
-
_ACEOF
|
4846
|
-
sed '
|
4847
|
-
s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g
|
4848
|
-
s/^/s,@/; s/!/@,|#_!!_#|/
|
4849
|
-
:n
|
4850
|
-
t n
|
4851
|
-
s/'"$ac_delim"'$/,g/; t
|
4852
|
-
s/$/\\/; p
|
4853
|
-
N; s/^.*\n//; s/[,\\&]/\\&/g; s/@/@|#_!!_#|/g; b n
|
4854
|
-
' >>$CONFIG_STATUS <conf$$subs.sed
|
4855
|
-
rm -f conf$$subs.sed
|
4856
|
-
cat >>$CONFIG_STATUS <<_ACEOF
|
4857
|
-
CEOF$ac_eof
|
4902
|
+
echo 'BEGIN {' >"$tmp/subs1.awk" &&
|
4858
4903
|
_ACEOF
|
4859
4904
|
|
4860
4905
|
|
4906
|
+
{
|
4907
|
+
echo "cat >conf$$subs.awk <<_ACEOF" &&
|
4908
|
+
echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' &&
|
4909
|
+
echo "_ACEOF"
|
4910
|
+
} >conf$$subs.sh ||
|
4911
|
+
{ { $as_echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5
|
4912
|
+
$as_echo "$as_me: error: could not make $CONFIG_STATUS" >&2;}
|
4913
|
+
{ (exit 1); exit 1; }; }
|
4914
|
+
ac_delim_num=`echo "$ac_subst_vars" | grep -c '$'`
|
4861
4915
|
ac_delim='%!_!# '
|
4862
4916
|
for ac_last_try in false false false false false :; do
|
4863
|
-
|
4864
|
-
|
4865
|
-
|
4866
|
-
|
4867
|
-
LIBOBJS!$LIBOBJS$ac_delim
|
4868
|
-
LTLIBOBJS!$LTLIBOBJS$ac_delim
|
4869
|
-
_ACEOF
|
4917
|
+
. ./conf$$subs.sh ||
|
4918
|
+
{ { $as_echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5
|
4919
|
+
$as_echo "$as_me: error: could not make $CONFIG_STATUS" >&2;}
|
4920
|
+
{ (exit 1); exit 1; }; }
|
4870
4921
|
|
4871
|
-
|
4922
|
+
ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X`
|
4923
|
+
if test $ac_delim_n = $ac_delim_num; then
|
4872
4924
|
break
|
4873
4925
|
elif $ac_last_try; then
|
4874
|
-
{ {
|
4875
|
-
|
4926
|
+
{ { $as_echo "$as_me:$LINENO: error: could not make $CONFIG_STATUS" >&5
|
4927
|
+
$as_echo "$as_me: error: could not make $CONFIG_STATUS" >&2;}
|
4876
4928
|
{ (exit 1); exit 1; }; }
|
4877
4929
|
else
|
4878
4930
|
ac_delim="$ac_delim!$ac_delim _$ac_delim!! "
|
4879
4931
|
fi
|
4880
4932
|
done
|
4933
|
+
rm -f conf$$subs.sh
|
4881
4934
|
|
4882
|
-
|
4883
|
-
|
4884
|
-
|
4885
|
-
|
4886
|
-
|
4935
|
+
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
|
4936
|
+
cat >>"\$tmp/subs1.awk" <<\\_ACAWK &&
|
4937
|
+
_ACEOF
|
4938
|
+
sed -n '
|
4939
|
+
h
|
4940
|
+
s/^/S["/; s/!.*/"]=/
|
4941
|
+
p
|
4942
|
+
g
|
4943
|
+
s/^[^!]*!//
|
4944
|
+
:repl
|
4945
|
+
t repl
|
4946
|
+
s/'"$ac_delim"'$//
|
4947
|
+
t delim
|
4948
|
+
:nl
|
4949
|
+
h
|
4950
|
+
s/\(.\{148\}\).*/\1/
|
4951
|
+
t more1
|
4952
|
+
s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/
|
4953
|
+
p
|
4954
|
+
n
|
4955
|
+
b repl
|
4956
|
+
:more1
|
4957
|
+
s/["\\]/\\&/g; s/^/"/; s/$/"\\/
|
4958
|
+
p
|
4959
|
+
g
|
4960
|
+
s/.\{148\}//
|
4961
|
+
t nl
|
4962
|
+
:delim
|
4963
|
+
h
|
4964
|
+
s/\(.\{148\}\).*/\1/
|
4965
|
+
t more2
|
4966
|
+
s/["\\]/\\&/g; s/^/"/; s/$/"/
|
4967
|
+
p
|
4968
|
+
b
|
4969
|
+
:more2
|
4970
|
+
s/["\\]/\\&/g; s/^/"/; s/$/"\\/
|
4971
|
+
p
|
4972
|
+
g
|
4973
|
+
s/.\{148\}//
|
4974
|
+
t delim
|
4975
|
+
' <conf$$subs.awk | sed '
|
4976
|
+
/^[^""]/{
|
4977
|
+
N
|
4978
|
+
s/\n//
|
4979
|
+
}
|
4980
|
+
' >>$CONFIG_STATUS || ac_write_fail=1
|
4981
|
+
rm -f conf$$subs.awk
|
4982
|
+
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
|
4983
|
+
_ACAWK
|
4984
|
+
cat >>"\$tmp/subs1.awk" <<_ACAWK &&
|
4985
|
+
for (key in S) S_is_set[key] = 1
|
4986
|
+
FS = ""
|
4887
4987
|
|
4888
|
-
|
4889
|
-
|
4890
|
-
|
4988
|
+
}
|
4989
|
+
{
|
4990
|
+
line = $ 0
|
4991
|
+
nfields = split(line, field, "@")
|
4992
|
+
substed = 0
|
4993
|
+
len = length(field[1])
|
4994
|
+
for (i = 2; i < nfields; i++) {
|
4995
|
+
key = field[i]
|
4996
|
+
keylen = length(key)
|
4997
|
+
if (S_is_set[key]) {
|
4998
|
+
value = S[key]
|
4999
|
+
line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3)
|
5000
|
+
len += length(value) + length(field[++i])
|
5001
|
+
substed = 1
|
5002
|
+
} else
|
5003
|
+
len += 1 + keylen
|
5004
|
+
}
|
5005
|
+
|
5006
|
+
print line
|
5007
|
+
}
|
5008
|
+
|
5009
|
+
_ACAWK
|
4891
5010
|
_ACEOF
|
4892
|
-
|
4893
|
-
s/
|
4894
|
-
s
|
4895
|
-
|
4896
|
-
|
4897
|
-
|
4898
|
-
|
4899
|
-
|
4900
|
-
|
4901
|
-
rm -f conf$$subs.sed
|
4902
|
-
cat >>$CONFIG_STATUS <<_ACEOF
|
4903
|
-
:end
|
4904
|
-
s/|#_!!_#|//g
|
4905
|
-
CEOF$ac_eof
|
5011
|
+
cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
|
5012
|
+
if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then
|
5013
|
+
sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g"
|
5014
|
+
else
|
5015
|
+
cat
|
5016
|
+
fi < "$tmp/subs1.awk" > "$tmp/subs.awk" \
|
5017
|
+
|| { { $as_echo "$as_me:$LINENO: error: could not setup config files machinery" >&5
|
5018
|
+
$as_echo "$as_me: error: could not setup config files machinery" >&2;}
|
5019
|
+
{ (exit 1); exit 1; }; }
|
4906
5020
|
_ACEOF
|
4907
5021
|
|
4908
|
-
|
4909
5022
|
# VPATH may cause trouble with some makes, so we remove $(srcdir),
|
4910
5023
|
# ${srcdir} and @srcdir@ from VPATH if srcdir is ".", strip leading and
|
4911
5024
|
# trailing colons and then remove the whole line if VPATH becomes empty
|
@@ -4921,19 +5034,21 @@ s/^[^=]*=[ ]*$//
|
|
4921
5034
|
}'
|
4922
5035
|
fi
|
4923
5036
|
|
4924
|
-
cat >>$CONFIG_STATUS <<\_ACEOF
|
5037
|
+
cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
|
4925
5038
|
fi # test -n "$CONFIG_FILES"
|
4926
5039
|
|
4927
5040
|
|
4928
|
-
|
5041
|
+
eval set X " :F $CONFIG_FILES :C $CONFIG_COMMANDS"
|
5042
|
+
shift
|
5043
|
+
for ac_tag
|
4929
5044
|
do
|
4930
5045
|
case $ac_tag in
|
4931
5046
|
:[FHLC]) ac_mode=$ac_tag; continue;;
|
4932
5047
|
esac
|
4933
5048
|
case $ac_mode$ac_tag in
|
4934
5049
|
:[FHL]*:*);;
|
4935
|
-
:L* | :C*:*) { {
|
4936
|
-
|
5050
|
+
:L* | :C*:*) { { $as_echo "$as_me:$LINENO: error: invalid tag $ac_tag" >&5
|
5051
|
+
$as_echo "$as_me: error: invalid tag $ac_tag" >&2;}
|
4937
5052
|
{ (exit 1); exit 1; }; };;
|
4938
5053
|
:[FH]-) ac_tag=-:-;;
|
4939
5054
|
:[FH]*) ac_tag=$ac_tag:$ac_tag.in;;
|
@@ -4962,26 +5077,38 @@ echo "$as_me: error: Invalid tag $ac_tag." >&2;}
|
|
4962
5077
|
[\\/$]*) false;;
|
4963
5078
|
*) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";;
|
4964
5079
|
esac ||
|
4965
|
-
{ {
|
4966
|
-
|
5080
|
+
{ { $as_echo "$as_me:$LINENO: error: cannot find input file: $ac_f" >&5
|
5081
|
+
$as_echo "$as_me: error: cannot find input file: $ac_f" >&2;}
|
4967
5082
|
{ (exit 1); exit 1; }; };;
|
4968
5083
|
esac
|
4969
|
-
|
5084
|
+
case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac
|
5085
|
+
ac_file_inputs="$ac_file_inputs '$ac_f'"
|
4970
5086
|
done
|
4971
5087
|
|
4972
5088
|
# Let's still pretend it is `configure' which instantiates (i.e., don't
|
4973
5089
|
# use $as_me), people would be surprised to read:
|
4974
5090
|
# /* config.h. Generated by config.status. */
|
4975
|
-
configure_input=
|
4976
|
-
|
5091
|
+
configure_input='Generated from '`
|
5092
|
+
$as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g'
|
5093
|
+
`' by configure.'
|
4977
5094
|
if test x"$ac_file" != x-; then
|
4978
5095
|
configure_input="$ac_file. $configure_input"
|
4979
|
-
{
|
4980
|
-
|
5096
|
+
{ $as_echo "$as_me:$LINENO: creating $ac_file" >&5
|
5097
|
+
$as_echo "$as_me: creating $ac_file" >&6;}
|
4981
5098
|
fi
|
5099
|
+
# Neutralize special characters interpreted by sed in replacement strings.
|
5100
|
+
case $configure_input in #(
|
5101
|
+
*\&* | *\|* | *\\* )
|
5102
|
+
ac_sed_conf_input=`$as_echo "$configure_input" |
|
5103
|
+
sed 's/[\\\\&|]/\\\\&/g'`;; #(
|
5104
|
+
*) ac_sed_conf_input=$configure_input;;
|
5105
|
+
esac
|
4982
5106
|
|
4983
5107
|
case $ac_tag in
|
4984
|
-
*:-:* | *:-) cat >"$tmp/stdin"
|
5108
|
+
*:-:* | *:-) cat >"$tmp/stdin" \
|
5109
|
+
|| { { $as_echo "$as_me:$LINENO: error: could not create $ac_file" >&5
|
5110
|
+
$as_echo "$as_me: error: could not create $ac_file" >&2;}
|
5111
|
+
{ (exit 1); exit 1; }; } ;;
|
4985
5112
|
esac
|
4986
5113
|
;;
|
4987
5114
|
esac
|
@@ -4991,7 +5118,7 @@ $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
|
|
4991
5118
|
X"$ac_file" : 'X\(//\)[^/]' \| \
|
4992
5119
|
X"$ac_file" : 'X\(//\)$' \| \
|
4993
5120
|
X"$ac_file" : 'X\(/\)' \| . 2>/dev/null ||
|
4994
|
-
|
5121
|
+
$as_echo X"$ac_file" |
|
4995
5122
|
sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
|
4996
5123
|
s//\1/
|
4997
5124
|
q
|
@@ -5017,7 +5144,7 @@ echo X"$ac_file" |
|
|
5017
5144
|
as_dirs=
|
5018
5145
|
while :; do
|
5019
5146
|
case $as_dir in #(
|
5020
|
-
*\'*) as_qdir
|
5147
|
+
*\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
|
5021
5148
|
*) as_qdir=$as_dir;;
|
5022
5149
|
esac
|
5023
5150
|
as_dirs="'$as_qdir' $as_dirs"
|
@@ -5026,7 +5153,7 @@ $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
|
|
5026
5153
|
X"$as_dir" : 'X\(//\)[^/]' \| \
|
5027
5154
|
X"$as_dir" : 'X\(//\)$' \| \
|
5028
5155
|
X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
|
5029
|
-
|
5156
|
+
$as_echo X"$as_dir" |
|
5030
5157
|
sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
|
5031
5158
|
s//\1/
|
5032
5159
|
q
|
@@ -5047,17 +5174,17 @@ echo X"$as_dir" |
|
|
5047
5174
|
test -d "$as_dir" && break
|
5048
5175
|
done
|
5049
5176
|
test -z "$as_dirs" || eval "mkdir $as_dirs"
|
5050
|
-
} || test -d "$as_dir" || { {
|
5051
|
-
|
5177
|
+
} || test -d "$as_dir" || { { $as_echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5
|
5178
|
+
$as_echo "$as_me: error: cannot create directory $as_dir" >&2;}
|
5052
5179
|
{ (exit 1); exit 1; }; }; }
|
5053
5180
|
ac_builddir=.
|
5054
5181
|
|
5055
5182
|
case "$ac_dir" in
|
5056
5183
|
.) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;;
|
5057
5184
|
*)
|
5058
|
-
ac_dir_suffix
|
5185
|
+
ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'`
|
5059
5186
|
# A ".." for each directory in $ac_dir_suffix.
|
5060
|
-
ac_top_builddir_sub
|
5187
|
+
ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'`
|
5061
5188
|
case $ac_top_builddir_sub in
|
5062
5189
|
"") ac_top_builddir_sub=. ac_top_build_prefix= ;;
|
5063
5190
|
*) ac_top_build_prefix=$ac_top_builddir_sub/ ;;
|
@@ -5095,14 +5222,20 @@ ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix
|
|
5095
5222
|
[\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;;
|
5096
5223
|
*) ac_INSTALL=$ac_top_build_prefix$INSTALL ;;
|
5097
5224
|
esac
|
5225
|
+
ac_MKDIR_P=$MKDIR_P
|
5226
|
+
case $MKDIR_P in
|
5227
|
+
[\\/$]* | ?:[\\/]* ) ;;
|
5228
|
+
*/*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;;
|
5229
|
+
esac
|
5098
5230
|
_ACEOF
|
5099
5231
|
|
5100
|
-
cat >>$CONFIG_STATUS <<\_ACEOF
|
5232
|
+
cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
|
5101
5233
|
# If the template does not know about datarootdir, expand it.
|
5102
5234
|
# FIXME: This hack should be removed a few years after 2.60.
|
5103
5235
|
ac_datarootdir_hack=; ac_datarootdir_seen=
|
5104
5236
|
|
5105
|
-
|
5237
|
+
ac_sed_dataroot='
|
5238
|
+
/datarootdir/ {
|
5106
5239
|
p
|
5107
5240
|
q
|
5108
5241
|
}
|
@@ -5111,13 +5244,14 @@ case `sed -n '/datarootdir/ {
|
|
5111
5244
|
/@infodir@/p
|
5112
5245
|
/@localedir@/p
|
5113
5246
|
/@mandir@/p
|
5114
|
-
'
|
5247
|
+
'
|
5248
|
+
case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in
|
5115
5249
|
*datarootdir*) ac_datarootdir_seen=yes;;
|
5116
5250
|
*@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*)
|
5117
|
-
{
|
5118
|
-
|
5251
|
+
{ $as_echo "$as_me:$LINENO: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5
|
5252
|
+
$as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;}
|
5119
5253
|
_ACEOF
|
5120
|
-
cat >>$CONFIG_STATUS <<_ACEOF
|
5254
|
+
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
|
5121
5255
|
ac_datarootdir_hack='
|
5122
5256
|
s&@datadir@&$datadir&g
|
5123
5257
|
s&@docdir@&$docdir&g
|
@@ -5131,15 +5265,16 @@ _ACEOF
|
|
5131
5265
|
# Neutralize VPATH when `$srcdir' = `.'.
|
5132
5266
|
# Shell code in configure.ac might set extrasub.
|
5133
5267
|
# FIXME: do we really want to maintain this feature?
|
5134
|
-
cat >>$CONFIG_STATUS <<_ACEOF
|
5135
|
-
|
5268
|
+
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
|
5269
|
+
ac_sed_extra="$ac_vpsub
|
5136
5270
|
$extrasub
|
5137
5271
|
_ACEOF
|
5138
|
-
cat >>$CONFIG_STATUS <<\_ACEOF
|
5272
|
+
cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
|
5139
5273
|
:t
|
5140
5274
|
/@[a-zA-Z_][a-zA-Z_0-9]*@/!b
|
5141
|
-
s
|
5275
|
+
s|@configure_input@|$ac_sed_conf_input|;t t
|
5142
5276
|
s&@top_builddir@&$ac_top_builddir_sub&;t t
|
5277
|
+
s&@top_build_prefix@&$ac_top_build_prefix&;t t
|
5143
5278
|
s&@srcdir@&$ac_srcdir&;t t
|
5144
5279
|
s&@abs_srcdir@&$ac_abs_srcdir&;t t
|
5145
5280
|
s&@top_srcdir@&$ac_top_srcdir&;t t
|
@@ -5148,48 +5283,67 @@ s&@builddir@&$ac_builddir&;t t
|
|
5148
5283
|
s&@abs_builddir@&$ac_abs_builddir&;t t
|
5149
5284
|
s&@abs_top_builddir@&$ac_abs_top_builddir&;t t
|
5150
5285
|
s&@INSTALL@&$ac_INSTALL&;t t
|
5286
|
+
s&@MKDIR_P@&$ac_MKDIR_P&;t t
|
5151
5287
|
$ac_datarootdir_hack
|
5152
|
-
"
|
5288
|
+
"
|
5289
|
+
eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$tmp/subs.awk" >$tmp/out \
|
5290
|
+
|| { { $as_echo "$as_me:$LINENO: error: could not create $ac_file" >&5
|
5291
|
+
$as_echo "$as_me: error: could not create $ac_file" >&2;}
|
5292
|
+
{ (exit 1); exit 1; }; }
|
5153
5293
|
|
5154
5294
|
test -z "$ac_datarootdir_hack$ac_datarootdir_seen" &&
|
5155
5295
|
{ ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } &&
|
5156
5296
|
{ ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } &&
|
5157
|
-
{
|
5297
|
+
{ $as_echo "$as_me:$LINENO: WARNING: $ac_file contains a reference to the variable \`datarootdir'
|
5158
5298
|
which seems to be undefined. Please make sure it is defined." >&5
|
5159
|
-
|
5299
|
+
$as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir'
|
5160
5300
|
which seems to be undefined. Please make sure it is defined." >&2;}
|
5161
5301
|
|
5162
5302
|
rm -f "$tmp/stdin"
|
5163
5303
|
case $ac_file in
|
5164
|
-
-) cat "$tmp/out"
|
5165
|
-
*) rm -f "$ac_file"
|
5166
|
-
esac
|
5304
|
+
-) cat "$tmp/out" && rm -f "$tmp/out";;
|
5305
|
+
*) rm -f "$ac_file" && mv "$tmp/out" "$ac_file";;
|
5306
|
+
esac \
|
5307
|
+
|| { { $as_echo "$as_me:$LINENO: error: could not create $ac_file" >&5
|
5308
|
+
$as_echo "$as_me: error: could not create $ac_file" >&2;}
|
5309
|
+
{ (exit 1); exit 1; }; }
|
5167
5310
|
;;
|
5168
5311
|
|
5169
5312
|
|
5170
|
-
:C) {
|
5171
|
-
|
5313
|
+
:C) { $as_echo "$as_me:$LINENO: executing $ac_file commands" >&5
|
5314
|
+
$as_echo "$as_me: executing $ac_file commands" >&6;}
|
5172
5315
|
;;
|
5173
5316
|
esac
|
5174
5317
|
|
5175
5318
|
|
5176
5319
|
case $ac_file$ac_mode in
|
5177
|
-
"depfiles":C) test x"$AMDEP_TRUE" != x"" ||
|
5178
|
-
#
|
5179
|
-
|
5180
|
-
#
|
5181
|
-
|
5182
|
-
|
5183
|
-
|
5184
|
-
|
5185
|
-
|
5186
|
-
|
5187
|
-
|
5320
|
+
"depfiles":C) test x"$AMDEP_TRUE" != x"" || {
|
5321
|
+
# Autoconf 2.62 quotes --file arguments for eval, but not when files
|
5322
|
+
# are listed without --file. Let's play safe and only enable the eval
|
5323
|
+
# if we detect the quoting.
|
5324
|
+
case $CONFIG_FILES in
|
5325
|
+
*\'*) eval set x "$CONFIG_FILES" ;;
|
5326
|
+
*) set x $CONFIG_FILES ;;
|
5327
|
+
esac
|
5328
|
+
shift
|
5329
|
+
for mf
|
5330
|
+
do
|
5331
|
+
# Strip MF so we end up with the name of the file.
|
5332
|
+
mf=`echo "$mf" | sed -e 's/:.*$//'`
|
5333
|
+
# Check whether this is an Automake generated Makefile or not.
|
5334
|
+
# We used to match only the files named `Makefile.in', but
|
5335
|
+
# some people rename them; so instead we look at the file content.
|
5336
|
+
# Grep'ing the first line is not enough: some people post-process
|
5337
|
+
# each Makefile.in and add a new line on top of each file to say so.
|
5338
|
+
# Grep'ing the whole file is not good either: AIX grep has a line
|
5339
|
+
# limit of 2048, but all sed's we know have understand at least 4000.
|
5340
|
+
if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
|
5341
|
+
dirpart=`$as_dirname -- "$mf" ||
|
5188
5342
|
$as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
|
5189
5343
|
X"$mf" : 'X\(//\)[^/]' \| \
|
5190
5344
|
X"$mf" : 'X\(//\)$' \| \
|
5191
5345
|
X"$mf" : 'X\(/\)' \| . 2>/dev/null ||
|
5192
|
-
|
5346
|
+
$as_echo X"$mf" |
|
5193
5347
|
sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
|
5194
5348
|
s//\1/
|
5195
5349
|
q
|
@@ -5207,33 +5361,33 @@ echo X"$mf" |
|
|
5207
5361
|
q
|
5208
5362
|
}
|
5209
5363
|
s/.*/./; q'`
|
5210
|
-
|
5211
|
-
|
5212
|
-
|
5213
|
-
|
5214
|
-
|
5215
|
-
|
5216
|
-
|
5217
|
-
|
5218
|
-
|
5219
|
-
|
5220
|
-
|
5221
|
-
|
5222
|
-
|
5223
|
-
|
5224
|
-
|
5225
|
-
|
5226
|
-
|
5227
|
-
|
5228
|
-
|
5229
|
-
|
5230
|
-
|
5231
|
-
|
5364
|
+
else
|
5365
|
+
continue
|
5366
|
+
fi
|
5367
|
+
# Extract the definition of DEPDIR, am__include, and am__quote
|
5368
|
+
# from the Makefile without running `make'.
|
5369
|
+
DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
|
5370
|
+
test -z "$DEPDIR" && continue
|
5371
|
+
am__include=`sed -n 's/^am__include = //p' < "$mf"`
|
5372
|
+
test -z "am__include" && continue
|
5373
|
+
am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
|
5374
|
+
# When using ansi2knr, U may be empty or an underscore; expand it
|
5375
|
+
U=`sed -n 's/^U = //p' < "$mf"`
|
5376
|
+
# Find all dependency output files, they are included files with
|
5377
|
+
# $(DEPDIR) in their names. We invoke sed twice because it is the
|
5378
|
+
# simplest approach to changing $(DEPDIR) to its actual value in the
|
5379
|
+
# expansion.
|
5380
|
+
for file in `sed -n "
|
5381
|
+
s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
|
5382
|
+
sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do
|
5383
|
+
# Make sure the directory exists.
|
5384
|
+
test -f "$dirpart/$file" && continue
|
5385
|
+
fdir=`$as_dirname -- "$file" ||
|
5232
5386
|
$as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
|
5233
5387
|
X"$file" : 'X\(//\)[^/]' \| \
|
5234
5388
|
X"$file" : 'X\(//\)$' \| \
|
5235
5389
|
X"$file" : 'X\(/\)' \| . 2>/dev/null ||
|
5236
|
-
|
5390
|
+
$as_echo X"$file" |
|
5237
5391
|
sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
|
5238
5392
|
s//\1/
|
5239
5393
|
q
|
@@ -5251,7 +5405,7 @@ echo X"$file" |
|
|
5251
5405
|
q
|
5252
5406
|
}
|
5253
5407
|
s/.*/./; q'`
|
5254
|
-
|
5408
|
+
{ as_dir=$dirpart/$fdir
|
5255
5409
|
case $as_dir in #(
|
5256
5410
|
-*) as_dir=./$as_dir;;
|
5257
5411
|
esac
|
@@ -5259,7 +5413,7 @@ echo X"$file" |
|
|
5259
5413
|
as_dirs=
|
5260
5414
|
while :; do
|
5261
5415
|
case $as_dir in #(
|
5262
|
-
*\'*) as_qdir
|
5416
|
+
*\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'(
|
5263
5417
|
*) as_qdir=$as_dir;;
|
5264
5418
|
esac
|
5265
5419
|
as_dirs="'$as_qdir' $as_dirs"
|
@@ -5268,7 +5422,7 @@ $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
|
|
5268
5422
|
X"$as_dir" : 'X\(//\)[^/]' \| \
|
5269
5423
|
X"$as_dir" : 'X\(//\)$' \| \
|
5270
5424
|
X"$as_dir" : 'X\(/\)' \| . 2>/dev/null ||
|
5271
|
-
|
5425
|
+
$as_echo X"$as_dir" |
|
5272
5426
|
sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{
|
5273
5427
|
s//\1/
|
5274
5428
|
q
|
@@ -5289,13 +5443,14 @@ echo X"$as_dir" |
|
|
5289
5443
|
test -d "$as_dir" && break
|
5290
5444
|
done
|
5291
5445
|
test -z "$as_dirs" || eval "mkdir $as_dirs"
|
5292
|
-
} || test -d "$as_dir" || { {
|
5293
|
-
|
5446
|
+
} || test -d "$as_dir" || { { $as_echo "$as_me:$LINENO: error: cannot create directory $as_dir" >&5
|
5447
|
+
$as_echo "$as_me: error: cannot create directory $as_dir" >&2;}
|
5294
5448
|
{ (exit 1); exit 1; }; }; }
|
5295
|
-
|
5296
|
-
|
5449
|
+
# echo "creating $dirpart/$file"
|
5450
|
+
echo '# dummy' > "$dirpart/$file"
|
5451
|
+
done
|
5297
5452
|
done
|
5298
|
-
|
5453
|
+
}
|
5299
5454
|
;;
|
5300
5455
|
|
5301
5456
|
esac
|
@@ -5307,6 +5462,11 @@ _ACEOF
|
|
5307
5462
|
chmod +x $CONFIG_STATUS
|
5308
5463
|
ac_clean_files=$ac_clean_files_save
|
5309
5464
|
|
5465
|
+
test $ac_write_fail = 0 ||
|
5466
|
+
{ { $as_echo "$as_me:$LINENO: error: write failure creating $CONFIG_STATUS" >&5
|
5467
|
+
$as_echo "$as_me: error: write failure creating $CONFIG_STATUS" >&2;}
|
5468
|
+
{ (exit 1); exit 1; }; }
|
5469
|
+
|
5310
5470
|
|
5311
5471
|
# configure is writing to config.log, and then calls config.status.
|
5312
5472
|
# config.status does its own redirection, appending to config.log.
|
@@ -5328,6 +5488,10 @@ if test "$no_create" != yes; then
|
|
5328
5488
|
# would make configure fail if this is the last instruction.
|
5329
5489
|
$ac_cs_success || { (exit 1); exit 1; }
|
5330
5490
|
fi
|
5491
|
+
if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then
|
5492
|
+
{ $as_echo "$as_me:$LINENO: WARNING: unrecognized options: $ac_unrecognized_opts" >&5
|
5493
|
+
$as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;}
|
5494
|
+
fi
|
5331
5495
|
|
5332
5496
|
chmod +x test/*.rb
|
5333
5497
|
chmod +x example/*.rb
|