diff options
author | Bryce McKinlay <mckinlay@redhat.com> | 2005-11-25 04:15:15 +0000 |
---|---|---|
committer | Bryce McKinlay <bryce@gcc.gnu.org> | 2005-11-25 04:15:15 +0000 |
commit | 4ca6f88ae88df2e1a41c728d2ced1763b026c854 (patch) | |
tree | 6c707fd71fdca64bc3c955667bc172063af75858 /libjava/configure.ac | |
parent | 57904aa71196cf28155aa594954d0616e11e2f57 (diff) | |
download | gcc-4ca6f88ae88df2e1a41c728d2ced1763b026c854.zip gcc-4ca6f88ae88df2e1a41c728d2ced1763b026c854.tar.gz gcc-4ca6f88ae88df2e1a41c728d2ced1763b026c854.tar.bz2 |
ia64-frame.h: Removed.
2005-11-24 Bryce McKinlay <mckinlay@redhat.com>
* sysdep/ia64-frame.h: Removed.
* sysdep/ia64.c: Removed.
* sysdep/dwarf2-backtrace.cc: Removed.
* configure.ac: Remove references to HAVE_BACKTRACE and
SUPPLY_BACKTRACE.
* Makefile.am: Remove SUPPLY_BACKTRACE support.
* configure: Rebuilt.
* Makefile.in: Rebuilt.
From-SVN: r107486
Diffstat (limited to 'libjava/configure.ac')
-rw-r--r-- | libjava/configure.ac | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/libjava/configure.ac b/libjava/configure.ac index 42ec214..6ae8360 100644 --- a/libjava/configure.ac +++ b/libjava/configure.ac @@ -568,8 +568,6 @@ AC_ARG_WITH(ecos, TARGET_ECOS="$with_ecos" ) -supply_backtrace=no - PLATFORM_INNER_NAT_HDRS= case "$TARGET_ECOS" in no) case "$host" in @@ -902,33 +900,6 @@ else fork execvp pipe sigaction ftruncate]) AC_CHECK_FUNCS(inet_aton inet_addr, break) AC_CHECK_HEADERS(execinfo.h unistd.h dlfcn.h) - AC_CHECK_FUNC(backtrace, [ - case "$host" in - ia64-*-linux*) - # Has broken backtrace() - ;; - mips*-*-linux*) - # Has broken backtrace(), but we supply our own. - if test -d sysdep; then true; else mkdir -p sysdep; fi - supply_backtrace=yes - AC_DEFINE(HAVE_BACKTRACE, 1, - [Define if your platform has a working backtrace() function.]) - ;; - *) - AC_DEFINE(HAVE_BACKTRACE, 1, - [Define if your platform has a working backtrace() function.]) - ;; - esac - ], [ - case "$host" in - *mingw*) - # Has backtrace() defined in libgcj itself - AC_DEFINE(HAVE_BACKTRACE, 1, - [Define if your platform has a working backtrace() function.]) - ;; - esac - ]) - AC_CHECK_LIB(dl, dladdr, [ if test "x${disable_dladdr}" = "xyes"; then #Broken dladdr(). @@ -1162,7 +1133,6 @@ else AC_CHECK_LIB(dl, main, SYSTEMSPEC="$SYSTEMSPEC -ldl") fi fi -AM_CONDITIONAL(SUPPLY_BACKTRACE, test "$supply_backtrace" = yes) # Use a semicolon as CLASSPATH separator for MinGW, otherwise a colon. case $build in |