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

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



Title: GitLab

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

Commits:

4 changed files:

Changes:

  • debian/changelog
    1
    +libepoxy (1.5.10-1) unstable; urgency=medium
    
    2
    +
    
    3
    +  * New upstream release.
    
    4
    +
    
    5
    + -- Timo Aaltonen <tjaalton@debian.org>  Sat, 02 Apr 2022 06:37:55 +0300
    
    6
    +
    
    1 7
     libepoxy (1.5.9-2) unstable; urgency=medium
    
    2 8
     
    
    3 9
       * Clean up autopkgtest cruft that shouldn't have been included.
    

  • meson.build
    1
    -project('libepoxy', 'c', version: '1.5.9',
    
    1
    +project('libepoxy', 'c', version: '1.5.10',
    
    2 2
             default_options: [
    
    3 3
               'buildtype=debugoptimized',
    
    4 4
               'c_std=gnu99',
    
    ... ... @@ -95,6 +95,7 @@ if cc.get_id() == 'msvc'
    95 95
         '-we4053', # an _expression_ of type void was used as an operand
    
    96 96
         '-we4071', # no function prototype given
    
    97 97
         '-we4819', # the file contains a character that cannot be represented in the current code page
    
    98
    +    '/utf-8', # Set the input and exec encoding to utf-8, like is the default with GCC
    
    98 99
       ]
    
    99 100
     elif cc.get_id() == 'gcc' or cc.get_id() == 'clang'
    
    100 101
       test_cflags = [
    
    ... ... @@ -165,9 +166,11 @@ endif
    165 166
     dl_dep = cc.find_library('dl', required: false)
    
    166 167
     gl_dep = dependency('gl', required: false)
    
    167 168
     egl_dep = dependency('egl', required: false)
    
    169
    +elg_headers_dep = egl_dep.partial_dependency(compile_args: true, includes: true)
    
    168 170
     
    
    169 171
     # Optional dependencies for tests
    
    170 172
     x11_dep = dependency('x11', required: false)
    
    173
    +x11_headers_dep = x11_dep.partial_dependency(compile_args: true, includes: true)
    
    171 174
     
    
    172 175
     # GLES v2 and v1 may have pkg-config files, courtesy of downstream
    
    173 176
     # packagers; let's check those first, and fall back to find_library()
    

  • src/dispatch_common.c
    ... ... @@ -683,7 +683,11 @@ epoxy_load_gl(void)
    683 683
     #endif
    
    684 684
     
    
    685 685
         if (!api.gl_handle) {
    
    686
    +#if defined(OPENGL_LIB)
    
    686 687
             fprintf(stderr, "Couldn't open %s or %s\n", GLX_LIB, OPENGL_LIB);
    
    688
    +#else
    
    689
    +        fprintf(stderr, "Couldn't open %s\n", GLX_LIB);
    
    690
    +#endif
    
    687 691
             abort();
    
    688 692
         }
    
    689 693
     
    

  • src/meson.build
    ... ... @@ -59,6 +59,12 @@ epoxy_deps = [ dl_dep, ]
    59 59
     if host_system == 'windows'
    
    60 60
       epoxy_deps += [ opengl32_dep, gdi32_dep ]
    
    61 61
     endif
    
    62
    +if enable_x11
    
    63
    +  epoxy_deps += [ x11_headers_dep, ]
    
    64
    +endif
    
    65
    +if build_egl
    
    66
    +  epoxy_deps += [ elg_headers_dep, ]
    
    67
    +endif
    
    62 68
     
    
    63 69
     libepoxy = library(
    
    64 70
       'epoxy',
    


  • Reply to: