summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2003-03-24 20:13:36 +0000
committerwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2003-03-24 20:13:36 +0000
commit79055f9a7f56fdde8bbcbba22dc94f1d8bbc30f6 (patch)
treeb62259e4ea9f7b071366308b3d4cae47ddf2ef79
parent5b70c248ce1feb02ae4ff1c2e81e32b7610cb227 (diff)
downloadlibapr-79055f9a7f56fdde8bbcbba22dc94f1d8bbc30f6.tar.gz
Ignore the availablity of threads on HPUX, they aren't trustworthy
based on much discussion on dev@apr, and Madhu pointed out that they had their own threads implementation that was abandoned in HPUX 11, and therefore not worth implementing. PR: 9457 git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@64450 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--CHANGES5
-rw-r--r--configure.in5
2 files changed, 10 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index ad56b3d94..1580f65ec 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,5 +1,10 @@
Changes with APR 0.9.3
+ *) Default hpux 10.x to disable threading, since if it exists at all
+ the pthread implementation should not be trusted, while hpux 10
+ had its own threads implementation that is no longer supported.
+ PR 9457 [William Rowe]
+
*) Fix error in apr-config when symlinks are involved.
[Garrett Rooney <rooneg@electricjellyfish.net>]
diff --git a/configure.in b/configure.in
index 50f74ecfb..1306b172a 100644
--- a/configure.in
+++ b/configure.in
@@ -445,6 +445,11 @@ case $host in
OSDIR="unix"
eolstr="\\n"
;;
+ *hpux10* )
+ enable_threads="no"
+ OSDIR="unix"
+ eolstr="\\n"
+ ;;
*)
OSDIR="unix"
eolstr="\\n"