[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

[Git][xorg-team/driver/xserver-xorg-video-openchrome][debian-unstable] 2 commits: Fix for GCC 10 activating stricter check for extern variables / structs



Title: GitLab

Julien Cristau pushed to branch debian-unstable at X Strike Force / driver / xserver-xorg-video-openchrome

Commits:

4 changed files:

Changes:

  • debian/changelog
    1
    +xserver-xorg-video-openchrome (1:0.6.0-4) unstable; urgency=medium
    
    2
    +
    
    3
    +  * Team upload.
    
    4
    +  * Fix build with GCC 10 (closes: #958000).  Thanks, Matthias Klose!
    
    5
    +
    
    6
    + -- Julien Cristau <jcristau@debian.org>  Fri, 18 Sep 2020 11:38:49 +0200
    
    7
    +
    
    1 8
     xserver-xorg-video-openchrome (1:0.6.0-3) unstable; urgency=medium
    
    2 9
     
    
    3 10
       * Team upload.
    

  • src/via_driver.h
    ... ... @@ -394,8 +394,8 @@ typedef struct
    394 394
     
    
    395 395
     
    
    396 396
     /* In via_display.c. */
    
    397
    -const xf86CrtcFuncsRec iga1_crtc_funcs;
    
    398
    -const xf86CrtcFuncsRec iga2_crtc_funcs;
    
    397
    +extern const xf86CrtcFuncsRec iga1_crtc_funcs;
    
    398
    +extern const xf86CrtcFuncsRec iga2_crtc_funcs;
    
    399 399
     
    
    400 400
     /* In via_exa.c. */
    
    401 401
     Bool viaInitExa(ScreenPtr pScreen);
    

  • src/via_sii164.h
    ... ... @@ -47,7 +47,7 @@ typedef struct _viaSiI164 {
    47 47
     } viaSiI164Rec, *viaSiI164RecPtr;
    
    48 48
     
    
    49 49
     
    
    50
    -const xf86OutputFuncsRec via_sii164_funcs;
    
    50
    +extern const xf86OutputFuncsRec via_sii164_funcs;
    
    51 51
     
    
    52 52
     Bool viaSiI164Init(ScrnInfoPtr pScrn, I2CBusPtr pI2CBus);
    
    53 53
     
    

  • src/via_vt1632.h
    ... ... @@ -44,7 +44,7 @@ typedef struct _viaVT1632Rec {
    44 44
     } viaVT1632Rec, *viaVT1632RecPtr;
    
    45 45
     
    
    46 46
     
    
    47
    -const xf86OutputFuncsRec via_vt1632_funcs;
    
    47
    +extern const xf86OutputFuncsRec via_vt1632_funcs;
    
    48 48
     
    
    49 49
     Bool viaVT1632Init(ScrnInfoPtr pScrn, I2CBusPtr pI2CBus);
    
    50 50
     
    


  • Reply to: