diff options
author | John David Anglin <dave.anglin@nrc-cnrc.gc.ca> | 2005-08-20 20:26:26 +0000 |
---|---|---|
committer | John David Anglin <danglin@gcc.gnu.org> | 2005-08-20 20:26:26 +0000 |
commit | c348be20ae22608c1b61cc377ae58125b5583c97 (patch) | |
tree | 9f84797e3c6a84b09f4cb63db02114be51b19a3a /libjava/configure.host | |
parent | 3c0764fc1e874d271f1f79bc771fc6d8df0875e8 (diff) | |
download | gcc-c348be20ae22608c1b61cc377ae58125b5583c97.zip gcc-c348be20ae22608c1b61cc377ae58125b5583c97.tar.gz gcc-c348be20ae22608c1b61cc377ae58125b5583c97.tar.bz2 |
re PR libgcj/21692 (unexpected java.lang.NoClassDefFoundError)
PR libgcj/21692
* sysdep/pa/descriptor.h: New file.
* configure.host: Use sysdep/pa/descriptor.h on hppa*-*.
From-SVN: r103306
Diffstat (limited to 'libjava/configure.host')
-rw-r--r-- | libjava/configure.host | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/libjava/configure.host b/libjava/configure.host index 7f57cb0..d84757f 100644 --- a/libjava/configure.host +++ b/libjava/configure.host @@ -278,10 +278,14 @@ case "${host}" in esac case "${host}" in - ia64-* | hppa*-*) + ia64-*) descriptor_h=sysdep/descriptor-y.h ;; + hppa*-*) + descriptor_h=sysdep/pa/descriptor.h + ;; + rs6000-* | powerpc*-*) descriptor_h=sysdep/powerpc/descriptor.h ;; |