diff options
author | David Edelsohn <edelsohn@gnu.org> | 2008-10-24 02:44:26 +0000 |
---|---|---|
committer | David Edelsohn <dje@gcc.gnu.org> | 2008-10-23 22:44:26 -0400 |
commit | 887e6178d4322cb537fba67be247a1b678cfe0e8 (patch) | |
tree | cdff866a281ed7a6ebc131100612f4a22c136c64 /libjava/configure | |
parent | dec014a92e97c6bdd72ed0406f9b245319189d33 (diff) | |
download | gcc-887e6178d4322cb537fba67be247a1b678cfe0e8.zip gcc-887e6178d4322cb537fba67be247a1b678cfe0e8.tar.gz gcc-887e6178d4322cb537fba67be247a1b678cfe0e8.tar.bz2 |
re PR java/35485 (libjava is disabled by default)
PR target/35485
* configure.ac: AIX threads are Posix threads.
Set signal handler to aix-signal.h
* configure: Regenerate.
* classpath/native/fdlibm/fdlibm.h: Undef hz.
* include/aix-signal.h: New file.
* sysdep/powerpc/locks.h: Avoid GNU Assembler syntax.
From-SVN: r141335
Diffstat (limited to 'libjava/configure')
-rwxr-xr-x | libjava/configure | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libjava/configure b/libjava/configure index ffee069..225ffa6 100755 --- a/libjava/configure +++ b/libjava/configure @@ -20711,7 +20711,7 @@ case "$THREADS" in no | none | single) THREADS=none ;; - posix | posix95 | pthreads) + aix | posix | posix95 | pthreads) THREADS=posix case "$host" in *-*-linux*) @@ -27510,6 +27510,9 @@ case "${host}" in powerpc*-*-darwin* | i?86-*-darwin9* | x86_64-*-darwin9*) SIGNAL_HANDLER=include/darwin-signal.h ;; + powerpc*-*-aix*) + SIGNAL_HANDLER=include/aix-signal.h + ;; *) SIGNAL_HANDLER=include/default-signal.h ;; |