aboutsummaryrefslogtreecommitdiff
path: root/Mk
diff options
context:
space:
mode:
authorKevin Bowling <kbowling@FreeBSD.org>2021-08-02 16:19:23 +0000
committerKevin Bowling <kbowling@FreeBSD.org>2021-08-02 16:20:45 +0000
commitb5a56c9450ee879836d8e87624318342b8a252cd (patch)
tree98ab20499fd55b06f6e988ce2bcb2e89204dd0a5 /Mk
parent5708ae4005cedc7b84522f84b964092319d853cd (diff)
downloadports-b5a56c9450ee879836d8e87624318342b8a252cd.tar.gz
ports-b5a56c9450ee879836d8e87624318342b8a252cd.zip
Mk/Scripts/qa.sh: Add QA for libglvnd
Reported by: tcbrener Reviewed by: tcbrener Differential Revision: https://reviews.freebsd.org/D31375
Diffstat (limited to 'Mk')
-rw-r--r--Mk/Scripts/qa.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/Mk/Scripts/qa.sh b/Mk/Scripts/qa.sh
index c02dffde5a97..13548ddb38c7 100644
--- a/Mk/Scripts/qa.sh
+++ b/Mk/Scripts/qa.sh
@@ -534,12 +534,16 @@ proxydeps_suggest_uses() {
# gl-related
elif expr ${lib_file} : "${LOCALBASE}/lib/libGL.so.*$" > /dev/null; then
warn "you need USE_GL+=gl"
+ elif expr ${lib_file} : "${LOCALBASE}/lib/libGLX.so.*$" > /dev/null; then
+ warn "you need USE_GL+=gl"
elif expr ${lib_file} : "${LOCALBASE}/lib/libgbm.so.*$" > /dev/null; then
warn "you need USE_GL+=gbm"
elif expr ${lib_file} : "${LOCALBASE}/lib/libGLESv2.so.*$" > /dev/null; then
warn "you need USE_GL+=glesv2"
elif expr ${lib_file} : "${LOCALBASE}/lib/libEGL.so.*$" > /dev/null; then
warn "you need USE_GL+=egl"
+ elif expr ${lib_file} : "${LOCALBASE}/lib/libOpenGL.so.*$" > /dev/null; then
+ warn "you need USE_GL+=opengl"
elif [ ${pkg} = 'graphics/glew' ]; then
warn "you need USE_GL+=glew"
elif [ ${pkg} = 'graphics/libGLU' ]; then