office-gobmx/external/epoxy/clang-cl.patch
Andrea Gelmini 09425ab9f1 Removed executable permission on data files
chmod -x for .patch, .pptm, and .vb

Change-Id: I98e1221e48df22e8b58aaf305898cbe301f187ce
Reviewed-on: https://gerrit.libreoffice.org/52568
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Thorsten Behrens <Thorsten.Behrens@CIB.de>
2018-05-04 03:19:33 +02:00

14 lines
273 B
Diff

--- src/dispatch_common.c
+++ src/dispatch_common.c
@@ -190,7 +190,11 @@
#endif
};
+#if defined _MSC_VER && defined __clang__
+static bool library_initialized = true;
+#else
static bool library_initialized;
+#endif
static bool epoxy_current_context_is_glx(void);