[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH 2/2] gnu: sdl: Explicity use mesa as OpenGL driver.
From: |
宋文武 |
Subject: |
Re: [PATCH 2/2] gnu: sdl: Explicity use mesa as OpenGL driver. |
Date: |
Mon, 23 Mar 2015 22:08:02 +0800 |
User-agent: |
Notmuch/0.18.1 (http://notmuchmail.org) Emacs/24.4.1 (x86_64-unknown-linux-gnu) |
Ludovic Courtès <address@hidden> writes:
> 宋文武 <address@hidden> skribis:
>
>> * gnu/packages/sdl.scm (sdl)[arguments]<#:configure-flags>: Add
>> 'LDFLAGS=-lGL'.
>
> [...]
>
>> #:configure-flags '("--disable-alsa-shared"
>> "--disable-pulseaudio-shared"
>> - "--disable-x11-shared")
>> + "--disable-x11-shared"
>> + ;; Explicity link with mesa as OpenGL driver.
>> + "LDFLAGS=-lGL")
>
> Could you explain in the comment why this is necessary? I guess that’s
> to make sure Mesa in the libsdl’s RUNPATH?
Done and pushed, thanks for review!
>
> Thanks,
> Ludo’.