mirror of
https://github.com/nigels-com/glew.git
synced 2025-12-20 06:01:48 +00:00
Compare commits
4 Commits
8b19ee6717
...
fea5c04c0d
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
fea5c04c0d | ||
|
|
ba71151c6a | ||
|
|
a24b6d4660 | ||
|
|
d593a54a21 |
3
Makefile
3
Makefile
@ -144,9 +144,6 @@ tmp/$(SYSTEM)/default/shared/glew.o: src/glew.c include/GL/glew.h include/GL/wgl
|
||||
glew.pc: glew.pc.in
|
||||
sed \
|
||||
-e "s|@prefix@|$(GLEW_PREFIX)|g" \
|
||||
-e "s|@libdir@|$(LIBDIR)|g" \
|
||||
-e "s|@exec_prefix@|$(BINDIR)|g" \
|
||||
-e "s|@includedir@|$(INCDIR)|g" \
|
||||
-e "s|@version@|$(GLEW_VERSION)|g" \
|
||||
-e "s|@cflags@||g" \
|
||||
-e "s|@libname@|$(NAME)|g" \
|
||||
|
||||
@ -610,6 +610,16 @@ EOT
|
||||
typedef void (APIENTRY *GLVULKANPROCNV)(void)
|
||||
EOT
|
||||
|
||||
# remove duplicates in GL_EXT_fragment_shading_rate and GL_EXT_fragment_shading_rate_primitive
|
||||
tail -n +5 $1/GL_EXT_fragment_shading_rate_primitive > patterns
|
||||
grep -v -F -f patterns $1/GL_EXT_fragment_shading_rate_primitive > tmp
|
||||
mv tmp $1/GL_EXT_fragment_shading_rate_primitive
|
||||
|
||||
# remove duplicates in GL_EXT_fragment_shading_rate and GL_EXT_fragment_shading_rate_attachment
|
||||
tail -n +5 $1/GL_EXT_fragment_shading_rate_attachment > patterns
|
||||
grep -v -F -f patterns $1/GL_EXT_fragment_shading_rate_attachment > tmp
|
||||
mv tmp $1/GL_EXT_fragment_shading_rate_attachment
|
||||
|
||||
# GLU extensions are not relevant here
|
||||
rm -f $1/GL_GLU_*
|
||||
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
prefix=@prefix@
|
||||
exec_prefix=${prefix}
|
||||
libdir=@libdir@
|
||||
libdir=${exec_prefix}/lib
|
||||
includedir=${prefix}/include
|
||||
|
||||
Name: glew
|
||||
|
||||
Loading…
Reference in New Issue
Block a user