Closed
Bug 229988
Opened 21 years ago
Closed 21 years ago
ipcLog.cpp don't implement WritePrefix function for BeOS.
Categories
(Core :: IPC, defect)
Tracking
()
RESOLVED
FIXED
People
(Reporter: thesuckiestemail, Assigned: darin.moz)
Details
Attachments
(1 file)
654 bytes,
patch
|
Biesinger
:
review+
|
Details | Diff | Splinter Review |
User-Agent: Mozilla/5.0 (BeOS; U; BeOS BePC; en-US; rv:1.7a) Gecko/20040103 Firebird/0.7+
Build Identifier: Mozilla/5.0 (BeOS; U; BeOS BePC; en-US; rv:1.7a) Gecko/20040103 Firebird/0.7+
Build stops on ipcLog.cpp because it doesn't define a WritePrefix function for BeOS.
Reproducible: Always
Steps to Reproduce:
1. Compile Mozilla
Actual Results:
Build stops on ipcLog.cpp because of missing function.
The solution is simple change the
#if defined(XP_UNIX) || defined(XP_OS2)
to
#if defined(XP_UNIX) || defined(XP_OS2) || defined(XP_BEOS)
Comment 2•21 years ago
|
||
Comment on attachment 138350 [details] [diff] [review]
Patch for ipcLog.cpp that make the defines include BeOS
review request
Attachment #138350 -
Flags: review?(cbiesinger)
Updated•21 years ago
|
Attachment #138350 -
Flags: review?(cbiesinger) → review+
Comment 3•21 years ago
|
||
thanks for the patch, checked in
Status: UNCONFIRMED → RESOLVED
Closed: 21 years ago
Resolution: --- → FIXED
Updated•15 years ago
|
QA Contact: ipc
You need to log in
before you can comment on or make changes to this bug.
Description
•