[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Gzz-commits] gzz/gfx/libcallgl Makefile
From: |
Asko Soukka |
Subject: |
[Gzz-commits] gzz/gfx/libcallgl Makefile |
Date: |
Mon, 30 Sep 2002 07:20:32 -0400 |
CVSROOT: /cvsroot/gzz
Module name: gzz
Changes by: Asko Soukka <address@hidden> 02/09/30 07:20:32
Modified files:
gfx/libcallgl : Makefile
Log message:
jvk fixed gltokens sorting bug, whichappeared with 'wrong' locales
CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/gzz/gzz/gfx/libcallgl/Makefile.diff?tr1=1.8&tr2=1.9&r1=text&r2=text
Patches:
Index: gzz/gfx/libcallgl/Makefile
diff -c gzz/gfx/libcallgl/Makefile:1.8 gzz/gfx/libcallgl/Makefile:1.9
*** gzz/gfx/libcallgl/Makefile:1.8 Mon Sep 23 14:08:46 2002
--- gzz/gfx/libcallgl/Makefile Mon Sep 30 07:20:31 2002
***************
*** 15,18 ****
# XXX Make it check whether the user has the nvidia include file...
gltokens.c: Makefile /usr/include/GL/gl.h /usr/include/GL/glext.h
! grep -h '#define GL_\w\+[[:space:]]\+\w\+' /usr/include/GL/gl.h
/usr/include/GL/glext.h $(NVIDIAH)/GL/gl.h | grep -v 'OFFSET_TEXTURE_2D_[BMS]'
| cut -c12- | awk '{print "{\"" $$1 "\", " $$2 "},"}' | sort > gltokens.c
--- 15,18 ----
# XXX Make it check whether the user has the nvidia include file...
gltokens.c: Makefile /usr/include/GL/gl.h /usr/include/GL/glext.h
! grep -h '#define GL_\w\+[[:space:]]\+\w\+' /usr/include/GL/gl.h
/usr/include/GL/glext.h $(NVIDIAH)/GL/gl.h | grep -v 'OFFSET_TEXTURE_2D_[BMS]'
| cut -c12- | awk '{print "{\"" $$1 "\", " $$2 "},"}' | LC_COLLATE=C sort >
gltokens.c