Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 18 Aug 2020 22:01:02 +0000 (UTC)
From:      Niclas Zeising <zeising@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r545261 - head/x11-drivers/xf86-video-openchrome/files
Message-ID:  <202008182201.07IM12pG084730@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: zeising
Date: Tue Aug 18 22:01:02 2020
New Revision: 545261
URL: https://svnweb.freebsd.org/changeset/ports/545261

Log:
  x11-drivers/xf86-video-openchrome: fix -fno-common
  
  Fix the build with -fno-common, which is the default with llvm 11.
  
  MFH:		2020Q3

Added:
  head/x11-drivers/xf86-video-openchrome/files/patch-edb4657.c   (contents, props changed)

Added: head/x11-drivers/xf86-video-openchrome/files/patch-edb4657.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/x11-drivers/xf86-video-openchrome/files/patch-edb4657.c	Tue Aug 18 22:01:02 2020	(r545261)
@@ -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);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202008182201.07IM12pG084730>