Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
aac69a49
Commit
aac69a49
authored
Nov 25, 2000
by
Nick Clifton
Committed by
Nick Clifton
Nov 25, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add support for target specific, language specific object files.
From-SVN: r37726
parent
0a534f40
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
315 additions
and
249 deletions
+315
-249
gcc/ChangeLog
+25
-0
gcc/Makefile.in
+8
-1
gcc/config.gcc
+8
-3
gcc/configure
+259
-244
gcc/configure.in
+2
-0
gcc/cp/Make-lang.in
+1
-1
gcc/tm.texi
+12
-0
No files found.
gcc/ChangeLog
View file @
aac69a49
2000-11-24 Nick Clifton <nickc@redhat.com>
* config.gcc (extra_objs): Remove duplicate description.
(c_target_objs): New variable. Contains target specific
object files for the gcc C compiler only.
(cxx_target_objs): New variable. Contains target specific
object files for the gxx C++ compiler only.
* configure.in (c_target_objs): Substitute in the makefile.
(cxx_target_objs): Substitute in the makefile.
* configure: Regenerate.
* Makefile.in (C_TARGET_OBJS): Define and initialise from
c_target_objs.
(CXX_TARGET_OBJS): Define and initialise from
cxx_target_objs.
(C_AND_OBJC_OBJS): Include C_TARGET_OBJS.
* cp/Make-lang.in (CXX_C_OBJS): Include CXX_TARGET_OBJS).
* tm.texi (REGISTER_TARGET_PRAGMAS): Add paragraph explaining
about how the use of the 'c_lex' function requires the use of
the target specific, language specific object files feature of
the configuration mechanism.
Fri Nov 24 18:50:58 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
* gcc.c (process_command): Use F_OK, not R_OK.
...
...
gcc/Makefile.in
View file @
aac69a49
...
...
@@ -713,9 +713,16 @@ SUBDIR_FLAGS_TO_PASS = $(ORDINARY_FLAGS_TO_PASS) \
#
# Lists of files for various purposes.
# Target specific, C specific object file
C_TARGET_OBJS
=
@c_target_objs@
# Target specific, C++ specific object file
CXX_TARGET_OBJS
=
@cxx_target_objs@
# Language-specific object files for C and Objective C.
C_AND_OBJC_OBJS
=
c-errors.o c-lex.o c-pragma.o c-decl.o c-typeck.o
\
c-convert.o c-aux-info.o c-common.o c-semantics.o c-dump.o
$(MAYBE_CPPLIB)
c-convert.o c-aux-info.o c-common.o c-semantics.o c-dump.o
$(MAYBE_CPPLIB)
\
$(C_TARGET_OBJS)
# Language-specific object files for C.
C_OBJS
=
c-parse.o c-lang.o
$(C_AND_OBJC_OBJS)
...
...
gcc/config.gcc
View file @
aac69a49
...
...
@@ -87,12 +87,15 @@
# host_extra_objs List of extra host-dependant objects that should
# be linked into the compiler proper.
#
# extra_objs List of extra target-dependant objects that should
# be linked into the compiler proper.
#
# host_extra_gcc_objs List of extra host-dependant objects that should
# be linked into the gcc driver.
#
# c_target_objs List of extra target-dependant objects that be
# linked into the C compiler only.
#
# cxx_target_objs List of extra target-dependant objects that be
# linked into the C++ compiler only.
#
# build_xm_defines List of macros to define when compiling for the
# build machine.
#
...
...
@@ -171,6 +174,8 @@ extra_programs=
extra_objs=
extra_host_objs=
extra_gcc_objs=
c_target_objs=
cxx_target_objs=
xm_defines=
float_format=
# Set this to force installation and use of collect2.
...
...
gcc/configure
View file @
aac69a49
...
...
@@ -104,6 +104,7 @@ program_suffix=NONE
program_transform_name
=
s,x,x,
silent
=
site
=
sitefile
=
srcdir
=
target
=
NONE
verbose
=
...
...
@@ -218,6 +219,7 @@ Configuration:
--help print this message
--no-create do not create output files
--quiet, --silent do not print \`checking...' messages
--site-file=FILE use FILE as the site file
--version print the version of autoconf that created configure
Directory and file names:
--prefix=PREFIX install architecture-independent files in PREFIX
...
...
@@ -388,6 +390,11 @@ EOF
-site
=
*
|
--site
=
*
|
--sit
=
*
)
site
=
"
$ac_optarg
"
;;
-site-file
|
--site-file
|
--site-fil
|
--site-fi
|
--site-f
)
ac_prev
=
sitefile
;;
-site-file
=
*
|
--site-file
=
*
|
--site-fil
=
*
|
--site-fi
=
*
|
--site-f
=
*
)
sitefile
=
"
$ac_optarg
"
;;
-srcdir
|
--srcdir
|
--srcdi
|
--srcd
|
--src
|
--sr
)
ac_prev
=
srcdir
;;
-srcdir
=
*
|
--srcdir
=
*
|
--srcdi
=
*
|
--srcd
=
*
|
--src
=
*
|
--sr
=
*
)
...
...
@@ -553,12 +560,16 @@ fi
srcdir
=
`
echo
"
${
srcdir
}
"
| sed
's%\([^/]\)/*$%\1%'
`
# Prefer explicitly selected file to automatically selected ones.
if
test
-z
"
$CONFIG_SITE
"
;
then
if
test
"x
$prefix
"
!=
xNONE
;
then
CONFIG_SITE
=
"
$prefix
/share/config.site
$prefix
/etc/config.site"
else
CONFIG_SITE
=
"
$ac_default_prefix
/share/config.site
$ac_default_prefix
/etc/config.site"
if
test
-z
"
$sitefile
"
;
then
if
test
-z
"
$CONFIG_SITE
"
;
then
if
test
"x
$prefix
"
!=
xNONE
;
then
CONFIG_SITE
=
"
$prefix
/share/config.site
$prefix
/etc/config.site"
else
CONFIG_SITE
=
"
$ac_default_prefix
/share/config.site
$ac_default_prefix
/etc/config.site"
fi
fi
else
CONFIG_SITE
=
"
$sitefile
"
fi
for
ac_site_file
in
$CONFIG_SITE
;
do
if
test
-r
"
$ac_site_file
"
;
then
...
...
@@ -613,7 +624,7 @@ copy=cp
# - two terminals occur directly after each other
# - the path contains an element with a dot in it
echo
$ac_n
"checking LIBRARY_PATH variable""...
$ac_c
"
1>&6
echo
"configure:6
17
: checking LIBRARY_PATH variable"
>
&5
echo
"configure:6
28
: checking LIBRARY_PATH variable"
>
&5
case
${
LIBRARY_PATH
}
in
[
:
\;
]
*
|
*
[
:
\;
]
|
*
[
:
\;
][
:
\;
]
*
|
*
[
:
\;
]
.
|
.[:
\;
]
*
|
.
|
*
[
:
\;
]
.[:
\;
]
*
)
library_path_setting
=
"contains current directory"
...
...
@@ -638,7 +649,7 @@ fi
# - two terminals occur directly after each other
# - the path contains an element with a dot in it
echo
$ac_n
"checking GCC_EXEC_PREFIX variable""...
$ac_c
"
1>&6
echo
"configure:6
42
: checking GCC_EXEC_PREFIX variable"
>
&5
echo
"configure:6
53
: checking GCC_EXEC_PREFIX variable"
>
&5
case
${
GCC_EXEC_PREFIX
}
in
[
:
\;
]
*
|
*
[
:
\;
]
|
*
[
:
\;
][
:
\;
]
*
|
*
[
:
\;
]
.
|
.[:
\;
]
*
|
.
|
*
[
:
\;
]
.[:
\;
]
*
)
gcc_exec_prefix_setting
=
"contains current directory"
...
...
@@ -754,7 +765,7 @@ fi
# Build a new-libstdc++ system (ie libstdc++-v3)
echo
$ac_n
"checking for libstdc++ to install""...
$ac_c
"
1>&6
echo
"configure:7
58
: checking for libstdc++ to install"
>
&5
echo
"configure:7
69
: checking for libstdc++ to install"
>
&5
# Check whether --enable-libstdcxx-v3 or --disable-libstdcxx-v3 was given.
if
test
"
${
enable_libstdcxx_v3
+set
}
"
=
set
;
then
enableval
=
"
$enable_libstdcxx_v3
"
...
...
@@ -1030,7 +1041,7 @@ else { echo "configure: error: can not run $ac_config_sub" 1>&2; exit 1; }
fi
echo
$ac_n
"checking host system type""...
$ac_c
"
1>&6
echo
"configure:10
34
: checking host system type"
>
&5
echo
"configure:10
45
: checking host system type"
>
&5
host_alias
=
$host
case
"
$host_alias
"
in
...
...
@@ -1051,7 +1062,7 @@ host_os=`echo $host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
echo
"
$ac_t
""
$host
"
1>&6
echo
$ac_n
"checking target system type""...
$ac_c
"
1>&6
echo
"configure:10
55
: checking target system type"
>
&5
echo
"configure:10
66
: checking target system type"
>
&5
target_alias
=
$target
case
"
$target_alias
"
in
...
...
@@ -1069,7 +1080,7 @@ target_os=`echo $target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
echo
"
$ac_t
""
$target
"
1>&6
echo
$ac_n
"checking build system type""...
$ac_c
"
1>&6
echo
"configure:10
73
: checking build system type"
>
&5
echo
"configure:10
84
: checking build system type"
>
&5
build_alias
=
$build
case
"
$build_alias
"
in
...
...
@@ -1096,7 +1107,7 @@ test "$host_alias" != "$target_alias" &&
# Extract the first word of "gcc", so it can be a program name with args.
set
dummy gcc
;
ac_word
=
$2
echo
$ac_n
"checking for
$ac_word
""...
$ac_c
"
1>&6
echo
"configure:11
00
: checking for
$ac_word
"
>
&5
echo
"configure:11
11
: checking for
$ac_word
"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_prog_CC
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
...
...
@@ -1126,7 +1137,7 @@ if test -z "$CC"; then
# Extract the first word of "cc", so it can be a program name with args.
set
dummy cc
;
ac_word
=
$2
echo
$ac_n
"checking for
$ac_word
""...
$ac_c
"
1>&6
echo
"configure:11
30
: checking for
$ac_word
"
>
&5
echo
"configure:11
41
: checking for
$ac_word
"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_prog_CC
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
...
...
@@ -1177,7 +1188,7 @@ fi
# Extract the first word of "cl", so it can be a program name with args.
set
dummy cl
;
ac_word
=
$2
echo
$ac_n
"checking for
$ac_word
""...
$ac_c
"
1>&6
echo
"configure:11
81
: checking for
$ac_word
"
>
&5
echo
"configure:11
92
: checking for
$ac_word
"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_prog_CC
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
...
...
@@ -1209,7 +1220,7 @@ fi
fi
echo
$ac_n
"checking whether the C compiler (
$CC
$CFLAGS
$LDFLAGS
) works""...
$ac_c
"
1>&6
echo
"configure:12
13
: checking whether the C compiler (
$CC
$CFLAGS
$LDFLAGS
) works"
>
&5
echo
"configure:12
24
: checking whether the C compiler (
$CC
$CFLAGS
$LDFLAGS
) works"
>
&5
ac_ext
=
c
# CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
...
...
@@ -1220,12 +1231,12 @@ cross_compiling=$ac_cv_prog_cc_cross
cat
>
conftest.
$ac_ext
<<
EOF
#line 12
24
"configure"
#line 12
35
"configure"
#include "confdefs.h"
main(){return(0);}
EOF
if
{
(
eval echo
configure:12
29
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
if
{
(
eval echo
configure:12
40
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
ac_cv_prog_cc_works
=
yes
# If we can't run a trivial program, we are probably using a cross compiler.
if
(
./conftest
;
exit
)
2>/dev/null
;
then
...
...
@@ -1251,12 +1262,12 @@ if test $ac_cv_prog_cc_works = no; then
{
echo
"configure: error: installation or configuration problem: C compiler cannot create executables."
1>&2
;
exit
1
;
}
fi
echo
$ac_n
"checking whether the C compiler (
$CC
$CFLAGS
$LDFLAGS
) is a cross-compiler""...
$ac_c
"
1>&6
echo
"configure:12
55
: checking whether the C compiler (
$CC
$CFLAGS
$LDFLAGS
) is a cross-compiler"
>
&5
echo
"configure:12
66
: checking whether the C compiler (
$CC
$CFLAGS
$LDFLAGS
) is a cross-compiler"
>
&5
echo
"
$ac_t
""
$ac_cv_prog_cc_cross
"
1>&6
cross_compiling
=
$ac_cv_prog_cc_cross
echo
$ac_n
"checking whether we are using GNU C""...
$ac_c
"
1>&6
echo
"configure:12
60
: checking whether we are using GNU C"
>
&5
echo
"configure:12
71
: checking whether we are using GNU C"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_prog_gcc
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
...
...
@@ -1265,7 +1276,7 @@ else
yes;
#endif
EOF
if
{
ac_try
=
'${CC-cc} -E conftest.c'
;
{
(
eval echo
configure:12
69
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
;
}
| egrep yes
>
/dev/null 2>&1
;
then
if
{
ac_try
=
'${CC-cc} -E conftest.c'
;
{
(
eval echo
configure:12
80
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
;
}
| egrep yes
>
/dev/null 2>&1
;
then
ac_cv_prog_gcc
=
yes
else
ac_cv_prog_gcc
=
no
...
...
@@ -1284,7 +1295,7 @@ ac_test_CFLAGS="${CFLAGS+set}"
ac_save_CFLAGS
=
"
$CFLAGS
"
CFLAGS
=
echo
$ac_n
"checking whether
${
CC
-cc
}
accepts -g""...
$ac_c
"
1>&6
echo
"configure:12
88
: checking whether
${
CC
-cc
}
accepts -g"
>
&5
echo
"configure:12
99
: checking whether
${
CC
-cc
}
accepts -g"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_prog_cc_g
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
...
...
@@ -1317,10 +1328,10 @@ fi
if
test
"x
$CC
"
!=
xcc
;
then
echo
$ac_n
"checking whether
$CC
and cc understand -c and -o together""...
$ac_c
"
1>&6
echo
"configure:13
21
: checking whether
$CC
and cc understand -c and -o together"
>
&5
echo
"configure:13
32
: checking whether
$CC
and cc understand -c and -o together"
>
&5
else
echo
$ac_n
"checking whether cc understands -c and -o together""...
$ac_c
"
1>&6
echo
"configure:13
24
: checking whether cc understands -c and -o together"
>
&5
echo
"configure:13
35
: checking whether cc understands -c and -o together"
>
&5
fi
set
dummy
$CC
;
ac_cc
=
"
`
echo
$2
|
sed
-e
's/[^a-zA-Z0-9_]/_/g'
-e
's/^[0-9]/_/'
`
"
...
...
@@ -1332,16 +1343,16 @@ else
# We do the test twice because some compilers refuse to overwrite an
# existing .o file with -o, though they will create one.
ac_try
=
'${CC-cc} -c conftest.c -o conftest.o 1>&5'
if
{
(
eval echo
configure:13
36
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
&&
test
-f
conftest.o
&&
{
(
eval echo
configure:13
37
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
;
if
{
(
eval echo
configure:13
47
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
&&
test
-f
conftest.o
&&
{
(
eval echo
configure:13
48
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
;
then
eval
ac_cv_prog_cc_
${
ac_cc
}
_c_o
=
yes
if
test
"x
$CC
"
!=
xcc
;
then
# Test first that cc exists at all.
if
{
ac_try
=
'cc -c conftest.c 1>&5'
;
{
(
eval echo
configure:13
42
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
;
}
;
then
if
{
ac_try
=
'cc -c conftest.c 1>&5'
;
{
(
eval echo
configure:13
53
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
;
}
;
then
ac_try
=
'cc -c conftest.c -o conftest.o 1>&5'
if
{
(
eval echo
configure:13
44
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
&&
test
-f
conftest.o
&&
{
(
eval echo
configure:13
45
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
;
if
{
(
eval echo
configure:13
55
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
&&
test
-f
conftest.o
&&
{
(
eval echo
configure:13
56
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
;
then
# cc works too.
:
...
...
@@ -1377,7 +1388,7 @@ fi
echo
$ac_n
"checking for long double""...
$ac_c
"
1>&6
echo
"configure:13
81
: checking for long double"
>
&5
echo
"configure:13
92
: checking for long double"
>
&5
if
eval
"test
\"
`
echo
'$''{'
gcc_cv_c_long_double
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
...
...
@@ -1385,7 +1396,7 @@ else
gcc_cv_c_long_double
=
yes
else
cat
>
conftest.
$ac_ext
<<
EOF
#line 1
389
"configure"
#line 1
400
"configure"
#include "confdefs.h"
int main() {
...
...
@@ -1395,7 +1406,7 @@ long double foo = 0.0;
switch (0) case 0: case (sizeof(long double) >= sizeof(double)):;
; return 0; }
EOF
if
{
(
eval echo
configure:1
399
:
\"
$ac_compile
\"
)
1>&5
;
(
eval
$ac_compile
)
2>&5
;
}
;
then
if
{
(
eval echo
configure:1
410
:
\"
$ac_compile
\"
)
1>&5
;
(
eval
$ac_compile
)
2>&5
;
}
;
then
rm
-rf
conftest
*
gcc_cv_c_long_double
=
yes
else
...
...
@@ -1418,21 +1429,21 @@ fi
echo
$ac_n
"checking whether
${
CC
-cc
}
accepts -Wno-long-long""...
$ac_c
"
1>&6
echo
"configure:14
22
: checking whether
${
CC
-cc
}
accepts -Wno-long-long"
>
&5
echo
"configure:14
33
: checking whether
${
CC
-cc
}
accepts -Wno-long-long"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_prog_cc_no_long_long
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
save_CFLAGS
=
"
$CFLAGS
"
CFLAGS
=
"-Wno-long-long"
cat
>
conftest.
$ac_ext
<<
EOF
#line 14
29
"configure"
#line 14
40
"configure"
#include "confdefs.h"
int main() {
; return 0; }
EOF
if
{
(
eval echo
configure:14
36
:
\"
$ac_compile
\"
)
1>&5
;
(
eval
$ac_compile
)
2>&5
;
}
;
then
if
{
(
eval echo
configure:14
47
:
\"
$ac_compile
\"
)
1>&5
;
(
eval
$ac_compile
)
2>&5
;
}
;
then
rm
-rf
conftest
*
ac_cv_prog_cc_no_long_long
=
yes
else
...
...
@@ -1476,7 +1487,7 @@ esac
echo
$ac_n
"checking whether
${
MAKE
-make
}
sets
\$
{MAKE}""...
$ac_c
"
1>&6
echo
"configure:14
80
: checking whether
${
MAKE
-make
}
sets
\$
{MAKE}"
>
&5
echo
"configure:14
91
: checking whether
${
MAKE
-make
}
sets
\$
{MAKE}"
>
&5
set
dummy
${
MAKE
-make
}
;
ac_make
=
`
echo
"
$2
"
| sed
'y%./+-%__p_%'
`
if
eval
"test
\"
`
echo
'$''{'
ac_cv_prog_make_
${
ac_make
}
_set
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
...
...
@@ -1504,7 +1515,7 @@ fi
echo
$ac_n
"checking whether a default assembler was specified""...
$ac_c
"
1>&6
echo
"configure:15
08
: checking whether a default assembler was specified"
>
&5
echo
"configure:15
19
: checking whether a default assembler was specified"
>
&5
if
test
x
"
${
DEFAULT_ASSEMBLER
+set
}
"
=
x
"set"
;
then
if
test
x
"
$gas_flag
"
=
x
"no"
;
then
echo
"
$ac_t
""yes (
$DEFAULT_ASSEMBLER
)"
1>&6
...
...
@@ -1516,7 +1527,7 @@ else
fi
echo
$ac_n
"checking whether a default linker was specified""...
$ac_c
"
1>&6
echo
"configure:15
20
: checking whether a default linker was specified"
>
&5
echo
"configure:15
31
: checking whether a default linker was specified"
>
&5
if
test
x
"
${
DEFAULT_LINKER
+set
}
"
=
x
"set"
;
then
if
test
x
"
$gnu_ld_flag
"
=
x
"no"
;
then
echo
"
$ac_t
""yes (
$DEFAULT_LINKER
)"
1>&6
...
...
@@ -1528,12 +1539,12 @@ else
fi
echo
$ac_n
"checking for GNU C library""...
$ac_c
"
1>&6
echo
"configure:15
32
: checking for GNU C library"
>
&5
echo
"configure:15
43
: checking for GNU C library"
>
&5
if
eval
"test
\"
`
echo
'$''{'
gcc_cv_glibc
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
cat
>
conftest.
$ac_ext
<<
EOF
#line 15
37
"configure"
#line 15
48
"configure"
#include "confdefs.h"
#include <features.h>
int main() {
...
...
@@ -1543,7 +1554,7 @@ int main() {
#endif
; return 0; }
EOF
if
{
(
eval echo
configure:15
47
:
\"
$ac_compile
\"
)
1>&5
;
(
eval
$ac_compile
)
2>&5
;
}
;
then
if
{
(
eval echo
configure:15
58
:
\"
$ac_compile
\"
)
1>&5
;
(
eval
$ac_compile
)
2>&5
;
}
;
then
rm
-rf
conftest
*
gcc_cv_glibc
=
yes
else
...
...
@@ -1564,21 +1575,21 @@ EOF
fi
echo
$ac_n
"checking for inline""...
$ac_c
"
1>&6
echo
"configure:15
68
: checking for inline"
>
&5
echo
"configure:15
79
: checking for inline"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_c_inline
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
ac_cv_c_inline
=
no
for
ac_kw
in
inline __inline__ __inline
;
do
cat
>
conftest.
$ac_ext
<<
EOF
#line 15
75
"configure"
#line 15
86
"configure"
#include "confdefs.h"
int main() {
}
int
$ac_kw
foo() {
}
$ac_kw
foo() {
; return 0; }
EOF
if
{
(
eval echo
configure:15
82
:
\"
$ac_compile
\"
)
1>&5
;
(
eval
$ac_compile
)
2>&5
;
}
;
then
if
{
(
eval echo
configure:15
93
:
\"
$ac_compile
\"
)
1>&5
;
(
eval
$ac_compile
)
2>&5
;
}
;
then
rm
-rf
conftest
*
ac_cv_c_inline
=
$ac_kw
;
break
else
...
...
@@ -1610,7 +1621,7 @@ do
# Extract the first word of "$ac_prog", so it can be a program name with args.
set
dummy
$ac_prog
;
ac_word
=
$2
echo
$ac_n
"checking for
$ac_word
""...
$ac_c
"
1>&6
echo
"configure:16
14
: checking for
$ac_word
"
>
&5
echo
"configure:16
25
: checking for
$ac_word
"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_prog_AWK
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
...
...
@@ -1640,7 +1651,7 @@ test -n "$AWK" && break
done
echo
$ac_n
"checking whether ln works""...
$ac_c
"
1>&6
echo
"configure:16
44
: checking whether ln works"
>
&5
echo
"configure:16
55
: checking whether ln works"
>
&5
if
eval
"test
\"
`
echo
'$''{'
gcc_cv_prog_LN
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
...
...
@@ -1672,7 +1683,7 @@ else
fi
echo
$ac_n
"checking whether ln -s works""...
$ac_c
"
1>&6
echo
"configure:16
76
: checking whether ln -s works"
>
&5
echo
"configure:16
87
: checking whether ln -s works"
>
&5
if
eval
"test
\"
`
echo
'$''{'
gcc_cv_prog_LN_S
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
...
...
@@ -1704,19 +1715,19 @@ else
fi
echo
$ac_n
"checking for volatile""...
$ac_c
"
1>&6
echo
"configure:17
08
: checking for volatile"
>
&5
echo
"configure:17
19
: checking for volatile"
>
&5
if
eval
"test
\"
`
echo
'$''{'
gcc_cv_c_volatile
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
cat
>
conftest.
$ac_ext
<<
EOF
#line 17
13
"configure"
#line 17
24
"configure"
#include "confdefs.h"
int main() {
volatile int foo;
; return 0; }
EOF
if
{
(
eval echo
configure:17
20
:
\"
$ac_compile
\"
)
1>&5
;
(
eval
$ac_compile
)
2>&5
;
}
;
then
if
{
(
eval echo
configure:17
31
:
\"
$ac_compile
\"
)
1>&5
;
(
eval
$ac_compile
)
2>&5
;
}
;
then
rm
-rf
conftest
*
gcc_cv_c_volatile
=
yes
else
...
...
@@ -1739,7 +1750,7 @@ fi
# Extract the first word of "ranlib", so it can be a program name with args.
set
dummy ranlib
;
ac_word
=
$2
echo
$ac_n
"checking for
$ac_word
""...
$ac_c
"
1>&6
echo
"configure:17
43
: checking for
$ac_word
"
>
&5
echo
"configure:17
54
: checking for
$ac_word
"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_prog_RANLIB
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
...
...
@@ -1777,7 +1788,7 @@ fi
# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
# ./install, which can be erroneously created by make from ./install.sh.
echo
$ac_n
"checking for a BSD compatible install""...
$ac_c
"
1>&6
echo
"configure:17
81
: checking for a BSD compatible install"
>
&5
echo
"configure:17
92
: checking for a BSD compatible install"
>
&5
if
test
-z
"
$INSTALL
"
;
then
if
eval
"test
\"
`
echo
'$''{'
ac_cv_path_install
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
...
...
@@ -1828,7 +1839,7 @@ test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
echo
$ac_n
"checking how to run the C preprocessor""...
$ac_c
"
1>&6
echo
"configure:18
32
: checking how to run the C preprocessor"
>
&5
echo
"configure:18
43
: checking how to run the C preprocessor"
>
&5
# On Suns, sometimes $CPP names a directory.
if
test
-n
"
$CPP
"
&&
test
-d
"
$CPP
"
;
then
CPP
=
...
...
@@ -1843,13 +1854,13 @@ else
# On the NeXT, cc -E runs the code through the compiler's parser,
# not just through cpp.
cat
>
conftest.
$ac_ext
<<
EOF
#line 18
47
"configure"
#line 18
58
"configure"
#include "confdefs.h"
#include <assert.h>
Syntax Error
EOF
ac_try
=
"
$ac_cpp
conftest.
$ac_ext
>/dev/null 2>conftest.out"
{
(
eval echo
configure:18
53
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
{
(
eval echo
configure:18
64
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
ac_err
=
`
grep
-v
'^ *+'
conftest.out |
grep
-v
"^conftest.
${
ac_ext
}
\$
"
`
if
test
-z
"
$ac_err
"
;
then
:
...
...
@@ -1860,13 +1871,13 @@ else
rm
-rf
conftest
*
CPP
=
"
${
CC
-cc
}
-E -traditional-cpp"
cat
>
conftest.
$ac_ext
<<
EOF
#line 18
64
"configure"
#line 18
75
"configure"
#include "confdefs.h"
#include <assert.h>
Syntax Error
EOF
ac_try
=
"
$ac_cpp
conftest.
$ac_ext
>/dev/null 2>conftest.out"
{
(
eval echo
configure:18
70
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
{
(
eval echo
configure:18
81
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
ac_err
=
`
grep
-v
'^ *+'
conftest.out |
grep
-v
"^conftest.
${
ac_ext
}
\$
"
`
if
test
-z
"
$ac_err
"
;
then
:
...
...
@@ -1877,13 +1888,13 @@ else
rm
-rf
conftest
*
CPP
=
"
${
CC
-cc
}
-nologo -E"
cat
>
conftest.
$ac_ext
<<
EOF
#line 18
81
"configure"
#line 18
92
"configure"
#include "confdefs.h"
#include <assert.h>
Syntax Error
EOF
ac_try
=
"
$ac_cpp
conftest.
$ac_ext
>/dev/null 2>conftest.out"
{
(
eval echo
configure:18
87
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
{
(
eval echo
configure:18
98
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
ac_err
=
`
grep
-v
'^ *+'
conftest.out |
grep
-v
"^conftest.
${
ac_ext
}
\$
"
`
if
test
-z
"
$ac_err
"
;
then
:
...
...
@@ -1908,12 +1919,12 @@ fi
echo
"
$ac_t
""
$CPP
"
1>&6
echo
$ac_n
"checking for ANSI C header files""...
$ac_c
"
1>&6
echo
"configure:19
12
: checking for ANSI C header files"
>
&5
echo
"configure:19
23
: checking for ANSI C header files"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_header_stdc
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
cat
>
conftest.
$ac_ext
<<
EOF
#line 19
17
"configure"
#line 19
28
"configure"
#include "confdefs.h"
#include <stdlib.h>
#include <stdarg.h>
...
...
@@ -1921,7 +1932,7 @@ else
#include <float.h>
EOF
ac_try
=
"
$ac_cpp
conftest.
$ac_ext
>/dev/null 2>conftest.out"
{
(
eval echo
configure:19
25
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
{
(
eval echo
configure:19
36
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
ac_err
=
`
grep
-v
'^ *+'
conftest.out |
grep
-v
"^conftest.
${
ac_ext
}
\$
"
`
if
test
-z
"
$ac_err
"
;
then
rm
-rf
conftest
*
...
...
@@ -1938,7 +1949,7 @@ rm -f conftest*
if
test
$ac_cv_header_stdc
=
yes
;
then
# SunOS 4.x string.h does not declare mem*, contrary to ANSI.
cat
>
conftest.
$ac_ext
<<
EOF
#line 19
42
"configure"
#line 19
53
"configure"
#include "confdefs.h"
#include <string.h>
EOF
...
...
@@ -1956,7 +1967,7 @@ fi
if
test
$ac_cv_header_stdc
=
yes
;
then
# ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
cat
>
conftest.
$ac_ext
<<
EOF
#line 19
60
"configure"
#line 19
71
"configure"
#include "confdefs.h"
#include <stdlib.h>
EOF
...
...
@@ -1977,7 +1988,7 @@ if test "$cross_compiling" = yes; then
:
else
cat
>
conftest.
$ac_ext
<<
EOF
#line 19
81
"configure"
#line 19
92
"configure"
#include "confdefs.h"
#include <ctype.h>
#define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
...
...
@@ -1988,7 +1999,7 @@ if (XOR (islower (i), ISLOWER (i)) || toupper (i) != TOUPPER (i)) exit(2);
exit (0); }
EOF
if
{
(
eval echo
configure:
1992
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
&&
(
./conftest
;
exit
)
2>/dev/null
if
{
(
eval echo
configure:
2003
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
&&
(
./conftest
;
exit
)
2>/dev/null
then
:
else
...
...
@@ -2012,12 +2023,12 @@ EOF
fi
echo
$ac_n
"checking whether time.h and sys/time.h may both be included""...
$ac_c
"
1>&6
echo
"configure:20
16
: checking whether time.h and sys/time.h may both be included"
>
&5
echo
"configure:20
27
: checking whether time.h and sys/time.h may both be included"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_header_time
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
cat
>
conftest.
$ac_ext
<<
EOF
#line 20
21
"configure"
#line 20
32
"configure"
#include "confdefs.h"
#include <sys/types.h>
#include <sys/time.h>
...
...
@@ -2026,7 +2037,7 @@ int main() {
struct tm *tp;
; return 0; }
EOF
if
{
(
eval echo
configure:20
30
:
\"
$ac_compile
\"
)
1>&5
;
(
eval
$ac_compile
)
2>&5
;
}
;
then
if
{
(
eval echo
configure:20
41
:
\"
$ac_compile
\"
)
1>&5
;
(
eval
$ac_compile
)
2>&5
;
}
;
then
rm
-rf
conftest
*
ac_cv_header_time
=
yes
else
...
...
@@ -2047,12 +2058,12 @@ EOF
fi
echo
$ac_n
"checking whether string.h and strings.h may both be included""...
$ac_c
"
1>&6
echo
"configure:20
51
: checking whether string.h and strings.h may both be included"
>
&5
echo
"configure:20
62
: checking whether string.h and strings.h may both be included"
>
&5
if
eval
"test
\"
`
echo
'$''{'
gcc_cv_header_string
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
cat
>
conftest.
$ac_ext
<<
EOF
#line 20
56
"configure"
#line 20
67
"configure"
#include "confdefs.h"
#include <string.h>
#include <strings.h>
...
...
@@ -2060,7 +2071,7 @@ int main() {
; return 0; }
EOF
if
{
(
eval echo
configure:20
64
:
\"
$ac_compile
\"
)
1>&5
;
(
eval
$ac_compile
)
2>&5
;
}
;
then
if
{
(
eval echo
configure:20
75
:
\"
$ac_compile
\"
)
1>&5
;
(
eval
$ac_compile
)
2>&5
;
}
;
then
rm
-rf
conftest
*
gcc_cv_header_string
=
yes
else
...
...
@@ -2081,12 +2092,12 @@ EOF
fi
echo
$ac_n
"checking for sys/wait.h that is POSIX.1 compatible""...
$ac_c
"
1>&6
echo
"configure:20
85
: checking for sys/wait.h that is POSIX.1 compatible"
>
&5
echo
"configure:20
96
: checking for sys/wait.h that is POSIX.1 compatible"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_header_sys_wait_h
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
cat
>
conftest.
$ac_ext
<<
EOF
#line 2
090
"configure"
#line 2
101
"configure"
#include "confdefs.h"
#include <sys/types.h>
#include <sys/wait.h>
...
...
@@ -2102,7 +2113,7 @@ wait (&s);
s = WIFEXITED (s) ? WEXITSTATUS (s) : 1;
; return 0; }
EOF
if
{
(
eval echo
configure:21
06
:
\"
$ac_compile
\"
)
1>&5
;
(
eval
$ac_compile
)
2>&5
;
}
;
then
if
{
(
eval echo
configure:21
17
:
\"
$ac_compile
\"
)
1>&5
;
(
eval
$ac_compile
)
2>&5
;
}
;
then
rm
-rf
conftest
*
ac_cv_header_sys_wait_h
=
yes
else
...
...
@@ -2129,17 +2140,17 @@ for ac_hdr in limits.h stddef.h string.h strings.h stdlib.h time.h \
do
ac_safe
=
`
echo
"
$ac_hdr
"
| sed
'y%./+-%__p_%'
`
echo
$ac_n
"checking for
$ac_hdr
""...
$ac_c
"
1>&6
echo
"configure:21
33
: checking for
$ac_hdr
"
>
&5
echo
"configure:21
44
: checking for
$ac_hdr
"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_header_
$ac_safe
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
cat
>
conftest.
$ac_ext
<<
EOF
#line 21
38
"configure"
#line 21
49
"configure"
#include "confdefs.h"
#include <
$ac_hdr
>
EOF
ac_try
=
"
$ac_cpp
conftest.
$ac_ext
>/dev/null 2>conftest.out"
{
(
eval echo
configure:21
43
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
{
(
eval echo
configure:21
54
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
ac_err
=
`
grep
-v
'^ *+'
conftest.out |
grep
-v
"^conftest.
${
ac_ext
}
\$
"
`
if
test
-z
"
$ac_err
"
;
then
rm
-rf
conftest
*
...
...
@@ -2169,17 +2180,17 @@ done
# Check for thread headers.
ac_safe
=
`
echo
"thread.h"
| sed
'y%./+-%__p_%'
`
echo
$ac_n
"checking for thread.h""...
$ac_c
"
1>&6
echo
"configure:21
73
: checking for thread.h"
>
&5
echo
"configure:21
84
: checking for thread.h"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_header_
$ac_safe
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
cat
>
conftest.
$ac_ext
<<
EOF
#line 21
78
"configure"
#line 21
89
"configure"
#include "confdefs.h"
#include <thread.h>
EOF
ac_try
=
"
$ac_cpp
conftest.
$ac_ext
>/dev/null 2>conftest.out"
{
(
eval echo
configure:21
83
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
{
(
eval echo
configure:21
94
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
ac_err
=
`
grep
-v
'^ *+'
conftest.out |
grep
-v
"^conftest.
${
ac_ext
}
\$
"
`
if
test
-z
"
$ac_err
"
;
then
rm
-rf
conftest
*
...
...
@@ -2203,17 +2214,17 @@ fi
ac_safe
=
`
echo
"pthread.h"
| sed
'y%./+-%__p_%'
`
echo
$ac_n
"checking for pthread.h""...
$ac_c
"
1>&6
echo
"configure:22
07
: checking for pthread.h"
>
&5
echo
"configure:22
18
: checking for pthread.h"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_header_
$ac_safe
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
cat
>
conftest.
$ac_ext
<<
EOF
#line 22
12
"configure"
#line 22
23
"configure"
#include "confdefs.h"
#include <pthread.h>
EOF
ac_try
=
"
$ac_cpp
conftest.
$ac_ext
>/dev/null 2>conftest.out"
{
(
eval echo
configure:22
17
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
{
(
eval echo
configure:22
28
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
ac_err
=
`
grep
-v
'^ *+'
conftest.out |
grep
-v
"^conftest.
${
ac_ext
}
\$
"
`
if
test
-z
"
$ac_err
"
;
then
rm
-rf
conftest
*
...
...
@@ -2240,7 +2251,7 @@ fi
# Extract the first word of "gnatbind", so it can be a program name with args.
set
dummy gnatbind
;
ac_word
=
$2
echo
$ac_n
"checking for
$ac_word
""...
$ac_c
"
1>&6
echo
"configure:22
44
: checking for
$ac_word
"
>
&5
echo
"configure:22
55
: checking for
$ac_word
"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_prog_gnat
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
...
...
@@ -2279,7 +2290,7 @@ else
# Extract the first word of "makeinfo", so it can be a program name with args.
set
dummy makeinfo
;
ac_word
=
$2
echo
$ac_n
"checking for
$ac_word
""...
$ac_c
"
1>&6
echo
"configure:22
83
: checking for
$ac_word
"
>
&5
echo
"configure:22
94
: checking for
$ac_word
"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_prog_MAKEINFO
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
...
...
@@ -2308,13 +2319,13 @@ fi
if
test
-n
"
$MAKEINFO
"
;
then
# Found it, now check the version.
echo
$ac_n
"checking for modern makeinfo""...
$ac_c
"
1>&6
echo
"configure:23
12
: checking for modern makeinfo"
>
&5
echo
"configure:23
23
: checking for modern makeinfo"
>
&5
if
eval
"test
\"
`
echo
'$''{'
gcc_cv_prog_makeinfo_modern
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
ac_prog_version
=
`
$MAKEINFO
--version
2>&1 |
sed
-n
's/^.*GNU texinfo.* \([0-9][0-9.]*\).*$/\1/p'
`
echo
"configure:23
18
: version of makeinfo is
$ac_prog_version
"
>
&5
echo
"configure:23
29
: version of makeinfo is
$ac_prog_version
"
>
&5
case
$ac_prog_version
in
''
)
gcc_cv_prog_makeinfo_modern
=
no
;;
3.1[2-9]
|
3.[2-9][0-9]
|
4.
*
|
1.6[89]
|
1.7[0-9]
)
...
...
@@ -2349,7 +2360,7 @@ else
# Extract the first word of "flex", so it can be a program name with args.
set
dummy flex
;
ac_word
=
$2
echo
$ac_n
"checking for
$ac_word
""...
$ac_c
"
1>&6
echo
"configure:23
53
: checking for
$ac_word
"
>
&5
echo
"configure:23
64
: checking for
$ac_word
"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_prog_FLEX
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
...
...
@@ -2386,7 +2397,7 @@ else
# Extract the first word of "bison", so it can be a program name with args.
set
dummy bison
;
ac_word
=
$2
echo
$ac_n
"checking for
$ac_word
""...
$ac_c
"
1>&6
echo
"configure:2
390
: checking for
$ac_word
"
>
&5
echo
"configure:2
401
: checking for
$ac_word
"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_prog_BISON
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
...
...
@@ -2420,12 +2431,12 @@ fi
echo
$ac_n
"checking for preprocessor stringizing operator""...
$ac_c
"
1>&6
echo
"configure:24
24
: checking for preprocessor stringizing operator"
>
&5
echo
"configure:24
35
: checking for preprocessor stringizing operator"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_c_stringize
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
cat
>
conftest.
$ac_ext
<<
EOF
#line 24
29
"configure"
#line 24
40
"configure"
#include "confdefs.h"
#define x(y) #y
...
...
@@ -2458,12 +2469,12 @@ echo "$ac_t""${ac_cv_c_stringize}" 1>&6
# Use <inttypes.h> only if it exists,
# doesn't clash with <sys/types.h>, and declares intmax_t.
echo
$ac_n
"checking for inttypes.h""...
$ac_c
"
1>&6
echo
"configure:24
62
: checking for inttypes.h"
>
&5
echo
"configure:24
73
: checking for inttypes.h"
>
&5
if
eval
"test
\"
`
echo
'$''{'
gcc_cv_header_inttypes_h
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
cat
>
conftest.
$ac_ext
<<
EOF
#line 24
67
"configure"
#line 24
78
"configure"
#include "confdefs.h"
#include <sys/types.h>
#include <inttypes.h>
...
...
@@ -2471,7 +2482,7 @@ int main() {
intmax_t i = -1;
; return 0; }
EOF
if
{
(
eval echo
configure:24
75
:
\"
$ac_compile
\"
)
1>&5
;
(
eval
$ac_compile
)
2>&5
;
}
;
then
if
{
(
eval echo
configure:24
86
:
\"
$ac_compile
\"
)
1>&5
;
(
eval
$ac_compile
)
2>&5
;
}
;
then
rm
-rf
conftest
*
gcc_cv_header_inttypes_h
=
yes
else
...
...
@@ -2496,7 +2507,7 @@ fi
# be either signed or unsigned.
#
echo
$ac_n
"checking for unsigned enumerated bitfields""...
$ac_c
"
1>&6
echo
"configure:25
00
: checking for unsigned enumerated bitfields"
>
&5
echo
"configure:25
11
: checking for unsigned enumerated bitfields"
>
&5
if
eval
"test
\"
`
echo
'$''{'
gcc_cv_enum_bf_unsigned
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
...
...
@@ -2504,7 +2515,7 @@ else
gcc_cv_enum_bf_unsigned
=
yes
else
cat
>
conftest.
$ac_ext
<<
EOF
#line 25
08
"configure"
#line 25
19
"configure"
#include "confdefs.h"
#include <stdlib.h>
enum t { BLAH = 128 } ;
...
...
@@ -2517,7 +2528,7 @@ int main(void)
}
EOF
if
{
(
eval echo
configure:25
21
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
&&
(
./conftest
;
exit
)
2>/dev/null
if
{
(
eval echo
configure:25
32
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
&&
(
./conftest
;
exit
)
2>/dev/null
then
gcc_cv_enum_bf_unsigned
=
yes
else
...
...
@@ -2545,12 +2556,12 @@ for ac_func in strtoul bsearch putenv popen bcopy \
fputs_unlocked getrusage valloc iconv nl_langinfo
do
echo
$ac_n
"checking for
$ac_func
""...
$ac_c
"
1>&6
echo
"configure:25
49
: checking for
$ac_func
"
>
&5
echo
"configure:25
60
: checking for
$ac_func
"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_func_
$ac_func
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
cat
>
conftest.
$ac_ext
<<
EOF
#line 25
54
"configure"
#line 25
65
"configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char
$ac_func
(); below. */
...
...
@@ -2573,7 +2584,7 @@ $ac_func();
; return 0; }
EOF
if
{
(
eval echo
configure:25
77
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
if
{
(
eval echo
configure:25
88
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
rm
-rf
conftest
*
eval
"ac_cv_func_
$ac_func
=yes"
else
...
...
@@ -2599,12 +2610,12 @@ done
echo
$ac_n
"checking for ssize_t""...
$ac_c
"
1>&6
echo
"configure:26
03
: checking for ssize_t"
>
&5
echo
"configure:26
14
: checking for ssize_t"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_type_ssize_t
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
cat
>
conftest.
$ac_ext
<<
EOF
#line 26
08
"configure"
#line 26
19
"configure"
#include "confdefs.h"
#include <sys/types.h>
#if STDC_HEADERS
...
...
@@ -2635,12 +2646,12 @@ fi
# Try to determine the array type of the second argument of getgroups
# for the target system (int or gid_t).
echo
$ac_n
"checking for uid_t in sys/types.h""...
$ac_c
"
1>&6
echo
"configure:26
39
: checking for uid_t in sys/types.h"
>
&5
echo
"configure:26
50
: checking for uid_t in sys/types.h"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_type_uid_t
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
cat
>
conftest.
$ac_ext
<<
EOF
#line 26
44
"configure"
#line 26
55
"configure"
#include "confdefs.h"
#include <sys/types.h>
EOF
...
...
@@ -2669,7 +2680,7 @@ EOF
fi
echo
$ac_n
"checking type of array argument to getgroups""...
$ac_c
"
1>&6
echo
"configure:26
73
: checking type of array argument to getgroups"
>
&5
echo
"configure:26
84
: checking type of array argument to getgroups"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_type_getgroups
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
...
...
@@ -2677,7 +2688,7 @@ else
ac_cv_type_getgroups
=
cross
else
cat
>
conftest.
$ac_ext
<<
EOF
#line 26
81
"configure"
#line 26
92
"configure"
#include "confdefs.h"
/* Thanks to Mike Rendell for this test. */
...
...
@@ -2702,7 +2713,7 @@ main()
}
EOF
if
{
(
eval echo
configure:27
06
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
&&
(
./conftest
;
exit
)
2>/dev/null
if
{
(
eval echo
configure:27
17
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
&&
(
./conftest
;
exit
)
2>/dev/null
then
ac_cv_type_getgroups
=
gid_t
else
...
...
@@ -2716,7 +2727,7 @@ fi
if
test
$ac_cv_type_getgroups
=
cross
;
then
cat
>
conftest.
$ac_ext
<<
EOF
#line 27
20
"configure"
#line 27
31
"configure"
#include "confdefs.h"
#include <unistd.h>
EOF
...
...
@@ -2757,12 +2768,12 @@ fi
echo
$ac_n
"checking for vprintf""...
$ac_c
"
1>&6
echo
"configure:27
61
: checking for vprintf"
>
&5
echo
"configure:27
72
: checking for vprintf"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_func_vprintf
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
cat
>
conftest.
$ac_ext
<<
EOF
#line 27
66
"configure"
#line 27
77
"configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char vprintf(); below. */
...
...
@@ -2785,7 +2796,7 @@ vprintf();
; return 0; }
EOF
if
{
(
eval echo
configure:2
789
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
if
{
(
eval echo
configure:2
800
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
rm
-rf
conftest
*
eval
"ac_cv_func_vprintf=yes"
else
...
...
@@ -2809,12 +2820,12 @@ fi
if
test
"
$ac_cv_func_vprintf
"
!=
yes
;
then
echo
$ac_n
"checking for _doprnt""...
$ac_c
"
1>&6
echo
"configure:28
13
: checking for _doprnt"
>
&5
echo
"configure:28
24
: checking for _doprnt"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_func__doprnt
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
cat
>
conftest.
$ac_ext
<<
EOF
#line 28
18
"configure"
#line 28
29
"configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char _doprnt(); below. */
...
...
@@ -2837,7 +2848,7 @@ _doprnt();
; return 0; }
EOF
if
{
(
eval echo
configure:28
41
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
if
{
(
eval echo
configure:28
52
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
rm
-rf
conftest
*
eval
"ac_cv_func__doprnt=yes"
else
...
...
@@ -2873,7 +2884,7 @@ fi
echo
$ac_n
"checking whether the printf functions support %p""...
$ac_c
"
1>&6
echo
"configure:28
77
: checking whether the printf functions support %p"
>
&5
echo
"configure:28
88
: checking whether the printf functions support %p"
>
&5
if
eval
"test
\"
`
echo
'$''{'
gcc_cv_func_printf_ptr
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
...
...
@@ -2881,7 +2892,7 @@ else
gcc_cv_func_printf_ptr
=
no
else
cat
>
conftest.
$ac_ext
<<
EOF
#line 28
85
"configure"
#line 28
96
"configure"
#include "confdefs.h"
#include <stdio.h>
...
...
@@ -2894,7 +2905,7 @@ int main()
return (p != q);
}
EOF
if
{
(
eval echo
configure:2
898
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
&&
(
./conftest
;
exit
)
2>/dev/null
if
{
(
eval echo
configure:2
909
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
&&
(
./conftest
;
exit
)
2>/dev/null
then
gcc_cv_func_printf_ptr
=
yes
else
...
...
@@ -2927,12 +2938,12 @@ case "${host}" in
;;
esac
echo
$ac_n
"checking for pid_t""...
$ac_c
"
1>&6
echo
"configure:29
31
: checking for pid_t"
>
&5
echo
"configure:29
42
: checking for pid_t"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_type_pid_t
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
cat
>
conftest.
$ac_ext
<<
EOF
#line 29
36
"configure"
#line 29
47
"configure"
#include "confdefs.h"
#include <sys/types.h>
#if STDC_HEADERS
...
...
@@ -2961,17 +2972,17 @@ fi
ac_safe
=
`
echo
"vfork.h"
| sed
'y%./+-%__p_%'
`
echo
$ac_n
"checking for vfork.h""...
$ac_c
"
1>&6
echo
"configure:29
65
: checking for vfork.h"
>
&5
echo
"configure:29
76
: checking for vfork.h"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_header_
$ac_safe
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
cat
>
conftest.
$ac_ext
<<
EOF
#line 29
70
"configure"
#line 29
81
"configure"
#include "confdefs.h"
#include <vfork.h>
EOF
ac_try
=
"
$ac_cpp
conftest.
$ac_ext
>/dev/null 2>conftest.out"
{
(
eval echo
configure:29
75
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
{
(
eval echo
configure:29
86
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
ac_err
=
`
grep
-v
'^ *+'
conftest.out |
grep
-v
"^conftest.
${
ac_ext
}
\$
"
`
if
test
-z
"
$ac_err
"
;
then
rm
-rf
conftest
*
...
...
@@ -2996,18 +3007,18 @@ else
fi
echo
$ac_n
"checking for working vfork""...
$ac_c
"
1>&6
echo
"configure:30
00
: checking for working vfork"
>
&5
echo
"configure:30
11
: checking for working vfork"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_func_vfork_works
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
if
test
"
$cross_compiling
"
=
yes
;
then
echo
$ac_n
"checking for vfork""...
$ac_c
"
1>&6
echo
"configure:30
06
: checking for vfork"
>
&5
echo
"configure:30
17
: checking for vfork"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_func_vfork
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
cat
>
conftest.
$ac_ext
<<
EOF
#line 30
11
"configure"
#line 30
22
"configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char vfork(); below. */
...
...
@@ -3030,7 +3041,7 @@ vfork();
; return 0; }
EOF
if
{
(
eval echo
configure:30
34
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
if
{
(
eval echo
configure:30
45
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
rm
-rf
conftest
*
eval
"ac_cv_func_vfork=yes"
else
...
...
@@ -3052,7 +3063,7 @@ fi
ac_cv_func_vfork_works
=
$ac_cv_func_vfork
else
cat
>
conftest.
$ac_ext
<<
EOF
#line 30
56
"configure"
#line 30
67
"configure"
#include "confdefs.h"
/* Thanks to Paul Eggert for this test. */
#include <stdio.h>
...
...
@@ -3147,7 +3158,7 @@ main() {
}
}
EOF
if
{
(
eval echo
configure:31
51
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
&&
(
./conftest
;
exit
)
2>/dev/null
if
{
(
eval echo
configure:31
62
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
&&
(
./conftest
;
exit
)
2>/dev/null
then
ac_cv_func_vfork_works
=
yes
else
...
...
@@ -3173,17 +3184,17 @@ for ac_hdr in unistd.h
do
ac_safe
=
`
echo
"
$ac_hdr
"
| sed
'y%./+-%__p_%'
`
echo
$ac_n
"checking for
$ac_hdr
""...
$ac_c
"
1>&6
echo
"configure:31
77
: checking for
$ac_hdr
"
>
&5
echo
"configure:31
88
: checking for
$ac_hdr
"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_header_
$ac_safe
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
cat
>
conftest.
$ac_ext
<<
EOF
#line 31
82
"configure"
#line 31
93
"configure"
#include "confdefs.h"
#include <
$ac_hdr
>
EOF
ac_try
=
"
$ac_cpp
conftest.
$ac_ext
>/dev/null 2>conftest.out"
{
(
eval echo
configure:31
87
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
{
(
eval echo
configure:31
98
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
ac_err
=
`
grep
-v
'^ *+'
conftest.out |
grep
-v
"^conftest.
${
ac_ext
}
\$
"
`
if
test
-z
"
$ac_err
"
;
then
rm
-rf
conftest
*
...
...
@@ -3212,12 +3223,12 @@ done
for
ac_func
in
getpagesize
do
echo
$ac_n
"checking for
$ac_func
""...
$ac_c
"
1>&6
echo
"configure:32
16
: checking for
$ac_func
"
>
&5
echo
"configure:32
27
: checking for
$ac_func
"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_func_
$ac_func
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
cat
>
conftest.
$ac_ext
<<
EOF
#line 32
21
"configure"
#line 32
32
"configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char
$ac_func
(); below. */
...
...
@@ -3240,7 +3251,7 @@ $ac_func();
; return 0; }
EOF
if
{
(
eval echo
configure:32
44
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
if
{
(
eval echo
configure:32
55
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
rm
-rf
conftest
*
eval
"ac_cv_func_
$ac_func
=yes"
else
...
...
@@ -3265,7 +3276,7 @@ fi
done
echo
$ac_n
"checking for working mmap which provides zeroed pages anywhere""...
$ac_c
"
1>&6
echo
"configure:32
69
: checking for working mmap which provides zeroed pages anywhere"
>
&5
echo
"configure:32
80
: checking for working mmap which provides zeroed pages anywhere"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_func_mmap_anywhere
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
...
...
@@ -3273,7 +3284,7 @@ else
ac_cv_func_mmap_anywhere
=
no
else
cat
>
conftest.
$ac_ext
<<
EOF
#line 32
77
"configure"
#line 32
88
"configure"
#include "confdefs.h"
/* Test by Richard Henderson and Alexandre Oliva.
...
...
@@ -3356,7 +3367,7 @@ int main()
exit(0);
}
EOF
if
{
(
eval echo
configure:33
60
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
&&
(
./conftest
;
exit
)
2>/dev/null
if
{
(
eval echo
configure:33
71
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
&&
(
./conftest
;
exit
)
2>/dev/null
then
ac_cv_func_mmap_anywhere
=
yes
else
...
...
@@ -3379,7 +3390,7 @@ EOF
fi
echo
$ac_n
"checking for working mmap of a file""...
$ac_c
"
1>&6
echo
"configure:33
83
: checking for working mmap of a file"
>
&5
echo
"configure:33
94
: checking for working mmap of a file"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_func_mmap_file
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
...
...
@@ -3394,7 +3405,7 @@ if test "$cross_compiling" = yes; then
ac_cv_func_mmap_file
=
no
else
cat
>
conftest.
$ac_ext
<<
EOF
#line 3
398
"configure"
#line 3
409
"configure"
#include "confdefs.h"
/* Test by Zack Weinberg. Modified from MMAP_ANYWHERE test by
...
...
@@ -3431,7 +3442,7 @@ int main()
exit(0);
}
EOF
if
{
(
eval echo
configure:34
35
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
&&
(
./conftest
;
exit
)
2>/dev/null
if
{
(
eval echo
configure:34
46
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
&&
(
./conftest
;
exit
)
2>/dev/null
then
ac_cv_func_mmap_file
=
yes
else
...
...
@@ -3464,12 +3475,12 @@ for ac_func in bcopy \
do
ac_tr_decl
=
HAVE_DECL_
`
echo
$ac_func
| tr
'abcdefghijklmnopqrstuvwxyz'
'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
`
echo
$ac_n
"checking whether
$ac_func
is declared""...
$ac_c
"
1>&6
echo
"configure:34
68
: checking whether
$ac_func
is declared"
>
&5
echo
"configure:34
79
: checking whether
$ac_func
is declared"
>
&5
if
eval
"test
\"
`
echo
'$''{'
gcc_cv_have_decl_
$ac_func
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
cat
>
conftest.
$ac_ext
<<
EOF
#line 34
73
"configure"
#line 34
84
"configure"
#include "confdefs.h"
#include "gansidecl.h"
#include "system.h"
...
...
@@ -3480,7 +3491,7 @@ char *(*pfn) = (char *(*)) $ac_func ;
#endif
; return 0; }
EOF
if
{
(
eval echo
configure:34
84
:
\"
$ac_compile
\"
)
1>&5
;
(
eval
$ac_compile
)
2>&5
;
}
;
then
if
{
(
eval echo
configure:34
95
:
\"
$ac_compile
\"
)
1>&5
;
(
eval
$ac_compile
)
2>&5
;
}
;
then
rm
-rf
conftest
*
eval
"gcc_cv_have_decl_
$ac_func
=yes"
else
...
...
@@ -3573,12 +3584,12 @@ for ac_func in getrlimit setrlimit getrusage
do
ac_tr_decl
=
HAVE_DECL_
`
echo
$ac_func
| tr
'abcdefghijklmnopqrstuvwxyz'
'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
`
echo
$ac_n
"checking whether
$ac_func
is declared""...
$ac_c
"
1>&6
echo
"configure:35
77
: checking whether
$ac_func
is declared"
>
&5
echo
"configure:35
88
: checking whether
$ac_func
is declared"
>
&5
if
eval
"test
\"
`
echo
'$''{'
gcc_cv_have_decl_
$ac_func
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
cat
>
conftest.
$ac_ext
<<
EOF
#line 35
82
"configure"
#line 35
93
"configure"
#include "confdefs.h"
#include "gansidecl.h"
#include "system.h"
...
...
@@ -3593,7 +3604,7 @@ char *(*pfn) = (char *(*)) $ac_func ;
#endif
; return 0; }
EOF
if
{
(
eval echo
configure:3
597
:
\"
$ac_compile
\"
)
1>&5
;
(
eval
$ac_compile
)
2>&5
;
}
;
then
if
{
(
eval echo
configure:3
608
:
\"
$ac_compile
\"
)
1>&5
;
(
eval
$ac_compile
)
2>&5
;
}
;
then
rm
-rf
conftest
*
eval
"gcc_cv_have_decl_
$ac_func
=yes"
else
...
...
@@ -3636,12 +3647,12 @@ CFLAGS="$saved_CFLAGS"
# mkdir takes a single argument on some systems.
echo
$ac_n
"checking if mkdir takes one argument""...
$ac_c
"
1>&6
echo
"configure:36
40
: checking if mkdir takes one argument"
>
&5
echo
"configure:36
51
: checking if mkdir takes one argument"
>
&5
if
eval
"test
\"
`
echo
'$''{'
gcc_cv_mkdir_takes_one_arg
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
cat
>
conftest.
$ac_ext
<<
EOF
#line 36
45
"configure"
#line 36
56
"configure"
#include "confdefs.h"
#include <sys/types.h>
...
...
@@ -3658,7 +3669,7 @@ int main() {
mkdir ("foo", 0);
; return 0; }
EOF
if
{
(
eval echo
configure:36
62
:
\"
$ac_compile
\"
)
1>&5
;
(
eval
$ac_compile
)
2>&5
;
}
;
then
if
{
(
eval echo
configure:36
73
:
\"
$ac_compile
\"
)
1>&5
;
(
eval
$ac_compile
)
2>&5
;
}
;
then
rm
-rf
conftest
*
gcc_cv_mkdir_takes_one_arg
=
no
else
...
...
@@ -3966,7 +3977,7 @@ fi
echo
$ac_n
"checking for strerror in -lcposix""...
$ac_c
"
1>&6
echo
"configure:39
70
: checking for strerror in -lcposix"
>
&5
echo
"configure:39
81
: checking for strerror in -lcposix"
>
&5
ac_lib_var
=
`
echo
cposix
'_'
strerror | sed
'y%./+-%__p_%'
`
if
eval
"test
\"
`
echo
'$''{'
ac_cv_lib_
$ac_lib_var
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
...
...
@@ -3974,7 +3985,7 @@ else
ac_save_LIBS
=
"
$LIBS
"
LIBS
=
"-lcposix
$LIBS
"
cat
>
conftest.
$ac_ext
<<
EOF
#line 39
78
"configure"
#line 39
89
"configure"
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error. */
/* We use char because int might match the return type of a gcc2
...
...
@@ -3985,7 +3996,7 @@ int main() {
strerror()
; return 0; }
EOF
if
{
(
eval echo
configure:
3989
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
if
{
(
eval echo
configure:
4000
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
rm
-rf
conftest
*
eval
"ac_cv_lib_
$ac_lib_var
=yes"
else
...
...
@@ -4008,18 +4019,18 @@ fi
echo
$ac_n
"checking for working const""...
$ac_c
"
1>&6
echo
"configure:40
12
: checking for working const"
>
&5
echo
"configure:40
23
: checking for working const"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_c_const
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
cat
>
conftest.
$ac_ext
<<
EOF
#line 40
17
"configure"
#line 40
28
"configure"
#include "confdefs.h"
int main() {
/* Ultrix mips cc rejects this. */
typedef int charset[2]; const charset x
= {0,0}
;
typedef int charset[2]; const charset x;
/* SunOS 4.1.1 cc rejects this. */
char const *const *ccp;
char **p;
...
...
@@ -4062,7 +4073,7 @@ ccp = (char const *const *) p;
; return 0; }
EOF
if
{
(
eval echo
configure:40
66
:
\"
$ac_compile
\"
)
1>&5
;
(
eval
$ac_compile
)
2>&5
;
}
;
then
if
{
(
eval echo
configure:40
77
:
\"
$ac_compile
\"
)
1>&5
;
(
eval
$ac_compile
)
2>&5
;
}
;
then
rm
-rf
conftest
*
ac_cv_c_const
=
yes
else
...
...
@@ -4083,12 +4094,12 @@ EOF
fi
echo
$ac_n
"checking for off_t""...
$ac_c
"
1>&6
echo
"configure:40
87
: checking for off_t"
>
&5
echo
"configure:40
98
: checking for off_t"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_type_off_t
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
cat
>
conftest.
$ac_ext
<<
EOF
#line 4
092
"configure"
#line 4
103
"configure"
#include "confdefs.h"
#include <sys/types.h>
#if STDC_HEADERS
...
...
@@ -4116,12 +4127,12 @@ EOF
fi
echo
$ac_n
"checking for size_t""...
$ac_c
"
1>&6
echo
"configure:41
20
: checking for size_t"
>
&5
echo
"configure:41
31
: checking for size_t"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_type_size_t
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
cat
>
conftest.
$ac_ext
<<
EOF
#line 41
25
"configure"
#line 41
36
"configure"
#include "confdefs.h"
#include <sys/types.h>
#if STDC_HEADERS
...
...
@@ -4151,19 +4162,19 @@ fi
# The Ultrix 4.2 mips builtin alloca declared by alloca.h only works
# for constant arguments. Useless!
echo
$ac_n
"checking for working alloca.h""...
$ac_c
"
1>&6
echo
"configure:41
55
: checking for working alloca.h"
>
&5
echo
"configure:41
66
: checking for working alloca.h"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_header_alloca_h
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
cat
>
conftest.
$ac_ext
<<
EOF
#line 41
60
"configure"
#line 41
71
"configure"
#include "confdefs.h"
#include <alloca.h>
int main() {
void
*p = alloca(2 * sizeof(int));
char
*p = alloca(2 * sizeof(int));
; return 0; }
EOF
if
{
(
eval echo
configure:41
67
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
if
{
(
eval echo
configure:41
78
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
rm
-rf
conftest
*
ac_cv_header_alloca_h
=
yes
else
...
...
@@ -4184,12 +4195,12 @@ EOF
fi
echo
$ac_n
"checking for alloca""...
$ac_c
"
1>&6
echo
"configure:41
88
: checking for alloca"
>
&5
echo
"configure:41
99
: checking for alloca"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_func_alloca_works
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
cat
>
conftest.
$ac_ext
<<
EOF
#line 4
193
"configure"
#line 4
204
"configure"
#include "confdefs.h"
#ifdef __GNUC__
...
...
@@ -4217,7 +4228,7 @@ int main() {
char *p = (char *) alloca(1);
; return 0; }
EOF
if
{
(
eval echo
configure:42
21
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
if
{
(
eval echo
configure:42
32
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
rm
-rf
conftest
*
ac_cv_func_alloca_works
=
yes
else
...
...
@@ -4249,12 +4260,12 @@ EOF
echo
$ac_n
"checking whether alloca needs Cray hooks""...
$ac_c
"
1>&6
echo
"configure:42
53
: checking whether alloca needs Cray hooks"
>
&5
echo
"configure:42
64
: checking whether alloca needs Cray hooks"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_os_cray
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
cat
>
conftest.
$ac_ext
<<
EOF
#line 42
58
"configure"
#line 42
69
"configure"
#include "confdefs.h"
#if defined(CRAY) && ! defined(CRAY2)
webecray
...
...
@@ -4279,12 +4290,12 @@ echo "$ac_t""$ac_cv_os_cray" 1>&6
if
test
$ac_cv_os_cray
=
yes
;
then
for
ac_func
in
_getb67 GETB67 getb67
;
do
echo
$ac_n
"checking for
$ac_func
""...
$ac_c
"
1>&6
echo
"configure:42
83
: checking for
$ac_func
"
>
&5
echo
"configure:42
94
: checking for
$ac_func
"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_func_
$ac_func
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
cat
>
conftest.
$ac_ext
<<
EOF
#line 42
88
"configure"
#line 42
99
"configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char
$ac_func
(); below. */
...
...
@@ -4307,7 +4318,7 @@ $ac_func();
; return 0; }
EOF
if
{
(
eval echo
configure:43
11
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
if
{
(
eval echo
configure:43
22
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
rm
-rf
conftest
*
eval
"ac_cv_func_
$ac_func
=yes"
else
...
...
@@ -4334,7 +4345,7 @@ done
fi
echo
$ac_n
"checking stack direction for C alloca""...
$ac_c
"
1>&6
echo
"configure:43
38
: checking stack direction for C alloca"
>
&5
echo
"configure:43
49
: checking stack direction for C alloca"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_c_stack_direction
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
...
...
@@ -4342,7 +4353,7 @@ else
ac_cv_c_stack_direction
=
0
else
cat
>
conftest.
$ac_ext
<<
EOF
#line 43
46
"configure"
#line 43
57
"configure"
#include "confdefs.h"
find_stack_direction ()
{
...
...
@@ -4361,7 +4372,7 @@ main ()
exit (find_stack_direction() < 0);
}
EOF
if
{
(
eval echo
configure:43
65
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
&&
(
./conftest
;
exit
)
2>/dev/null
if
{
(
eval echo
configure:43
76
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
&&
(
./conftest
;
exit
)
2>/dev/null
then
ac_cv_c_stack_direction
=
1
else
...
...
@@ -4388,17 +4399,17 @@ unistd.h sys/param.h
do
ac_safe
=
`
echo
"
$ac_hdr
"
| sed
'y%./+-%__p_%'
`
echo
$ac_n
"checking for
$ac_hdr
""...
$ac_c
"
1>&6
echo
"configure:4
392
: checking for
$ac_hdr
"
>
&5
echo
"configure:4
403
: checking for
$ac_hdr
"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_header_
$ac_safe
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
cat
>
conftest.
$ac_ext
<<
EOF
#line 4
397
"configure"
#line 4
408
"configure"
#include "confdefs.h"
#include <
$ac_hdr
>
EOF
ac_try
=
"
$ac_cpp
conftest.
$ac_ext
>/dev/null 2>conftest.out"
{
(
eval echo
configure:44
02
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
{
(
eval echo
configure:44
13
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
ac_err
=
`
grep
-v
'^ *+'
conftest.out |
grep
-v
"^conftest.
${
ac_ext
}
\$
"
`
if
test
-z
"
$ac_err
"
;
then
rm
-rf
conftest
*
...
...
@@ -4428,12 +4439,12 @@ done
strdup __argz_count __argz_stringify __argz_next
do
echo
$ac_n
"checking for
$ac_func
""...
$ac_c
"
1>&6
echo
"configure:44
32
: checking for
$ac_func
"
>
&5
echo
"configure:44
43
: checking for
$ac_func
"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_func_
$ac_func
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
cat
>
conftest.
$ac_ext
<<
EOF
#line 44
37
"configure"
#line 44
48
"configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char
$ac_func
(); below. */
...
...
@@ -4456,7 +4467,7 @@ $ac_func();
; return 0; }
EOF
if
{
(
eval echo
configure:44
60
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
if
{
(
eval echo
configure:44
71
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
rm
-rf
conftest
*
eval
"ac_cv_func_
$ac_func
=yes"
else
...
...
@@ -4485,12 +4496,12 @@ done
for
ac_func
in
stpcpy
do
echo
$ac_n
"checking for
$ac_func
""...
$ac_c
"
1>&6
echo
"configure:4
489
: checking for
$ac_func
"
>
&5
echo
"configure:4
500
: checking for
$ac_func
"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_func_
$ac_func
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
cat
>
conftest.
$ac_ext
<<
EOF
#line 4
494
"configure"
#line 4
505
"configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char
$ac_func
(); below. */
...
...
@@ -4513,7 +4524,7 @@ $ac_func();
; return 0; }
EOF
if
{
(
eval echo
configure:45
17
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
if
{
(
eval echo
configure:45
28
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
rm
-rf
conftest
*
eval
"ac_cv_func_
$ac_func
=yes"
else
...
...
@@ -4547,19 +4558,19 @@ EOF
if
test
$ac_cv_header_locale_h
=
yes
;
then
echo
$ac_n
"checking for LC_MESSAGES""...
$ac_c
"
1>&6
echo
"configure:45
51
: checking for LC_MESSAGES"
>
&5
echo
"configure:45
62
: checking for LC_MESSAGES"
>
&5
if
eval
"test
\"
`
echo
'$''{'
am_cv_val_LC_MESSAGES
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
cat
>
conftest.
$ac_ext
<<
EOF
#line 45
56
"configure"
#line 45
67
"configure"
#include "confdefs.h"
#include <locale.h>
int main() {
return LC_MESSAGES
; return 0; }
EOF
if
{
(
eval echo
configure:45
63
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
if
{
(
eval echo
configure:45
74
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
rm
-rf
conftest
*
am_cv_val_LC_MESSAGES
=
yes
else
...
...
@@ -4580,7 +4591,7 @@ EOF
fi
fi
echo
$ac_n
"checking whether NLS is requested""...
$ac_c
"
1>&6
echo
"configure:45
84
: checking whether NLS is requested"
>
&5
echo
"configure:45
95
: checking whether NLS is requested"
>
&5
# Check whether --enable-nls or --disable-nls was given.
if
test
"
${
enable_nls
+set
}
"
=
set
;
then
enableval
=
"
$enable_nls
"
...
...
@@ -4600,7 +4611,7 @@ fi
EOF
echo
$ac_n
"checking whether included gettext is requested""...
$ac_c
"
1>&6
echo
"configure:46
04
: checking whether included gettext is requested"
>
&5
echo
"configure:46
15
: checking whether included gettext is requested"
>
&5
# Check whether --with-included-gettext or --without-included-gettext was given.
if
test
"
${
with_included_gettext
+set
}
"
=
set
;
then
withval
=
"
$with_included_gettext
"
...
...
@@ -4619,17 +4630,17 @@ fi
ac_safe
=
`
echo
"libintl.h"
| sed
'y%./+-%__p_%'
`
echo
$ac_n
"checking for libintl.h""...
$ac_c
"
1>&6
echo
"configure:46
23
: checking for libintl.h"
>
&5
echo
"configure:46
34
: checking for libintl.h"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_header_
$ac_safe
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
cat
>
conftest.
$ac_ext
<<
EOF
#line 46
28
"configure"
#line 46
39
"configure"
#include "confdefs.h"
#include <libintl.h>
EOF
ac_try
=
"
$ac_cpp
conftest.
$ac_ext
>/dev/null 2>conftest.out"
{
(
eval echo
configure:46
33
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
{
(
eval echo
configure:46
44
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
ac_err
=
`
grep
-v
'^ *+'
conftest.out |
grep
-v
"^conftest.
${
ac_ext
}
\$
"
`
if
test
-z
"
$ac_err
"
;
then
rm
-rf
conftest
*
...
...
@@ -4646,19 +4657,19 @@ fi
if
eval
"test
\"
`
echo
'$ac_cv_header_'
$ac_safe
`
\"
= yes"
;
then
echo
"
$ac_t
""yes"
1>&6
echo
$ac_n
"checking for gettext in libc""...
$ac_c
"
1>&6
echo
"configure:46
50
: checking for gettext in libc"
>
&5
echo
"configure:46
61
: checking for gettext in libc"
>
&5
if
eval
"test
\"
`
echo
'$''{'
gt_cv_func_gettext_libc
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
cat
>
conftest.
$ac_ext
<<
EOF
#line 46
55
"configure"
#line 46
66
"configure"
#include "confdefs.h"
#include <libintl.h>
int main() {
return (int) gettext ("")
; return 0; }
EOF
if
{
(
eval echo
configure:46
62
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
if
{
(
eval echo
configure:46
73
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
rm
-rf
conftest
*
gt_cv_func_gettext_libc
=
yes
else
...
...
@@ -4674,7 +4685,7 @@ echo "$ac_t""$gt_cv_func_gettext_libc" 1>&6
if
test
"
$gt_cv_func_gettext_libc
"
!=
"yes"
;
then
echo
$ac_n
"checking for bindtextdomain in -lintl""...
$ac_c
"
1>&6
echo
"configure:46
78
: checking for bindtextdomain in -lintl"
>
&5
echo
"configure:46
89
: checking for bindtextdomain in -lintl"
>
&5
ac_lib_var
=
`
echo
intl
'_'
bindtextdomain | sed
'y%./+-%__p_%'
`
if
eval
"test
\"
`
echo
'$''{'
ac_cv_lib_
$ac_lib_var
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
...
...
@@ -4682,7 +4693,7 @@ else
ac_save_LIBS
=
"
$LIBS
"
LIBS
=
"-lintl
$LIBS
"
cat
>
conftest.
$ac_ext
<<
EOF
#line 46
86
"configure"
#line 46
97
"configure"
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error. */
/* We use char because int might match the return type of a gcc2
...
...
@@ -4693,7 +4704,7 @@ int main() {
bindtextdomain()
; return 0; }
EOF
if
{
(
eval echo
configure:4
697
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
if
{
(
eval echo
configure:4
708
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
rm
-rf
conftest
*
eval
"ac_cv_lib_
$ac_lib_var
=yes"
else
...
...
@@ -4709,12 +4720,12 @@ fi
if
eval
"test
\"
`
echo
'$ac_cv_lib_'
$ac_lib_var
`
\"
= yes"
;
then
echo
"
$ac_t
""yes"
1>&6
echo
$ac_n
"checking for gettext in libintl""...
$ac_c
"
1>&6
echo
"configure:47
13
: checking for gettext in libintl"
>
&5
echo
"configure:47
24
: checking for gettext in libintl"
>
&5
if
eval
"test
\"
`
echo
'$''{'
gt_cv_func_gettext_libintl
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
echo
$ac_n
"checking for gettext in -lintl""...
$ac_c
"
1>&6
echo
"configure:47
18
: checking for gettext in -lintl"
>
&5
echo
"configure:47
29
: checking for gettext in -lintl"
>
&5
ac_lib_var
=
`
echo
intl
'_'
gettext | sed
'y%./+-%__p_%'
`
if
eval
"test
\"
`
echo
'$''{'
ac_cv_lib_
$ac_lib_var
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
...
...
@@ -4722,7 +4733,7 @@ else
ac_save_LIBS
=
"
$LIBS
"
LIBS
=
"-lintl
$LIBS
"
cat
>
conftest.
$ac_ext
<<
EOF
#line 47
26
"configure"
#line 47
37
"configure"
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error. */
/* We use char because int might match the return type of a gcc2
...
...
@@ -4733,7 +4744,7 @@ int main() {
gettext()
; return 0; }
EOF
if
{
(
eval echo
configure:47
37
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
if
{
(
eval echo
configure:47
48
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
rm
-rf
conftest
*
eval
"ac_cv_lib_
$ac_lib_var
=yes"
else
...
...
@@ -4772,7 +4783,7 @@ EOF
# Extract the first word of "msgfmt", so it can be a program name with args.
set
dummy msgfmt
;
ac_word
=
$2
echo
$ac_n
"checking for
$ac_word
""...
$ac_c
"
1>&6
echo
"configure:47
76
: checking for
$ac_word
"
>
&5
echo
"configure:47
87
: checking for
$ac_word
"
>
&5
if
eval
"test
\"
`
echo
'$''{'
gcc_cv_path_MSGFMT
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
...
...
@@ -4806,12 +4817,12 @@ fi
for
ac_func
in
dcgettext
do
echo
$ac_n
"checking for
$ac_func
""...
$ac_c
"
1>&6
echo
"configure:48
10
: checking for
$ac_func
"
>
&5
echo
"configure:48
21
: checking for
$ac_func
"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_func_
$ac_func
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
cat
>
conftest.
$ac_ext
<<
EOF
#line 48
15
"configure"
#line 48
26
"configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char
$ac_func
(); below. */
...
...
@@ -4834,7 +4845,7 @@ $ac_func();
; return 0; }
EOF
if
{
(
eval echo
configure:48
38
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
if
{
(
eval echo
configure:48
49
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
rm
-rf
conftest
*
eval
"ac_cv_func_
$ac_func
=yes"
else
...
...
@@ -4861,7 +4872,7 @@ done
# Extract the first word of "gmsgfmt", so it can be a program name with args.
set
dummy gmsgfmt
;
ac_word
=
$2
echo
$ac_n
"checking for
$ac_word
""...
$ac_c
"
1>&6
echo
"configure:48
65
: checking for
$ac_word
"
>
&5
echo
"configure:48
76
: checking for
$ac_word
"
>
&5
if
eval
"test
\"
`
echo
'$''{'
gcc_cv_path_GMSGFMT
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
...
...
@@ -4897,7 +4908,7 @@ fi
# Extract the first word of "xgettext", so it can be a program name with args.
set
dummy xgettext
;
ac_word
=
$2
echo
$ac_n
"checking for
$ac_word
""...
$ac_c
"
1>&6
echo
"configure:49
01
: checking for
$ac_word
"
>
&5
echo
"configure:49
12
: checking for
$ac_word
"
>
&5
if
eval
"test
\"
`
echo
'$''{'
gcc_cv_path_XGETTEXT
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
...
...
@@ -4929,7 +4940,7 @@ else
fi
cat
>
conftest.
$ac_ext
<<
EOF
#line 49
33
"configure"
#line 49
44
"configure"
#include "confdefs.h"
int main() {
...
...
@@ -4937,7 +4948,7 @@ extern int _nl_msg_cat_cntr;
return _nl_msg_cat_cntr
; return 0; }
EOF
if
{
(
eval echo
configure:49
41
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
if
{
(
eval echo
configure:49
52
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
rm
-rf
conftest
*
CATOBJEXT
=
.gmo
DATADIRNAME
=
share
...
...
@@ -4962,7 +4973,7 @@ fi
if
test
"
$CATOBJEXT
"
=
"NONE"
;
then
echo
$ac_n
"checking whether catgets can be used""...
$ac_c
"
1>&6
echo
"configure:49
66
: checking whether catgets can be used"
>
&5
echo
"configure:49
77
: checking whether catgets can be used"
>
&5
# Check whether --with-catgets or --without-catgets was given.
if
test
"
${
with_catgets
+set
}
"
=
set
;
then
withval
=
"
$with_catgets
"
...
...
@@ -4975,7 +4986,7 @@ fi
if
test
"
$nls_cv_use_catgets
"
=
"yes"
;
then
echo
$ac_n
"checking for main in -li""...
$ac_c
"
1>&6
echo
"configure:49
79
: checking for main in -li"
>
&5
echo
"configure:49
90
: checking for main in -li"
>
&5
ac_lib_var
=
`
echo
i
'_'
main | sed
'y%./+-%__p_%'
`
if
eval
"test
\"
`
echo
'$''{'
ac_cv_lib_
$ac_lib_var
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
...
...
@@ -4983,14 +4994,14 @@ else
ac_save_LIBS
=
"
$LIBS
"
LIBS
=
"-li
$LIBS
"
cat
>
conftest.
$ac_ext
<<
EOF
#line 49
87
"configure"
#line 49
98
"configure"
#include "confdefs.h"
int main() {
main()
; return 0; }
EOF
if
{
(
eval echo
configure:
4994
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
if
{
(
eval echo
configure:
5005
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
rm
-rf
conftest
*
eval
"ac_cv_lib_
$ac_lib_var
=yes"
else
...
...
@@ -5018,12 +5029,12 @@ else
fi
echo
$ac_n
"checking for catgets""...
$ac_c
"
1>&6
echo
"configure:50
22
: checking for catgets"
>
&5
echo
"configure:50
33
: checking for catgets"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_func_catgets
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
cat
>
conftest.
$ac_ext
<<
EOF
#line 50
27
"configure"
#line 50
38
"configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char catgets(); below. */
...
...
@@ -5046,7 +5057,7 @@ catgets();
; return 0; }
EOF
if
{
(
eval echo
configure:50
50
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
if
{
(
eval echo
configure:50
61
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
rm
-rf
conftest
*
eval
"ac_cv_func_catgets=yes"
else
...
...
@@ -5068,7 +5079,7 @@ EOF
# Extract the first word of "gencat", so it can be a program name with args.
set
dummy gencat
;
ac_word
=
$2
echo
$ac_n
"checking for
$ac_word
""...
$ac_c
"
1>&6
echo
"configure:50
72
: checking for
$ac_word
"
>
&5
echo
"configure:50
83
: checking for
$ac_word
"
>
&5
if
eval
"test
\"
`
echo
'$''{'
gcc_cv_path_GENCAT
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
...
...
@@ -5104,7 +5115,7 @@ fi
# Extract the first word of "gmsgfmt", so it can be a program name with args.
set
dummy gmsgfmt
;
ac_word
=
$2
echo
$ac_n
"checking for
$ac_word
""...
$ac_c
"
1>&6
echo
"configure:51
08
: checking for
$ac_word
"
>
&5
echo
"configure:51
19
: checking for
$ac_word
"
>
&5
if
eval
"test
\"
`
echo
'$''{'
gcc_cv_path_GMSGFMT
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
...
...
@@ -5141,7 +5152,7 @@ fi
# Extract the first word of "msgfmt", so it can be a program name with args.
set
dummy msgfmt
;
ac_word
=
$2
echo
$ac_n
"checking for
$ac_word
""...
$ac_c
"
1>&6
echo
"configure:51
45
: checking for
$ac_word
"
>
&5
echo
"configure:51
56
: checking for
$ac_word
"
>
&5
if
eval
"test
\"
`
echo
'$''{'
gcc_cv_path_GMSGFMT
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
...
...
@@ -5179,7 +5190,7 @@ fi
# Extract the first word of "xgettext", so it can be a program name with args.
set
dummy xgettext
;
ac_word
=
$2
echo
$ac_n
"checking for
$ac_word
""...
$ac_c
"
1>&6
echo
"configure:51
83
: checking for
$ac_word
"
>
&5
echo
"configure:51
94
: checking for
$ac_word
"
>
&5
if
eval
"test
\"
`
echo
'$''{'
gcc_cv_path_XGETTEXT
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
...
...
@@ -5237,7 +5248,7 @@ fi
# Extract the first word of "msgfmt", so it can be a program name with args.
set
dummy msgfmt
;
ac_word
=
$2
echo
$ac_n
"checking for
$ac_word
""...
$ac_c
"
1>&6
echo
"configure:52
41
: checking for
$ac_word
"
>
&5
echo
"configure:52
52
: checking for
$ac_word
"
>
&5
if
eval
"test
\"
`
echo
'$''{'
gcc_cv_path_MSGFMT
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
...
...
@@ -5271,7 +5282,7 @@ fi
# Extract the first word of "gmsgfmt", so it can be a program name with args.
set
dummy gmsgfmt
;
ac_word
=
$2
echo
$ac_n
"checking for
$ac_word
""...
$ac_c
"
1>&6
echo
"configure:52
75
: checking for
$ac_word
"
>
&5
echo
"configure:52
86
: checking for
$ac_word
"
>
&5
if
eval
"test
\"
`
echo
'$''{'
gcc_cv_path_GMSGFMT
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
...
...
@@ -5310,7 +5321,7 @@ fi
# Extract the first word of "xgettext", so it can be a program name with args.
set
dummy xgettext
;
ac_word
=
$2
echo
$ac_n
"checking for
$ac_word
""...
$ac_c
"
1>&6
echo
"configure:53
14
: checking for
$ac_word
"
>
&5
echo
"configure:53
25
: checking for
$ac_word
"
>
&5
if
eval
"test
\"
`
echo
'$''{'
gcc_cv_path_XGETTEXT
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
...
...
@@ -5409,7 +5420,7 @@ fi
LINGUAS
=
else
echo
$ac_n
"checking for catalogs to be installed""...
$ac_c
"
1>&6
echo
"configure:54
13
: checking for catalogs to be installed"
>
&5
echo
"configure:54
24
: checking for catalogs to be installed"
>
&5
if
test
"x
$LINGUAS
"
=
"x"
;
then
LINGUAS
=
$ALL_LINGUAS
else
...
...
@@ -5441,17 +5452,17 @@ echo "configure:5413: checking for catalogs to be installed" >&5
if
test
"
$CATOBJEXT
"
=
".cat"
;
then
ac_safe
=
`
echo
"linux/version.h"
| sed
'y%./+-%__p_%'
`
echo
$ac_n
"checking for linux/version.h""...
$ac_c
"
1>&6
echo
"configure:54
45
: checking for linux/version.h"
>
&5
echo
"configure:54
56
: checking for linux/version.h"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_header_
$ac_safe
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
cat
>
conftest.
$ac_ext
<<
EOF
#line 54
50
"configure"
#line 54
61
"configure"
#include "confdefs.h"
#include <linux/version.h>
EOF
ac_try
=
"
$ac_cpp
conftest.
$ac_ext
>/dev/null 2>conftest.out"
{
(
eval echo
configure:54
55
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
{
(
eval echo
configure:54
66
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
ac_err
=
`
grep
-v
'^ *+'
conftest.out |
grep
-v
"^conftest.
${
ac_ext
}
\$
"
`
if
test
-z
"
$ac_err
"
;
then
rm
-rf
conftest
*
...
...
@@ -5526,7 +5537,7 @@ fi
echo
$ac_n
"checking whether windows registry support is requested""...
$ac_c
"
1>&6
echo
"configure:55
30
: checking whether windows registry support is requested"
>
&5
echo
"configure:55
41
: checking whether windows registry support is requested"
>
&5
if
test
x
$enable_win32_registry
!=
xno
;
then
cat
>>
confdefs.h
<<
\
EOF
#define ENABLE_WIN32_REGISTRY 1
...
...
@@ -5555,7 +5566,7 @@ esac
if
test
x
$enable_win32_registry
!=
xno
;
then
echo
$ac_n
"checking registry key on windows hosts""...
$ac_c
"
1>&6
echo
"configure:55
59
: checking registry key on windows hosts"
>
&5
echo
"configure:55
70
: checking registry key on windows hosts"
>
&5
cat
>>
confdefs.h
<<
EOF
#define WIN32_REGISTRY_KEY "
$gcc_cv_win32_registry_key
"
EOF
...
...
@@ -5735,7 +5746,7 @@ fi
# Figure out what assembler we will be using.
echo
$ac_n
"checking what assembler to use""...
$ac_c
"
1>&6
echo
"configure:57
39
: checking what assembler to use"
>
&5
echo
"configure:57
50
: checking what assembler to use"
>
&5
gcc_cv_as
=
gcc_cv_gas_major_version
=
gcc_cv_gas_minor_version
=
...
...
@@ -5820,7 +5831,7 @@ fi
# Figure out what nm we will be using.
echo
$ac_n
"checking what nm to use""...
$ac_c
"
1>&6
echo
"configure:58
24
: checking what nm to use"
>
&5
echo
"configure:58
35
: checking what nm to use"
>
&5
if
test
-x
nm
$host_exeext
;
then
gcc_cv_nm
=
./nm
$host_exeext
elif
test
x
$host
=
x
$target
;
then
...
...
@@ -5831,7 +5842,7 @@ echo "$ac_t""$gcc_cv_nm" 1>&6
# Figure out what assembler alignment features are present.
echo
$ac_n
"checking assembler alignment features""...
$ac_c
"
1>&6
echo
"configure:58
35
: checking assembler alignment features"
>
&5
echo
"configure:58
46
: checking assembler alignment features"
>
&5
gcc_cv_as_alignment_features
=
none
if
test
x
$gcc_cv_gas_major_version
!=
x
-a
x
$gcc_cv_gas_minor_version
!=
x
;
then
# Gas version 2.6 and later support for .balign and .p2align.
...
...
@@ -5879,7 +5890,7 @@ fi
echo
"
$ac_t
""
$gcc_cv_as_alignment_features
"
1>&6
echo
$ac_n
"checking assembler subsection support""...
$ac_c
"
1>&6
echo
"configure:58
83
: checking assembler subsection support"
>
&5
echo
"configure:58
94
: checking assembler subsection support"
>
&5
gcc_cv_as_subsections
=
no
if
test
x
$gcc_cv_gas_major_version
!=
x
-a
x
$gcc_cv_gas_minor_version
!=
x
;
then
if
test
"
$gcc_cv_gas_major_version
"
-eq
2
-a
"
$gcc_cv_gas_minor_version
"
-ge
9
-o
"
$gcc_cv_gas_major_version
"
-gt
2
&&
grep
'obj_format = elf'
../gas/Makefile
>
/dev/null
;
then
...
...
@@ -5919,7 +5930,7 @@ fi
echo
"
$ac_t
""
$gcc_cv_as_subsections
"
1>&6
echo
$ac_n
"checking assembler weak support""...
$ac_c
"
1>&6
echo
"configure:59
23
: checking assembler weak support"
>
&5
echo
"configure:59
34
: checking assembler weak support"
>
&5
gcc_cv_as_weak
=
no
if
test
x
$gcc_cv_gas_major_version
!=
x
-a
x
$gcc_cv_gas_minor_version
!=
x
;
then
if
test
"
$gcc_cv_gas_major_version
"
-eq
2
-a
"
$gcc_cv_gas_minor_version
"
-ge
2
-o
"
$gcc_cv_gas_major_version
"
-gt
2
;
then
...
...
@@ -5942,7 +5953,7 @@ fi
echo
"
$ac_t
""
$gcc_cv_as_weak
"
1>&6
echo
$ac_n
"checking assembler hidden support""...
$ac_c
"
1>&6
echo
"configure:59
46
: checking assembler hidden support"
>
&5
echo
"configure:59
57
: checking assembler hidden support"
>
&5
gcc_cv_as_hidden
=
no
if
test
x
$gcc_cv_gas_major_version
!=
x
-a
x
$gcc_cv_gas_minor_version
!=
x
;
then
if
test
"
$gcc_cv_gas_major_version
"
-eq
2
-a
"
$gcc_cv_gas_minor_version
"
-ge
10
-o
"
$gcc_cv_gas_major_version
"
-gt
2
&&
grep
'obj_format = elf'
../gas/Makefile
>
/dev/null
;
then
...
...
@@ -5968,7 +5979,7 @@ echo "$ac_t""$gcc_cv_as_hidden" 1>&6
case
"
$target
"
in
sparc
*
-
*
-
*
)
echo
$ac_n
"checking assembler .register pseudo-op support""...
$ac_c
"
1>&6
echo
"configure:59
72
: checking assembler .register pseudo-op support"
>
&5
echo
"configure:59
83
: checking assembler .register pseudo-op support"
>
&5
if
eval
"test
\"
`
echo
'$''{'
gcc_cv_as_register_pseudo_op
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
...
...
@@ -5996,7 +6007,7 @@ EOF
fi
echo
$ac_n
"checking assembler supports -relax""...
$ac_c
"
1>&6
echo
"configure:60
00
: checking assembler supports -relax"
>
&5
echo
"configure:60
11
: checking assembler supports -relax"
>
&5
if
eval
"test
\"
`
echo
'$''{'
gcc_cv_as_relax_opt
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
...
...
@@ -6026,7 +6037,7 @@ EOF
case
"
$tm_file
"
in
*
64
*
)
echo
$ac_n
"checking for 64 bit support in assembler (
$gcc_cv_as
)""...
$ac_c
"
1>&6
echo
"configure:60
30
: checking for 64 bit support in assembler (
$gcc_cv_as
)"
>
&5
echo
"configure:60
41
: checking for 64 bit support in assembler (
$gcc_cv_as
)"
>
&5
if
eval
"test
\"
`
echo
'$''{'
gcc_cv_as_flags64
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
...
...
@@ -6071,7 +6082,7 @@ EOF
if
test
"x
$gcc_cv_as_flags64
"
!=
xno
;
then
echo
$ac_n
"checking for assembler offsetable %lo() support""...
$ac_c
"
1>&6
echo
"configure:60
75
: checking for assembler offsetable %lo() support"
>
&5
echo
"configure:60
86
: checking for assembler offsetable %lo() support"
>
&5
if
eval
"test
\"
`
echo
'$''{'
gcc_cv_as_offsetable_lo10
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
...
...
@@ -6110,7 +6121,7 @@ EOF
i[34567]86-
*
-
*
)
echo
$ac_n
"checking assembler instructions""...
$ac_c
"
1>&6
echo
"configure:61
14
: checking assembler instructions"
>
&5
echo
"configure:61
25
: checking assembler instructions"
>
&5
gcc_cv_as_instructions
=
if
test
x
$gcc_cv_gas_major_version
!=
x
-a
x
$gcc_cv_gas_minor_version
!=
x
;
then
if
test
"
$gcc_cv_gas_major_version
"
-eq
2
-a
"
$gcc_cv_gas_minor_version
"
-ge
9
-o
"
$gcc_cv_gas_major_version
"
-gt
2
;
then
...
...
@@ -6139,7 +6150,7 @@ EOF
esac
echo
$ac_n
"checking assembler dwarf2 debug_line support""...
$ac_c
"
1>&6
echo
"configure:61
43
: checking assembler dwarf2 debug_line support"
>
&5
echo
"configure:61
54
: checking assembler dwarf2 debug_line support"
>
&5
gcc_cv_as_dwarf2_debug_line
=
no
# ??? Not all targets support dwarf2 debug_line, even within a version
# of gas. Moreover, we need to emit a valid instruction to trigger any
...
...
@@ -6316,7 +6327,7 @@ EOF
echo
$ac_n
"checking whether to enable maintainer-specific portions of Makefiles""...
$ac_c
"
1>&6
echo
"configure:63
20
: checking whether to enable maintainer-specific portions of Makefiles"
>
&5
echo
"configure:63
31
: checking whether to enable maintainer-specific portions of Makefiles"
>
&5
# Check whether --enable-maintainer-mode or --disable-maintainer-mode was given.
if
test
"
${
enable_maintainer_mode
+set
}
"
=
set
;
then
enableval
=
"
$enable_maintainer_mode
"
...
...
@@ -6572,6 +6583,8 @@ ${CONFIG_SHELL-/bin/sh} $srcdir/configure.frag $srcdir "$subdirs" "$dep_host_xma
# Echo that links are built
if
test
x
$host
=
x
$target
then
...
...
@@ -6869,6 +6882,8 @@ s%@symbolic_link@%$symbolic_link%g
s%@thread_file@%
$thread_file
%g
s%@tm_file_list@%
$tm_file_list
%g
s%@will_use_collect2@%
$will_use_collect2
%g
s%@c_target_objs@%
$c_target_objs
%g
s%@cxx_target_objs@%
$cxx_target_objs
%g
/@target_overrides@/r
$target_overrides
s%@target_overrides@%%g
/@host_overrides@/r
$host_overrides
...
...
gcc/configure.in
View file @
aac69a49
...
...
@@ -1862,6 +1862,8 @@ AC_SUBST(symbolic_link)
AC_SUBST(thread_file)
AC_SUBST(tm_file_list)
AC_SUBST(will_use_collect2)
AC_SUBST(c_target_objs)
AC_SUBST(cxx_target_objs)
AC_SUBST_FILE(target_overrides)
...
...
gcc/cp/Make-lang.in
View file @
aac69a49
...
...
@@ -90,7 +90,7 @@ $(DEMANGLER_PROG): cxxmain.o underscore.o $(LIBDEPS)
# The compiler itself.
# Shared with C front end:
CXX_C_OBJS
=
c-common.o c-pragma.o c-semantics.o c-lex.o c-dump.o
CXX_C_OBJS
=
c-common.o c-pragma.o c-semantics.o c-lex.o c-dump.o
$(CXX_TARGET_OBJS)
# Language-specific object files.
CXX_OBJS
=
cp/call.o cp/decl.o cp/errfn.o cp/expr.o cp/pt.o cp/typeck2.o
\
...
...
gcc/tm.texi
View file @
aac69a49
...
...
@@ -7905,6 +7905,18 @@ Note that both @var{space} and @var{name} are case sensitive.
For
an
example
use
of
this
routine
,
see
@file{
c4x
.
h
}
and
the
callback
routines
defined
in
@file{
c4x
.
c
}
.
Note
that
the
use
of
@code{
c_lex
}
is
specific
to
the
C
and
C
++
compilers
.
It
will
not
work
in
the
Java
or
Fortran
compilers
,
or
any
other
language
compilers
for
that
matter
.
Thus
if
@code{
c_lex
}
is
going
to
be
called
from
target
-
specific
code
,
it
must
only
be
done
so
when
building
hte
C
and
C
++
compilers
.
This
can
be
done
by
defining
the
variables
@code{
c_target_objs
}
and
@code{
cxx_target_objs
}
in
the
target
entry
in
the
@code{
config
.
gcc
}
file
.
These
variables
should
name
the
target
-
specific
,
language
-
specific
object
file
which
contains
the
code
that
uses
@code{
c_lex
}
.
Note
it
will
also
be
necessary
to
add
a
rule
to
the
makefile
fragment
pointed
to
by
@code{
tmake_file
}
that
shows
how
to
build
this
object
file
.
@end
deftypefun
@deftypefun
void
cpp_register_pragma_space
(
cpp_reader
*
@var{
pfile
}
,
const
char
*
@var{
space
}
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment