summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwtc%google.com <devnull@localhost>2007-10-31 17:36:57 +0000
committerwtc%google.com <devnull@localhost>2007-10-31 17:36:57 +0000
commit1d38b3aa4b123f995256ca3ad5d9f319482587ed (patch)
treedcb6ab931d9e5cc071368d83cddc331c66590885
parent5de40b64948e26ef5c311878ed8893b88f6cb9ac (diff)
downloadnspr-hg-1d38b3aa4b123f995256ca3ad5d9f319482587ed.tar.gz
Bug 401813: Carried the fix for bug 363092 back to the NSPR_4_6_BRANCH.
Proposed by Mark Mentovai <mark@moxienet.com>. r=wtc. Modified files: configure configure.in _pth.h
-rwxr-xr-xconfigure4
-rw-r--r--configure.in6
-rw-r--r--pr/include/md/_pth.h7
3 files changed, 5 insertions, 12 deletions
diff --git a/configure b/configure
index 51d43300..c59504e9 100755
--- a/configure
+++ b/configure
@@ -44,7 +44,7 @@ ac_help="$ac_help
ac_help="$ac_help
--enable-macos-target=VER
Set the minimum MacOS version needed at runtime
- [10.1 for ppc, 10.4 for x86]"
+ [10.2 for ppc, 10.4 for x86]"
ac_help="$ac_help
--enable-strip Enable stripping of shared libs and programs"
ac_help="$ac_help
@@ -3349,7 +3349,7 @@ EOF
elif test -z "$MACOSX_DEPLOYMENT_TARGET" ; then
case "${target_cpu}" in
powerpc*)
- export MACOSX_DEPLOYMENT_TARGET=10.1
+ export MACOSX_DEPLOYMENT_TARGET=10.2
;;
i*86*)
export MACOSX_DEPLOYMENT_TARGET=10.4
diff --git a/configure.in b/configure.in
index b44f9929..005b9351 100644
--- a/configure.in
+++ b/configure.in
@@ -243,7 +243,7 @@ AC_ARG_WITH(macos-sdk,
AC_ARG_ENABLE(macos-target,
[ --enable-macos-target=VER
Set the minimum MacOS version needed at runtime
- [10.1 for ppc, 10.4 for x86]],
+ [10.2 for ppc, 10.4 for x86]],
[_MACOSX_DEPLOYMENT_TARGET=$enableval])
dnl ========================================================
@@ -1003,8 +1003,8 @@ case "$target" in
dnl minimum.
case "${target_cpu}" in
powerpc*)
- dnl Architecture minimum 10.1
- export MACOSX_DEPLOYMENT_TARGET=10.1
+ dnl Architecture minimum 10.2
+ export MACOSX_DEPLOYMENT_TARGET=10.2
;;
i*86*)
dnl Architecture minimum 10.4
diff --git a/pr/include/md/_pth.h b/pr/include/md/_pth.h
index aadb45e0..c1e428c8 100644
--- a/pr/include/md/_pth.h
+++ b/pr/include/md/_pth.h
@@ -202,13 +202,6 @@
#define PT_NO_SIGTIMEDWAIT
#endif
-/*
- * These platforms don't have pthread_kill()
- */
-#if defined(DARWIN)
-#define pthread_kill(thread, sig) ENOSYS
-#endif
-
#if defined(OSF1) || defined(VMS)
#define PT_PRIO_MIN PRI_OTHER_MIN
#define PT_PRIO_MAX PRI_OTHER_MAX