diff options
author | Jan Beich <jbeich@FreeBSD.org> | 2021-08-27 18:19:09 +0000 |
---|---|---|
committer | Jan Beich <jbeich@FreeBSD.org> | 2021-08-27 18:42:11 +0000 |
commit | 69307666c81eab8e37a872fdc0481c4d3e250311 (patch) | |
tree | dada845be06059a7e3fcf1eca66fe21736be31c0 | |
parent | 09ad282a33a5e86f573cf4c261ce63dba1e677eb (diff) |
graphics/glew: restore GLU for now after 8532b6f5d078
While glew itself builds with -DGLEW_NO_GLU it's neither passed via
pkg-config to consumers nor visible outside of pkg-config.
$ pkg install glew pkgconf
$ pkg-config --cflags glew
Package glu was not found in the pkg-config search path.
Perhaps you should add the directory containing `glu.pc'
to the PKG_CONFIG_PATH environment variable
Package 'glu', required by 'glew', not found
PR: 257626 (for tracking)
Reported by: madpilot
-rw-r--r-- | graphics/glew/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/glew/Makefile b/graphics/glew/Makefile index c367b5043ba4..a89a917fe3cf 100644 --- a/graphics/glew/Makefile +++ b/graphics/glew/Makefile @@ -2,7 +2,7 @@ PORTNAME= glew PORTVERSION= 2.2.0 -PORTREVISION?= 2 +PORTREVISION?= 3 CATEGORIES= graphics MASTER_SITES= SF @@ -14,7 +14,7 @@ LICENSE_COMB= dual USES= gmake gl tar:tgz xorg USE_XORG?= x11 -USE_GL?= gl +USE_GL?= gl glu USE_LDCONFIG= yes MAKE_ENV= GLEW_DEST=${PREFIX} GLEW_PREFIX=${PREFIX} |