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

[Git][xorg-team/lib/mesa][debian-experimental] 2 commits: remove double space



Title: GitLab

Timo Aaltonen pushed to branch debian-experimental at X Strike Force / lib / mesa

Commits:

  • c7475a02
    by Fabio Pedretti at 2023-11-14T11:41:33+01:00
    remove double space
    
  • 0c10e875
    by Fabio Pedretti at 2023-11-14T11:44:28+01:00
    use a variable for WSL archs
    

1 changed file:

Changes:

  • debian/rules
    ... ... @@ -39,13 +39,14 @@ VULKAN_DRIVERS =
    39 39
     VULKAN_LAYERS =
    
    40 40
     
    
    41 41
     confflags_DRI3 = -Ddri3=disabled
    
    42
    -confflags_OSMESA =  -Dosmesa=true
    
    42
    +confflags_OSMESA = -Dosmesa=true
    
    43 43
     confflags_SSE2 = -Dsse2=true
    
    44 44
     
    
    45 45
     LLVM_ARCHS     = amd64 arm64 armel armhf i386 mips64el powerpc ppc64 ppc64el riscv64 s390x sparc64 x32
    
    46 46
     RUSTICL_ARCHS  = amd64 arm64 armel armhf i386 mips64el powerpc ppc64 ppc64el riscv64 s390x x32
    
    47 47
     VALGRIND_ARCHS = amd64 arm64 armhf i386 mips64el powerpc ppc64 ppc64el s390x
    
    48 48
     WINE_ARCHS     = amd64 arm64 armel armhf i386 powerpc
    
    49
    +WSL_ARCHS      = amd64 arm64
    
    49 50
     
    
    50 51
     # hurd doesn't do direct rendering
    
    51 52
     ifeq ($(DEB_HOST_ARCH_OS), hurd)
    
    ... ... @@ -117,7 +118,7 @@ else
    117 118
     	endif
    
    118 119
     
    
    119 120
     	# WSL supports only amd64 and arm64
    
    120
    -	ifneq (,$(filter amd64 arm64,$(DEB_HOST_ARCH)))
    
    121
    +	ifneq (,$(filter $(DEB_HOST_ARCH), $(WSL_ARCHS)))
    
    121 122
     		GALLIUM_DRIVERS += d3d12
    
    122 123
     	endif
    
    123 124
       endif
    


  • Reply to: