Closed
Bug 184511
Opened 23 years ago
Closed 23 years ago
need support for AIX 5.1 in NSPR 4.1.3
Categories
(NSPR :: NSPR, defect, P1)
Tracking
(Not tracked)
RESOLVED
FIXED
4.1.3
People
(Reporter: bugz, Assigned: wtc)
Details
Attachments
(1 file)
|
3.20 KB,
patch
|
bugz
:
review+
|
Details | Diff | Splinter Review |
See bug 166412 for the corresponding bug for the tip. We will need similar
changes for the obsoleted build system used in NSPR 4.1.
| Assignee | ||
Comment 1•23 years ago
|
||
The changes for mozilla/nsprpub/configure (which is
generated from mozilla/nsprpub/configure.in) are
omitted for brevity.
| Assignee | ||
Updated•23 years ago
|
Status: NEW → ASSIGNED
Priority: -- → P1
Target Milestone: --- → 4.1.3
| Assignee | ||
Comment 2•23 years ago
|
||
Comment on attachment 108784 [details] [diff] [review]
Patch for the NSPRPUB_RELEASE_4_1_BRANCH
Note that
ifeq (4.3,$(firstword $(sort 4.3 $(OS_RELEASE))))
is a GNU make idiom for
if $(OS_RELEASE) >= 4.3
GNU make does not have any comparison operators
(greater than, less than, etc.), so we have to resort
to this hack.
| Reporter | ||
Comment 3•23 years ago
|
||
I tested this patch on tiger (AIX 5.1) with 32-bit & 64-bit DBG/OBJ, everything
built OK.
| Assignee | ||
Comment 4•23 years ago
|
||
Ian, I'd like you to review this patch too, if possible.
Then, you can check it into the NSPRPUB_RELEASE_4_1_BRANCH
and mark this bug fixed. Remember to log in on a Red Hat
Linux 7.1 machine and run "autoconf" in mozilla/nsprpub
to generate a new mozilla/nsprpub/configure. If you don't
have access to a Red Hat Linux 7.1 machine, I can do that
for you.
This patch can be summarized in two changes.
1. Rename the AIX4_3 macro to AIX4_3_PLUS, which means the
OS version of the build machine is AIX 4.3 or higher.
2. In AIX.mk, if "4.3" satisfies an if test, "5.1" should
also satisfy the test.
These two changes make AIX 5.1 appear the same as AIX 4.3
to NSPR.
| Reporter | ||
Comment 5•23 years ago
|
||
Comment on attachment 108784 [details] [diff] [review]
Patch for the NSPRPUB_RELEASE_4_1_BRANCH
As mentioned above, I have tested the patch.
Attachment #108784 -
Flags: review+
| Assignee | ||
Comment 6•23 years ago
|
||
Patch checked into the NSPRPUB_RELEASE_4_1_BRANCH.
Status: ASSIGNED → RESOLVED
Closed: 23 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•