Module Name:    xsrc
Committed By:   veego
Date:           Thu Jun  3 09:40:10 UTC 2010

Modified Files:
        xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/common: xmlconfig.c

Log Message:
It is __NetBSD_Version__ and not __NetBSD_Version
Fixed a hidden issue with __progname

The i910 and i965 dri modules still have a problem with the __progname usage
in MesaLib/dist/src/mesa/drivers/dri/intel/intel_context.c


To generate a diff of this commit:
cvs rdiff -u -r1.1.1.2 -r1.2 \
    xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/common/xmlconfig.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/common/xmlconfig.c
diff -u xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/common/xmlconfig.c:1.1.1.2 xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/common/xmlconfig.c:1.2
--- xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/common/xmlconfig.c:1.1.1.2	Thu Jun 11 00:50:19 2009
+++ xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/common/xmlconfig.c	Thu Jun  3 09:40:10 2010
@@ -60,7 +60,7 @@
 #        include <stdlib.h>
 #        define GET_PROGRAM_NAME() getprogname()
 #    endif
-#elif defined(__NetBSD__) && defined(__NetBSD_Version) && (__NetBSD_Version >= 106000100)
+#elif defined(__NetBSD__) && defined(__NetBSD_Version__) && (__NetBSD_Version__ >= 106000100)
 #    include <stdlib.h>
 #    define GET_PROGRAM_NAME() getprogname()
 #elif defined(__sun)

Reply via email to