mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-03 02:15:43 -04:00
makewheel: exclude libdrm.so.2 which causes GLX context failure
This commit is contained in:
parent
094458a8df
commit
55ac585745
@ -4,6 +4,7 @@ This is a bugfix release intended to fix several issues in 1.10.0.
|
|||||||
|
|
||||||
* Fix crashes when gamepad is plugged in on 32-bit Windows
|
* Fix crashes when gamepad is plugged in on 32-bit Windows
|
||||||
* Fix deploy-ng error regarding 'exist_ok' on Python 2
|
* Fix deploy-ng error regarding 'exist_ok' on Python 2
|
||||||
|
* Fix Linux install from pip not working with some mesa drivers
|
||||||
* Fix compatibility issues with upcoming Python 3.8
|
* Fix compatibility issues with upcoming Python 3.8
|
||||||
* Fix regression with Audio3DManager.setSoundVelocityAuto()
|
* Fix regression with Audio3DManager.setSoundVelocityAuto()
|
||||||
* Fix issues when awaiting loader.loadModel in Python 3.7
|
* Fix issues when awaiting loader.loadModel in Python 3.7
|
||||||
|
@ -104,7 +104,7 @@ MANYLINUX_LIBS = [
|
|||||||
|
|
||||||
# These are not mentioned in manylinux1 spec but should nonetheless always
|
# These are not mentioned in manylinux1 spec but should nonetheless always
|
||||||
# be excluded.
|
# be excluded.
|
||||||
"linux-vdso.so.1", "linux-gate.so.1", "ld-linux.so.2",
|
"linux-vdso.so.1", "linux-gate.so.1", "ld-linux.so.2", "libdrm.so.2",
|
||||||
]
|
]
|
||||||
|
|
||||||
# Binaries to never scan for dependencies on non-Windows systems.
|
# Binaries to never scan for dependencies on non-Windows systems.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user