mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
18 lines
618 B
Diff
18 lines
618 B
Diff
# HG changeset patch
|
|
# Parent f0e6e4c311dd940147f1589d72cc87f8ce755697
|
|
diff --git a/gfx/angle/src/compiler/osinclude.h b/gfx/angle/src/compiler/osinclude.h
|
|
--- a/gfx/angle/src/compiler/osinclude.h
|
|
+++ b/gfx/angle/src/compiler/osinclude.h
|
|
@@ -12,8 +12,10 @@
|
|
// declares any os-specific functions.
|
|
//
|
|
|
|
-#if defined(_WIN32) || defined(_WIN64)
|
|
+#if defined(ANGLE_USE_NSPR)
|
|
+/* no need to define anything when using NSPR */
|
|
+#elif defined(_WIN32) || defined(_WIN64)
|
|
#define ANGLE_OS_WIN
|
|
#elif defined(__APPLE__) || defined(__linux__) || \
|
|
defined(__FreeBSD__) || defined(__OpenBSD__) || \
|
|
defined(__sun)
|