Closed
Bug 111206
Opened 23 years ago
Closed 23 years ago
freebl Makefile needs Solaris 9 defintion
Categories
(NSS :: Build, defect, P1)
Tracking
(Not tracked)
RESOLVED
FIXED
3.4
People
(Reporter: km, Assigned: wtc)
Details
Attachments
(2 files)
464 bytes,
patch
|
Details | Diff | Splinter Review | |
709 bytes,
patch
|
netscape
:
review+
|
Details | Diff | Splinter Review |
mozilla/security/nss/lib/freebl/Makefile checks for particular Solaris
relases and sets SYSV_SPARC. 5.9 needs to be added to the list.
It currently reads
ifeq ($(OS_RELEASE),5.5.1)
SYSV_SPARC = 1
endif
ifeq ($(OS_RELEASE),5.6)
SYSV_SPARC = 1
endif
ifeq ($(OS_RELEASE),5.7)
SYSV_SPARC = 1
endif
ifeq ($(OS_RELEASE),5.8)
SYSV_SPARC = 1
endif
Comment 1•23 years ago
|
||
Confirming and making suggested fix into a patch.
Comment 2•23 years ago
|
||
Assignee | ||
Comment 3•23 years ago
|
||
Thank you for the bug report and the patch.
I will come up with a different patch that
simply tests for $(OS_RELEASE) >= 5.5.1.
(I need to recall how to do that with GNU
make functions.) This way we won't need to
change the freebl makefile again when a new
Solaris version is released.
Assignee | ||
Comment 4•23 years ago
|
||
Assignee | ||
Comment 5•23 years ago
|
||
Bug reporter, please try my patch (attachment 59273 [details] [diff] [review]).
Chris, please review my patch, which uses the firstword/sort
trick I learned from you. Thanks.
Status: NEW → ASSIGNED
Comment 6•23 years ago
|
||
Comment on attachment 59273 [details] [diff] [review]
Alternate patch. Works for all $(OS_RELEASE) >= 5.5.1.
hehehe. r=cls
Attachment #59273 -
Flags: review+
Assignee | ||
Updated•23 years ago
|
Priority: -- → P1
Target Milestone: --- → 3.4
Assignee | ||
Comment 7•23 years ago
|
||
The patch has been checked into the tip of NSS.
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
•