summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwtc%netscape.com <devnull@localhost>2001-10-26 21:08:02 +0000
committerwtc%netscape.com <devnull@localhost>2001-10-26 21:08:02 +0000
commit74ba7ec52dbc68203d7d3d4fc94b17d307652372 (patch)
tree5ccc50588f51f01a100074b8a75412215b3e8a60
parent832f5e47bf6b23c03939a4d1bfe1df3ad44f836d (diff)
downloadnspr-hg-74ba7ec52dbc68203d7d3d4fc94b17d307652372.tar.gz
Bugzilla bug 106771: support building on HP-UX 11.11. The patch is from
Jim Dunn <jdunn@netscape.com>. Modified files: configure configure.in Tag: NSPRPUB_PRE_4_2_CLIENT_BRANCH
-rwxr-xr-xconfigure4
-rw-r--r--configure.in4
2 files changed, 4 insertions, 4 deletions
diff --git a/configure b/configure
index f56c6467..0b5cbbbe 100755
--- a/configure
+++ b/configure
@@ -3239,7 +3239,7 @@ EOF
fi
- if echo "$OS_RELEASE" | egrep '^(B.10.30|B.11.00)' >/dev/null; then
+ if echo "$OS_RELEASE" | egrep '^(B.10.30|B.11.00|B.11.11)' >/dev/null; then
cat >> confdefs.h <<\EOF
#define HAVE_POINTER_LOCALTIME_R 1
EOF
@@ -3298,7 +3298,7 @@ EOF
DEFAULT_IMPL_STRATEGY=_PTH
fi
- if test "$OS_RELEASE" = "B.11.00"; then
+ if echo "$OS_RELEASE" | egrep '^(B.11.00|B.11.11)' >/dev/null; then
cat >> confdefs.h <<\EOF
#define HPUX10 1
EOF
diff --git a/configure.in b/configure.in
index 94e752f5..48e28bc3 100644
--- a/configure.in
+++ b/configure.in
@@ -866,7 +866,7 @@ case "$target" in
AC_DEFINE(HAVE_INT_LOCALTIME_R)
fi
- if echo "$OS_RELEASE" | egrep '^(B.10.30|B.11.00)' >/dev/null; then
+ if echo "$OS_RELEASE" | egrep '^(B.10.30|B.11.00|B.11.11)' >/dev/null; then
AC_DEFINE(HAVE_POINTER_LOCALTIME_R)
fi
@@ -901,7 +901,7 @@ case "$target" in
DEFAULT_IMPL_STRATEGY=_PTH
fi
- if test "$OS_RELEASE" = "B.11.00"; then
+ if echo "$OS_RELEASE" | egrep '^(B.11.00|B.11.11)' >/dev/null; then
AC_DEFINE(HPUX10)
AC_DEFINE(HPUX11)
AC_DEFINE(_LARGEFILE64_SOURCE)