all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#34824] [PATCH staging] libdrm/Mesa Meson patch series
@ 2019-03-12 13:16 Rutger Helling
  2019-03-17 18:01 ` Marius Bakke
  0 siblings, 1 reply; 7+ messages in thread
From: Rutger Helling @ 2019-03-12 13:16 UTC (permalink / raw)
  To: 34824


[-- Attachment #1.1: Type: text/plain, Size: 610 bytes --]

Hey Guix,

this patch series changes libdrm and Mesa to use Meson.

A few notes to go along with the patches:

Patch #1: Libdrm on Github mentions that Autotools is the legacy build
system for libdrm, so it seems better to change this to use Meson.
Patch #2: Mesa is gonna drop support for Autotools entirely at some
point in 2019, so it seems good to make the switch sooner rather than
later. I think I converted all the configure flags to the new format.
Patches #3-6: For some reason these packages now need an explicit mesa
input. I haven't run into other packages that have this problem yet.

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.2: 0001-gnu-libdrm-Switch-to-meson-build-system.patch --]
[-- Type: text/x-patch, Size: 1972 bytes --]

From e87f54563723c5dd8fd3fdcc0ce1772fa4c28284 Mon Sep 17 00:00:00 2001
From: Rutger Helling <rhelling@mykolab.com>
Date: Tue, 12 Mar 2019 12:16:38 +0100
Subject: [PATCH] gnu: libdrm: Switch to meson-build-system.

* gnu/packages/xdisorg.scm (libdrm)[build-system]: Switch to
meson-build-system.
[arguments]: Adjust arguments to Meson.
---
 gnu/packages/xdisorg.scm | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm
index ed801d623..2cb8f3b13 100644
--- a/gnu/packages/xdisorg.scm
+++ b/gnu/packages/xdisorg.scm
@@ -391,20 +391,20 @@ rasterisation.")
          (base32
           "08yimlp6jir1rs5ajgdx74xa5qdzcqahpdzdk0rmkmhh7vdcrl3p"))
         (patches (search-patches "libdrm-symbol-check.patch"))))
-    (build-system gnu-build-system)
+    (build-system meson-build-system)
     (arguments
      `(#:configure-flags
        '(,@(match (%current-system)
              ("armhf-linux"
-              '("--enable-exynos-experimental-api"
-                "--enable-omap-experimental-api"
-                "--enable-etnaviv-experimental-api"
-                "--enable-tegra-experimental-api"
-                "--enable-freedreno-kgsl"))
-             ("aarch64-linux"
-              '("--enable-tegra-experimental-api"
-                "--enable-etnaviv-experimental-api"
-                "--enable-freedreno-kgsl"))
+              '("-Dexynos-experimental-api=true"
+                "-Domap-experimental-api=true"
+                "-Detnaviv-experimental-api=true"
+                "-Dtegra-experimental-api=true"
+                "-Dfreedreno-kgsl=true"))
+             ("aarch64-linux=true"
+              '("-Dtegra-experimental-api=true"
+                "-Detnaviv-experimental-api=true"
+                "-Dfreedreno-kgsl=true"))
              (_ '())))))
     (inputs
      `(("libpciaccess" ,libpciaccess)))
-- 
2.21.0


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.3: 0002-gnu-mesa-Switch-to-meson-build-system.patch --]
[-- Type: text/x-patch, Size: 4957 bytes --]

From d164ccb0220756444dcc46675ede0f706255d076 Mon Sep 17 00:00:00 2001
From: Rutger Helling <rhelling@mykolab.com>
Date: Tue, 12 Mar 2019 14:05:09 +0100
Subject: [PATCH] gnu: mesa: Switch to meson-build-system.

* gnu/packages/gl.scm (mesa)[build-system]: Switch to meson-build-system.
[native-inputs]: Add "bison", "flex" and "gettext-minimal".
[arguments]: Adjust arguments to Meson.
---
 gnu/packages/gl.scm | 46 ++++++++++++++++++++++++---------------------
 1 file changed, 25 insertions(+), 21 deletions(-)

diff --git a/gnu/packages/gl.scm b/gnu/packages/gl.scm
index c3cb9cab2..daa5f54d7 100644
--- a/gnu/packages/gl.scm
+++ b/gnu/packages/gl.scm
@@ -236,7 +236,7 @@ also known as DXTn or DXTC) for Mesa.")
           "01xv03ah4l5lcfx015n3fg1620dh4nbbv6gmhh6zhdsx6sj4sc9j"))
         (patches
          (search-patches "mesa-skip-disk-cache-test.patch"))))
-    (build-system gnu-build-system)
+    (build-system meson-build-system)
     (propagated-inputs
       `(;; The following are in the Requires.private field of gl.pc.
         ("libdrm" ,libdrm)
@@ -264,7 +264,10 @@ also known as DXTn or DXTC) for Mesa.")
         ("wayland" ,wayland)
         ("wayland-protocols" ,wayland-protocols)))
     (native-inputs
-      `(("pkg-config" ,pkg-config)
+      `(("bison" ,bison)
+        ("flex" ,flex)
+        ("gettext" ,gettext-minimal)
+        ("pkg-config" ,pkg-config)
         ("python" ,python)
         ("python-mako" ,python-mako)
         ("which" ,(@ (gnu packages base) which))))
@@ -273,47 +276,48 @@ also known as DXTn or DXTC) for Mesa.")
        '(,@(match (%current-system)
              ((or "armhf-linux" "aarch64-linux")
               ;; TODO: Fix svga driver for aarch64 and armhf.
-              '("--with-gallium-drivers=etnaviv,freedreno,imx,nouveau,pl111,r300,r600,swrast,tegra,v3d,vc4,virgl"))
+              '("-Dgallium-drivers=etnaviv,freedreno,imx,nouveau,pl111,r300,r600,swrast,tegra,v3d,vc4,virgl"))
              (_
-              '("--with-gallium-drivers=i915,nouveau,r300,r600,radeonsi,svga,swrast,virgl")))
+              '("-Dgallium-drivers=nouveau,r300,r600,radeonsi,svga,swrast,virgl")))
          ;; Enable various optional features.  TODO: opencl requires libclc,
          ;; omx requires libomxil-bellagio
-         "--with-platforms=x11,drm,surfaceless,wayland"
-         "--enable-glx-tls"        ;Thread Local Storage, improves performance
-         ;; "--enable-opencl"
-         ;; "--enable-omx"
-         "--enable-osmesa"
-         "--enable-xa"
+         "-Dplatforms=x11,drm,surfaceless,wayland"
+         "-Dglx=dri"        ;Thread Local Storage, improves performance
+         ;; "-Dopencl=true"
+         ;; "-Domx=true"
+         "-Dosmesa=gallium"
+         "-Dgallium-xa=true"
+
          ;; features required by wayland
-         "--enable-gles2"
-         "--enable-gbm"
-         "--enable-shared-glapi"
+         "-Dgles2=true"
+         "-Dgbm=true"
+         "-Dshared-glapi=true"
 
          ;; Enable Vulkan on i686-linux and x86-64-linux.
          ,@(match (%current-system)
              ("x86_64-linux"
-              '("--with-vulkan-drivers=intel,radeon"))
+              '("-Dvulkan-drivers=intel,amd"))
              ;; TODO: Fix intel driver on i686-linux.
              ("i686-linux"
-              '("--with-vulkan-drivers=radeon"))
+              '("-Dvulkan-drivers=amd"))
              (_
               '("")))
 
          ;; Also enable the tests.
-         "--enable-gallium-tests"
+         "-Dbuild-tests=true"
 
          ;; on non-intel systems, drop i915 and i965
          ;; from the default dri drivers
          ,@(match (%current-system)
              ((or "x86_64-linux" "i686-linux")
-              '("--with-dri-drivers=i915,i965,nouveau,r200,radeon,swrast"
-                "--enable-llvm"))         ; default is x86/x86_64 only
+              '("-Ddri-drivers=i915,i965,nouveau,r200,r100"
+                "-Dllvm=true"))         ; default is x86/x86_64 only
              (_
-              '("--with-dri-drivers=nouveau,r200,radeon,swrast"))))
+              '("-Ddri-drivers=nouveau,r200,r100"))))
        #:modules ((ice-9 match)
                   (srfi srfi-1)
                   (guix build utils)
-                  (guix build gnu-build-system))
+                  (guix build meson-build-system))
        #:phases
        (modify-phases %standard-phases
          (add-after
@@ -323,7 +327,7 @@ also known as DXTn or DXTC) for Mesa.")
                (("/usr/bin/env python2") (which "python")))
              #t))
          (add-before
-           'build 'fix-dlopen-libnames
+           'configure 'fix-dlopen-libnames
            (lambda* (#:key inputs outputs #:allow-other-keys)
              (let ((out (assoc-ref outputs "out")))
                ;; Remain agnostic to .so.X.Y.Z versions while doing
-- 
2.21.0


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.4: 0003-gnu-libsmpeg-Add-mesa-input.patch --]
[-- Type: text/x-patch, Size: 877 bytes --]

From 5c69bc199728d3928d65f5fd6ba2b2ba659193fb Mon Sep 17 00:00:00 2001
From: Rutger Helling <rhelling@mykolab.com>
Date: Tue, 12 Mar 2019 12:52:34 +0100
Subject: [PATCH 1/4] gnu: libsmpeg: Add mesa input.

* gnu/packages/video.scm (libsmpeg)[inputs]: Add "mesa".
---
 gnu/packages/video.scm | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index e9f5aa751..7eb225a61 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -2421,7 +2421,8 @@ Other features include a live preview and live streaming.")
      `(("autoconf" ,autoconf)
        ("automake" ,automake)))
     (inputs
-     `(("sdl" ,sdl2)))
+     `(("mesa" ,mesa)
+       ("sdl" ,sdl2)))
     (home-page "http://icculus.org/smpeg/")
     (synopsis "SDL MPEG decoding library")
     (description
-- 
2.21.0


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.5: 0004-gnu-sdl-image-Add-mesa-input.patch --]
[-- Type: text/x-patch, Size: 984 bytes --]

From d38cf8a83e2e649f92e5c2259ba5b7ed4ae9c4d3 Mon Sep 17 00:00:00 2001
From: Rutger Helling <rhelling@mykolab.com>
Date: Tue, 12 Mar 2019 12:53:48 +0100
Subject: [PATCH 2/4] gnu: sdl-image: Add mesa input.

* gnu/packages/sdl.scm (sdl-image)[inputs]: Add "mesa".
---
 gnu/packages/sdl.scm | 1 +
 1 file changed, 1 insertion(+)

diff --git a/gnu/packages/sdl.scm b/gnu/packages/sdl.scm
index 8d2a02437..6d1cdba5f 100644
--- a/gnu/packages/sdl.scm
+++ b/gnu/packages/sdl.scm
@@ -214,6 +214,7 @@ other supporting functions for SDL.")
                            "--disable-tif-shared"
                            "--disable-webp-shared")))
     (native-inputs `(("pkg-config" ,pkg-config)))
+    (inputs `(("mesa" ,mesa)))
     ;; libjpeg, libpng, and libtiff are propagated inputs because the
     ;; SDL_image headers include the headers of these libraries.  SDL is a
     ;; propagated input because the pkg-config file refers to SDL's pkg-config
-- 
2.21.0


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.6: 0005-gnu-sdl-mixer-Add-mesa-input.patch --]
[-- Type: text/x-patch, Size: 931 bytes --]

From 0dac26ad22330302b0068788bab8d0a4180491f8 Mon Sep 17 00:00:00 2001
From: Rutger Helling <rhelling@mykolab.com>
Date: Tue, 12 Mar 2019 12:54:39 +0100
Subject: [PATCH 3/4] gnu: sdl-mixer: Add mesa input.

* gnu/packages/sdl.scm (sdl-mixer)[inputs]: Add "mesa".
---
 gnu/packages/sdl.scm | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/sdl.scm b/gnu/packages/sdl.scm
index 6d1cdba5f..634b77648 100644
--- a/gnu/packages/sdl.scm
+++ b/gnu/packages/sdl.scm
@@ -259,7 +259,8 @@ WEBP, XCF, XPM, and XV.")
               ("libflac" ,flac)
               ("libmad" ,libmad)
               ("libmikmod" ,libmikmod)
-              ("libmodplug" ,libmodplug)))
+              ("libmodplug" ,libmodplug)
+              ("mesa" ,mesa)))
     ;; FIXME: Add libfluidsynth
     (propagated-inputs `(("sdl" ,sdl)))
     (synopsis "SDL multi-channel audio mixer library")
-- 
2.21.0


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.7: 0006-gnu-sdl-net-Add-mesa-input.patch --]
[-- Type: text/x-patch, Size: 866 bytes --]

From fd059a1b42a5ba4b21ffe996d65159fa93736bee Mon Sep 17 00:00:00 2001
From: Rutger Helling <rhelling@mykolab.com>
Date: Tue, 12 Mar 2019 12:55:25 +0100
Subject: [PATCH 4/4] gnu: sdl-net: Add mesa input.

* gnu/packages/sdl.scm (sdl-net)[inputs]: Add "mesa".
---
 gnu/packages/sdl.scm | 1 +
 1 file changed, 1 insertion(+)

diff --git a/gnu/packages/sdl.scm b/gnu/packages/sdl.scm
index 634b77648..0c4a5bee1 100644
--- a/gnu/packages/sdl.scm
+++ b/gnu/packages/sdl.scm
@@ -286,6 +286,7 @@ MIDI, Ogg Vorbis, and MP3.")
     (build-system gnu-build-system)
     (propagated-inputs `(("sdl" ,sdl)))
     (native-inputs `(("pkg-config" ,pkg-config)))
+    (inputs `(("mesa" ,mesa)))
     (outputs '("out" "debug"))
     (synopsis "SDL networking library")
     (description "SDL_net is a small, cross-platform networking library for
-- 
2.21.0


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [bug#34824] [PATCH staging] libdrm/Mesa Meson patch series
  2019-03-12 13:16 [bug#34824] [PATCH staging] libdrm/Mesa Meson patch series Rutger Helling
@ 2019-03-17 18:01 ` Marius Bakke
  2019-03-18  9:44   ` Rutger Helling
  0 siblings, 1 reply; 7+ messages in thread
From: Marius Bakke @ 2019-03-17 18:01 UTC (permalink / raw)
  To: Rutger Helling, 34824

[-- Attachment #1: Type: text/plain, Size: 1013 bytes --]

Rutger Helling <rhelling@mykolab.com> writes:

> Hey Guix,
>
> this patch series changes libdrm and Mesa to use Meson.
>
> A few notes to go along with the patches:
>
> Patch #1: Libdrm on Github mentions that Autotools is the legacy build
> system for libdrm, so it seems better to change this to use Meson.
> Patch #2: Mesa is gonna drop support for Autotools entirely at some
> point in 2019, so it seems good to make the switch sooner rather than
> later. I think I converted all the configure flags to the new format.
> Patches #3-6: For some reason these packages now need an explicit mesa
> input. I haven't run into other packages that have this problem yet.

The first two patches LGTM, but we should figure out why some packages
need special attention and squash the fixes with the Mesa (or libdrm)
change.

I see the other packages are SDL-related, maybe the libSDL pkg-config
files are different after this change?  Or "sdl-config" prints something
weird?

Thanks for looking after these packages :-)

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [bug#34824] [PATCH staging] libdrm/Mesa Meson patch series
  2019-03-17 18:01 ` Marius Bakke
@ 2019-03-18  9:44   ` Rutger Helling
  2019-03-18 14:17     ` Marius Bakke
  0 siblings, 1 reply; 7+ messages in thread
From: Rutger Helling @ 2019-03-18  9:44 UTC (permalink / raw)
  To: Marius Bakke; +Cc: 34824

[-- Attachment #1: Type: text/plain, Size: 1716 bytes --]

Hi Marius,

thanks for the review.

So when I rebuilt my entire system a while back with these patches it
was only those few SDL packages that were affected. Unfortunately I have
no way of knowing for sure if it won't happen anywhere else, but it
does seem to be something contained to just SDL(1).

The packages fail with the following error if "mesa" isn't an explicit
input:

ld: cannot find -lGL
collect2: error: ld returned 1 exit status

WDYT? Should I go ahead and push these patches or do you have other
ideas?

On Sun, 17 Mar 2019 19:01:59 +0100
Marius Bakke <mbakke@fastmail.com> wrote:

> Rutger Helling <rhelling@mykolab.com> writes:
> 
> > Hey Guix,
> >
> > this patch series changes libdrm and Mesa to use Meson.
> >
> > A few notes to go along with the patches:
> >
> > Patch #1: Libdrm on Github mentions that Autotools is the legacy
> > build system for libdrm, so it seems better to change this to use
> > Meson. Patch #2: Mesa is gonna drop support for Autotools entirely
> > at some point in 2019, so it seems good to make the switch sooner
> > rather than later. I think I converted all the configure flags to
> > the new format. Patches #3-6: For some reason these packages now
> > need an explicit mesa input. I haven't run into other packages that
> > have this problem yet.  
> 
> The first two patches LGTM, but we should figure out why some packages
> need special attention and squash the fixes with the Mesa (or libdrm)
> change.
> 
> I see the other packages are SDL-related, maybe the libSDL pkg-config
> files are different after this change?  Or "sdl-config" prints
> something weird?
> 
> Thanks for looking after these packages :-)


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [bug#34824] [PATCH staging] libdrm/Mesa Meson patch series
  2019-03-18  9:44   ` Rutger Helling
@ 2019-03-18 14:17     ` Marius Bakke
  2019-03-18 15:25       ` Rutger Helling
  0 siblings, 1 reply; 7+ messages in thread
From: Marius Bakke @ 2019-03-18 14:17 UTC (permalink / raw)
  To: Rutger Helling; +Cc: 34824

[-- Attachment #1: Type: text/plain, Size: 827 bytes --]

Rutger Helling <rhelling@mykolab.com> writes:

> Hi Marius,
>
> thanks for the review.
>
> So when I rebuilt my entire system a while back with these patches it
> was only those few SDL packages that were affected. Unfortunately I have
> no way of knowing for sure if it won't happen anywhere else, but it
> does seem to be something contained to just SDL(1).
>
> The packages fail with the following error if "mesa" isn't an explicit
> input:
>
> ld: cannot find -lGL
> collect2: error: ld returned 1 exit status
>
> WDYT? Should I go ahead and push these patches or do you have other
> ideas?

Well, we still don't know why -lGL is suddenly there.  Did you inspect
the pkg-config files or sdl-config output to figure out why?

I suspect Mesa should be propagated somewhere, instead of added as an
input in a bunch of places.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [bug#34824] [PATCH staging] libdrm/Mesa Meson patch series
  2019-03-18 14:17     ` Marius Bakke
@ 2019-03-18 15:25       ` Rutger Helling
  2019-03-18 16:50         ` Marius Bakke
  0 siblings, 1 reply; 7+ messages in thread
From: Rutger Helling @ 2019-03-18 15:25 UTC (permalink / raw)
  To: Marius Bakke; +Cc: 34824


[-- Attachment #1.1: Type: text/plain, Size: 2053 bytes --]

I think you're right! Changing mesa from a regular input to a
propogated one seems to have fixed all the issues for SDL. I no longer
need patches 3-6. See below for what we can use instead. Can I push the
patches now?

* gnu/packages/sdl.scm (sdl)[propogated-inputs]: Add mesa.
[inputs]: Remove mesa.
---
 gnu/packages/sdl.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/sdl.scm b/gnu/packages/sdl.scm
index 8d2a02437..e13958984 100644
--- a/gnu/packages/sdl.scm
+++ b/gnu/packages/sdl.scm
@@ -87,10 +87,10 @@
     (propagated-inputs
      ;; SDL headers include X11 headers.
      `(("libx11" ,libx11)
-       ("libcap" ,libcap))) ; 'libSDL.la' contain `-lcap'.
+       ("libcap" ,libcap) ; 'libSDL.la' contain `-lcap'.
+       ("mesa" ,mesa)))
     (native-inputs `(("pkg-config" ,pkg-config)))
     (inputs `(("libxrandr" ,libxrandr)
-              ("mesa" ,mesa)
               ("glu" ,glu)
               ("alsa-lib" ,alsa-lib)
               ("pulseaudio" ,pulseaudio)))
-- 
2.21.0

On Mon, 18 Mar 2019 15:17:27 +0100
Marius Bakke <mbakke@fastmail.com> wrote:

> Rutger Helling <rhelling@mykolab.com> writes:
> 
> > Hi Marius,
> >
> > thanks for the review.
> >
> > So when I rebuilt my entire system a while back with these patches
> > it was only those few SDL packages that were affected.
> > Unfortunately I have no way of knowing for sure if it won't happen
> > anywhere else, but it does seem to be something contained to just
> > SDL(1).
> >
> > The packages fail with the following error if "mesa" isn't an
> > explicit input:
> >
> > ld: cannot find -lGL
> > collect2: error: ld returned 1 exit status
> >
> > WDYT? Should I go ahead and push these patches or do you have other
> > ideas?  
> 
> Well, we still don't know why -lGL is suddenly there.  Did you inspect
> the pkg-config files or sdl-config output to figure out why?
> 
> I suspect Mesa should be propagated somewhere, instead of added as an
> input in a bunch of places.


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.2: 0003-gnu-sdl-Propogate-mesa-input.patch --]
[-- Type: text/x-patch, Size: 1045 bytes --]

From b46743817e2bd5d1a8bd266f3b5ad27799468a87 Mon Sep 17 00:00:00 2001
From: Rutger Helling <rhelling@mykolab.com>
Date: Mon, 18 Mar 2019 16:11:41 +0100
Subject: [PATCH] gnu: sdl: Propogate mesa input.

* gnu/packages/sdl.scm (sdl)[propogated-inputs]: Add mesa.
[inputs]: Remove mesa.
---
 gnu/packages/sdl.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/sdl.scm b/gnu/packages/sdl.scm
index 8d2a02437..e13958984 100644
--- a/gnu/packages/sdl.scm
+++ b/gnu/packages/sdl.scm
@@ -87,10 +87,10 @@
     (propagated-inputs
      ;; SDL headers include X11 headers.
      `(("libx11" ,libx11)
-       ("libcap" ,libcap))) ; 'libSDL.la' contain `-lcap'.
+       ("libcap" ,libcap) ; 'libSDL.la' contain `-lcap'.
+       ("mesa" ,mesa)))
     (native-inputs `(("pkg-config" ,pkg-config)))
     (inputs `(("libxrandr" ,libxrandr)
-              ("mesa" ,mesa)
               ("glu" ,glu)
               ("alsa-lib" ,alsa-lib)
               ("pulseaudio" ,pulseaudio)))
-- 
2.21.0


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [bug#34824] [PATCH staging] libdrm/Mesa Meson patch series
  2019-03-18 15:25       ` Rutger Helling
@ 2019-03-18 16:50         ` Marius Bakke
  2019-03-19 10:10           ` bug#34824: " Rutger Helling
  0 siblings, 1 reply; 7+ messages in thread
From: Marius Bakke @ 2019-03-18 16:50 UTC (permalink / raw)
  To: Rutger Helling; +Cc: 34824

[-- Attachment #1: Type: text/plain, Size: 485 bytes --]

Rutger Helling <rhelling@mykolab.com> writes:

> I think you're right! Changing mesa from a regular input to a
> propogated one seems to have fixed all the issues for SDL. I no longer
> need patches 3-6. See below for what we can use instead. Can I push the
> patches now?

Well, we still don't know *why* it is needed :-)

Could you add a comment about where it comes from (e.g. pkg-config or
the .la files) and squash this commit with the Mesa patch?  LGTM with
that change, thanks!

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]

^ permalink raw reply	[flat|nested] 7+ messages in thread

* bug#34824: [PATCH staging] libdrm/Mesa Meson patch series
  2019-03-18 16:50         ` Marius Bakke
@ 2019-03-19 10:10           ` Rutger Helling
  0 siblings, 0 replies; 7+ messages in thread
From: Rutger Helling @ 2019-03-19 10:10 UTC (permalink / raw)
  To: Marius Bakke; +Cc: 34824-done

[-- Attachment #1: Type: text/plain, Size: 647 bytes --]

Done, along with an update to 18.3.5.

On Mon, 18 Mar 2019 17:50:07 +0100
Marius Bakke <mbakke@fastmail.com> wrote:

> Rutger Helling <rhelling@mykolab.com> writes:
> 
> > I think you're right! Changing mesa from a regular input to a
> > propogated one seems to have fixed all the issues for SDL. I no
> > longer need patches 3-6. See below for what we can use instead. Can
> > I push the patches now?  
> 
> Well, we still don't know *why* it is needed :-)
> 
> Could you add a comment about where it comes from (e.g. pkg-config or
> the .la files) and squash this commit with the Mesa patch?  LGTM with
> that change, thanks!


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2019-03-19 10:12 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-03-12 13:16 [bug#34824] [PATCH staging] libdrm/Mesa Meson patch series Rutger Helling
2019-03-17 18:01 ` Marius Bakke
2019-03-18  9:44   ` Rutger Helling
2019-03-18 14:17     ` Marius Bakke
2019-03-18 15:25       ` Rutger Helling
2019-03-18 16:50         ` Marius Bakke
2019-03-19 10:10           ` bug#34824: " Rutger Helling

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.