[ANNOUNCEMENT] TeX Live 2018
Ken Brown
kbrown@cornell.edu
Sun May 6 20:02:00 GMT 2018
On 4/29/2018 6:16 PM, Yaakov Selkowitz wrote:
> On 2018-04-29 08:33, Marco Atzeri wrote:
>> On 4/29/2018 11:25 AM, Lemures Lemniscati wrote:
>>> On each systems, there appeared a dialog telling something like that:
>>>
>>> Â Â The procedure entry point 'glBegin' could not be located in the
>>> Â Â dynamic link library 'cygOSMesa-8.dll'
>>
>> I would say that libOSMesa8 had a modification in the list of
>> exported symbols in the last version.
>>
>>
>> [TXT]Â Â Â libOSMesa8-17.3.5-1Â Â Â 21-Feb-2018 09:50Â Â Â Â 267
>> [TXT]Â Â Â libOSMesa8-17.3.8-1Â Â Â 05-Apr-2018 12:44Â Â Â Â 267
>> [TXT]Â Â Â libOSMesa8-18.0.1-1Â Â Â 23-Apr-2018 07:35Â Â Â Â 267
>>
>> I do not see glBegin in the last cygOSMesa-8.dll of 18.0.1-1
>> So it seems there is an issue on the last libOSMesa8 package
>
> Indeed, investigating now.
Yaakov,
I don't know where your are in your investigation, but I think I found
the problem. The attached patch to the mesa sources seems to fix it
Ken
-------------- next part --------------
--- origsrc/mesa-18.0.1/src/gallium/targets/osmesa/meson.build 2018-04-18 10:47:54.000000000 -0400
+++ src/mesa-18.0.1/src/gallium/targets/osmesa/meson.build 2018-05-06 12:51:07.040841000 -0400
@@ -43,9 +43,9 @@ libosmesa = shared_library(
inc_gallium_drivers,
],
link_depends : osmesa_link_deps,
- link_whole : [libosmesa_st],
+ link_whole : [libosmesa_st, libglapi_static],
link_with : [
- libmesa_gallium, libgallium, libglapi_static, libws_null, libtrace,
+ libmesa_gallium, libgallium, libws_null, libtrace,
osmesa_link_with,
],
dependencies : [
-------------- next part --------------
--
Problem reports: http://cygwin.com/problems.html
FAQ: http://cygwin.com/faq/
Documentation: http://cygwin.com/docs.html
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
More information about the Cygwin
mailing list