diff options
author | jschauma <jschauma@pkgsrc.org> | 2003-09-29 21:30:28 +0000 |
---|---|---|
committer | jschauma <jschauma@pkgsrc.org> | 2003-09-29 21:30:28 +0000 |
commit | 2069c43dc0decfc4a97b2f4f2434fc665d7c99ed (patch) | |
tree | 4bfbc2f1fba06ea9b1929d15bfda89c0f9e93391 /graphics/MesaLib/buildlink2.mk | |
parent | 2a59c22414f33769660fc4621937e98bac4dfa8a (diff) | |
download | pkgsrc-2069c43dc0decfc4a97b2f4f2434fc665d7c99ed.tar.gz |
Update Mesa and friends to latest version 5.0.2:
- fixed texgen problem causing texcoord's Q to be zero (stex3d)
- default GL_TEXTURE_COMPARE_MODE_ARB was wrong
- GL_CURRENT_MATRIX_NV query was wrong
- GL_CURRENT_MATRIX_STACK_DEPTH_NV query was off by one
- GL_LIST_MODE query wasn't correct
- GL_FOG_COORDINATE_SOURCE_EXT query wasn't supported
- GL_SECONDARY_COLOR_ARRAY_SIZE_EXT query returned wrong value
- blended, wide lines didn't always work correctly
- glVertexAttrib4svNV w component was always 1
- fixed bug in GL_IBM_rasterpos_clip (missing return)
- GL_DEPTH_TEXTURE_MODE = GL_ALPHA didn't work correctly
- a few Solaris compilation fixes
- fixed glClear() problem for DRI drivers (non-existant stencil, etc)
- fixed int/REAL mixup in GLU NURBS curve evaluator (Eric Cazeaux)
- fixed delete [] bug in SI GLU (bug 721765) (Diego Santa Cruz)
- glFog() didn't clamp fog colors
- fixed bad float/int conversion for GL_TEXTURE_PRIORITY in the
gl[Get]TexParameteri[v] functions
- fixed invalid memory references in glTexGen functions (bug 781602)
- integer-valued color arrays weren't handled correctly
- glDrawPixels(GL_DEPTH_COMPONENT) with glPixelZoom didn't work
- GL_EXT_texture_lod_bias is part of 1.4, overlooked in 5.0.1
- build GLUT with -fexceptions so C++ apps propogate exceptions
While here, fix PR pkg/23003 by moving the version number to version.mk
and including that in the buildlink.
Diffstat (limited to 'graphics/MesaLib/buildlink2.mk')
-rw-r--r-- | graphics/MesaLib/buildlink2.mk | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/graphics/MesaLib/buildlink2.mk b/graphics/MesaLib/buildlink2.mk index 602edcf1e79..51956ec1e90 100644 --- a/graphics/MesaLib/buildlink2.mk +++ b/graphics/MesaLib/buildlink2.mk @@ -1,9 +1,9 @@ -# $NetBSD: buildlink2.mk,v 1.15 2003/08/26 01:43:52 jschauma Exp $ +# $NetBSD: buildlink2.mk,v 1.16 2003/09/29 21:30:28 jschauma Exp $ .if !defined(MESALIB_BUILDLINK2_MK) MESALIB_BUILDLINK2_MK= # defined -.include "../../mk/bsd.prefs.mk" +.include "../../graphics/Mesa/version.mk" BUILDLINK_DEPENDS.MesaLib?= MesaLib>=${MESA_VERSION} BUILDLINK_PKGSRCDIR.MesaLib?= ../../graphics/MesaLib @@ -25,6 +25,7 @@ BUILDLINK_FILES.MesaLib+= include/GL/xmesa.h BUILDLINK_FILES.MesaLib+= include/GL/xmesa_x.h BUILDLINK_FILES.MesaLib+= include/GL/xmesa_xf86.h BUILDLINK_FILES.MesaLib+= lib/libGL.* +BUILDLINK_FILES.MesaLib+= lib/libOSMesa.* USE_X11= # defined |