Closed
Bug 14603
Opened 26 years ago
Closed 26 years ago
Minor fixup to protypes.h for OpenVMS
Categories
(SeaMonkey :: Build Config, defect, P3)
Tracking
(Not tracked)
CLOSED
FIXED
People
(Reporter: colin, Assigned: colin)
Details
It used to be that VMS was defined to 1 when compiling on OpenVMS. I recently
checked in a change so that VMS is now defined to VMS (I had to do this
because someone uses a variable named VMS!!). Anyway, defining VMS to VMS
broke an if directive in protypes.h. Actually the statement was always
wrong if you ask me, it just happened to work before.
The fix is attached. Srinivas, if you approve this change I'll try and get it
checked in to M10/M11.
Colin.
Index: protypes.h
===================================================================
RCS file: /cvsroot/mozilla/nsprpub/pr/include/obsolete/protypes.h,v
retrieving revision 3.8
diff -u -r3.8 protypes.h
--- protypes.h 1999/05/19 00:52:00 3.8
+++ protypes.h 1999/09/22 18:57:52
@@ -39,7 +39,7 @@
#include <support/SupportDefs.h>
-#elif VMS
+#elif defined(VMS)
/*
* OpenVMS already defines the integer types below in its standard
* header files ints.h and types.h.
Updated•26 years ago
|
Status: NEW → RESOLVED
Closed: 26 years ago
Resolution: --- → FIXED
Comment 1•26 years ago
|
||
The fix is approved by Chris Hofmann
and checked in.
/cvsroot/mozilla/nsprpub/pr/include/obsolete/protypes.h, revision 3.9.
It is also checked into the internal repository.
/m/src/ns/nspr20/pr/include/obsolete/protypes.h, revision 2.9.
| Assignee | ||
Updated•26 years ago
|
Status: RESOLVED → CLOSED
| Assignee | ||
Comment 2•26 years ago
|
||
Present and correct in M10. Closing.
Updated•21 years ago
|
Product: Browser → Seamonkey
You need to log in
before you can comment on or make changes to this bug.
Description
•