guix-devel
[Top][All Lists]
Advanced

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

Re: [PATCH 1/2] gnu: sdl: Allow dlopen for OpenGL.


From: Ludovic Courtès
Subject: Re: [PATCH 1/2] gnu: sdl: Allow dlopen for OpenGL.
Date: Sat, 21 Mar 2015 22:25:36 +0100
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.4 (gnu/linux)

宋文武 <address@hidden> skribis:

> Fixes a regression introduced in 666aa99.
> Reported by Felipe López and David Thompson.
>
> * gnu/packages/sdl.scm (sdl)[inputs]: Add glu.
>   [arguments]<#:configure-flags>: Replace '--disable-sdl-dlopen' with
>   '--disable-alsa-shared --disable-pulseaudio-shared --disable-x11-shared'.

[...]

> --- a/gnu/packages/sdl.scm
> +++ b/gnu/packages/sdl.scm
> @@ -60,8 +60,11 @@
>      (build-system gnu-build-system)
>      (arguments
>       '(;; Explicitly link against shared libraries instead of dlopening them.
> -       ;; For X11, ALSA, PulseAudio, etc.
> -       #:configure-flags '("--disable-sdl-dlopen")
> +       ;; For X11, ALSA, and PulseAudio.
> +       ;; OpenGL library is still dlopened at runtime.
> +       #:configure-flags '("--disable-alsa-shared"
> +                           "--disable-pulseaudio-shared"
> +                           "--disable-x11-shared")

So without these flags libpulse.so, libalsa.so, etc. are dlopened?
(“disable shared” is a bit misleading in the flag names.)

>      (native-inputs `(("pkg-config" ,pkg-config)))
>      (inputs `(("libxrandr" ,libxrandr)
>                ("mesa" ,mesa)
> +              ("glu" ,glu)

Because of --disable-x11-shared, glu must be found at configure time,
right?

Thanks,
Ludo’.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]