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
3cf88fb4
Commit
3cf88fb4
authored
Nov 19, 1999
by
Tom Tromey
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sjlj jumbo patch
From-SVN: r30591
parent
2395f805
Hide whitespace changes
Inline
Side-by-side
Showing
18 changed files
with
469 additions
and
661 deletions
+469
-661
libjava/ChangeLog
+67
-0
libjava/Makefile.am
+4
-5
libjava/Makefile.in
+23
-53
libjava/acconfig.h
+3
-0
libjava/configure
+267
-578
libjava/configure.host
+4
-0
libjava/configure.in
+31
-12
libjava/exception.cc
+17
-7
libjava/gcj/Makefile.in
+2
-1
libjava/gcj/cni.h
+4
-0
libjava/gcj/javaprims.h
+1
-0
libjava/gij.cc
+2
-2
libjava/include/Makefile.in
+2
-1
libjava/include/config.h.in
+3
-0
libjava/include/default-signal.h
+33
-0
libjava/java/lang/natDouble.cc
+2
-0
libjava/libgcj.spec.in
+2
-1
libjava/testsuite/Makefile.in
+2
-1
No files found.
libjava/ChangeLog
View file @
3cf88fb4
1999-11-19 Tom Tromey <tromey@cygnus.com>
* Makefile.am (DIVIDESPEC): Removed.
(EXCEPTIONSPEC): Removed.
1999-11-19 Andrew Haley <aph@cygnus.com>
* Makefile.am (JCFLAGS): Add -L$(here)
(JC1FLAGS): Ditto.
* Makefile.in: Rebuild.
1999-11-18 Tom Tromey <tromey@cygnus.com>
* java/lang/natDouble.cc: Include <config.h>.
* include/config.h.in: Rebuilt.
* acconfig.h (SJLJ_EXCEPTIONS): Undefine.
* configure.host: Force -fsjlj-exceptions on non-sparc, non-x86
targets.
* configure: Rebuilt.
* configure.in (EXCEPTIONSPEC): Allow -fsjlj-exceptions to be
requested by configure.host. Don't put `-D' option into
libgcj.spec; instead, define SJLJ_EXCEPTIONS with AC_DEFINE.
* configure: Rebuilt.
* configure.in (EXCEPTIONSPEC): Changed `_' to `-' in
sjlj-exceptions.
1999-11-18 Andrew Haley <aph@cygnus.com>
* Makefile.am: rename SJLJ_EXCEPTIONS to EXCEPTIONSPEC.
(AM_CFLAGS): remove SJLJ_EXCEPTIONS.
(JC1FLAGS): Ditto.
* Makefile.in: Rebuild
* acconfig.h: remove SJLJ_EXCEPTIONS
* configure.in: rename SJLJ_EXCEPTIONS to EXCEPTIONSPEC.
Do not AC_DEFINE SJLJ_EXCEPTIONS.
* libgcj.spec.in: Add EXCEPTIONSPEC to jc1.
* gcj/Makefile.in, include/Makefile.in: rebuild.
* include/config.h.in: remove SJLJ_EXCEPTIONS.
1999-11-18 Andrew Haley <aph@cygnus.com>
* gij.cc (main): Rename label to prevent conflict.
* exception.cc (_Jv_type_matcher): Don't check the table if we're
using setjmp/longjmp exceptions: there isn't one.
1999-11-17 Andrew Haley <aph@cygnus.com>
* exception.cc (_Jv_type_matcher): Ignore null exception tables.
(_Jv_Throw ): Add SJLJ_EXCEPTIONS.
(__sjthrow): Add declaration.
* Makefile.am (JCFLAGS): Add SJLJ_EXCEPTIONS
(JC1FLAGS): Ditto
(AM_CFLAGS): Ditto
(AM_CXXFLAGS): Ditto
* Makefile.in: Rebuild
* acconfig.h: Add SJLJ_EXCEPTIONS
* configure.in: Add SJLJ_EXCEPTIONS
* configure: Rebuild.
* gcj/Makefile.in: Rebuild.
* gcj/cni.h: Add support for sjlj-exceptions.
* gcj/javaprims.h: Add _Jv_Sjlj_Throw.
* include/Makefile.in: Rebuild.
* include/default-signal.h: Add support for sjlj-exceptions.
1999-11-18 Tom Tromey <tromey@cygnus.com>
* no-threads.cc (_Jv_ThreadStart): Use JvFail and not JvAssert.
...
...
libjava/Makefile.am
View file @
3cf88fb4
...
...
@@ -69,15 +69,16 @@ JAVAC = $(GCJ) -C
EH_COMMON_INCLUDE
=
@EH_COMMON_INCLUDE@
WARNINGS
=
-W
-Wall
AM_CXXFLAGS
=
-fno-rtti
-fvtable-thunks
@LIBGCJ_CXXFLAGS@
$(WARNINGS)
AM_CXXFLAGS
=
-fno-rtti
-fvtable-thunks
@LIBGCJ_CXXFLAGS@ @EXCEPTIONSPEC@
\
$(WARNINGS)
if
USING_GCC
AM_CFLAGS
=
@LIBGCJ_CFLAGS@
$(WARNINGS)
else
AM_CFLAGS
=
@LIBGCJ_CFLAGS@
endif
JCFLAGS
=
-g
JC1FLAGS
=
-g
@LIBGCJ_JAVAFLAGS@
JCFLAGS
=
-g
-L
$(here)
JC1FLAGS
=
-g
-L
$(here)
@LIBGCJ_JAVAFLAGS@
LIBFFIINCS
=
-I
$(top_srcdir)
/../libffi/include
-I
../libffi/include
...
...
@@ -85,8 +86,6 @@ INCLUDES = -I$(top_srcdir) -Iinclude -I$(top_srcdir)/include \
$(GCINCS)
$(THREADINCS)
\
$(EH_COMMON_INCLUDE)
$(ZINCS)
$(LIBFFIINCS)
DIVIDESPEC
=
@DIVIDESPEC@
## ################################################################
...
...
libjava/Makefile.in
View file @
3cf88fb4
...
...
@@ -71,7 +71,9 @@ COMPPATH = @COMPPATH@
CPP
=
@CPP@
CXX
=
@CXX@
CXXCPP
=
@CXXCPP@
DIVIDESPEC
=
@DIVIDESPEC@
DLLTOOL
=
@DLLTOOL@
EXCEPTIONSPEC
=
@EXCEPTIONSPEC@
EXEEXT
=
@EXEEXT@
GCDEPS
=
@GCDEPS@
GCINCS
=
@GCINCS@
...
...
@@ -148,14 +150,16 @@ JAVAC = $(GCJ) -C
EH_COMMON_INCLUDE
=
@EH_COMMON_INCLUDE@
WARNINGS
=
-W
-Wall
AM_CXXFLAGS
=
-fno-rtti
-fvtable-thunks
@LIBGCJ_CXXFLAGS@
$(WARNINGS)
AM_CXXFLAGS
=
-fno-rtti
-fvtable-thunks
@LIBGCJ_CXXFLAGS@ @EXCEPTIONSPEC@
\
$(WARNINGS)
@USING_GCC_TRUE@
AM_CFLAGS
=
\
@USING_GCC_TRUE@@LIBGCJ_CFLAGS@
$(WARNINGS)
@USING_GCC_FALSE@
AM_CFLAGS
=
\
@USING_GCC_FALSE@@LIBGCJ_CFLAGS@
JCFLAGS
=
-g
JC1FLAGS
=
-g
@LIBGCJ_JAVAFLAGS@
JCFLAGS
=
-g
-L
$(here)
JC1FLAGS
=
-g
-L
$(here)
@LIBGCJ_JAVAFLAGS@
LIBFFIINCS
=
-I
$(top_srcdir)
/../libffi/include
-I
../libffi/include
...
...
@@ -164,8 +168,6 @@ INCLUDES = -I$(top_srcdir) -Iinclude -I$(top_srcdir)/include \
$(EH_COMMON_INCLUDE)
$(ZINCS)
$(LIBFFIINCS)
DIVIDESPEC
=
@DIVIDESPEC@
nat_files
=
$
(
nat_source_files:.cc
=
.lo
)
c_files
=
$
(
c_source_files:.c
=
.lo
)
javao_files
=
$
(
java_source_files:.java
=
.lo
)
\
...
...
@@ -708,8 +710,7 @@ LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) -o $@
DATA
=
$(data_DATA)
$(toolexeclib_DATA)
DIST_COMMON
=
README COPYING.LIB ChangeLog Makefile.am Makefile.in NEWS
\
THANKS acconfig.h acinclude.m4 aclocal.m4 configure configure.in
\
include/config.h.in include/stamp-h.in libgcj.spec.in
THANKS acinclude.m4 aclocal.m4 configure configure.in libgcj.spec.in
DISTFILES
=
$(DIST_COMMON)
$(SOURCES)
$(HEADERS)
$(TEXINFOS)
$(EXTRA_DIST)
...
...
@@ -931,34 +932,6 @@ config.status: $(srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
$(SHELL)
./config.status
--recheck
$(srcdir)/configure
:
@MAINTAINER_MODE_TRUE@$(srcdir)/configure.in $(ACLOCAL_M4) $(CONFIGURE_DEPENDENCIES)
cd
$(srcdir)
&&
$(AUTOCONF)
include/config.h
:
include/stamp-h
@
if
test
!
-f
$@
;
then
\
rm
-f
include/stamp-h
;
\
$(MAKE)
include/stamp-h
;
\
else
:
;
fi
include/stamp-h
:
$(srcdir)/include/config.h.in $(top_builddir)/config.status
cd
$(top_builddir)
\
&&
CONFIG_FILES
=
CONFIG_HEADERS
=
include/config.h
\
$(SHELL)
./config.status
@
echo
timestamp
>
include/stamp-h 2> /dev/null
$(srcdir)/include/config.h.in
:
@MAINTAINER_MODE_TRUE@$(srcdir)/include/stamp-h.in
@
if
test
!
-f
$@
;
then
\
rm
-f
$(srcdir)
/include/stamp-h.in
;
\
$(MAKE)
$(srcdir)
/include/stamp-h.in
;
\
else
:
;
fi
$(srcdir)/include/stamp-h.in
:
$(top_srcdir)/configure.in $(ACLOCAL_M4) acconfig.h
cd
$(top_srcdir)
&&
$(AUTOHEADER)
@
echo
timestamp
>
$(srcdir)
/include/stamp-h.in 2> /dev/null
mostlyclean-hdr
:
clean-hdr
:
distclean-hdr
:
-
rm
-f
include/config.h
maintainer-clean-hdr
:
libgcj.spec
:
$(top_builddir)/config.status libgcj.spec.in
cd
$(top_builddir)
&&
CONFIG_FILES
=
$@
CONFIG_HEADERS
=
$(SHELL)
./config.status
...
...
@@ -1357,32 +1330,29 @@ distclean-generic:
-
rm
-f
config.cache config.log stamp-h stamp-h[0-9]
*
maintainer-clean-generic
:
mostlyclean-am
:
mostlyclean-
hdr mostlyclean-toolexeclibLTLIBRARIES
\
mostlyclean-
compile mostlyclean-libtool
\
mostlyclean-
binPROGRAMS mostlyclean-noinstPROGRAMS
\
mostlyclean-
tags mostlyclean-
depend mostlyclean-generic
mostlyclean-am
:
mostlyclean-
toolexeclibLTLIBRARIES mostlyclean-compile
\
mostlyclean-
libtool mostlyclean-binPROGRAMS
\
mostlyclean-
noinstPROGRAMS mostlyclean-tags
\
mostlyclean-depend mostlyclean-generic
mostlyclean
:
mostlyclean-recursive
clean-am
:
clean-hdr clean-toolexeclibLTLIBRARIES clean-compile
\
clean-libtool clean-binPROGRAMS clean-noinstPROGRAMS
\
clean-tags clean-depend clean-generic mostlyclean-am
\
clean-local
clean-am
:
clean-toolexeclibLTLIBRARIES clean-compile clean-libtool
\
clean-binPROGRAMS clean-noinstPROGRAMS clean-tags
\
clean-depend clean-generic mostlyclean-am clean-local
clean
:
clean-recursive
distclean-am
:
distclean-hdr distclean-toolexeclibLTLIBRARIES
\
distclean-compile distclean-libtool
\
distclean-binPROGRAMS distclean-noinstPROGRAMS
\
distclean-tags distclean-depend distclean-generic
\
clean-am
distclean-am
:
distclean-toolexeclibLTLIBRARIES distclean-compile
\
distclean-libtool distclean-binPROGRAMS
\
distclean-noinstPROGRAMS distclean-tags
\
distclean-depend distclean-generic clean-am
-
rm
-f
libtool
distclean
:
distclean-recursive
-
rm
-f
config.status
maintainer-clean-am
:
maintainer-clean-hdr
\
maintainer-clean-toolexeclibLTLIBRARIES
\
maintainer-clean-am
:
maintainer-clean-toolexeclibLTLIBRARIES
\
maintainer-clean-compile maintainer-clean-libtool
\
maintainer-clean-binPROGRAMS
\
maintainer-clean-noinstPROGRAMS maintainer-clean-tags
\
...
...
@@ -1394,9 +1364,9 @@ maintainer-clean-am: maintainer-clean-hdr \
maintainer-clean
:
maintainer-clean-recursive
-
rm
-f
config.status
.PHONY
:
mostlyclean-
hdr distclean-hdr clean-hdr maintainer-clean-hdr
\
mostlyclean-toolexeclibLTLIBRARIES dist
clean-toolexeclibLTLIBRARIES
\
clean-toolexeclibLTLIBRARIES
maintainer-clean-toolexeclibLTLIBRARIES
\
.PHONY
:
mostlyclean-
toolexeclibLTLIBRARIES
\
distclean-toolexeclibLTLIBRARIES
clean-toolexeclibLTLIBRARIES
\
maintainer-clean-toolexeclibLTLIBRARIES
\
uninstall-toolexeclibLTLIBRARIES install-toolexeclibLTLIBRARIES
\
mostlyclean-compile distclean-compile clean-compile
\
maintainer-clean-compile mostlyclean-libtool distclean-libtool
\
...
...
libjava/acconfig.h
View file @
3cf88fb4
...
...
@@ -116,3 +116,6 @@
/* Define if system properties shouldn't be read from
getenv("GCJ_PROPERTIES"). */
#undef DISABLE_GETENV_PROPERTIES
/* Define if using setjmp/longjmp exceptions. */
#undef SJLJ_EXCEPTIONS
libjava/configure
View file @
3cf88fb4
...
...
@@ -30,7 +30,7 @@ ac_help="$ac_help
ac_help
=
"
$ac_help
--with-gnu-ld assume the C compiler uses GNU ld [default=no]"
ac_help
=
"
$ac_help
--disable-libtool-lock
force libtool not to do file locking
"
--disable-libtool-lock
avoid locking (might break parallel builds)
"
ac_help
=
"
$ac_help
--enable-fast-character prefer speed over size for Character"
ac_help
=
"
$ac_help
...
...
@@ -41,6 +41,8 @@ ac_help="$ac_help
ac_help
=
"
$ac_help
--enable-interpreter enable interpreter"
ac_help
=
"
$ac_help
--enable-sjlj-exceptions use setjmp/longjmp exceptions"
ac_help
=
"
$ac_help
--disable-java-net disable java.net"
ac_help
=
"
$ac_help
--with-ecos enable runtime eCos target support"
...
...
@@ -67,6 +69,7 @@ program_suffix=NONE
program_transform_name
=
s,x,x,
silent
=
site
=
sitefile
=
srcdir
=
target
=
NONE
verbose
=
...
...
@@ -181,6 +184,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
...
...
@@ -351,6 +355,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
=
*
)
...
...
@@ -516,12 +525,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
...
...
@@ -609,7 +622,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:6
13
: checking host system type"
>
&5
echo
"configure:6
26
: checking host system type"
>
&5
host_alias
=
$host
case
"
$host_alias
"
in
...
...
@@ -630,7 +643,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:6
34
: checking target system type"
>
&5
echo
"configure:6
47
: checking target system type"
>
&5
target_alias
=
$target
case
"
$target_alias
"
in
...
...
@@ -648,7 +661,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:6
52
: checking build system type"
>
&5
echo
"configure:6
65
: checking build system type"
>
&5
build_alias
=
$build
case
"
$build_alias
"
in
...
...
@@ -696,7 +709,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:7
00
: checking for a BSD compatible install"
>
&5
echo
"configure:7
13
: 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
...
...
@@ -749,7 +762,7 @@ test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL_PROGRAM}'
test
-z
"
$INSTALL_DATA
"
&&
INSTALL_DATA
=
'${INSTALL} -m 644'
echo
$ac_n
"checking whether build environment is sane""...
$ac_c
"
1>&6
echo
"configure:7
53
: checking whether build environment is sane"
>
&5
echo
"configure:7
66
: checking whether build environment is sane"
>
&5
# Just in case
sleep 1
echo
timestamp
>
conftestfile
...
...
@@ -806,7 +819,7 @@ test "$program_suffix" != NONE &&
test
"
$program_transform_name
"
=
""
&&
program_transform_name
=
"s,x,x,"
echo
$ac_n
"checking whether
${
MAKE
-make
}
sets
\$
{MAKE}""...
$ac_c
"
1>&6
echo
"configure:8
10
: checking whether
${
MAKE
-make
}
sets
\$
{MAKE}"
>
&5
echo
"configure:8
23
: 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
...
...
@@ -839,12 +852,12 @@ else
fi
echo
$ac_n
"checking for Cygwin environment""...
$ac_c
"
1>&6
echo
"configure:8
43
: checking for Cygwin environment"
>
&5
echo
"configure:8
56
: checking for Cygwin environment"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_cygwin
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
cat
>
conftest.
$ac_ext
<<
EOF
#line 8
48
"configure"
#line 8
61
"configure"
#include "confdefs.h"
int main() {
...
...
@@ -855,7 +868,7 @@ int main() {
return __CYGWIN__;
; return 0; }
EOF
if
{
(
eval echo
configure:8
59
:
\"
$ac_compile
\"
)
1>&5
;
(
eval
$ac_compile
)
2>&5
;
}
;
then
if
{
(
eval echo
configure:8
72
:
\"
$ac_compile
\"
)
1>&5
;
(
eval
$ac_compile
)
2>&5
;
}
;
then
rm
-rf
conftest
*
ac_cv_cygwin
=
yes
else
...
...
@@ -872,19 +885,19 @@ echo "$ac_t""$ac_cv_cygwin" 1>&6
CYGWIN
=
test
"
$ac_cv_cygwin
"
=
yes
&&
CYGWIN
=
yes
echo
$ac_n
"checking for mingw32 environment""...
$ac_c
"
1>&6
echo
"configure:8
76
: checking for mingw32 environment"
>
&5
echo
"configure:8
89
: checking for mingw32 environment"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_mingw32
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
cat
>
conftest.
$ac_ext
<<
EOF
#line 8
81
"configure"
#line 8
94
"configure"
#include "confdefs.h"
int main() {
return __MINGW32__;
; return 0; }
EOF
if
{
(
eval echo
configure:
888
:
\"
$ac_compile
\"
)
1>&5
;
(
eval
$ac_compile
)
2>&5
;
}
;
then
if
{
(
eval echo
configure:
901
:
\"
$ac_compile
\"
)
1>&5
;
(
eval
$ac_compile
)
2>&5
;
}
;
then
rm
-rf
conftest
*
ac_cv_mingw32
=
yes
else
...
...
@@ -932,7 +945,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:9
36
: checking host system type"
>
&5
echo
"configure:9
49
: checking host system type"
>
&5
host_alias
=
$host
case
"
$host_alias
"
in
...
...
@@ -974,7 +987,7 @@ EOF
missing_dir
=
`
cd
$ac_aux_dir
&&
pwd
`
echo
$ac_n
"checking for working aclocal""...
$ac_c
"
1>&6
echo
"configure:9
78
: checking for working aclocal"
>
&5
echo
"configure:9
91
: checking for working aclocal"
>
&5
# Run test in a subshell; some versions of sh will print an error if
# an executable is not found, even if stderr is redirected.
# Redirect stdin to placate older versions of autoconf. Sigh.
...
...
@@ -987,7 +1000,7 @@ else
fi
echo
$ac_n
"checking for working autoconf""...
$ac_c
"
1>&6
echo
"configure:
991
: checking for working autoconf"
>
&5
echo
"configure:
1004
: checking for working autoconf"
>
&5
# Run test in a subshell; some versions of sh will print an error if
# an executable is not found, even if stderr is redirected.
# Redirect stdin to placate older versions of autoconf. Sigh.
...
...
@@ -1000,7 +1013,7 @@ else
fi
echo
$ac_n
"checking for working automake""...
$ac_c
"
1>&6
echo
"configure:10
04
: checking for working automake"
>
&5
echo
"configure:10
17
: checking for working automake"
>
&5
# Run test in a subshell; some versions of sh will print an error if
# an executable is not found, even if stderr is redirected.
# Redirect stdin to placate older versions of autoconf. Sigh.
...
...
@@ -1013,7 +1026,7 @@ else
fi
echo
$ac_n
"checking for working autoheader""...
$ac_c
"
1>&6
echo
"configure:10
17
: checking for working autoheader"
>
&5
echo
"configure:10
30
: checking for working autoheader"
>
&5
# Run test in a subshell; some versions of sh will print an error if
# an executable is not found, even if stderr is redirected.
# Redirect stdin to placate older versions of autoconf. Sigh.
...
...
@@ -1026,7 +1039,7 @@ else
fi
echo
$ac_n
"checking for working makeinfo""...
$ac_c
"
1>&6
echo
"configure:10
30
: checking for working makeinfo"
>
&5
echo
"configure:10
43
: checking for working makeinfo"
>
&5
# Run test in a subshell; some versions of sh will print an error if
# an executable is not found, even if stderr is redirected.
# Redirect stdin to placate older versions of autoconf. Sigh.
...
...
@@ -1052,7 +1065,7 @@ fi
# 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:10
56
: checking for
$ac_word
"
>
&5
echo
"configure:10
69
: 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
...
...
@@ -1082,7 +1095,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:10
86
: checking for
$ac_word
"
>
&5
echo
"configure:10
99
: 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
...
...
@@ -1131,7 +1144,7 @@ fi
fi
echo
$ac_n
"checking whether we are using GNU C""...
$ac_c
"
1>&6
echo
"configure:11
35
: checking whether we are using GNU C"
>
&5
echo
"configure:11
48
: 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
...
...
@@ -1140,7 +1153,7 @@ else
yes;
#endif
EOF
if
{
ac_try
=
'${CC-cc} -E conftest.c'
;
{
(
eval echo
configure:11
44
:
\"
$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:11
57
:
\"
$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
...
...
@@ -1155,7 +1168,7 @@ if test $ac_cv_prog_gcc = yes; then
ac_save_CFLAGS
=
"
$CFLAGS
"
CFLAGS
=
echo
$ac_n
"checking whether
${
CC
-cc
}
accepts -g""...
$ac_c
"
1>&6
echo
"configure:11
59
: checking whether
${
CC
-cc
}
accepts -g"
>
&5
echo
"configure:11
72
: 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
...
...
@@ -1192,7 +1205,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:1
196
: checking for
$ac_word
"
>
&5
echo
"configure:1
209
: checking for
$ac_word
"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_prog_CXX
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
...
...
@@ -1225,7 +1238,7 @@ test -n "$CXX" || CXX="gcc"
test
-z
"
$CXX
"
&&
{
echo
"configure: error: no acceptable c++ found in
\$
PATH"
1>&2
;
exit
1
;
}
echo
$ac_n
"checking whether we are using GNU C++""...
$ac_c
"
1>&6
echo
"configure:12
29
: checking whether we are using GNU C++"
>
&5
echo
"configure:12
42
: checking whether we are using GNU C++"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_prog_gxx
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
...
...
@@ -1234,7 +1247,7 @@ else
yes;
#endif
EOF
if
{
ac_try
=
'${CXX-g++} -E conftest.C'
;
{
(
eval echo
configure:12
38
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
;
}
| egrep yes
>
/dev/null 2>&1
;
then
if
{
ac_try
=
'${CXX-g++} -E conftest.C'
;
{
(
eval echo
configure:12
51
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
;
}
| egrep yes
>
/dev/null 2>&1
;
then
ac_cv_prog_gxx
=
yes
else
ac_cv_prog_gxx
=
no
...
...
@@ -1249,7 +1262,7 @@ if test $ac_cv_prog_gxx = yes; then
ac_save_CXXFLAGS
=
"
$CXXFLAGS
"
CXXFLAGS
=
echo
$ac_n
"checking whether
${
CXX
-g++
}
accepts -g""...
$ac_c
"
1>&6
echo
"configure:12
53
: checking whether
${
CXX
-g++
}
accepts -g"
>
&5
echo
"configure:12
66
: checking whether
${
CXX
-g++
}
accepts -g"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_prog_cxx_g
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
...
...
@@ -1282,7 +1295,7 @@ fi
# LIBGCJ_CONFIGURE, which doesn't work because that means that it will
# be run before AC_CANONICAL_HOST.
echo
$ac_n
"checking build system type""...
$ac_c
"
1>&6
echo
"configure:12
86
: checking build system type"
>
&5
echo
"configure:12
99
: checking build system type"
>
&5
build_alias
=
$build
case
"
$build_alias
"
in
...
...
@@ -1303,7 +1316,7 @@ echo "$ac_t""$build" 1>&6
# Extract the first word of "${ac_tool_prefix}as", so it can be a program name with args.
set
dummy
${
ac_tool_prefix
}
as
;
ac_word
=
$2
echo
$ac_n
"checking for
$ac_word
""...
$ac_c
"
1>&6
echo
"configure:13
07
: checking for
$ac_word
"
>
&5
echo
"configure:13
20
: checking for
$ac_word
"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_prog_AS
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
...
...
@@ -1335,7 +1348,7 @@ fi
# Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args.
set
dummy
${
ac_tool_prefix
}
ar
;
ac_word
=
$2
echo
$ac_n
"checking for
$ac_word
""...
$ac_c
"
1>&6
echo
"configure:13
39
: checking for
$ac_word
"
>
&5
echo
"configure:13
52
: checking for
$ac_word
"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_prog_AR
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
...
...
@@ -1367,7 +1380,7 @@ fi
# Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args.
set
dummy
${
ac_tool_prefix
}
ranlib
;
ac_word
=
$2
echo
$ac_n
"checking for
$ac_word
""...
$ac_c
"
1>&6
echo
"configure:13
71
: checking for
$ac_word
"
>
&5
echo
"configure:13
84
: 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
...
...
@@ -1399,7 +1412,7 @@ if test -n "$ac_tool_prefix"; then
# 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:14
03
: checking for
$ac_word
"
>
&5
echo
"configure:14
16
: 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
...
...
@@ -1444,7 +1457,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:14
48
: checking for a BSD compatible install"
>
&5
echo
"configure:14
61
: 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
...
...
@@ -1498,7 +1511,7 @@ test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
echo
$ac_n
"checking whether to enable maintainer-specific portions of Makefiles""...
$ac_c
"
1>&6
echo
"configure:15
02
: checking whether to enable maintainer-specific portions of Makefiles"
>
&5
echo
"configure:15
15
: 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
"
...
...
@@ -1532,7 +1545,7 @@ if false; then
echo
$ac_n
"checking for executable suffix""...
$ac_c
"
1>&6
echo
"configure:15
36
: checking for executable suffix"
>
&5
echo
"configure:15
49
: checking for executable suffix"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_exeext
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
...
...
@@ -1542,7 +1555,7 @@ else
rm
-f
conftest
*
echo
'int main () { return 0; }'
>
conftest.
$ac_ext
ac_cv_exeext
=
if
{
(
eval echo
configure:15
46
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
;
then
if
{
(
eval echo
configure:15
59
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
;
then
for
file
in
conftest.
*
;
do
case
$file
in
*
.c
|
*
.o
|
*
.obj
|
*
.ilk
|
*
.pdb
)
;;
...
...
@@ -1664,7 +1677,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:16
68
: checking for
$ac_word
"
>
&5
echo
"configure:16
81
: 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
...
...
@@ -1703,11 +1716,11 @@ ac_prog=ld
if
test
"
$ac_cv_prog_gcc
"
=
yes
;
then
# Check if gcc -print-prog-name=ld gives a path.
echo
$ac_n
"checking for ld used by GCC""...
$ac_c
"
1>&6
echo
"configure:17
07
: checking for ld used by GCC"
>
&5
echo
"configure:17
20
: checking for ld used by GCC"
>
&5
ac_prog
=
`
(
$CC
-print-prog-name
=
ld
)
2>&5
`
case
"
$ac_prog
"
in
# Accept absolute paths.
/
*
|
[
A-Za-z]:[
\\
/]
*
)
[
\\
/]
*
|
[
A-Za-z]:[
\\
/]
*
)
re_direlt
=
'/[^/][^/]*/\.\./'
# Canonicalize the path of ld
ac_prog
=
`
echo
$ac_prog
| sed
's%\\\\%/%g'
`
...
...
@@ -1727,19 +1740,19 @@ echo "configure:1707: checking for ld used by GCC" >&5
esac
elif
test
"
$with_gnu_ld
"
=
yes
;
then
echo
$ac_n
"checking for GNU ld""...
$ac_c
"
1>&6
echo
"configure:17
31
: checking for GNU ld"
>
&5
echo
"configure:17
44
: checking for GNU ld"
>
&5
else
echo
$ac_n
"checking for non-GNU ld""...
$ac_c
"
1>&6
echo
"configure:17
34
: checking for non-GNU ld"
>
&5
echo
"configure:17
47
: checking for non-GNU ld"
>
&5
fi
if
eval
"test
\"
`
echo
'$''{'
ac_cv_path_LD
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
if
test
-z
"
$LD
"
;
then
IFS
=
"
${
IFS
=
}
"
;
ac_save_ifs
=
"
$IFS
"
;
IFS
=
"
${
IFS
}
:
"
IFS
=
"
${
IFS
=
}
"
;
ac_save_ifs
=
"
$IFS
"
;
IFS
=
"
${
IFS
}
${
PATH_SEPARATOR
-
:
}
"
for
ac_dir
in
$PATH
;
do
test
-z
"
$ac_dir
"
&&
ac_dir
=
.
if
test
-f
"
$ac_dir
/
$ac_prog
"
;
then
if
test
-f
"
$ac_dir
/
$ac_prog
"
||
test
-f
"
$ac_dir
/
$ac_prog$ac_exeext
"
;
then
ac_cv_path_LD
=
"
$ac_dir
/
$ac_prog
"
# Check to see if the program is GNU ld. I'd rather use --version,
# but apparently some GNU ld's only accept -v.
...
...
@@ -1766,7 +1779,7 @@ fi
test
-z
"
$LD
"
&&
{
echo
"configure: error: no acceptable ld found in
\$
PATH"
1>&2
;
exit
1
;
}
echo
$ac_n
"checking if the linker (
$LD
) is GNU ld""...
$ac_c
"
1>&6
echo
"configure:17
70
: checking if the linker (
$LD
) is GNU ld"
>
&5
echo
"configure:17
83
: checking if the linker (
$LD
) is GNU ld"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_prog_gnu_ld
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
...
...
@@ -1782,7 +1795,7 @@ echo "$ac_t""$ac_cv_prog_gnu_ld" 1>&6
echo
$ac_n
"checking for BSD-compatible nm""...
$ac_c
"
1>&6
echo
"configure:17
86
: checking for BSD-compatible nm"
>
&5
echo
"configure:17
99
: checking for BSD-compatible nm"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_path_NM
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
...
...
@@ -1790,10 +1803,10 @@ else
# Let the user override the test.
ac_cv_path_NM
=
"
$NM
"
else
IFS
=
"
${
IFS
=
}
"
;
ac_save_ifs
=
"
$IFS
"
;
IFS
=
"
${
IFS
}
:
"
IFS
=
"
${
IFS
=
}
"
;
ac_save_ifs
=
"
$IFS
"
;
IFS
=
"
${
IFS
}
${
PATH_SEPARATOR
-
:
}
"
for
ac_dir
in
$PATH
/usr/ccs/bin /usr/ucb /bin
;
do
test
-z
"
$ac_dir
"
&&
ac_dir
=
.
if
test
-f
$ac_dir
/nm
;
then
if
test
-f
$ac_dir
/nm
||
test
-f
$ac_dir
/nm
$ac_exeext
;
then
# Check to see if the nm accepts a BSD-compat flag.
# Adding the `sed 1q' prevents false positives on HP-UX, which says:
# nm: unknown option "B" ignored
...
...
@@ -1818,212 +1831,8 @@ NM="$ac_cv_path_NM"
echo
"
$ac_t
""
$NM
"
1>&6
# Check for command to grab the raw symbol name followed by C symbol from nm.
echo
$ac_n
"checking command to parse
$NM
output""...
$ac_c
"
1>&6
echo
"configure:1824: checking command to parse
$NM
output"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_sys_global_symbol_pipe
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
# These are sane defaults that work on at least a few old systems.
# {They come from Ultrix. What could be older than Ultrix?!! ;)}
# Character class describing NM global symbol codes.
ac_symcode
=
'[BCDEGRST]'
# Regexp to match symbols that can be accessed directly from C.
ac_sympat
=
'\([_A-Za-z][_A-Za-z0-9]*\)'
# Transform the above into a raw symbol and a C symbol.
ac_symxfrm
=
'\1 \2\3 \3'
# Transform an extracted symbol line into a proper C declaration
ac_global_symbol_to_cdecl
=
"sed -n -e 's/^. .*
\(
.*
\)
$/
extern char
\1
;/p'"
# Define system-specific variables.
case
"
$host_os
"
in
aix
*
)
ac_symcode
=
'[BCDT]'
;;
cygwin
*
|
mingw
*
)
ac_symcode
=
'[ABCDGISTW]'
;;
hpux
*
)
ac_global_symbol_to_cdecl
=
"sed -n -e 's/^T .*
\(
.*
\)
$/
extern char
\1
();/p' -e 's/^. .*
\(
.*
\)
$/
extern char
\1
;/p'"
;;
irix
*
)
ac_symcode
=
'[BCDEGRST]'
;;
solaris
*
)
ac_symcode
=
'[BDT]'
;;
esac
# If we're using GNU nm, then use its standard symbol codes.
if
$NM
-V
2>&1 | egrep
'(GNU|with BFD)'
>
/dev/null
;
then
ac_symcode
=
'[ABCDGISTW]'
fi
# Try without a prefix undercore, then with it.
for
ac_symprfx
in
""
"_"
;
do
ac_cv_sys_global_symbol_pipe
=
"sed -n -e 's/^.*
\(
$ac_symcode
\)
*
\(
$ac_symprfx
\)
$ac_sympat$/$ac_symxfrm
/p'"
# Check to see that the pipe works correctly.
ac_pipe_works
=
no
rm
-f
conftest.
$ac_ext
cat
>
conftest.
$ac_ext
<<
EOF
#ifdef __cplusplus
extern "C" {
#endif
char nm_test_var;
void nm_test_func(){}
#ifdef __cplusplus
}
#endif
int main(){nm_test_var='a';nm_test_func;return 0;}
EOF
if
{
(
eval echo
configure:1887:
\"
$ac_compile
\"
)
1>&5
;
(
eval
$ac_compile
)
2>&5
;
}
;
then
# Now try to grab the symbols.
ac_nlist
=
conftest.nm
if
{
(
eval echo
configure:1891:
\"
$NM
conftest.
$ac_objext
\|
$ac_cv_sys_global_symbol_pipe
\>
$ac_nlist
\"
)
1>&5
;
(
eval
$NM
conftest.
$ac_objext
\|
$ac_cv_sys_global_symbol_pipe
\>
$ac_nlist
)
2>&5
;
}
&&
test
-s
"
$ac_nlist
"
;
then
# Try sorting and uniquifying the output.
if
sort
"
$ac_nlist
"
| uniq
>
"
$ac_nlist
"
T
;
then
mv
-f
"
$ac_nlist
"
T
"
$ac_nlist
"
else
rm
-f
"
$ac_nlist
"
T
fi
# Make sure that we snagged all the symbols we need.
if
egrep
' nm_test_var$'
"
$ac_nlist
"
>
/dev/null
;
then
if
egrep
' nm_test_func$'
"
$ac_nlist
"
>
/dev/null
;
then
cat
<<
EOF
> conftest.c
#ifdef __cplusplus
extern "C" {
#endif
EOF
# Now generate the symbol file.
eval
"
$ac_global_symbol_to_cdecl
"
' < "$ac_nlist" >> conftest.c'
cat
<<
EOF
>> conftest.c
#if defined (__STDC__) && __STDC__
# define lt_ptr_t void *
#else
# define lt_ptr_t char *
# define const
#endif
/* The mapping between symbol names and symbols. */
const struct {
const char *name;
lt_ptr_t address;
}
lt_preloaded_symbols[] =
{
EOF
sed
's/^. \(.*\) \(.*\)$/ {"\2", (lt_ptr_t) \&\2},/'
<
"
$ac_nlist
"
>>
conftest.c
cat
<<
\
EOF
>> conftest.c
{0, (lt_ptr_t) 0}
};
#ifdef __cplusplus
}
#endif
EOF
# Now try linking the two files.
mv conftest.
$ac_objext
conftestm.
$ac_objext
ac_save_LIBS
=
"
$LIBS
"
ac_save_CFLAGS
=
"
$CFLAGS
"
LIBS
=
"conftestm.
$ac_objext
"
CFLAGS
=
"
$CFLAGS$no_builtin_flag
"
if
{
(
eval echo
configure:1943:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
;
then
ac_pipe_works
=
yes
else
echo
"configure: failed program was:"
>
&5
cat
conftest.c
>
&5
fi
LIBS
=
"
$ac_save_LIBS
"
CFLAGS
=
"
$ac_save_CFLAGS
"
else
echo
"cannot find nm_test_func in
$ac_nlist
"
>
&5
fi
else
echo
"cannot find nm_test_var in
$ac_nlist
"
>
&5
fi
else
echo
"cannot run
$ac_cv_sys_global_symbol_pipe
"
>
&5
fi
else
echo
"
$progname
: failed program was:"
>
&5
cat
conftest.c
>
&5
fi
rm
-rf
conftest
*
# Do not use the global_symbol_pipe unless it works.
if
test
"
$ac_pipe_works
"
=
yes
;
then
if
test
x
"
$ac_symprfx
"
=
x
"_"
;
then
ac_cv_sys_symbol_underscore
=
yes
else
ac_cv_sys_symbol_underscore
=
no
fi
break
else
ac_cv_sys_global_symbol_pipe
=
fi
done
fi
ac_result
=
yes
if
test
-z
"
$ac_cv_sys_global_symbol_pipe
"
;
then
ac_result
=
no
fi
echo
"
$ac_t
""
$ac_result
"
1>&6
echo
$ac_n
"checking for _ prefix in compiled symbols""...
$ac_c
"
1>&6
echo
"configure:1989: checking for _ prefix in compiled symbols"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_sys_symbol_underscore
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
ac_cv_sys_symbol_underscore
=
no
cat
>
conftest.
$ac_ext
<<
EOF
void nm_test_func(){}
int main(){nm_test_func;return 0;}
EOF
if
{
(
eval echo
configure:1998:
\"
$ac_compile
\"
)
1>&5
;
(
eval
$ac_compile
)
2>&5
;
}
;
then
# Now try to grab the symbols.
ac_nlist
=
conftest.nm
if
{
(
eval echo
configure:2001:
\"
$NM
conftest.
$ac_objext
\|
$ac_cv_sys_global_symbol_pipe
\>
$ac_nlist
\"
)
1>&5
;
(
eval
$NM
conftest.
$ac_objext
\|
$ac_cv_sys_global_symbol_pipe
\>
$ac_nlist
)
2>&5
;
}
&&
test
-s
"
$ac_nlist
"
;
then
# See whether the symbols have a leading underscore.
if
egrep
'^. _nm_test_func'
"
$ac_nlist
"
>
/dev/null
;
then
ac_cv_sys_symbol_underscore
=
yes
else
if
egrep
'^. nm_test_func '
"
$ac_nlist
"
>
/dev/null
;
then
:
else
echo
"configure: cannot find nm_test_func in
$ac_nlist
"
>
&5
fi
fi
else
echo
"configure: cannot run
$ac_cv_sys_global_symbol_pipe
"
>
&5
fi
else
echo
"configure: failed program was:"
>
&5
cat
conftest.c
>
&5
fi
rm
-rf
conftest
*
fi
echo
"
$ac_t
""
$ac_cv_sys_symbol_underscore
"
1>&6
USE_SYMBOL_UNDERSCORE
=
${
ac_cv_sys_symbol_underscore
=no
}
echo
$ac_n
"checking whether ln -s works""...
$ac_c
"
1>&6
echo
"configure:
2027
: checking whether ln -s works"
>
&5
echo
"configure:
1836
: checking whether ln -s works"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_prog_LN_S
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
...
...
@@ -2049,18 +1858,26 @@ libtool_flags="--cache-file=$cache_file"
test
"
$enable_shared
"
=
no
&&
libtool_flags
=
"
$libtool_flags
--disable-shared"
test
"
$enable_static
"
=
no
&&
libtool_flags
=
"
$libtool_flags
--disable-static"
test
"
$enable_fast_install
"
=
no
&&
libtool_flags
=
"
$libtool_flags
--disable-fast-install"
test
"
$lt_dlopen
"
=
yes
&&
libtool_flags
=
"
$libtool_flags
--enable-dlopen"
test
"
$silent
"
=
yes
&&
libtool_flags
=
"
$libtool_flags
--silent"
test
"
$ac_cv_prog_gcc
"
=
yes
&&
libtool_flags
=
"
$libtool_flags
--with-gcc"
test
"
$ac_cv_prog_gnu_ld
"
=
yes
&&
libtool_flags
=
"
$libtool_flags
--with-gnu-ld"
# Check whether --enable-libtool-lock or --disable-libtool-lock was given.
if
test
"
${
enable_libtool_lock
+set
}
"
=
set
;
then
enableval
=
"
$enable_libtool_lock
"
:
fi
test
"x
$enable_libtool_lock
"
=
xno
&&
libtool_flags
=
"
$libtool_flags
--disable-lock"
test
x
"
$silent
"
=
xyes
&&
libtool_flags
=
"
$libtool_flags
--silent"
# Some flags need to be propagated to the compiler or linker for good
# libtool support.
case
"
$host
"
in
*
-
*
-irix6
*
)
# Find out which ABI we are using.
echo
'#line
2063
"configure"'
>
conftest.
$ac_ext
if
{
(
eval echo
configure:
2064
:
\"
$ac_compile
\"
)
1>&5
;
(
eval
$ac_compile
)
2>&5
;
}
;
then
echo
'#line
1880
"configure"'
>
conftest.
$ac_ext
if
{
(
eval echo
configure:
1881
:
\"
$ac_compile
\"
)
1>&5
;
(
eval
$ac_compile
)
2>&5
;
}
;
then
case
"
`
/usr/bin/file conftest.o
`
"
in
*
32-bit
*
)
LD
=
"
${
LD
-ld
}
-32"
...
...
@@ -2081,19 +1898,19 @@ case "$host" in
SAVE_CFLAGS
=
"
$CFLAGS
"
CFLAGS
=
"
$CFLAGS
-belf"
echo
$ac_n
"checking whether the C compiler needs -belf""...
$ac_c
"
1>&6
echo
"configure:
2085
: checking whether the C compiler needs -belf"
>
&5
echo
"configure:
1902
: checking whether the C compiler needs -belf"
>
&5
if
eval
"test
\"
`
echo
'$''{'
lt_cv_cc_needs_belf
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
cat
>
conftest.
$ac_ext
<<
EOF
#line
2090
"configure"
#line
1907
"configure"
#include "confdefs.h"
int main() {
; return 0; }
EOF
if
{
(
eval echo
configure:
2097
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
if
{
(
eval echo
configure:
1914
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
rm
-rf
conftest
*
lt_cv_cc_needs_belf
=
yes
else
...
...
@@ -2112,161 +1929,9 @@ echo "$ac_t""$lt_cv_cc_needs_belf" 1>&6
fi
;;
*
-
*
-cygwin
*
)
# Extract the first word of "${ac_tool_prefix}dlltool", so it can be a program name with args.
set
dummy
${
ac_tool_prefix
}
dlltool
;
ac_word
=
$2
echo
$ac_n
"checking for
$ac_word
""...
$ac_c
"
1>&6
echo
"configure:2120: checking for
$ac_word
"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_prog_DLLTOOL
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
if
test
-n
"
$DLLTOOL
"
;
then
ac_cv_prog_DLLTOOL
=
"
$DLLTOOL
"
# Let the user override the test.
else
IFS
=
"
${
IFS
=
}
"
;
ac_save_ifs
=
"
$IFS
"
;
IFS
=
":"
ac_dummy
=
"
$PATH
"
for
ac_dir
in
$ac_dummy
;
do
test
-z
"
$ac_dir
"
&&
ac_dir
=
.
if
test
-f
$ac_dir
/
$ac_word
;
then
ac_cv_prog_DLLTOOL
=
"
${
ac_tool_prefix
}
dlltool"
break
fi
done
IFS
=
"
$ac_save_ifs
"
fi
fi
DLLTOOL
=
"
$ac_cv_prog_DLLTOOL
"
if
test
-n
"
$DLLTOOL
"
;
then
echo
"
$ac_t
""
$DLLTOOL
"
1>&6
else
echo
"
$ac_t
""no"
1>&6
fi
if
test
-z
"
$ac_cv_prog_DLLTOOL
"
;
then
if
test
-n
"
$ac_tool_prefix
"
;
then
# Extract the first word of "dlltool", so it can be a program name with args.
set
dummy dlltool
;
ac_word
=
$2
echo
$ac_n
"checking for
$ac_word
""...
$ac_c
"
1>&6
echo
"configure:2152: checking for
$ac_word
"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_prog_DLLTOOL
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
if
test
-n
"
$DLLTOOL
"
;
then
ac_cv_prog_DLLTOOL
=
"
$DLLTOOL
"
# Let the user override the test.
else
IFS
=
"
${
IFS
=
}
"
;
ac_save_ifs
=
"
$IFS
"
;
IFS
=
":"
ac_dummy
=
"
$PATH
"
for
ac_dir
in
$ac_dummy
;
do
test
-z
"
$ac_dir
"
&&
ac_dir
=
.
if
test
-f
$ac_dir
/
$ac_word
;
then
ac_cv_prog_DLLTOOL
=
"dlltool"
break
fi
done
IFS
=
"
$ac_save_ifs
"
test
-z
"
$ac_cv_prog_DLLTOOL
"
&&
ac_cv_prog_DLLTOOL
=
"false"
fi
fi
DLLTOOL
=
"
$ac_cv_prog_DLLTOOL
"
if
test
-n
"
$DLLTOOL
"
;
then
echo
"
$ac_t
""
$DLLTOOL
"
1>&6
else
echo
"
$ac_t
""no"
1>&6
fi
else
DLLTOOL
=
"false"
fi
fi
# Extract the first word of "${ac_tool_prefix}as", so it can be a program name with args.
set
dummy
${
ac_tool_prefix
}
as
;
ac_word
=
$2
echo
$ac_n
"checking for
$ac_word
""...
$ac_c
"
1>&6
echo
"configure:2187: checking for
$ac_word
"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_prog_AS
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
if
test
-n
"
$AS
"
;
then
ac_cv_prog_AS
=
"
$AS
"
# Let the user override the test.
else
IFS
=
"
${
IFS
=
}
"
;
ac_save_ifs
=
"
$IFS
"
;
IFS
=
":"
ac_dummy
=
"
$PATH
"
for
ac_dir
in
$ac_dummy
;
do
test
-z
"
$ac_dir
"
&&
ac_dir
=
.
if
test
-f
$ac_dir
/
$ac_word
;
then
ac_cv_prog_AS
=
"
${
ac_tool_prefix
}
as"
break
fi
done
IFS
=
"
$ac_save_ifs
"
fi
fi
AS
=
"
$ac_cv_prog_AS
"
if
test
-n
"
$AS
"
;
then
echo
"
$ac_t
""
$AS
"
1>&6
else
echo
"
$ac_t
""no"
1>&6
fi
if
test
-z
"
$ac_cv_prog_AS
"
;
then
if
test
-n
"
$ac_tool_prefix
"
;
then
# Extract the first word of "as", so it can be a program name with args.
set
dummy as
;
ac_word
=
$2
echo
$ac_n
"checking for
$ac_word
""...
$ac_c
"
1>&6
echo
"configure:2219: checking for
$ac_word
"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_prog_AS
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
if
test
-n
"
$AS
"
;
then
ac_cv_prog_AS
=
"
$AS
"
# Let the user override the test.
else
IFS
=
"
${
IFS
=
}
"
;
ac_save_ifs
=
"
$IFS
"
;
IFS
=
":"
ac_dummy
=
"
$PATH
"
for
ac_dir
in
$ac_dummy
;
do
test
-z
"
$ac_dir
"
&&
ac_dir
=
.
if
test
-f
$ac_dir
/
$ac_word
;
then
ac_cv_prog_AS
=
"as"
break
fi
done
IFS
=
"
$ac_save_ifs
"
test
-z
"
$ac_cv_prog_AS
"
&&
ac_cv_prog_AS
=
"false"
fi
fi
AS
=
"
$ac_cv_prog_AS
"
if
test
-n
"
$AS
"
;
then
echo
"
$ac_t
""
$AS
"
1>&6
else
echo
"
$ac_t
""no"
1>&6
fi
else
AS
=
"false"
fi
fi
;;
esac
# enable the --disable-libtool-lock switch
# Check whether --enable-libtool-lock or --disable-libtool-lock was given.
if
test
"
${
enable_libtool_lock
+set
}
"
=
set
;
then
enableval
=
"
$enable_libtool_lock
"
need_locks
=
$enableval
else
need_locks
=
yes
fi
if
test
x
"
$need_locks
"
=
xno
;
then
libtool_flags
=
"
$libtool_flags
--disable-lock"
fi
# Save cache, so that ltconfig can load it
cat
>
confcache
<<
\
EOF
...
...
@@ -2319,8 +1984,9 @@ rm -f confcache
# Actually configure libtool. ac_aux_dir is where install-sh is found.
CC
=
"
$CC
"
CFLAGS
=
"
$CFLAGS
"
CPPFLAGS
=
"
$CPPFLAGS
"
\
LD
=
"
$LD
"
NM
=
"
$NM
"
RANLIB
=
"
$RANLIB
"
LN_S
=
"
$LN_S
"
\
DLLTOOL
=
"
$DLLTOOL
"
AS
=
"
$AS
"
\
LD
=
"
$LD
"
LDFLAGS
=
"
$LDFLAGS
"
LIBS
=
"
$LIBS
"
\
LN_S
=
"
$LN_S
"
NM
=
"
$NM
"
RANLIB
=
"
$RANLIB
"
\
DLLTOOL
=
"
$DLLTOOL
"
AS
=
"
$AS
"
OBJDUMP
=
"
$OBJDUMP
"
\
${
CONFIG_SHELL
-/bin/sh
}
$ac_aux_dir
/ltconfig
--no-reexec
\
$libtool_flags
--no-verify
$ac_aux_dir
/ltmain.sh
$host
\
||
{
echo
"configure: error: libtool configure failed"
1>&2
;
exit
1
;
}
...
...
@@ -2417,6 +2083,25 @@ EOF
fi
EXCEPTIONSPEC
=
# Check whether --enable-sjlj-exceptions or --disable-sjlj-exceptions was given.
if
test
"
${
enable_sjlj_exceptions
+set
}
"
=
set
;
then
enableval
=
"
$enable_sjlj_exceptions
"
if
test
"
$enable_sjlj_exceptions
"
=
yes
;
then
# This can be set in configure.host.
libgcj_sjlj
=
yes
fi
fi
if
test
"
$libgcj_sjlj
"
=
yes
;
then
EXCEPTIONSPEC
=
"-fsjlj-exceptions"
cat
>>
confdefs.h
<<
\
EOF
#define SJLJ_EXCEPTIONS 1
EOF
fi
# Check whether --enable-java-net or --disable-java-net was given.
if
test
"
${
enable_java_net
+set
}
"
=
set
;
then
enableval
=
"
$enable_java_net
"
...
...
@@ -2459,7 +2144,7 @@ EOF
esac
echo
$ac_n
"checking how to run the C preprocessor""...
$ac_c
"
1>&6
echo
"configure:2
463
: checking how to run the C preprocessor"
>
&5
echo
"configure:2
148
: checking how to run the C preprocessor"
>
&5
# On Suns, sometimes $CPP names a directory.
if
test
-n
"
$CPP
"
&&
test
-d
"
$CPP
"
;
then
CPP
=
...
...
@@ -2474,13 +2159,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 2
478
"configure"
#line 2
163
"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:2
484
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
{
(
eval echo
configure:2
169
:
\"
$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
:
...
...
@@ -2491,13 +2176,13 @@ else
rm
-rf
conftest
*
CPP
=
"
${
CC
-cc
}
-E -traditional-cpp"
cat
>
conftest.
$ac_ext
<<
EOF
#line 2
495
"configure"
#line 2
180
"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:2
501
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
{
(
eval echo
configure:2
186
:
\"
$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
:
...
...
@@ -2508,13 +2193,13 @@ else
rm
-rf
conftest
*
CPP
=
"
${
CC
-cc
}
-nologo -E"
cat
>
conftest.
$ac_ext
<<
EOF
#line 2
512
"configure"
#line 2
197
"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:2
518
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
{
(
eval echo
configure:2
203
:
\"
$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
:
...
...
@@ -2539,7 +2224,7 @@ fi
echo
"
$ac_t
""
$CPP
"
1>&6
cat
>
conftest.
$ac_ext
<<
EOF
#line 2
543
"configure"
#line 2
228
"configure"
#include "confdefs.h"
#include <stdint.h>
EOF
...
...
@@ -2554,7 +2239,7 @@ fi
rm
-f
conftest
*
cat
>
conftest.
$ac_ext
<<
EOF
#line 2
558
"configure"
#line 2
243
"configure"
#include "confdefs.h"
#include <inttypes.h>
EOF
...
...
@@ -2569,7 +2254,7 @@ fi
rm
-f
conftest
*
cat
>
conftest.
$ac_ext
<<
EOF
#line 2
573
"configure"
#line 2
258
"configure"
#include "confdefs.h"
#include <sys/types.h>
EOF
...
...
@@ -2584,7 +2269,7 @@ fi
rm
-f
conftest
*
cat
>
conftest.
$ac_ext
<<
EOF
#line 2
588
"configure"
#line 2
273
"configure"
#include "confdefs.h"
#include <sys/config.h>
EOF
...
...
@@ -2601,7 +2286,7 @@ rm -f conftest*
cat
>
conftest.
$ac_ext
<<
EOF
#line 2
605
"configure"
#line 2
290
"configure"
#include "confdefs.h"
#include <time.h>
EOF
...
...
@@ -2616,7 +2301,7 @@ fi
rm
-f
conftest
*
cat
>
conftest.
$ac_ext
<<
EOF
#line 2
620
"configure"
#line 2
305
"configure"
#include "confdefs.h"
#include <time.h>
EOF
...
...
@@ -2654,7 +2339,7 @@ ZLIBSPEC=
libsubdir
=
.libs
echo
$ac_n
"checking for garbage collector to use""...
$ac_c
"
1>&6
echo
"configure:2
658
: checking for garbage collector to use"
>
&5
echo
"configure:2
343
: checking for garbage collector to use"
>
&5
# Check whether --enable-java-gc or --disable-java-gc was given.
if
test
"
${
enable_java_gc
+set
}
"
=
set
;
then
enableval
=
"
$enable_java_gc
"
...
...
@@ -2704,7 +2389,7 @@ esac
echo
$ac_n
"checking for threads package to use""...
$ac_c
"
1>&6
echo
"configure:2
708
: checking for threads package to use"
>
&5
echo
"configure:2
393
: checking for threads package to use"
>
&5
# Check whether --enable-threads or --disable-threads was given.
if
test
"
${
enable_threads
+set
}
"
=
set
;
then
enableval
=
"
$enable_threads
"
...
...
@@ -2879,12 +2564,12 @@ else
for
ac_func
in
strerror ioctl
select
fstat open fsync sleep
do
echo
$ac_n
"checking for
$ac_func
""...
$ac_c
"
1>&6
echo
"configure:2
883
: checking for
$ac_func
"
>
&5
echo
"configure:2
568
: 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 2
888
"configure"
#line 2
573
"configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char
$ac_func
(); below. */
...
...
@@ -2907,7 +2592,7 @@ $ac_func();
; return 0; }
EOF
if
{
(
eval echo
configure:2
911
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
if
{
(
eval echo
configure:2
596
:
\"
$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
...
...
@@ -2934,12 +2619,12 @@ done
for
ac_func
in
gmtime_r localtime_r readdir_r getpwuid_r
do
echo
$ac_n
"checking for
$ac_func
""...
$ac_c
"
1>&6
echo
"configure:2
938
: checking for
$ac_func
"
>
&5
echo
"configure:2
623
: 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 2
943
"configure"
#line 2
628
"configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char
$ac_func
(); below. */
...
...
@@ -2962,7 +2647,7 @@ $ac_func();
; return 0; }
EOF
if
{
(
eval echo
configure:2
966
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
if
{
(
eval echo
configure:2
651
:
\"
$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
...
...
@@ -2989,12 +2674,12 @@ done
for
ac_func
in
access stat mkdir rename rmdir unlink realpath
do
echo
$ac_n
"checking for
$ac_func
""...
$ac_c
"
1>&6
echo
"configure:2
993
: checking for
$ac_func
"
>
&5
echo
"configure:2
678
: 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 2
998
"configure"
#line 2
683
"configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char
$ac_func
(); below. */
...
...
@@ -3017,7 +2702,7 @@ $ac_func();
; return 0; }
EOF
if
{
(
eval echo
configure:
3021
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
if
{
(
eval echo
configure:
2706
:
\"
$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
...
...
@@ -3044,12 +2729,12 @@ done
for
ac_func
in
inet_aton inet_addr
do
echo
$ac_n
"checking for
$ac_func
""...
$ac_c
"
1>&6
echo
"configure:
3048
: checking for
$ac_func
"
>
&5
echo
"configure:
2733
: 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
3053
"configure"
#line
2738
"configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char
$ac_func
(); below. */
...
...
@@ -3072,7 +2757,7 @@ $ac_func();
; return 0; }
EOF
if
{
(
eval echo
configure:
3076
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
if
{
(
eval echo
configure:
2761
:
\"
$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
...
...
@@ -3099,12 +2784,12 @@ done
for
ac_func
in
inet_pton uname inet_ntoa
do
echo
$ac_n
"checking for
$ac_func
""...
$ac_c
"
1>&6
echo
"configure:
3103
: checking for
$ac_func
"
>
&5
echo
"configure:
2788
: 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
3108
"configure"
#line
2793
"configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char
$ac_func
(); below. */
...
...
@@ -3127,7 +2812,7 @@ $ac_func();
; return 0; }
EOF
if
{
(
eval echo
configure:
3131
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
if
{
(
eval echo
configure:
2816
:
\"
$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
...
...
@@ -3155,12 +2840,12 @@ done
for
ac_func
in
gethostbyname_r
do
echo
$ac_n
"checking for
$ac_func
""...
$ac_c
"
1>&6
echo
"configure:
3159
: checking for
$ac_func
"
>
&5
echo
"configure:
2844
: 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
3164
"configure"
#line
2849
"configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char
$ac_func
(); below. */
...
...
@@ -3183,7 +2868,7 @@ $ac_func();
; return 0; }
EOF
if
{
(
eval echo
configure:
3187
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
if
{
(
eval echo
configure:
2872
:
\"
$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
...
...
@@ -3210,7 +2895,7 @@ EOF
# We look for the one that returns `int'.
# Hopefully this check is robust enough.
cat
>
conftest.
$ac_ext
<<
EOF
#line
3214
"configure"
#line
2899
"configure"
#include "confdefs.h"
#include <netdb.h>
EOF
...
...
@@ -3230,7 +2915,7 @@ rm -f conftest*
*
" -D_REENTRANT "
*
)
;;
*
)
echo
$ac_n
"checking whether gethostbyname_r declaration requires -D_REENTRANT""...
$ac_c
"
1>&6
echo
"configure:
3234
: checking whether gethostbyname_r declaration requires -D_REENTRANT"
>
&5
echo
"configure:
2919
: checking whether gethostbyname_r declaration requires -D_REENTRANT"
>
&5
if
eval
"test
\"
`
echo
'$''{'
libjava_cv_gethostbyname_r_needs_reentrant
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
...
...
@@ -3243,14 +2928,14 @@ ac_link='${CXX-g++} -o conftest${ac_exeext} $CXXFLAGS $CPPFLAGS $LDFLAGS conftes
cross_compiling
=
$ac_cv_prog_cxx_cross
cat
>
conftest.
$ac_ext
<<
EOF
#line
3247
"configure"
#line
2932
"configure"
#include "confdefs.h"
#include <netdb.h>
int main() {
gethostbyname_r("", 0, 0);
; return 0; }
EOF
if
{
(
eval echo
configure:
3254
:
\"
$ac_compile
\"
)
1>&5
;
(
eval
$ac_compile
)
2>&5
;
}
;
then
if
{
(
eval echo
configure:
2939
:
\"
$ac_compile
\"
)
1>&5
;
(
eval
$ac_compile
)
2>&5
;
}
;
then
rm
-rf
conftest
*
libjava_cv_gethostbyname_r_needs_reentrant
=
no
else
...
...
@@ -3260,14 +2945,14 @@ else
CPPFLAGS_SAVE
=
"
$CPPFLAGS
"
CPPFLAGS
=
"
$CPPFLAGS
-D_REENTRANT"
cat
>
conftest.
$ac_ext
<<
EOF
#line
3264
"configure"
#line
2949
"configure"
#include "confdefs.h"
#include <netdb.h>
int main() {
gethostbyname_r("", 0, 0);
; return 0; }
EOF
if
{
(
eval echo
configure:
3271
:
\"
$ac_compile
\"
)
1>&5
;
(
eval
$ac_compile
)
2>&5
;
}
;
then
if
{
(
eval echo
configure:
2956
:
\"
$ac_compile
\"
)
1>&5
;
(
eval
$ac_compile
)
2>&5
;
}
;
then
rm
-rf
conftest
*
libjava_cv_gethostbyname_r_needs_reentrant
=
yes
else
...
...
@@ -3302,12 +2987,12 @@ EOF
esac
echo
$ac_n
"checking for struct hostent_data""...
$ac_c
"
1>&6
echo
"configure:
3306
: checking for struct hostent_data"
>
&5
echo
"configure:
2991
: checking for struct hostent_data"
>
&5
if
eval
"test
\"
`
echo
'$''{'
libjava_cv_struct_hostent_data
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
cat
>
conftest.
$ac_ext
<<
EOF
#line
3311
"configure"
#line
2996
"configure"
#include "confdefs.h"
#if GETHOSTBYNAME_R_NEEDS_REENTRANT && !defined(_REENTRANT)
...
...
@@ -3318,7 +3003,7 @@ int main() {
struct hostent_data data;
; return 0; }
EOF
if
{
(
eval echo
configure:3
322
:
\"
$ac_compile
\"
)
1>&5
;
(
eval
$ac_compile
)
2>&5
;
}
;
then
if
{
(
eval echo
configure:3
007
:
\"
$ac_compile
\"
)
1>&5
;
(
eval
$ac_compile
)
2>&5
;
}
;
then
rm
-rf
conftest
*
libjava_cv_struct_hostent_data
=
yes
else
...
...
@@ -3347,12 +3032,12 @@ done
for
ac_func
in
gethostbyaddr_r
do
echo
$ac_n
"checking for
$ac_func
""...
$ac_c
"
1>&6
echo
"configure:3
351
: checking for
$ac_func
"
>
&5
echo
"configure:3
036
: 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 3
356
"configure"
#line 3
041
"configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char
$ac_func
(); below. */
...
...
@@ -3375,7 +3060,7 @@ $ac_func();
; return 0; }
EOF
if
{
(
eval echo
configure:3
379
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
if
{
(
eval echo
configure:3
064
:
\"
$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
...
...
@@ -3402,7 +3087,7 @@ EOF
# We look for the one that returns `int'.
# Hopefully this check is robust enough.
cat
>
conftest.
$ac_ext
<<
EOF
#line 3
406
"configure"
#line 3
091
"configure"
#include "confdefs.h"
#include <netdb.h>
EOF
...
...
@@ -3426,12 +3111,12 @@ done
for
ac_func
in
gethostname
do
echo
$ac_n
"checking for
$ac_func
""...
$ac_c
"
1>&6
echo
"configure:3
430
: checking for
$ac_func
"
>
&5
echo
"configure:3
115
: 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 3
435
"configure"
#line 3
120
"configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char
$ac_func
(); below. */
...
...
@@ -3454,7 +3139,7 @@ $ac_func();
; return 0; }
EOF
if
{
(
eval echo
configure:3
458
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
if
{
(
eval echo
configure:3
143
:
\"
$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
...
...
@@ -3478,7 +3163,7 @@ EOF
EOF
cat
>
conftest.
$ac_ext
<<
EOF
#line 3
482
"configure"
#line 3
167
"configure"
#include "confdefs.h"
#include <unistd.h>
EOF
...
...
@@ -3509,12 +3194,12 @@ done
for
ac_func
in
pthread_mutexattr_settype pthread_mutexattr_setkind_np
do
echo
$ac_n
"checking for
$ac_func
""...
$ac_c
"
1>&6
echo
"configure:3
513
: checking for
$ac_func
"
>
&5
echo
"configure:3
198
: 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 3
518
"configure"
#line 3
203
"configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char
$ac_func
(); below. */
...
...
@@ -3537,7 +3222,7 @@ $ac_func();
; return 0; }
EOF
if
{
(
eval echo
configure:3
541
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
if
{
(
eval echo
configure:3
226
:
\"
$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
...
...
@@ -3567,12 +3252,12 @@ done
for
ac_func
in
sched_yield
do
echo
$ac_n
"checking for
$ac_func
""...
$ac_c
"
1>&6
echo
"configure:3
571
: checking for
$ac_func
"
>
&5
echo
"configure:3
256
: 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 3
576
"configure"
#line 3
261
"configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char
$ac_func
(); below. */
...
...
@@ -3595,7 +3280,7 @@ $ac_func();
; return 0; }
EOF
if
{
(
eval echo
configure:3
599
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
if
{
(
eval echo
configure:3
284
:
\"
$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
...
...
@@ -3617,7 +3302,7 @@ EOF
else
echo
"
$ac_t
""no"
1>&6
echo
$ac_n
"checking for sched_yield in -lrt""...
$ac_c
"
1>&6
echo
"configure:3
621
: checking for sched_yield in -lrt"
>
&5
echo
"configure:3
306
: checking for sched_yield in -lrt"
>
&5
ac_lib_var
=
`
echo
rt
'_'
sched_yield | sed
'y%./+-%__p_%'
`
if
eval
"test
\"
`
echo
'$''{'
ac_cv_lib_
$ac_lib_var
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
...
...
@@ -3625,7 +3310,7 @@ else
ac_save_LIBS
=
"
$LIBS
"
LIBS
=
"-lrt
$LIBS
"
cat
>
conftest.
$ac_ext
<<
EOF
#line 3
629
"configure"
#line 3
314
"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
...
...
@@ -3636,7 +3321,7 @@ int main() {
sched_yield()
; return 0; }
EOF
if
{
(
eval echo
configure:3
640
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
if
{
(
eval echo
configure:3
325
:
\"
$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
...
...
@@ -3662,7 +3347,7 @@ else
echo
"
$ac_t
""no"
1>&6
echo
$ac_n
"checking for sched_yield in -lposix4""...
$ac_c
"
1>&6
echo
"configure:3
666
: checking for sched_yield in -lposix4"
>
&5
echo
"configure:3
351
: checking for sched_yield in -lposix4"
>
&5
ac_lib_var
=
`
echo
posix4
'_'
sched_yield | sed
'y%./+-%__p_%'
`
if
eval
"test
\"
`
echo
'$''{'
ac_cv_lib_
$ac_lib_var
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
...
...
@@ -3670,7 +3355,7 @@ else
ac_save_LIBS
=
"
$LIBS
"
LIBS
=
"-lposix4
$LIBS
"
cat
>
conftest.
$ac_ext
<<
EOF
#line 3
674
"configure"
#line 3
359
"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
...
...
@@ -3681,7 +3366,7 @@ int main() {
sched_yield()
; return 0; }
EOF
if
{
(
eval echo
configure:3
685
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
if
{
(
eval echo
configure:3
370
:
\"
$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
...
...
@@ -3717,7 +3402,7 @@ done
# We can save a little space at runtime if the mutex has m_count
# or __m_count. This is a nice hack for Linux.
cat
>
conftest.
$ac_ext
<<
EOF
#line 3
721
"configure"
#line 3
406
"configure"
#include "confdefs.h"
#include <pthread.h>
int main() {
...
...
@@ -3726,7 +3411,7 @@ int main() {
; return 0; }
EOF
if
{
(
eval echo
configure:3
730
:
\"
$ac_compile
\"
)
1>&5
;
(
eval
$ac_compile
)
2>&5
;
}
;
then
if
{
(
eval echo
configure:3
415
:
\"
$ac_compile
\"
)
1>&5
;
(
eval
$ac_compile
)
2>&5
;
}
;
then
rm
-rf
conftest
*
cat
>>
confdefs.h
<<
\
EOF
#define PTHREAD_MUTEX_HAVE_M_COUNT 1
...
...
@@ -3738,7 +3423,7 @@ else
rm
-rf
conftest
*
cat
>
conftest.
$ac_ext
<<
EOF
#line 3
742
"configure"
#line 3
427
"configure"
#include "confdefs.h"
#include <pthread.h>
int main() {
...
...
@@ -3747,7 +3432,7 @@ int main() {
; return 0; }
EOF
if
{
(
eval echo
configure:3
751
:
\"
$ac_compile
\"
)
1>&5
;
(
eval
$ac_compile
)
2>&5
;
}
;
then
if
{
(
eval echo
configure:3
436
:
\"
$ac_compile
\"
)
1>&5
;
(
eval
$ac_compile
)
2>&5
;
}
;
then
rm
-rf
conftest
*
cat
>>
confdefs.h
<<
\
EOF
#define PTHREAD_MUTEX_HAVE___M_COUNT 1
...
...
@@ -3767,12 +3452,12 @@ rm -f conftest*
for
ac_func
in
gettimeofday
time
ftime
do
echo
$ac_n
"checking for
$ac_func
""...
$ac_c
"
1>&6
echo
"configure:3
771
: checking for
$ac_func
"
>
&5
echo
"configure:3
456
: 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 3
776
"configure"
#line 3
461
"configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char
$ac_func
(); below. */
...
...
@@ -3795,7 +3480,7 @@ $ac_func();
; return 0; }
EOF
if
{
(
eval echo
configure:3
799
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
if
{
(
eval echo
configure:3
484
:
\"
$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
...
...
@@ -3826,12 +3511,12 @@ done
for
ac_func
in
memmove
do
echo
$ac_n
"checking for
$ac_func
""...
$ac_c
"
1>&6
echo
"configure:3
830
: checking for
$ac_func
"
>
&5
echo
"configure:3
515
: 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 3
835
"configure"
#line 3
520
"configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char
$ac_func
(); below. */
...
...
@@ -3854,7 +3539,7 @@ $ac_func();
; return 0; }
EOF
if
{
(
eval echo
configure:3
858
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
if
{
(
eval echo
configure:3
543
:
\"
$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
...
...
@@ -3884,12 +3569,12 @@ done
for
ac_func
in
memcpy
do
echo
$ac_n
"checking for
$ac_func
""...
$ac_c
"
1>&6
echo
"configure:3
888
: checking for
$ac_func
"
>
&5
echo
"configure:3
573
: 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 3
893
"configure"
#line 3
578
"configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char
$ac_func
(); below. */
...
...
@@ -3912,7 +3597,7 @@ $ac_func();
; return 0; }
EOF
if
{
(
eval echo
configure:3
916
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
if
{
(
eval echo
configure:3
601
:
\"
$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
...
...
@@ -3960,7 +3645,7 @@ done
#--------------------------------------------------------------------
echo
$ac_n
"checking for socket libraries""...
$ac_c
"
1>&6
echo
"configure:3
964
: checking for socket libraries"
>
&5
echo
"configure:3
649
: checking for socket libraries"
>
&5
if
eval
"test
\"
`
echo
'$''{'
gcj_cv_lib_sockets
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
...
...
@@ -3968,12 +3653,12 @@ else
gcj_checkBoth
=
0
unset
ac_cv_func_connect
echo
$ac_n
"checking for connect""...
$ac_c
"
1>&6
echo
"configure:3
972
: checking for connect"
>
&5
echo
"configure:3
657
: checking for connect"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_func_connect
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
cat
>
conftest.
$ac_ext
<<
EOF
#line 3
977
"configure"
#line 3
662
"configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char connect(); below. */
...
...
@@ -3996,7 +3681,7 @@ connect();
; return 0; }
EOF
if
{
(
eval echo
configure:
4000
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
if
{
(
eval echo
configure:
3685
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
rm
-rf
conftest
*
eval
"ac_cv_func_connect=yes"
else
...
...
@@ -4019,7 +3704,7 @@ fi
if
test
"
$gcj_checkSocket
"
=
1
;
then
unset
ac_cv_func_connect
echo
$ac_n
"checking for main in -lsocket""...
$ac_c
"
1>&6
echo
"configure:
4023
: checking for main in -lsocket"
>
&5
echo
"configure:
3708
: checking for main in -lsocket"
>
&5
ac_lib_var
=
`
echo
socket
'_'
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
...
...
@@ -4027,14 +3712,14 @@ else
ac_save_LIBS
=
"
$LIBS
"
LIBS
=
"-lsocket
$LIBS
"
cat
>
conftest.
$ac_ext
<<
EOF
#line
4031
"configure"
#line
3716
"configure"
#include "confdefs.h"
int main() {
main()
; return 0; }
EOF
if
{
(
eval echo
configure:
4038
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
if
{
(
eval echo
configure:
3723
:
\"
$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
...
...
@@ -4061,12 +3746,12 @@ fi
LIBS
=
"
$LIBS
-lsocket -lnsl"
unset
ac_cv_func_accept
echo
$ac_n
"checking for accept""...
$ac_c
"
1>&6
echo
"configure:
4065
: checking for accept"
>
&5
echo
"configure:
3750
: checking for accept"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_func_accept
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
cat
>
conftest.
$ac_ext
<<
EOF
#line
4070
"configure"
#line
3755
"configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char accept(); below. */
...
...
@@ -4089,7 +3774,7 @@ accept();
; return 0; }
EOF
if
{
(
eval echo
configure:
4093
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
if
{
(
eval echo
configure:
3778
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
rm
-rf
conftest
*
eval
"ac_cv_func_accept=yes"
else
...
...
@@ -4116,12 +3801,12 @@ fi
gcj_oldLibs
=
$LIBS
LIBS
=
"
$LIBS
$gcj_cv_lib_sockets
"
echo
$ac_n
"checking for gethostbyname""...
$ac_c
"
1>&6
echo
"configure:
4120
: checking for gethostbyname"
>
&5
echo
"configure:
3805
: checking for gethostbyname"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_func_gethostbyname
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
cat
>
conftest.
$ac_ext
<<
EOF
#line
4125
"configure"
#line
3810
"configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char gethostbyname(); below. */
...
...
@@ -4144,7 +3829,7 @@ gethostbyname();
; return 0; }
EOF
if
{
(
eval echo
configure:
4148
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
if
{
(
eval echo
configure:
3833
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
rm
-rf
conftest
*
eval
"ac_cv_func_gethostbyname=yes"
else
...
...
@@ -4162,7 +3847,7 @@ if eval "test \"`echo '$ac_cv_func_'gethostbyname`\" = yes"; then
else
echo
"
$ac_t
""no"
1>&6
echo
$ac_n
"checking for main in -lnsl""...
$ac_c
"
1>&6
echo
"configure:
4166
: checking for main in -lnsl"
>
&5
echo
"configure:
3851
: checking for main in -lnsl"
>
&5
ac_lib_var
=
`
echo
nsl
'_'
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
...
...
@@ -4170,14 +3855,14 @@ else
ac_save_LIBS
=
"
$LIBS
"
LIBS
=
"-lnsl
$LIBS
"
cat
>
conftest.
$ac_ext
<<
EOF
#line
4174
"configure"
#line
3859
"configure"
#include "confdefs.h"
int main() {
main()
; return 0; }
EOF
if
{
(
eval echo
configure:
4181
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
if
{
(
eval echo
configure:
3866
:
\"
$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
...
...
@@ -4209,7 +3894,7 @@ echo "$ac_t""$gcj_cv_lib_sockets" 1>&6
if
test
"
$with_system_zlib
"
=
yes
;
then
echo
$ac_n
"checking for deflate in -lz""...
$ac_c
"
1>&6
echo
"configure:
4213
: checking for deflate in -lz"
>
&5
echo
"configure:
3898
: checking for deflate in -lz"
>
&5
ac_lib_var
=
`
echo
z
'_'
deflate | sed
'y%./+-%__p_%'
`
if
eval
"test
\"
`
echo
'$''{'
ac_cv_lib_
$ac_lib_var
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
...
...
@@ -4217,7 +3902,7 @@ else
ac_save_LIBS
=
"
$LIBS
"
LIBS
=
"-lz
$LIBS
"
cat
>
conftest.
$ac_ext
<<
EOF
#line
4221
"configure"
#line
3906
"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
...
...
@@ -4228,7 +3913,7 @@ int main() {
deflate()
; return 0; }
EOF
if
{
(
eval echo
configure:
4232
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
if
{
(
eval echo
configure:
3917
:
\"
$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
...
...
@@ -4257,7 +3942,7 @@ fi
# requires -ldl.
if
test
"
$GC
"
=
boehm
;
then
echo
$ac_n
"checking for main in -ldl""...
$ac_c
"
1>&6
echo
"configure:
4261
: checking for main in -ldl"
>
&5
echo
"configure:
3946
: checking for main in -ldl"
>
&5
ac_lib_var
=
`
echo
dl
'_'
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
...
...
@@ -4265,14 +3950,14 @@ else
ac_save_LIBS
=
"
$LIBS
"
LIBS
=
"-ldl
$LIBS
"
cat
>
conftest.
$ac_ext
<<
EOF
#line
4269
"configure"
#line
3954
"configure"
#include "confdefs.h"
int main() {
main()
; return 0; }
EOF
if
{
(
eval echo
configure:
4276
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
if
{
(
eval echo
configure:
3961
:
\"
$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
...
...
@@ -4322,6 +4007,7 @@ fi
if
test
"
$CANADIAN
"
=
yes
;
then
CANADIAN_TRUE
=
CANADIAN_FALSE
=
'#'
...
...
@@ -4381,7 +4067,7 @@ EOF
# See if gcj supports -fuse-divide-subroutine. gcc 2.95 does not, and
# we want to continue to support that version.
echo
$ac_n
"checking whether gcj supports -fuse-divide-subroutine""...
$ac_c
"
1>&6
echo
"configure:4
385
: checking whether gcj supports -fuse-divide-subroutine"
>
&5
echo
"configure:4
071
: checking whether gcj supports -fuse-divide-subroutine"
>
&5
cat
>
conftest.java
<<
'
END
'
public class conftest { }
END
...
...
@@ -4401,17 +4087,17 @@ for ac_hdr in unistd.h bstring.h sys/time.h sys/types.h fcntl.h sys/ioctl.h sys/
do
ac_safe
=
`
echo
"
$ac_hdr
"
| sed
'y%./+-%__p_%'
`
echo
$ac_n
"checking for
$ac_hdr
""...
$ac_c
"
1>&6
echo
"configure:4
405
: checking for
$ac_hdr
"
>
&5
echo
"configure:4
091
: 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
410
"configure"
#line 4
096
"configure"
#include "confdefs.h"
#include <
$ac_hdr
>
EOF
ac_try
=
"
$ac_cpp
conftest.
$ac_ext
>/dev/null 2>conftest.out"
{
(
eval echo
configure:4
415
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
{
(
eval echo
configure:4
101
:
\"
$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
*
...
...
@@ -4441,17 +4127,17 @@ for ac_hdr in dirent.h
do
ac_safe
=
`
echo
"
$ac_hdr
"
| sed
'y%./+-%__p_%'
`
echo
$ac_n
"checking for
$ac_hdr
""...
$ac_c
"
1>&6
echo
"configure:4
445
: checking for
$ac_hdr
"
>
&5
echo
"configure:4
131
: 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
450
"configure"
#line 4
136
"configure"
#include "confdefs.h"
#include <
$ac_hdr
>
EOF
ac_try
=
"
$ac_cpp
conftest.
$ac_ext
>/dev/null 2>conftest.out"
{
(
eval echo
configure:4
455
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
{
(
eval echo
configure:4
141
:
\"
$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
*
...
...
@@ -4479,12 +4165,12 @@ done
echo
$ac_n
"checking for ANSI C header files""...
$ac_c
"
1>&6
echo
"configure:4
483
: checking for ANSI C header files"
>
&5
echo
"configure:4
169
: 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 4
488
"configure"
#line 4
174
"configure"
#include "confdefs.h"
#include <stdlib.h>
#include <stdarg.h>
...
...
@@ -4492,7 +4178,7 @@ else
#include <float.h>
EOF
ac_try
=
"
$ac_cpp
conftest.
$ac_ext
>/dev/null 2>conftest.out"
{
(
eval echo
configure:4
496
:
\"
$ac_try
\"
)
1>&5
;
(
eval
$ac_try
)
2>&5
;
}
{
(
eval echo
configure:4
182
:
\"
$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
*
...
...
@@ -4509,7 +4195,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 4
513
"configure"
#line 4
199
"configure"
#include "confdefs.h"
#include <string.h>
EOF
...
...
@@ -4527,7 +4213,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 4
531
"configure"
#line 4
217
"configure"
#include "confdefs.h"
#include <stdlib.h>
EOF
...
...
@@ -4548,7 +4234,7 @@ if test "$cross_compiling" = yes; then
:
else
cat
>
conftest.
$ac_ext
<<
EOF
#line 4
552
"configure"
#line 4
238
"configure"
#include "confdefs.h"
#include <ctype.h>
#define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
...
...
@@ -4559,7 +4245,7 @@ if (XOR (islower (i), ISLOWER (i)) || toupper (i) != TOUPPER (i)) exit(2);
exit (0); }
EOF
if
{
(
eval echo
configure:4
563
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
&&
(
./conftest
;
exit
)
2>/dev/null
if
{
(
eval echo
configure:4
249
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
&&
(
./conftest
;
exit
)
2>/dev/null
then
:
else
...
...
@@ -4583,12 +4269,12 @@ EOF
fi
echo
$ac_n
"checking for ssize_t""...
$ac_c
"
1>&6
echo
"configure:4
587
: checking for ssize_t"
>
&5
echo
"configure:4
273
: 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 4
592
"configure"
#line 4
278
"configure"
#include "confdefs.h"
#include <sys/types.h>
#if STDC_HEADERS
...
...
@@ -4617,9 +4303,9 @@ fi
echo
$ac_n
"checking for in_addr_t""...
$ac_c
"
1>&6
echo
"configure:4
621
: checking for in_addr_t"
>
&5
echo
"configure:4
307
: checking for in_addr_t"
>
&5
cat
>
conftest.
$ac_ext
<<
EOF
#line 4
623
"configure"
#line 4
309
"configure"
#include "confdefs.h"
#include <sys/types.h>
#if STDC_HEADERS
...
...
@@ -4633,7 +4319,7 @@ int main() {
in_addr_t foo;
; return 0; }
EOF
if
{
(
eval echo
configure:4
637
:
\"
$ac_compile
\"
)
1>&5
;
(
eval
$ac_compile
)
2>&5
;
}
;
then
if
{
(
eval echo
configure:4
323
:
\"
$ac_compile
\"
)
1>&5
;
(
eval
$ac_compile
)
2>&5
;
}
;
then
rm
-rf
conftest
*
cat
>>
confdefs.h
<<
\
EOF
#define HAVE_IN_ADDR_T 1
...
...
@@ -4649,16 +4335,16 @@ fi
rm
-f
conftest
*
echo
$ac_n
"checking whether struct ip_mreq is in netinet/in.h""...
$ac_c
"
1>&6
echo
"configure:4
653
: checking whether struct ip_mreq is in netinet/in.h"
>
&5
echo
"configure:4
339
: checking whether struct ip_mreq is in netinet/in.h"
>
&5
cat
>
conftest.
$ac_ext
<<
EOF
#line 4
655
"configure"
#line 4
341
"configure"
#include "confdefs.h"
#include <netinet/in.h>
int main() {
struct ip_mreq mreq;
; return 0; }
EOF
if
{
(
eval echo
configure:4
662
:
\"
$ac_compile
\"
)
1>&5
;
(
eval
$ac_compile
)
2>&5
;
}
;
then
if
{
(
eval echo
configure:4
348
:
\"
$ac_compile
\"
)
1>&5
;
(
eval
$ac_compile
)
2>&5
;
}
;
then
rm
-rf
conftest
*
cat
>>
confdefs.h
<<
\
EOF
#define HAVE_STRUCT_IP_MREQ 1
...
...
@@ -4674,16 +4360,16 @@ fi
rm
-f
conftest
*
echo
$ac_n
"checking whether struct sockaddr_in6 is in netinet/in.h""...
$ac_c
"
1>&6
echo
"configure:4
678
: checking whether struct sockaddr_in6 is in netinet/in.h"
>
&5
echo
"configure:4
364
: checking whether struct sockaddr_in6 is in netinet/in.h"
>
&5
cat
>
conftest.
$ac_ext
<<
EOF
#line 4
680
"configure"
#line 4
366
"configure"
#include "confdefs.h"
#include <netinet/in.h>
int main() {
struct sockaddr_in6 addr6;
; return 0; }
EOF
if
{
(
eval echo
configure:4
687
:
\"
$ac_compile
\"
)
1>&5
;
(
eval
$ac_compile
)
2>&5
;
}
;
then
if
{
(
eval echo
configure:4
373
:
\"
$ac_compile
\"
)
1>&5
;
(
eval
$ac_compile
)
2>&5
;
}
;
then
rm
-rf
conftest
*
cat
>>
confdefs.h
<<
\
EOF
#define HAVE_INET6 1
...
...
@@ -4699,16 +4385,16 @@ fi
rm
-f
conftest
*
echo
$ac_n
"checking for socklen_t in sys/socket.h""...
$ac_c
"
1>&6
echo
"configure:4
703
: checking for socklen_t in sys/socket.h"
>
&5
echo
"configure:4
389
: checking for socklen_t in sys/socket.h"
>
&5
cat
>
conftest.
$ac_ext
<<
EOF
#line 4
705
"configure"
#line 4
391
"configure"
#include "confdefs.h"
#include <sys/socket.h>
int main() {
socklen_t x = 5;
; return 0; }
EOF
if
{
(
eval echo
configure:4
712
:
\"
$ac_compile
\"
)
1>&5
;
(
eval
$ac_compile
)
2>&5
;
}
;
then
if
{
(
eval echo
configure:4
398
:
\"
$ac_compile
\"
)
1>&5
;
(
eval
$ac_compile
)
2>&5
;
}
;
then
rm
-rf
conftest
*
cat
>>
confdefs.h
<<
\
EOF
#define HAVE_SOCKLEN_T 1
...
...
@@ -4724,16 +4410,16 @@ fi
rm
-f
conftest
*
echo
$ac_n
"checking for tm_gmtoff in struct tm""...
$ac_c
"
1>&6
echo
"configure:4
728
: checking for tm_gmtoff in struct tm"
>
&5
echo
"configure:4
414
: checking for tm_gmtoff in struct tm"
>
&5
cat
>
conftest.
$ac_ext
<<
EOF
#line 4
730
"configure"
#line 4
416
"configure"
#include "confdefs.h"
#include <time.h>
int main() {
struct tm tim; tim.tm_gmtoff = 0;
; return 0; }
EOF
if
{
(
eval echo
configure:4
737
:
\"
$ac_compile
\"
)
1>&5
;
(
eval
$ac_compile
)
2>&5
;
}
;
then
if
{
(
eval echo
configure:4
423
:
\"
$ac_compile
\"
)
1>&5
;
(
eval
$ac_compile
)
2>&5
;
}
;
then
rm
-rf
conftest
*
cat
>>
confdefs.h
<<
\
EOF
#define STRUCT_TM_HAS_GMTOFF 1
...
...
@@ -4746,16 +4432,16 @@ else
rm
-rf
conftest
*
echo
"
$ac_t
""no"
1>&6
echo
$ac_n
"checking for global timezone variable""...
$ac_c
"
1>&6
echo
"configure:4
750
: checking for global timezone variable"
>
&5
echo
"configure:4
436
: checking for global timezone variable"
>
&5
cat
>
conftest.
$ac_ext
<<
EOF
#line 4
752
"configure"
#line 4
438
"configure"
#include "confdefs.h"
#include <time.h>
int main() {
long z2 = timezone;
; return 0; }
EOF
if
{
(
eval echo
configure:4
759
:
\"
$ac_compile
\"
)
1>&5
;
(
eval
$ac_compile
)
2>&5
;
}
;
then
if
{
(
eval echo
configure:4
445
:
\"
$ac_compile
\"
)
1>&5
;
(
eval
$ac_compile
)
2>&5
;
}
;
then
rm
-rf
conftest
*
cat
>>
confdefs.h
<<
\
EOF
#define HAVE_TIMEZONE 1
...
...
@@ -4775,19 +4461,19 @@ rm -f conftest*
# 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:4
779
: checking for working alloca.h"
>
&5
echo
"configure:4
465
: 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 4
784
"configure"
#line 4
470
"configure"
#include "confdefs.h"
#include <alloca.h>
int main() {
char *p = alloca(2 * sizeof(int));
; return 0; }
EOF
if
{
(
eval echo
configure:4
791
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
if
{
(
eval echo
configure:4
477
:
\"
$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
...
...
@@ -4808,12 +4494,12 @@ EOF
fi
echo
$ac_n
"checking for alloca""...
$ac_c
"
1>&6
echo
"configure:4
812
: checking for alloca"
>
&5
echo
"configure:4
498
: 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
817
"configure"
#line 4
503
"configure"
#include "confdefs.h"
#ifdef __GNUC__
...
...
@@ -4841,7 +4527,7 @@ int main() {
char *p = (char *) alloca(1);
; return 0; }
EOF
if
{
(
eval echo
configure:4
845
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
if
{
(
eval echo
configure:4
531
:
\"
$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
...
...
@@ -4873,12 +4559,12 @@ EOF
echo
$ac_n
"checking whether alloca needs Cray hooks""...
$ac_c
"
1>&6
echo
"configure:4
877
: checking whether alloca needs Cray hooks"
>
&5
echo
"configure:4
563
: 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 4
882
"configure"
#line 4
568
"configure"
#include "confdefs.h"
#if defined(CRAY) && ! defined(CRAY2)
webecray
...
...
@@ -4903,12 +4589,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:4
907
: checking for
$ac_func
"
>
&5
echo
"configure:4
593
: 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
912
"configure"
#line 4
598
"configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char
$ac_func
(); below. */
...
...
@@ -4931,7 +4617,7 @@ $ac_func();
; return 0; }
EOF
if
{
(
eval echo
configure:4
935
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
;
then
if
{
(
eval echo
configure:4
621
:
\"
$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
...
...
@@ -4958,7 +4644,7 @@ done
fi
echo
$ac_n
"checking stack direction for C alloca""...
$ac_c
"
1>&6
echo
"configure:4
962
: checking stack direction for C alloca"
>
&5
echo
"configure:4
648
: 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
...
...
@@ -4966,7 +4652,7 @@ else
ac_cv_c_stack_direction
=
0
else
cat
>
conftest.
$ac_ext
<<
EOF
#line 4
970
"configure"
#line 4
656
"configure"
#include "confdefs.h"
find_stack_direction ()
{
...
...
@@ -4985,7 +4671,7 @@ main ()
exit (find_stack_direction() < 0);
}
EOF
if
{
(
eval echo
configure:4
989
:
\"
$ac_link
\"
)
1>&5
;
(
eval
$ac_link
)
2>&5
;
}
&&
test
-s
conftest
${
ac_exeext
}
&&
(
./conftest
;
exit
)
2>/dev/null
if
{
(
eval echo
configure:4
675
:
\"
$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
...
...
@@ -5012,7 +4698,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:
5016
: checking for
$ac_word
"
>
&5
echo
"configure:
4702
: checking for
$ac_word
"
>
&5
if
eval
"test
\"
`
echo
'$''{'
ac_cv_prog_PERL
'+set}'
`
\"
= set"
;
then
echo
$ac_n
"(cached)
$ac_c
"
1>&6
else
...
...
@@ -5043,17 +4729,21 @@ done
test
-n
"
$PERL
"
||
PERL
=
"false"
case
"
${
host
}
"
in
i?86-
*
-linux
*
)
SIGNAL_HANDLER
=
include/i386-signal.h
;;
sparc-sun-solaris
*
)
SIGNAL_HANDLER
=
include/sparc-signal.h
;;
*
)
SIGNAL_HANDLER
=
include/default-signal.h
;;
esac
if
test
"
$enable_sjlj_exceptions
"
=
yes
;
then
SIGNAL_HANDLER
=
include/default-signal.h
else
case
"
${
host
}
"
in
i?86-
*
-linux
*
)
SIGNAL_HANDLER
=
include/i386-signal.h
;;
sparc-sun-solaris
*
)
SIGNAL_HANDLER
=
include/sparc-signal.h
;;
*
)
SIGNAL_HANDLER
=
include/default-signal.h
;;
esac
fi
...
...
@@ -5240,9 +4930,7 @@ s%@LIBGCJ_CXXFLAGS@%$LIBGCJ_CXXFLAGS%g
s%@LIBGCJ_JAVAFLAGS@%
$LIBGCJ_JAVAFLAGS
%g
s%@LD@%
$LD
%g
s%@NM@%
$NM
%g
s%@USE_SYMBOL_UNDERSCORE@%
$USE_SYMBOL_UNDERSCORE
%g
s%@LN_S@%
$LN_S
%g
s%@DLLTOOL@%
$DLLTOOL
%g
s%@LIBTOOL@%
$LIBTOOL
%g
s%@COMPPATH@%
$COMPPATH
%g
s%@TESTSUBDIR_TRUE@%
$TESTSUBDIR_TRUE
%g
...
...
@@ -5266,6 +4954,7 @@ s%@ZLIBS@%$ZLIBS%g
s%@ZDEPS@%
$ZDEPS
%g
s%@ZINCS@%
$ZINCS
%g
s%@DIVIDESPEC@%
$DIVIDESPEC
%g
s%@EXCEPTIONSPEC@%
$EXCEPTIONSPEC
%g
s%@CANADIAN_TRUE@%
$CANADIAN_TRUE
%g
s%@CANADIAN_FALSE@%
$CANADIAN_FALSE
%g
s%@NULL_TARGET_TRUE@%
$NULL_TARGET_TRUE
%g
...
...
libjava/configure.host
View file @
3cf88fb4
...
...
@@ -23,6 +23,7 @@ libgcj_flags=
libgcj_cflags=
libgcj_cxxflags=
libgcj_javaflags=
libgcj_sjlj=
case "${target_optspace}:${host}" in
yes:*)
...
...
@@ -59,7 +60,10 @@ case "${host}" in
libgcj_flags="${libgcj_flags} -ffloat-store"
DIVIDESPEC=-fno-use-divide-subroutine
;;
sparc-*)
;;
*)
libgcj_sjlj=yes
;;
esac
...
...
libjava/configure.in
View file @
3cf88fb4
...
...
@@ -57,13 +57,27 @@ AC_ARG_ENABLE(libgcj-debug,
AC_DEFINE(DEBUG)
fi)
dnl See if the user has the
e
nterpreter included.
dnl See if the user has the
i
nterpreter included.
AC_ARG_ENABLE(interpreter,
[ --enable-interpreter enable interpreter],
if test "$enable_interpreter" = yes; then
AC_DEFINE(INTERPRETER)
fi)
EXCEPTIONSPEC=
dnl See if we should use setjmp/longjmp exceptions
AC_ARG_ENABLE(sjlj-exceptions,
[ --enable-sjlj-exceptions use setjmp/longjmp exceptions],
if test "$enable_sjlj_exceptions" = yes; then
# This can be set in configure.host.
libgcj_sjlj=yes
fi)
if test "$libgcj_sjlj" = yes; then
EXCEPTIONSPEC="-fsjlj-exceptions"
AC_DEFINE(SJLJ_EXCEPTIONS)
fi
dnl See if the user wants to disable java.net. This is the mildly
dnl ugly way that we admit that target-side configuration sucks.
AC_ARG_ENABLE(java-net,
...
...
@@ -520,6 +534,7 @@ AC_SUBST(ZLIBS)
AC_SUBST(ZDEPS)
AC_SUBST(ZINCS)
AC_SUBST(DIVIDESPEC)
AC_SUBST(EXCEPTIONSPEC)
AM_CONDITIONAL(CANADIAN, test "$CANADIAN" = yes)
AM_CONDITIONAL(NULL_TARGET, test "$NULL_TARGET" = yes)
...
...
@@ -621,17 +636,21 @@ AC_FUNC_ALLOCA
AC_CHECK_PROGS(PERL, perl, false)
case "${host}" in
i?86-*-linux*)
SIGNAL_HANDLER=include/i386-signal.h
;;
sparc-sun-solaris*)
SIGNAL_HANDLER=include/sparc-signal.h
;;
*)
SIGNAL_HANDLER=include/default-signal.h
;;
esac
if test "$enable_sjlj_exceptions" = yes; then
SIGNAL_HANDLER=include/default-signal.h
else
case "${host}" in
i?86-*-linux*)
SIGNAL_HANDLER=include/i386-signal.h
;;
sparc-sun-solaris*)
SIGNAL_HANDLER=include/sparc-signal.h
;;
*)
SIGNAL_HANDLER=include/default-signal.h
;;
esac
fi
AC_LINK_FILES($SIGNAL_HANDLER, include/java-signal.h)
...
...
libjava/exception.cc
View file @
3cf88fb4
...
...
@@ -33,10 +33,10 @@ typedef struct {
extern
"C"
java_eh_info
**
__get_eh_info
();
extern
"C"
void
__throw
()
__attribute__
((
__noreturn__
));
extern
"C"
void
__sjthrow
()
__attribute__
((
__noreturn__
));
extern
"C"
short
__get_eh_table_version
(
void
*
table
);
extern
"C"
short
__get_eh_table_language
(
void
*
table
);
extern
"C"
void
*
malloc
(
size_t
);
extern
"C"
void
free
(
void
*
);
...
...
@@ -45,8 +45,12 @@ extern "C" void *
_Jv_type_matcher
(
java_eh_info
*
info
,
void
*
match_info
,
void
*
exception_table
)
{
if
(
__get_eh_table_language
(
exception_table
)
!=
EH_LANG_Java
)
#ifndef SJLJ_EXCEPTIONS
/* No exception table implies the old style mechanism, so don't check. */
if
(
exception_table
!=
NULL
&&
__get_eh_table_language
(
exception_table
)
!=
EH_LANG_Java
)
return
NULL
;
#endif
/* we don't worry about version info yet, there is only one version! */
...
...
@@ -125,10 +129,6 @@ _Jv_eh_free ()
*
info_ptr
=
NULL
;
}
/* Perform a throw, Java style. Throw will unwind through this call, so
there better not be any handlers or exception thrown here. */
/* Initialize an __eh_info structure with this libraries matching info. */
extern
"C"
void
...
...
@@ -136,6 +136,9 @@ _Jv_setup_eh_info (__eh_info *)
{
}
/* Perform a throw, Java style. Throw will unwind through this call,
so there better not be any handlers or exception thrown here. */
extern
"C"
void
_Jv_Throw
(
void
*
value
)
{
...
...
@@ -151,5 +154,12 @@ _Jv_Throw (void *value)
ehinfo
->
eh_info
.
language
=
EH_LANG_Java
;
ehinfo
->
eh_info
.
version
=
1
;
ehinfo
->
value
=
value
;
__throw
();
/* We're happy with setjmp/longjmp exceptions or region-based
exception handlers: entry points are provided here for both. */
#ifdef SJLJ_EXCEPTIONS
__sjthrow
();
#else
__throw
();
#endif
}
libjava/gcj/Makefile.in
View file @
3cf88fb4
...
...
@@ -74,6 +74,7 @@ CXXCPP = @CXXCPP@
DIVIDESPEC
=
@DIVIDESPEC@
DLLTOOL
=
@DLLTOOL@
EH_COMMON_INCLUDE
=
@EH_COMMON_INCLUDE@
EXCEPTIONSPEC
=
@EXCEPTIONSPEC@
EXEEXT
=
@EXEEXT@
GCDEPS
=
@GCDEPS@
GCINCS
=
@GCINCS@
...
...
@@ -89,6 +90,7 @@ LN_S = @LN_S@
MAINT
=
@MAINT@
MAKEINFO
=
@MAKEINFO@
NM
=
@NM@
OBJDUMP
=
@OBJDUMP@
PACKAGE
=
@PACKAGE@
PERL
=
@PERL@
RANLIB
=
@RANLIB@
...
...
@@ -98,7 +100,6 @@ THREADINCS = @THREADINCS@
THREADLIBS
=
@THREADLIBS@
THREADOBJS
=
@THREADOBJS@
THREADSPEC
=
@THREADSPEC@
USE_SYMBOL_UNDERSCORE
=
@USE_SYMBOL_UNDERSCORE@
VERSION
=
@VERSION@
ZDEPS
=
@ZDEPS@
ZINCS
=
@ZINCS@
...
...
libjava/gcj/cni.h
View file @
3cf88fb4
...
...
@@ -109,6 +109,10 @@ public:
{
_Jv_MonitorExit
(
obj
);
}
};
#ifdef SJLJ_EXCEPTIONS
#define _Jv_Throw _Jv_Sjlj_Throw
#endif
// Throw some exception.
extern
void
JvThrow
(
jobject
obj
)
__attribute__
((
__noreturn__
));
extern
inline
void
...
...
libjava/gcj/javaprims.h
View file @
3cf88fb4
...
...
@@ -269,6 +269,7 @@ extern "C" jsize _Jv_GetStringUTFLength (jstring);
extern
"C"
jsize
_Jv_GetStringUTFRegion
(
jstring
,
jsize
,
jsize
,
char
*
);
extern
"C"
void
_Jv_Throw
(
void
*
)
__attribute__
((
__noreturn__
));
extern
"C"
void
_Jv_Sjlj_Throw
(
void
*
)
__attribute__
((
__noreturn__
));
extern
"C"
void
*
_Jv_Malloc
(
jsize
);
extern
"C"
void
_Jv_Free
(
void
*
);
...
...
libjava/gij.cc
View file @
3cf88fb4
...
...
@@ -89,7 +89,7 @@ main (int argc, const char **argv)
{
if
(
i
>=
argc
-
1
)
{
no_arg
ument
:
no_arg:
fprintf
(
stderr
,
"gij: option requires an argument -- `%s'
\n
"
,
argv
[
i
]);
fprintf
(
stderr
,
"Try `gij --help' for more information.
\n
"
);
...
...
@@ -102,7 +102,7 @@ main (int argc, const char **argv)
else
if
(
!
strcmp
(
arg
,
"-mx"
))
{
if
(
i
>=
argc
-
1
)
goto
no_arg
ument
;
goto
no_arg
;
_Jv_SetMaximumHeapSize
(
argv
[
++
i
]);
}
else
...
...
libjava/include/Makefile.in
View file @
3cf88fb4
...
...
@@ -74,6 +74,7 @@ CXXCPP = @CXXCPP@
DIVIDESPEC
=
@DIVIDESPEC@
DLLTOOL
=
@DLLTOOL@
EH_COMMON_INCLUDE
=
@EH_COMMON_INCLUDE@
EXCEPTIONSPEC
=
@EXCEPTIONSPEC@
EXEEXT
=
@EXEEXT@
GCDEPS
=
@GCDEPS@
GCINCS
=
@GCINCS@
...
...
@@ -89,6 +90,7 @@ LN_S = @LN_S@
MAINT
=
@MAINT@
MAKEINFO
=
@MAKEINFO@
NM
=
@NM@
OBJDUMP
=
@OBJDUMP@
PACKAGE
=
@PACKAGE@
PERL
=
@PERL@
RANLIB
=
@RANLIB@
...
...
@@ -98,7 +100,6 @@ THREADINCS = @THREADINCS@
THREADLIBS
=
@THREADLIBS@
THREADOBJS
=
@THREADOBJS@
THREADSPEC
=
@THREADSPEC@
USE_SYMBOL_UNDERSCORE
=
@USE_SYMBOL_UNDERSCORE@
VERSION
=
@VERSION@
ZDEPS
=
@ZDEPS@
ZINCS
=
@ZINCS@
...
...
libjava/include/config.h.in
View file @
3cf88fb4
...
...
@@ -132,6 +132,9 @@
getenv("GCJ_PROPERTIES"). */
#undef DISABLE_GETENV_PROPERTIES
/* Define if using setjmp/longjmp exceptions. */
#undef SJLJ_EXCEPTIONS
/* Define if you have the access function. */
#undef HAVE_ACCESS
...
...
libjava/include/default-signal.h
View file @
3cf88fb4
...
...
@@ -11,11 +11,44 @@ details. */
#ifndef JAVA_SIGNAL_H
#define JAVA_SIGNAL_H 1
#ifdef SJLJ_EXCEPTIONS
#define HANDLE_SEGV
#define HANDLE_FPE
#include <signal.h>
#define SIGNAL_HANDLER(_name) \
static void _name (int _dummy)
#define INIT_SEGV \
do \
{ \
nullp = new java::lang::NullPointerException (); \
signal (SIGSEGV, catch_segv); \
} \
while (0)
#define INIT_FPE \
do \
{ \
arithexception = new java::lang::ArithmeticException \
(JvNewStringLatin1 ("/ by zero")); \
signal (SIGFPE, catch_fpe); \
} \
while (0)
#define MAKE_THROW_FRAME do {} while (0)
#else
/* SJLJ_EXCEPTIONS */
#undef HANDLE_SEGV
#undef HANDLE_FPE
#define INIT_SEGV do {} while (0)
#define INIT_FPE do {} while (0)
#endif
/* SJLJ_EXCEPTIONS */
#endif
/* JAVA_SIGNAL_H */
libjava/java/lang/natDouble.cc
View file @
3cf88fb4
...
...
@@ -8,6 +8,8 @@ This software is copyrighted work licensed under the terms of the
Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
details. */
#include <config.h>
/* AIX requires this to be the first thing in the file. */
#ifndef __GNUC__
# if HAVE_ALLOCA_H
...
...
libjava/libgcj.spec.in
View file @
3cf88fb4
...
...
@@ -6,4 +6,5 @@
%rename lib liborig
*lib: -lgcj -lm @GCSPEC@ @THREADSPEC@ @ZLIBSPEC@ @SYSTEMSPEC@ %(liborig)
*jc1: @DIVIDESPEC@
*jc1: @DIVIDESPEC@ @EXCEPTIONSPEC@
libjava/testsuite/Makefile.in
View file @
3cf88fb4
...
...
@@ -74,6 +74,7 @@ CXXCPP = @CXXCPP@
DIVIDESPEC
=
@DIVIDESPEC@
DLLTOOL
=
@DLLTOOL@
EH_COMMON_INCLUDE
=
@EH_COMMON_INCLUDE@
EXCEPTIONSPEC
=
@EXCEPTIONSPEC@
EXEEXT
=
@EXEEXT@
GCDEPS
=
@GCDEPS@
GCINCS
=
@GCINCS@
...
...
@@ -89,6 +90,7 @@ LN_S = @LN_S@
MAINT
=
@MAINT@
MAKEINFO
=
@MAKEINFO@
NM
=
@NM@
OBJDUMP
=
@OBJDUMP@
PACKAGE
=
@PACKAGE@
PERL
=
@PERL@
RANLIB
=
@RANLIB@
...
...
@@ -98,7 +100,6 @@ THREADINCS = @THREADINCS@
THREADLIBS
=
@THREADLIBS@
THREADOBJS
=
@THREADOBJS@
THREADSPEC
=
@THREADSPEC@
USE_SYMBOL_UNDERSCORE
=
@USE_SYMBOL_UNDERSCORE@
VERSION
=
@VERSION@
ZDEPS
=
@ZDEPS@
ZINCS
=
@ZINCS@
...
...
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