aboutsummaryrefslogtreecommitdiff
path: root/x11-drivers
diff options
context:
space:
mode:
authorNiclas Zeising <zeising@FreeBSD.org>2020-08-19 08:35:52 +0000
committerNiclas Zeising <zeising@FreeBSD.org>2020-08-19 08:35:52 +0000
commit189d3fae83a992f4f1c5348b7ccd74c7256ecebc (patch)
treeada21a799a049088a61a1a30a8ce305b065dfef0 /x11-drivers
parent4c6b50423d57f843ac68169d91b62827354d2340 (diff)
downloadports-189d3fae83a992f4f1c5348b7ccd74c7256ecebc.tar.gz
ports-189d3fae83a992f4f1c5348b7ccd74c7256ecebc.zip
MFH: r545261
x11-drivers/xf86-video-openchrome: fix -fno-common Fix the build with -fno-common, which is the default with llvm 11. Approved by: ports-secteam (joenum)
Notes
Notes: svn path=/branches/2020Q3/; revision=545284
Diffstat (limited to 'x11-drivers')
-rw-r--r--x11-drivers/xf86-video-openchrome/files/patch-edb4657.c41
1 files changed, 41 insertions, 0 deletions
diff --git a/x11-drivers/xf86-video-openchrome/files/patch-edb4657.c b/x11-drivers/xf86-video-openchrome/files/patch-edb4657.c
new file mode 100644
index 000000000000..4e3f83ef7dad
--- /dev/null
+++ b/x11-drivers/xf86-video-openchrome/files/patch-edb4657.c
@@ -0,0 +1,41 @@
+diff --git a/src/via_driver.h b/src/via_driver.h
+index b01229d..bfad2ee 100644
+--- src/via_driver.h
++++ src/via_driver.h
+@@ -361,8 +361,8 @@ void viaSetupDefaultOptions(ScrnInfoPtr pScrn);
+ void viaProcessOptions(ScrnInfoPtr pScrn);
+
+ /* In via_display.c. */
+-const xf86CrtcFuncsRec iga1_crtc_funcs;
+-const xf86CrtcFuncsRec iga2_crtc_funcs;
++extern const xf86CrtcFuncsRec iga1_crtc_funcs;
++extern const xf86CrtcFuncsRec iga2_crtc_funcs;
+
+ /* In via_exa.c. */
+ Bool viaInitExa(ScreenPtr pScreen);
+diff --git a/src/via_sii164.h b/src/via_sii164.h
+index 1a402aa..250ac75 100644
+--- src/via_sii164.h
++++ src/via_sii164.h
+@@ -51,7 +51,7 @@ typedef struct _viaSiI164 {
+ } viaSiI164Rec, *viaSiI164RecPtr;
+
+
+-const xf86OutputFuncsRec via_sii164_funcs;
++extern const xf86OutputFuncsRec via_sii164_funcs;
+
+ Bool viaSiI164Probe(ScrnInfoPtr pScrn, I2CBusPtr pI2CBus);
+ void viaSiI164Init(ScrnInfoPtr pScrn);
+diff --git a/src/via_vt1632.h b/src/via_vt1632.h
+index 4f93f6c..61dada1 100644
+--- src/via_vt1632.h
++++ src/via_vt1632.h
+@@ -51,7 +51,7 @@ typedef struct _VIAVT1632 {
+ } viaVT1632Rec, *viaVT1632RecPtr;
+
+
+-const xf86OutputFuncsRec via_vt1632_funcs;
++extern const xf86OutputFuncsRec via_vt1632_funcs;
+
+ Bool viaVT1632Probe(ScrnInfoPtr pScrn, I2CBusPtr pI2CBus);
+ void viaVT1632Init(ScrnInfoPtr pScrn);