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

[Git][xorg-team/lib/libepoxy][debian-unstable] 7 commits: Post-release version bump to 1.5.8



Title: GitLab

Timo Aaltonen pushed to branch debian-unstable at X Strike Force / lib / libepoxy

Commits:

3 changed files:

Changes:

  • debian/changelog
    1
    +libepoxy (1.5.8-1) unstable; urgency=medium
    
    2
    +
    
    3
    +  * New upstream release.
    
    4
    +
    
    5
    + -- Timo Aaltonen <tjaalton@debian.org>  Mon, 16 Aug 2021 09:21:06 +0300
    
    6
    +
    
    1 7
     libepoxy (1.5.7-1) experimental; urgency=medium
    
    2 8
     
    
    3 9
       [ Debian Janitor ]
    

  • meson.build
    1
    -project('libepoxy', 'c', version: '1.5.7',
    
    1
    +project('libepoxy', 'c', version: '1.5.8',
    
    2 2
             default_options: [
    
    3 3
               'buildtype=debugoptimized',
    
    4 4
               'c_std=gnu99',
    

  • src/dispatch_common.c
    ... ... @@ -674,13 +674,9 @@ epoxy_load_gl(void)
    674 674
         if (!api.gl_handle)
    
    675 675
     	get_dlopen_handle(&api.gl_handle, OPENGL_LIB, false, true);
    
    676 676
     #endif
    
    677
    -    if (!api.gl_handle) {
    
    678
    -	get_dlopen_handle(&api.gl_handle, GLX_LIB, true, true);
    
    679
    -#if PLATFORM_HAS_GLX
    
    680
    -        if (!api.glx_handle)
    
    681
    -	    api.glx_handle = api.gl_handle;
    
    682
    -#endif
    
    683
    -    }
    
    677
    +
    
    678
    +    get_dlopen_handle(&api.glx_handle, GLX_LIB, true, true);
    
    679
    +    api.gl_handle = api.glx_handle;
    
    684 680
     #endif
    
    685 681
     }
    
    686 682
     
    


  • Reply to: