aboutsummarylogtreecommitdiffstats
path: root/0012-Fix-linking-against-static-pcre.patch
blob: be6f4e851582ae3b64f8f62b2e4961495f58b279 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
From 462fdd6b868c3c0be6f499b62701d1b71e44e29a Mon Sep 17 00:00:00 2001
From: Martchus <martchus@gmx.net>
Date: Sun, 18 Sep 2016 14:24:01 +0200
Subject: [PATCH 12/32] Fix linking against static pcre

Change-Id: I3225c6e82dc4d17aef37d4289c16eb7a5ea3c5a1
---
 src/corelib/text/qregularexpression.cpp | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/src/corelib/text/qregularexpression.cpp b/src/corelib/text/qregularexpression.cpp
index d7e3cc5ee2..e17c19fbae 100644
--- a/src/corelib/text/qregularexpression.cpp
+++ b/src/corelib/text/qregularexpression.cpp
@@ -53,6 +53,10 @@
 #include <QtCore/qdatastream.h>
 
 #define PCRE2_CODE_UNIT_WIDTH 16
+#ifdef QT_STATIC
+#define PCRE_STATIC
+#define PCRE2_STATIC
+#endif
 
 #include <pcre2.h>
 
-- 
2.35.1