Bug 1824084 Comment 3 Edit History

Note: The actual edited comment in the bug view page will always show the original commenter’s name and original timestamp.

trying a rebuild of 112.0b5 with the obvious
```
--- mozglue/misc/Uptime.cpp.orig
+++ mozglue/misc/Uptime.cpp
@@ -75,7 +75,7 @@ Maybe<uint64_t> NowIncludingSuspendMs() {
   return Some(interrupt_time / kHNSperMS);
 }
 
-#elif defined(XP_LINUX)  // including Android
+#elif defined(XP_LINUX) || defined(XP_OPENBSD)  // including Android
 #  include <time.h>
 
 // Number of nanoseconds in a millisecond.
```
trying a rebuild of 112.0b5 with the obvious
```
--- mozglue/misc/Uptime.cpp.orig
+++ mozglue/misc/Uptime.cpp
@@ -75,7 +75,7 @@ Maybe<uint64_t> NowIncludingSuspendMs() {
   return Some(interrupt_time / kHNSperMS);
 }
 
-#elif defined(XP_LINUX)  // including Android
+#elif defined(XP_LINUX) || defined(XP_OPENBSD)  // including Android
 #  include <time.h>
 
 // Number of nanoseconds in a millisecond.
```
maybe that could be `XP_UNIX` ?

Back to Bug 1824084 Comment 3