Closed
Bug 240502
Opened 21 years ago
Closed 21 years ago
Checkin for Bug 116376 breaks AIX build (wait.h not found)
Categories
(SeaMonkey :: Installer, defect)
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: pkwarren, Assigned: ajschult784)
Details
Attachments
(1 file)
724 bytes,
patch
|
ajschult784
:
review+
|
Details | Diff | Splinter Review |
The checkin for Bug 116376 has broken the AIX Tinderbox. See the following:
"/home/tbox/builds/tinderbox/AIX_5.1_Clobber/mozilla/xpinstall/wizard/unix/src2/nsSetupTypeDlg.cpp",
line 48.10: 1540-0836 (S) The #include file <wait.h> is not found.
AIX does not have a <wait.h> header file - the wait function is defined in
<sys/wait.h>. On Fedora Core 1, the <wait.h> header file simply includes
<sys/wait.h>, and "man 2 wait" specifies that <sys/wait.h> contains the
definition for the wait function. On a Solaris 9 system, the man page for the
wait function call specifies that it is declared in <sys/wait.h>, even though
<wait.h> exists.
I think <wait.h> should be changed to <sys/wait.h> in nsSetupTypeDlg.cpp.
Reporter | ||
Comment 1•21 years ago
|
||
AIX documentation for wait():
http://www16.boulder.ibm.com/doc_link/en_US/a_doc_lib/libs/basetrf2/wait_waitpid_wait3_wait364.htm
Assignee | ||
Comment 2•21 years ago
|
||
==> sys/wait.h
I used sys/wait.h in bug 57089, but not for bug 116376. ugh.
Assignee: general → ajschult
Status: NEW → ASSIGNED
Assignee | ||
Comment 3•21 years ago
|
||
Comment on attachment 146100 [details] [diff] [review]
patch
I got r=bsmedberg on IRC
Attachment #146100 -
Flags: review+
Reporter | ||
Comment 4•21 years ago
|
||
Fixed.
Checking in nsSetupTypeDlg.cpp;
/cvsroot/mozilla/xpinstall/wizard/unix/src2/nsSetupTypeDlg.cpp,v <--
nsSetupTypeDlg.cpp
new revision: 1.27; previous revision: 1.26
done
Status: ASSIGNED → RESOLVED
Closed: 21 years ago
Resolution: --- → FIXED
Updated•20 years ago
|
Product: Browser → Seamonkey
You need to log in
before you can comment on or make changes to this bug.
Description
•