mirror of
https://github.com/termux-pacman/termux-packages.git
synced 2026-01-03 09:30:14 +00:00
- Fixes https://github.com/termux/termux-packages/issues/24979
- The package has been orphaned ever since it was introduced in 2022: e96459c7c7
- The package no longer conflicts with `mesa`, `libglvnd-dev` or any other package. It contains one file:
```
~ $ dpkg -L gst-plugins-gl-headers
/.
/data
/data/data
/data/data/com.termux
/data/data/com.termux/files
/data/data/com.termux/files/usr
/data/data/com.termux/files/usr/include
/data/data/com.termux/files/usr/include/GL
/data/data/com.termux/files/usr/include/GL/wglext.h
```
- This file contains large amounts of Windows-specific code and is not found in any other package except for mingw-related packages and highly generalzed frameworks. It is not expected to be necessary for anything on any Linux distro:
```
~ $ apt-file search wglext.h
gst-plugins-gl-headers: /data/data/com.termux/files/usr/include/GL/wglext.h
llvm-mingw-w64-ucrt: /data/data/com.termux/files/usr/opt/llvm-mingw-w64/generic-w64-mingw32/include/GL/wglext.h
panda3d: /data/data/com.termux/files/usr/include/panda3d/wglext.h
qb64: /data/data/com.termux/files/usr/share/qb64/internal/c/parts/core/gl_headers/opengl_org_registery/wglext.h
```
- This file is not found in any `gst-plugins-*` package of any other Linux distribution:
```
tacokoneko@debian:~$ lsb_release -d
Description: Debian GNU/Linux 13 (trixie)
tacokoneko@debian:~$ apt-file search wglext.h
khronos-api: /usr/include/khronos-api/GL/wglext.h
mingw-w64-common: /usr/share/mingw-w64/include/GL/wglext.h
mingw-w64-i686-dev: /usr/i686-w64-mingw32/include/GL/wglext.h
mingw-w64-ucrt64-dev: /usr/x86_64-w64-mingw32ucrt/include/GL/wglext.h
mingw-w64-x86-64-dev: /usr/x86_64-w64-mingw32/include/GL/wglext.h
tacokoneko@debian:~$
```