diff options
author | Andreas Tobler <a.tobler@schweiz.ch> | 2006-05-20 23:33:07 +0200 |
---|---|---|
committer | Andreas Tobler <andreast@gcc.gnu.org> | 2006-05-20 23:33:07 +0200 |
commit | 68bfb94e7ece6bad4d6c10231b3d8cd94d2e7319 (patch) | |
tree | e6125a2ca63cd08037fda672d2a0a2a74790314b /libjava/configure.ac | |
parent | 08cb8af18ad619d73016dc052ca73410dc202038 (diff) | |
download | gcc-68bfb94e7ece6bad4d6c10231b3d8cd94d2e7319.zip gcc-68bfb94e7ece6bad4d6c10231b3d8cd94d2e7319.tar.gz gcc-68bfb94e7ece6bad4d6c10231b3d8cd94d2e7319.tar.bz2 |
configure.ac: Add the POSIX thread libs to the HP-UX PA configuration.
2006-05-20 Andreas Tobler <a.tobler@schweiz.ch>
John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
* configure.ac: Add the POSIX thread libs to the HP-UX PA
configuration. Add signal specification for HP-UX PA.
* configure: Rebuilt.
* configure.host: Add defaults for the HP-UX PA architecture.
Add descriptor files for HP-UX PA 32-bit and 64-bit.
* include/hppa-signal.h: New file.
* include/posix.h: Add shared library suffix for HP-UX.
* sysdep/pa/descriptor-pa32-hpux.h: New file.
* sysdep/pa/descriptor-pa64-hpux.h: Likewise.
Co-Authored-By: John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
From-SVN: r113937
Diffstat (limited to 'libjava/configure.ac')
-rw-r--r-- | libjava/configure.ac | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libjava/configure.ac b/libjava/configure.ac index 69f4317..6b97979 100644 --- a/libjava/configure.ac +++ b/libjava/configure.ac @@ -805,7 +805,7 @@ case "$THREADS" in THREADLDFLAGS=-pthread THREADSPEC=-lpthread ;; - alpha*-dec-osf*) + alpha*-dec-osf* | hppa*-hp-hpux*) THREADCXXFLAGS=-pthread # boehm-gc needs some functions from librt, so link that too. THREADLIBS='-lpthread -lrt' @@ -1371,6 +1371,9 @@ case "${host}" in hppa*-*-linux*) SIGNAL_HANDLER=include/pa-signal.h ;; + hppa*-hp-hpux*) + SIGNAL_HANDLER=include/hppa-signal.h + ;; ia64-*-linux*) SIGNAL_HANDLER=include/dwarf2-signal.h ;; |