download.lst                                                              |    
2 
 external/glew/0001-stop-linking-to-unneeded-Xmu-Xi-Xext-libraries.patch.1 |  
184 -
 external/glew/ExternalPackage_glew.mk                                     |    
4 
 external/glew/UnpackedTarball_glew.mk                                     |    
8 
 external/glew/glew-config-guess.patch.0                                   |  
527 ---
 external/glew/glew-debug.patch.1                                          |   
12 
 external/glew/glew-fix-rc-error.patch.1                                   |   
12 
 external/glew/glew-vc2013-project.patch.1                                 | 
1360 ----------
 vcl/source/opengl/OpenGLContext.cxx                                       |    
2 
 9 files changed, 4 insertions(+), 2107 deletions(-)

New commits:
commit a1a0432d11899caf057bc3a37408675d330b0a0b
Author: Tor Lillqvist <t...@collabora.com>
Date:   Wed Jun 17 15:39:30 2015 +0300

    Const correctness
    
    Change-Id: I786b9590f8179a1f6c6593b7ff1dec286adda192

diff --git a/vcl/source/opengl/OpenGLContext.cxx 
b/vcl/source/opengl/OpenGLContext.cxx
index ab8ba12..09d69e1 100644
--- a/vcl/source/opengl/OpenGLContext.cxx
+++ b/vcl/source/opengl/OpenGLContext.cxx
@@ -438,7 +438,7 @@ extern "C" void
 APIENTRY
 #endif
 debug_callback(GLenum source, GLenum type, GLuint id,
-        GLenum severity, GLsizei , const GLchar* message, GLvoid* )
+        GLenum severity, GLsizei , const GLchar* message, const GLvoid* )
 {
     // ignore Nvidia's : "Program/shader state performance warning: Fragment 
Shader is going to be recompiled because the shader key based on GL state 
mismatches."
     // the GLSL compiler is a bit too aggressive in optimizing the state based 
on the current OpenGL state
commit e5157e99e9d1fdba98d47342de52ef05b5c3c2f7
Author: Tor Lillqvist <t...@collabora.com>
Date:   Wed Jun 17 15:25:23 2015 +0300

    Update glew to 1.12.0
    
    Many of our patches are now upstream.
    
    Change-Id: I6c59973eea491148e92d7fa1a0b3681a9fcd2f2d

diff --git a/download.lst b/download.lst
index 22fe74c..ddac69f 100644
--- a/download.lst
+++ b/download.lst
@@ -57,7 +57,7 @@ export FONT_SOURCESANS_TARBALL := 
edc4d741888bc0d38e32dbaa17149596-source-sans-p
 export FREEHAND_MD5SUM := 8cf70c5dc4d24d2dc4a107f509d2d6d7
 export FREEHAND_TARBALL := libfreehand-0.1.1.tar.bz2
 export FREETYPE_TARBALL := 
dbf2caca1d3afd410a29217a9809d397-freetype-2.4.8.tar.bz2
-export GLEW_TARBALL := 594eb47b4b1210e25438d51825404d5a-glew-1.10.0.zip
+export GLEW_TARBALL := 3941e9cab2f4f9d8faee3e8d57ae7664-glew-1.12.0.zip
 export GLM_TARBALL := 
bae83fa5dc7f081768daace6e199adc3-glm-0.9.4.6-libreoffice.zip
 export GRAPHITE_MD5SUM := 2ef839348fe28e3b923bf8cced440227
 export GRAPHITE_TARBALL := graphite2-1.2.4.tgz
diff --git 
a/external/glew/0001-stop-linking-to-unneeded-Xmu-Xi-Xext-libraries.patch.1 
b/external/glew/0001-stop-linking-to-unneeded-Xmu-Xi-Xext-libraries.patch.1
deleted file mode 100644
index 2ecf38f..0000000
--- a/external/glew/0001-stop-linking-to-unneeded-Xmu-Xi-Xext-libraries.patch.1
+++ /dev/null
@@ -1,184 +0,0 @@
-From 820df42a87322eef69a8d02451caa705d53b7dda Mon Sep 17 00:00:00 2001
-From: Michael Stahl <mst...@redhat.com>
-Date: Thu, 30 Jan 2014 12:12:00 +0100
-Subject: [PATCH] stop linking to unneeded Xmu, Xi, Xext libraries
-
-Apparently Xmu and Xi were needed when glewinfo was using glut, but that
-dependency was removed 11 years ago in
-031afdf03be1d123b7a442f64cfa28c6066c1490.
----
- auto/doc/build.html           | 2 +-
- config/Makefile.cygwin        | 2 +-
- config/Makefile.darwin        | 2 +-
- config/Makefile.darwin-ppc    | 2 +-
- config/Makefile.darwin-x86_64 | 2 +-
- config/Makefile.freebsd       | 2 +-
- config/Makefile.gnu           | 2 +-
- config/Makefile.kfreebsd      | 2 +-
- config/Makefile.linux         | 2 +-
- config/Makefile.netbsd        | 2 +-
- config/Makefile.openbsd       | 2 +-
- config/Makefile.solaris       | 2 +-
- config/Makefile.solaris-gcc   | 2 +-
- doc/build.html                | 2 +-
- 14 files changed, 14 insertions(+), 14 deletions(-)
-
-diff --git a/config/Makefile.cygwin b/config/Makefile.cygwin
-index b044273..8600fd0 100644
---- a/config/Makefile.cygwin
-+++ b/config/Makefile.cygwin
-@@ -6,7 +6,7 @@ LD := cc
- LN :=
- LDFLAGS.EXTRA =
- LIBDIR = $(GLEW_DEST)/lib
--LDFLAGS.GL = -lXmu -lXi -lGL -lXext -lX11
-+LDFLAGS.GL = -lGL -lX11
- LDFLAGS.STATIC = -Wl,-Bstatic
- LDFLAGS.DYNAMIC = -Wl,-Bdynamic
- WARN = -Wall -W
-diff --git a/config/Makefile.darwin b/config/Makefile.darwin
-index 0c05ed1..bf34a0e 100644
---- a/config/Makefile.darwin
-+++ b/config/Makefile.darwin
-@@ -6,7 +6,7 @@ CFLAGS.EXTRA = -dynamic -fno-common
- LDFLAGS.EXTRA =
- ifneq (undefined, $(origin GLEW_APPLE_GLX))
- CFLAGS.EXTRA += -I/usr/X11R6/include -D'GLEW_APPLE_GLX'
--LDFLAGS.GL = -L/usr/X11R6/lib -lXmu -lXi -lGL -lXext -lX11
-+LDFLAGS.GL = -L/usr/X11R6/lib -lGL -lX11
- else
- LDFLAGS.GL = -framework AGL -framework OpenGL
- endif
-diff --git a/config/Makefile.darwin-ppc b/config/Makefile.darwin-ppc
-index 2aaf66a..46c8b73 100644
---- a/config/Makefile.darwin-ppc
-+++ b/config/Makefile.darwin-ppc
-@@ -6,7 +6,7 @@ CFLAGS.EXTRA = -arch ppc -dynamic -fno-common
- LDFLAGS.EXTRA = -arch ppc
- ifneq (undefined, $(origin GLEW_APPLE_GLX))
- CFLAGS.EXTRA += -I/usr/X11R6/include -D'GLEW_APPLE_GLX'
--LDFLAGS.GL = -L/usr/X11R6/lib -lXmu -lXi -lGL -lXext -lX11
-+LDFLAGS.GL = -L/usr/X11R6/lib -lGL -lX11
- else
- LDFLAGS.GL = -framework AGL -framework OpenGL
- endif
-diff --git a/config/Makefile.darwin-x86_64 b/config/Makefile.darwin-x86_64
-index 83e5c47..e6eb050 100644
---- a/config/Makefile.darwin-x86_64
-+++ b/config/Makefile.darwin-x86_64
-@@ -6,7 +6,7 @@ CFLAGS.EXTRA = -arch x86_64 -dynamic -fno-common
- LDFLAGS.EXTRA = -arch x86_64
- ifneq (undefined, $(origin GLEW_APPLE_GLX))
- CFLAGS.EXTRA += -I/usr/X11R6/include -D'GLEW_APPLE_GLX'
--LDFLAGS.GL = -L/usr/X11R6/lib -lXmu -lXi -lGL -lXext -lX11
-+LDFLAGS.GL = -L/usr/X11R6/lib -lGL -lX11
- else
- LDFLAGS.GL = -framework AGL -framework OpenGL
- endif
-diff --git a/config/Makefile.freebsd b/config/Makefile.freebsd
-index ab9d9d9..bb66fcc 100644
---- a/config/Makefile.freebsd
-+++ b/config/Makefile.freebsd
-@@ -2,7 +2,7 @@ NAME = $(GLEW_NAME)
- CC = cc
- LD = ld
- LDFLAGS.EXTRA = -L/usr/X11R6/lib
--LDFLAGS.GL = -lXmu -lXi -lGL -lXext -lX11
-+LDFLAGS.GL = -lGL -lX11
- LDFLAGS.STATIC = -Wl,-Bstatic
- LDFLAGS.DYNAMIC = -Wl,-Bdynamic
- CFLAGS.EXTRA += -I/usr/X11R6/include
-diff --git a/config/Makefile.gnu b/config/Makefile.gnu
-index 2398ab0..b7c58be 100644
---- a/config/Makefile.gnu
-+++ b/config/Makefile.gnu
-@@ -2,7 +2,7 @@ NAME = $(GLEW_NAME)
- CC = cc
- LD = cc
- LDFLAGS.EXTRA = -L/usr/X11R6/lib
--LDFLAGS.GL = -lXmu -lXi -lGL -lXext -lX11
-+LDFLAGS.GL = -lGL -lX11
- LDFLAGS.STATIC = -Wl,-Bstatic
- LDFLAGS.DYNAMIC = -Wl,-Bdynamic
- NAME = GLEW
-diff --git a/config/Makefile.kfreebsd b/config/Makefile.kfreebsd
-index 9501091..faf1046 100644
---- a/config/Makefile.kfreebsd
-+++ b/config/Makefile.kfreebsd
-@@ -2,7 +2,7 @@ NAME = $(GLEW_NAME)
- CC = cc
- LD = cc
- LDFLAGS.EXTRA = -L/usr/X11R6/lib
--LDFLAGS.GL = -lXmu -lXi -lGL -lXext -lX11
-+LDFLAGS.GL = -lGL -lX11
- LDFLAGS.STATIC = -Wl,-Bstatic
- LDFLAGS.DYNAMIC = -Wl,-Bdynamic
- NAME = GLEW
-diff --git a/config/Makefile.linux b/config/Makefile.linux
-index 234adc6..b460b4b 100644
---- a/config/Makefile.linux
-+++ b/config/Makefile.linux
-@@ -16,7 +16,7 @@ else
-   LDFLAGS.EXTRA = -L/usr/X11R6/lib -L/usr/lib
-   LIBDIR = $(GLEW_DEST)/lib
- endif
--LDFLAGS.GL = -lXmu -lXi -lGL -lXext -lX11
-+LDFLAGS.GL = -lGL -lX11
- LDFLAGS.STATIC = -Wl,-Bstatic
- LDFLAGS.DYNAMIC = -Wl,-Bdynamic
- NAME = GLEW
-diff --git a/config/Makefile.netbsd b/config/Makefile.netbsd
-index 5f69cd6..6da47b1 100644
---- a/config/Makefile.netbsd
-+++ b/config/Makefile.netbsd
-@@ -2,7 +2,7 @@ NAME = $(GLEW_NAME)
- CC = cc
- LD = ld
- LDFLAGS.EXTRA = -L/usr/X11R7/lib -R /usr/X11R7/lib 
--LDFLAGS.GL = -lXmu -lXi -lGL -lXext -lX11
-+LDFLAGS.GL = -lGL -lX11
- LDFLAGS.STATIC = -Wl,-Bstatic
- LDFLAGS.DYNAMIC = -Wl,-Bdynamic
- CFLAGS.EXTRA += -I/usr/X11R7/include -fPIC
-diff --git a/config/Makefile.openbsd b/config/Makefile.openbsd
-index 365ea9e..ade993e 100644
---- a/config/Makefile.openbsd
-+++ b/config/Makefile.openbsd
-@@ -2,7 +2,7 @@ NAME = $(GLEW_NAME)
- CC = cc
- LD = ld
- LDFLAGS.EXTRA = -L/usr/X11R6/lib
--LDFLAGS.GL = -lXmu -lXi -lGLU -lGL -lXext -lX11 -lm
-+LDFLAGS.GL = -lGLU -lGL -lX11 -lm
- LDFLAGS.STATIC = -Wl,-Bstatic
- LDFLAGS.DYNAMIC = -Wl,-Bdynamic
- CFLAGS.EXTRA += -I/usr/X11R6/include
-diff --git a/config/Makefile.solaris b/config/Makefile.solaris
-index befba5a..fe78ca1 100644
---- a/config/Makefile.solaris
-+++ b/config/Makefile.solaris
-@@ -4,7 +4,7 @@ LD = ld
- CFLAGS.EXTRA = -I/usr/openwin/include
- LDFLAGS.SO = -G
- LDFLAGS.EXTRA = -L/usr/openwin/lib
--LDFLAGS.GL = -lXmu -lXi -lGL -lXext -lX11
-+LDFLAGS.GL = -lGL -lX11
- NAME = GLEW
- BIN.SUFFIX =
- POPT = -xO2
-diff --git a/config/Makefile.solaris-gcc b/config/Makefile.solaris-gcc
-index c0373f4..e00a95b 100644
---- a/config/Makefile.solaris-gcc
-+++ b/config/Makefile.solaris-gcc
-@@ -4,7 +4,7 @@ LD = ld
- CFLAGS.EXTRA = -I/usr/openwin/include
- LDFLAGS.SO = -G
- LDFLAGS.EXTRA = -L/usr/openwin/lib
--LDFLAGS.GL = -lXmu -lXi -lGL -lXext -lX11
-+LDFLAGS.GL = -lGL -lX11
- NAME = GLEW
- BIN.SUFFIX =
- POPT = -O2
--- 
-1.8.3.1
-
diff --git a/external/glew/ExternalPackage_glew.mk 
b/external/glew/ExternalPackage_glew.mk
index 40c78f8..e6adc8b 100644
--- a/external/glew/ExternalPackage_glew.mk
+++ b/external/glew/ExternalPackage_glew.mk
@@ -20,14 +20,14 @@ endif
 endif
 
 ifeq ($(OS),MACOSX)
-$(eval $(call 
gb_ExternalPackage_add_file,glew,$(LIBO_LIB_FOLDER)/libGLEW.1.10.0.dylib,lib/libGLEW.1.10.0.dylib))
+$(eval $(call 
gb_ExternalPackage_add_file,glew,$(LIBO_LIB_FOLDER)/libGLEW.1.12.0.dylib,lib/libGLEW.1.12.0.dylib))
 else ifeq ($(OS)-$(COM),WNT-GCC)
 else ifeq ($(COM),MSC)
 $(eval $(call gb_ExternalPackage_add_files,glew,$(LIBO_LIB_FOLDER), \
        bin/$(if 
$(MSVC_USE_DEBUG_RUNTIME),Debug/$(glew_arch_subdir)/glew32d.dll,Release/$(glew_arch_subdir)/glew32.dll)
 \
 ))
 else ifeq ($(DISABLE_DYNLOADING),)
-$(eval $(call 
gb_ExternalPackage_add_file,glew,$(LIBO_LIB_FOLDER)/libGLEW.so.1.10,lib/libGLEW.so.1.10.0))
+$(eval $(call 
gb_ExternalPackage_add_file,glew,$(LIBO_LIB_FOLDER)/libGLEW.so.1.12,lib/libGLEW.so.1.12.0))
 endif
 
 # vim: set noet sw=4 ts=4:
diff --git a/external/glew/UnpackedTarball_glew.mk 
b/external/glew/UnpackedTarball_glew.mk
index 7069911..0c86057 100644
--- a/external/glew/UnpackedTarball_glew.mk
+++ b/external/glew/UnpackedTarball_glew.mk
@@ -22,13 +22,10 @@ ifeq ($(OS)$(COM),WNTMSC)
 $(eval $(call gb_UnpackedTarball_set_patchflags,glew,--binary))
 $(eval $(call gb_UnpackedTarball_add_patches,glew,\
        external/glew/glew-msvc-disable-sse2.patch.1 \
-       external/glew/glew-fix-rc-error.patch.1 \
-       external/glew/glew-vc2013-project.patch.1 \
 ))
 else
 $(eval $(call gb_UnpackedTarball_add_patches,glew,\
        external/glew/glew_use_CC_variable.patch.1 \
-       
external/glew/0001-stop-linking-to-unneeded-Xmu-Xi-Xext-libraries.patch.1 \
 ))
 endif
 
@@ -50,9 +47,4 @@ $(eval $(call gb_UnpackedTarball_add_patches,glew,\
 ))
 endif
 
-$(eval $(call gb_UnpackedTarball_add_patches,glew,\
-       external/glew/glew-debug.patch.1 \
-       external/glew/glew-config-guess.patch.0 \
-))
-
 # vim: set noet sw=4 ts=4:
diff --git a/external/glew/glew-config-guess.patch.0 
b/external/glew/glew-config-guess.patch.0
deleted file mode 100644
index 60fe245..0000000
--- a/external/glew/glew-config-guess.patch.0
+++ /dev/null
@@ -1,527 +0,0 @@
---- config/config.guess
-+++ config/config.guess
-@@ -1,14 +1,12 @@
- #! /bin/sh
- # Attempt to guess a canonical system name.
--#   Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
--#   2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
--#   2011, 2012 Free Software Foundation, Inc.
-+#   Copyright 1992-2014 Free Software Foundation, Inc.
- 
--timestamp='2012-02-10'
-+timestamp='2014-03-23'
- 
- # This file is free software; you can redistribute it and/or modify it
- # under the terms of the GNU General Public License as published by
--# the Free Software Foundation; either version 2 of the License, or
-+# the Free Software Foundation; either version 3 of the License, or
- # (at your option) any later version.
- #
- # This program is distributed in the hope that it will be useful, but
-@@ -22,19 +20,17 @@
- # As a special exception to the GNU General Public License, if you
- # distribute this file as part of a program that contains a
- # configuration script generated by Autoconf, you may include it under
--# the same distribution terms that you use for the rest of that program.
--
--
--# Originally written by Per Bothner.  Please send patches (context
--# diff format) to <config-patc...@gnu.org> and include a ChangeLog
--# entry.
-+# the same distribution terms that you use for the rest of that
-+# program.  This Exception is an additional permission under section 7
-+# of the GNU General Public License, version 3 ("GPLv3").
- #
--# This script attempts to guess a canonical system name similar to
--# config.sub.  If it succeeds, it prints the system name on stdout, and
--# exits with 0.  Otherwise, it exits with 1.
-+# Originally written by Per Bothner.
- #
- # You can get the latest version of this script from:
- # 
http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD
-+#
-+# Please send patches with a ChangeLog entry to config-patc...@gnu.org.
-+
- 
- me=`echo "$0" | sed -e 's,.*/,,'`
- 
-@@ -54,9 +50,7 @@
- GNU config.guess ($timestamp)
- 
- Originally written by Per Bothner.
--Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
--2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012
--Free Software Foundation, Inc.
-+Copyright 1992-2014 Free Software Foundation, Inc.
- 
- This is free software; see the source for copying conditions.  There is NO
- warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
-@@ -138,6 +132,27 @@
- UNAME_SYSTEM=`(uname -s) 2>/dev/null`  || UNAME_SYSTEM=unknown
- UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown
- 
-+case "${UNAME_SYSTEM}" in
-+Linux|GNU|GNU/*)
-+      # If the system lacks a compiler, then just pick glibc.
-+      # We could probably try harder.
-+      LIBC=gnu
-+
-+      eval $set_cc_for_build
-+      cat <<-EOF > $dummy.c
-+      #include <features.h>
-+      #if defined(__UCLIBC__)
-+      LIBC=uclibc
-+      #elif defined(__dietlibc__)
-+      LIBC=dietlibc
-+      #else
-+      LIBC=gnu
-+      #endif
-+      EOF
-+      eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC' | sed 's, 
,,g'`
-+      ;;
-+esac
-+
- # Note: order is significant - the case branches are not exclusive.
- 
- case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
-@@ -200,6 +215,10 @@
-       # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used.
-       echo "${machine}-${os}${release}"
-       exit ;;
-+    *:Bitrig:*:*)
-+      UNAME_MACHINE_ARCH=`arch | sed 's/Bitrig.//'`
-+      echo ${UNAME_MACHINE_ARCH}-unknown-bitrig${UNAME_RELEASE}
-+      exit ;;
-     *:OpenBSD:*:*)
-       UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'`
-       echo ${UNAME_MACHINE_ARCH}-unknown-openbsd${UNAME_RELEASE}
-@@ -302,7 +321,7 @@
-     arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*)
-       echo arm-acorn-riscix${UNAME_RELEASE}
-       exit ;;
--    arm:riscos:*:*|arm:RISCOS:*:*)
-+    arm*:riscos:*:*|arm*:RISCOS:*:*)
-       echo arm-unknown-riscos
-       exit ;;
-     SR2?01:HI-UX/MPP:*:* | SR8000:HI-UX/MPP:*:*)
-@@ -801,10 +820,13 @@
-     i*:CYGWIN*:*)
-       echo ${UNAME_MACHINE}-pc-cygwin
-       exit ;;
-+    *:MINGW64*:*)
-+      echo ${UNAME_MACHINE}-pc-mingw64
-+      exit ;;
-     *:MINGW*:*)
-       echo ${UNAME_MACHINE}-pc-mingw32
-       exit ;;
--    i*:MSYS*:*)
-+    *:MSYS*:*)
-       echo ${UNAME_MACHINE}-pc-msys
-       exit ;;
-     i*:windows32*:*)
-@@ -852,15 +874,22 @@
-       exit ;;
-     *:GNU:*:*)
-       # the GNU system
--      echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-gnu`echo 
${UNAME_RELEASE}|sed -e 's,/.*$,,'`
-+      echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-${LIBC}`echo 
${UNAME_RELEASE}|sed -e 's,/.*$,,'`
-       exit ;;
-     *:GNU/*:*:*)
-       # other systems with GNU libc and userland
--      echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' 
| tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-gnu
-+      echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' 
| tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-${LIBC}
-       exit ;;
-     i*86:Minix:*:*)
-       echo ${UNAME_MACHINE}-pc-minix
-       exit ;;
-+    aarch64:Linux:*:*)
-+      echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
-+      exit ;;
-+    aarch64_be:Linux:*:*)
-+      UNAME_MACHINE=aarch64_be
-+      echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
-+      exit ;;
-     alpha:Linux:*:*)
-       case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in
-         EV5)   UNAME_MACHINE=alphaev5 ;;
-@@ -872,59 +901,54 @@
-         EV68*) UNAME_MACHINE=alphaev68 ;;
-       esac
-       objdump --private-headers /bin/sh | grep -q ld.so.1
--      if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi
--      echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC}
-+      if test "$?" = 0 ; then LIBC="gnulibc1" ; fi
-+      echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
-+      exit ;;
-+    arc:Linux:*:* | arceb:Linux:*:*)
-+      echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
-       exit ;;
-     arm*:Linux:*:*)
-       eval $set_cc_for_build
-       if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \
-           | grep -q __ARM_EABI__
-       then
--          echo ${UNAME_MACHINE}-unknown-linux-gnu
-+          echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
-       else
-           if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \
-               | grep -q __ARM_PCS_VFP
-           then
--              echo ${UNAME_MACHINE}-unknown-linux-gnueabi
-+              echo ${UNAME_MACHINE}-unknown-linux-${LIBC}eabi
-           else
--              echo ${UNAME_MACHINE}-unknown-linux-gnueabihf
-+              echo ${UNAME_MACHINE}-unknown-linux-${LIBC}eabihf
-           fi
-       fi
-       exit ;;
-     avr32*:Linux:*:*)
--      echo ${UNAME_MACHINE}-unknown-linux-gnu
-+      echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
-       exit ;;
-     cris:Linux:*:*)
--      echo ${UNAME_MACHINE}-axis-linux-gnu
-+      echo ${UNAME_MACHINE}-axis-linux-${LIBC}
-       exit ;;
-     crisv32:Linux:*:*)
--      echo ${UNAME_MACHINE}-axis-linux-gnu
-+      echo ${UNAME_MACHINE}-axis-linux-${LIBC}
-       exit ;;
-     frv:Linux:*:*)
--      echo ${UNAME_MACHINE}-unknown-linux-gnu
-+      echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
-       exit ;;
-     hexagon:Linux:*:*)
--      echo ${UNAME_MACHINE}-unknown-linux-gnu
-+      echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
-       exit ;;
-     i*86:Linux:*:*)
--      LIBC=gnu
--      eval $set_cc_for_build
--      sed 's/^        //' << EOF >$dummy.c
--      #ifdef __dietlibc__
--      LIBC=dietlibc
--      #endif
--EOF
--      eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC'`
--      echo "${UNAME_MACHINE}-pc-linux-${LIBC}"
-+      echo ${UNAME_MACHINE}-pc-linux-${LIBC}
-       exit ;;
-     ia64:Linux:*:*)
--      echo ${UNAME_MACHINE}-unknown-linux-gnu
-+      echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
-       exit ;;
-     m32r*:Linux:*:*)
--      echo ${UNAME_MACHINE}-unknown-linux-gnu
-+      echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
-       exit ;;
-     m68*:Linux:*:*)
--      echo ${UNAME_MACHINE}-unknown-linux-gnu
-+      echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
-       exit ;;
-     mips:Linux:*:* | mips64:Linux:*:*)
-       eval $set_cc_for_build
-@@ -943,54 +967,63 @@
-       #endif
- EOF
-       eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'`
--      test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; }
-+      test x"${CPU}" != x && { echo "${CPU}-unknown-linux-${LIBC}"; exit; }
-       ;;
--    or32:Linux:*:*)
--      echo ${UNAME_MACHINE}-unknown-linux-gnu
-+    openrisc*:Linux:*:*)
-+      echo or1k-unknown-linux-${LIBC}
-+      exit ;;
-+    or32:Linux:*:* | or1k*:Linux:*:*)
-+      echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
-       exit ;;
-     padre:Linux:*:*)
--      echo sparc-unknown-linux-gnu
-+      echo sparc-unknown-linux-${LIBC}
-       exit ;;
-     parisc64:Linux:*:* | hppa64:Linux:*:*)
--      echo hppa64-unknown-linux-gnu
-+      echo hppa64-unknown-linux-${LIBC}
-       exit ;;
-     parisc:Linux:*:* | hppa:Linux:*:*)
-       # Look for CPU level
-       case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in
--        PA7*) echo hppa1.1-unknown-linux-gnu ;;
--        PA8*) echo hppa2.0-unknown-linux-gnu ;;
--        *)    echo hppa-unknown-linux-gnu ;;
-+        PA7*) echo hppa1.1-unknown-linux-${LIBC} ;;
-+        PA8*) echo hppa2.0-unknown-linux-${LIBC} ;;
-+        *)    echo hppa-unknown-linux-${LIBC} ;;
-       esac
-       exit ;;
-     ppc64:Linux:*:*)
--      echo powerpc64-unknown-linux-gnu
-+      echo powerpc64-unknown-linux-${LIBC}
-       exit ;;
-     ppc:Linux:*:*)
--      echo powerpc-unknown-linux-gnu
-+      echo powerpc-unknown-linux-${LIBC}
-+      exit ;;
-+    ppc64le:Linux:*:*)
-+      echo powerpc64le-unknown-linux-${LIBC}
-+      exit ;;
-+    ppcle:Linux:*:*)
-+      echo powerpcle-unknown-linux-${LIBC}
-       exit ;;
-     s390:Linux:*:* | s390x:Linux:*:*)
--      echo ${UNAME_MACHINE}-ibm-linux
-+      echo ${UNAME_MACHINE}-ibm-linux-${LIBC}
-       exit ;;
-     sh64*:Linux:*:*)
--      echo ${UNAME_MACHINE}-unknown-linux-gnu
-+      echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
-       exit ;;
-     sh*:Linux:*:*)
--      echo ${UNAME_MACHINE}-unknown-linux-gnu
-+      echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
-       exit ;;
-     sparc:Linux:*:* | sparc64:Linux:*:*)
--      echo ${UNAME_MACHINE}-unknown-linux-gnu
-+      echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
-       exit ;;
-     tile*:Linux:*:*)
--      echo ${UNAME_MACHINE}-unknown-linux-gnu
-+      echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
-       exit ;;
-     vax:Linux:*:*)
--      echo ${UNAME_MACHINE}-dec-linux-gnu
-+      echo ${UNAME_MACHINE}-dec-linux-${LIBC}
-       exit ;;
-     x86_64:Linux:*:*)
--      echo ${UNAME_MACHINE}-unknown-linux-gnu
-+      echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
-       exit ;;
-     xtensa*:Linux:*:*)
--      echo ${UNAME_MACHINE}-unknown-linux-gnu
-+      echo ${UNAME_MACHINE}-unknown-linux-${LIBC}
-       exit ;;
-     i*86:DYNIX/ptx:4*:*)
-       # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there.
-@@ -1194,6 +1227,9 @@
-     BePC:Haiku:*:*)   # Haiku running on Intel PC compatible.
-       echo i586-pc-haiku
-       exit ;;
-+    x86_64:Haiku:*:*)
-+      echo x86_64-unknown-haiku
-+      exit ;;
-     SX-4:SUPER-UX:*:*)
-       echo sx4-nec-superux${UNAME_RELEASE}
-       exit ;;
-@@ -1220,19 +1256,31 @@
-       exit ;;
-     *:Darwin:*:*)
-       UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown
--      case $UNAME_PROCESSOR in
--          i386)
--              eval $set_cc_for_build
--              if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then
--                if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo 
'#endif') | \
--                    (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \
--                    grep IS_64BIT_ARCH >/dev/null
--                then
--                    UNAME_PROCESSOR="x86_64"
--                fi
--              fi ;;
--          unknown) UNAME_PROCESSOR=powerpc ;;
--      esac
-+      eval $set_cc_for_build
-+      if test "$UNAME_PROCESSOR" = unknown ; then
-+          UNAME_PROCESSOR=powerpc
-+      fi
-+      if test `echo "$UNAME_RELEASE" | sed -e 's/\..*//'` -le 10 ; then
-+          if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then
-+              if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') 
| \
-+                  (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \
-+                  grep IS_64BIT_ARCH >/dev/null
-+              then
-+                  case $UNAME_PROCESSOR in
-+                      i386) UNAME_PROCESSOR=x86_64 ;;
-+                      powerpc) UNAME_PROCESSOR=powerpc64 ;;
-+                  esac
-+              fi
-+          fi
-+      elif test "$UNAME_PROCESSOR" = i386 ; then
-+          # Avoid executing cc on OS X 10.9, as it ships with a stub
-+          # that puts up a graphical alert prompting to install
-+          # developer tools.  Any system running Mac OS X 10.7 or
-+          # later (Darwin 11 and later) is required to have a 64-bit
-+          # processor. This is not true of the ARM version of Darwin
-+          # that Apple uses in portable devices.
-+          UNAME_PROCESSOR=x86_64
-+      fi
-       echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE}
-       exit ;;
-     *:procnto*:*:* | *:QNX:[0123456789]*:*)
-@@ -1249,7 +1297,7 @@
-     NEO-?:NONSTOP_KERNEL:*:*)
-       echo neo-tandem-nsk${UNAME_RELEASE}
-       exit ;;
--    NSE-?:NONSTOP_KERNEL:*:*)
-+    NSE-*:NONSTOP_KERNEL:*:*)
-       echo nse-tandem-nsk${UNAME_RELEASE}
-       exit ;;
-     NSR-?:NONSTOP_KERNEL:*:*)
-@@ -1323,157 +1371,6 @@
-       exit ;;
- esac
- 
--#echo '(No uname command or uname output not recognized.)' 1>&2
--#echo "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" 
1>&2
--
--eval $set_cc_for_build
--cat >$dummy.c <<EOF
--#ifdef _SEQUENT_
--# include <sys/types.h>
--# include <sys/utsname.h>
--#endif
--main ()
--{
--#if defined (sony)
--#if defined (MIPSEB)
--  /* BFD wants "bsd" instead of "newsos".  Perhaps BFD should be changed,
--     I don't know....  */
--  printf ("mips-sony-bsd\n"); exit (0);
--#else
--#include <sys/param.h>
--  printf ("m68k-sony-newsos%s\n",
--#ifdef NEWSOS4
--      "4"
--#else
--      ""
--#endif
--      ); exit (0);
--#endif
--#endif
--
--#if defined (__arm) && defined (__acorn) && defined (__unix)
--  printf ("arm-acorn-riscix\n"); exit (0);
--#endif
--
--#if defined (hp300) && !defined (hpux)
--  printf ("m68k-hp-bsd\n"); exit (0);
--#endif
--
--#if defined (NeXT)
--#if !defined (__ARCHITECTURE__)
--#define __ARCHITECTURE__ "m68k"
--#endif
--  int version;
--  version=`(hostinfo | sed -n 's/.*NeXT Mach \([0-9]*\).*/\1/p') 2>/dev/null`;
--  if (version < 4)
--    printf ("%s-next-nextstep%d\n", __ARCHITECTURE__, version);
--  else
--    printf ("%s-next-openstep%d\n", __ARCHITECTURE__, version);
--  exit (0);
--#endif
--
--#if defined (MULTIMAX) || defined (n16)
--#if defined (UMAXV)
--  printf ("ns32k-encore-sysv\n"); exit (0);
--#else
--#if defined (CMU)
--  printf ("ns32k-encore-mach\n"); exit (0);
--#else
--  printf ("ns32k-encore-bsd\n"); exit (0);
--#endif
--#endif
--#endif
--
--#if defined (__386BSD__)
--  printf ("i386-pc-bsd\n"); exit (0);
--#endif
--
--#if defined (sequent)
--#if defined (i386)
--  printf ("i386-sequent-dynix\n"); exit (0);
--#endif
--#if defined (ns32000)
--  printf ("ns32k-sequent-dynix\n"); exit (0);
--#endif
--#endif
--
--#if defined (_SEQUENT_)
--    struct utsname un;
--
--    uname(&un);
--
--    if (strncmp(un.version, "V2", 2) == 0) {
--      printf ("i386-sequent-ptx2\n"); exit (0);
--    }
--    if (strncmp(un.version, "V1", 2) == 0) { /* XXX is V1 correct? */
--      printf ("i386-sequent-ptx1\n"); exit (0);
--    }
--    printf ("i386-sequent-ptx\n"); exit (0);
--
--#endif
--
--#if defined (vax)
--# if !defined (ultrix)
--#  include <sys/param.h>
--#  if defined (BSD)
--#   if BSD == 43
--      printf ("vax-dec-bsd4.3\n"); exit (0);
--#   else
--#    if BSD == 199006
--      printf ("vax-dec-bsd4.3reno\n"); exit (0);
--#    else
--      printf ("vax-dec-bsd\n"); exit (0);
--#    endif
--#   endif
--#  else
--    printf ("vax-dec-bsd\n"); exit (0);
--#  endif
--# else
--    printf ("vax-dec-ultrix\n"); exit (0);
--# endif
--#endif
--
--#if defined (alliant) && defined (i860)
--  printf ("i860-alliant-bsd\n"); exit (0);
--#endif
--
--  exit (1);
--}
--EOF
--
--$CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null && SYSTEM_NAME=`$dummy` &&
--      { echo "$SYSTEM_NAME"; exit; }
--
--# Apollos put the system type in the environment.
--
--test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit; }
--
--# Convex versions that predate uname can use getsysinfo(1)
--
--if [ -x /usr/convex/getsysinfo ]
--then
--    case `getsysinfo -f cpu_type` in
--    c1*)
--      echo c1-convex-bsd
--      exit ;;
--    c2*)
--      if getsysinfo -f scalar_acc
--      then echo c32-convex-bsd
--      else echo c2-convex-bsd
--      fi
--      exit ;;
--    c34*)
--      echo c34-convex-bsd
--      exit ;;
--    c38*)
--      echo c38-convex-bsd
--      exit ;;
--    c4*)
--      echo c4-convex-bsd
--      exit ;;
--    esac
--fi
--
- cat >&2 <<EOF
- $0: unable to guess system type
- 
diff --git a/external/glew/glew-debug.patch.1 b/external/glew/glew-debug.patch.1
deleted file mode 100644
index c6e30a4..0000000
--- a/external/glew/glew-debug.patch.1
+++ /dev/null
@@ -1,12 +0,0 @@
--*- Mode: Diff -*-
---- glew/Makefile
-+++ glew/Makefile
-@@ -65,7 +65,7 @@
- RM      ?= rm -f
- LN      ?= ln -sf
- 
--ifeq ($(MAKECMDGOALS), debug)
-+ifneq (,$(filter debug,$(MAKECMDGOALS)))
- OPT = -g
- else
- OPT = $(POPT)
diff --git a/external/glew/glew-fix-rc-error.patch.1 
b/external/glew/glew-fix-rc-error.patch.1
deleted file mode 100644
index 7afcc2b..0000000
--- a/external/glew/glew-fix-rc-error.patch.1
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -ur glew.org/build/glew.rc glew/build/glew.rc
---- glew.org/build/glew.rc     2014-01-28 06:54:52.910765800 +0100
-+++ glew/build/glew.rc 2014-01-28 06:56:46.719717700 +0100
-@@ -56,7 +56,7 @@
-     BEGIN
-         BLOCK "040904b0"
-         BEGIN
--            VALUE "Comments", "The OpenGL Extension Wrangler 
Library\r\nCopyright (C) 2002-2008, Milan Ikits <milan ikits[]ieee 
org>\r\nCopyright (C) 2002-2008, Marcelo E. Magallon <mmagallo[]debian 
org>\r\nCopyright (C) 2002, Lev Povalahev\r\nAll rights 
reserved.\r\n\r\nRedistribution and use in source and binary forms, with or 
without \r\nmodification, are permitted provided that the following conditions 
are met:\r\n\r\n* Redistributions of source code must retain the above 
copyright notice, \r\n  this list of conditions and the following 
disclaimer.\r\n* Redistributions in binary form must reproduce the above 
copyright notice, \r\n  this list of conditions and the following disclaimer in 
the documentation \r\n  and/or other materials provided with the 
distribution.\r\n* The name of the author may be used to endorse or promote 
products \r\n  derived from this software without specific prior written 
permission.\r\n\r\nTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND 
CONTRIBU
 TORS ''AS IS'' \r\nAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 
LIMITED TO, THE \r\nIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A 
PARTICULAR PURPOSE\r\nARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR 
CONTRIBUTORS BE \r\nLIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 
EXEMPLARY, OR \r\nCONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 
PROCUREMENT OF \r\nSUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; 
OR BUSINESS\r\nINTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 
WHETHER IN\r\nCONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR 
OTHERWISE)\r\nARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF 
ADVISED OF\r\nTHE POSSIBILITY OF SUCH DAMAGE.\r\n\r\n\r\nMesa 3-D graphics 
library\r\n\r\nVersion:  7.0\r\n\r\nCopyright (C) 1999-2007  Brian Paul   All 
Rights Reserved.\r\n\r\nPermission is hereby granted, free of charge, to any 
person obtaining a\r\ncopy of this software and associated documentation files 
(the 
 ''Software''),\r\nto deal in the Software without restriction, including 
without limitation\r\nthe rights to use, copy, modify, merge, publish, 
distribute, sublicense,\r\nand/or sell copies of the Software, and to permit 
persons to whom the\r\nSoftware is furnished to do so, subject to the following 
conditions:\r\n\r\nThe above copyright notice and this permission notice shall 
be included\r\nin all copies or substantial portions of the 
Software.\r\n\r\nTHE SOFTWARE IS PROVIDED ''AS IS'', WITHOUT WARRANTY OF ANY 
KIND, EXPRESS\r\nOR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 
MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN 
NO EVENT SHALL\r\nBRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 
LIABILITY, WHETHER IN\r\nAN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 
FROM, OUT OF OR IN\r\nCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS 
IN THE SOFTWARE.\r\n\r\n\r\nCopyright (c) 2007 The Khronos Group 
Inc.\r\n\r\nPermission is hereby gr
 anted, free of charge, to any person obtaining a\r\ncopy of this software 
and/or associated documentation files (the\r\n''Materials''), to deal in the 
Materials without restriction, including\r\nwithout limitation the rights to 
use, copy, modify, merge, publish,\r\ndistribute, sublicense, and/or sell 
copies of the Materials, and to\r\npermit persons to whom the Materials are 
furnished to do so, subject to\r\nthe following conditions:\r\n\r\nThe above 
copyright notice and this permission notice shall be included\r\nin all copies 
or substantial portions of the Materials.\r\n\r\nTHE MATERIALS ARE PROVIDED 
''AS IS'', WITHOUT WARRANTY OF ANY KIND,\r\nEXPRESS OR IMPLIED, INCLUDING BUT 
NOT LIMITED TO THE WARRANTIES OF\r\nMERCHANTABILITY, FITNESS FOR A PARTICULAR 
PURPOSE AND NONINFRINGEMENT.\r\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT 
HOLDERS BE LIABLE FOR ANY\r\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN 
ACTION OF CONTRACT,\r\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTIO
 N WITH THE\r\nMATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS.\0"
-+            VALUE "Comments", "The OpenGL Extension Wrangler Library\0"
-             VALUE "CompanyName", "\0"
-             VALUE "FileDescription", "The OpenGL Extension Wrangler Library\0"
-             VALUE "FileVersion", "1,10,0,0\0"
diff --git a/external/glew/glew-vc2013-project.patch.1 
b/external/glew/glew-vc2013-project.patch.1
deleted file mode 100644
index b013c1e..0000000
--- a/external/glew/glew-vc2013-project.patch.1
+++ /dev/null
@@ -1,1360 +0,0 @@
--*- Mode:Diff -*-
---- /dev/null
-+++ glew/build/vc12/common.props
-@@ -0,0 +1,29 @@
-+<?xml version="1.0" encoding="utf-8"?>
-+<Project ToolsVersion="4.0" 
xmlns="http://schemas.microsoft.com/developer/msbuild/2003";>
-+  <ImportGroup Label="PropertySheets" />
-+  <PropertyGroup Label="UserMacros">
-+    <INCLUDE_DIR>../../include</INCLUDE_DIR>
-+    <LIB_DIR>../../lib</LIB_DIR>
-+    <BIN_DIR>../../bin</BIN_DIR>
-+  </PropertyGroup>
-+  <PropertyGroup />
-+  <ItemDefinitionGroup>
-+    <ClCompile>
-+      
<AdditionalIncludeDirectories>$(INCLUDE_DIR)</AdditionalIncludeDirectories>
-+    </ClCompile>
-+  </ItemDefinitionGroup>
-+  <ItemGroup>
-+    <BuildMacro Include="INCLUDE_DIR">
-+      <Value>$(INCLUDE_DIR)</Value>
-+      <EnvironmentVariable>true</EnvironmentVariable>
-+    </BuildMacro>
-+    <BuildMacro Include="LIB_DIR">
-+      <Value>$(LIB_DIR)</Value>
-+      <EnvironmentVariable>true</EnvironmentVariable>
-+    </BuildMacro>
-+    <BuildMacro Include="BIN_DIR">
-+      <Value>$(BIN_DIR)</Value>
-+      <EnvironmentVariable>true</EnvironmentVariable>
-+    </BuildMacro>
-+  </ItemGroup>
-+</Project>
---- /dev/null
-+++ glew/build/vc12/glew_static.vcxproj
-@@ -0,0 +1,400 @@
-+<?xml version="1.0" encoding="utf-8"?>
-+<Project DefaultTargets="Build" ToolsVersion="12.0" 
xmlns="http://schemas.microsoft.com/developer/msbuild/2003";>
-+  <ItemGroup Label="ProjectConfigurations">
-+    <ProjectConfiguration Include="Debug MX|Win32">
-+      <Configuration>Debug MX</Configuration>
-+      <Platform>Win32</Platform>
-+    </ProjectConfiguration>
-+    <ProjectConfiguration Include="Debug MX|x64">
-+      <Configuration>Debug MX</Configuration>
-+      <Platform>x64</Platform>
-+    </ProjectConfiguration>
-+    <ProjectConfiguration Include="Debug|Win32">
-+      <Configuration>Debug</Configuration>
-+      <Platform>Win32</Platform>
-+    </ProjectConfiguration>
-+    <ProjectConfiguration Include="Debug|x64">
-+      <Configuration>Debug</Configuration>
-+      <Platform>x64</Platform>
-+    </ProjectConfiguration>
-+    <ProjectConfiguration Include="Release MX|Win32">
-+      <Configuration>Release MX</Configuration>
-+      <Platform>Win32</Platform>
-+    </ProjectConfiguration>
-+    <ProjectConfiguration Include="Release MX|x64">
-+      <Configuration>Release MX</Configuration>
-+      <Platform>x64</Platform>
-+    </ProjectConfiguration>
-+    <ProjectConfiguration Include="Release|Win32">
-+      <Configuration>Release</Configuration>
-+      <Platform>Win32</Platform>
-+    </ProjectConfiguration>
-+    <ProjectConfiguration Include="Release|x64">
-+      <Configuration>Release</Configuration>
-+      <Platform>x64</Platform>
-+    </ProjectConfiguration>
-+  </ItemGroup>
-+  <PropertyGroup Label="Globals">
-+    <SccProjectName />
-+    <SccLocalPath />
-+    <ProjectGuid>{664E6F0D-6784-4760-9565-D54F8EB1EDF4}</ProjectGuid>
-+  </PropertyGroup>
-+  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
-+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Template|Win32'" 
Label="Configuration">
-+    <ConfigurationType>Application</ConfigurationType>
-+  </PropertyGroup>
-+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Template|x64'" 
Label="Configuration">
-+    <ConfigurationType>Application</ConfigurationType>
-+  </PropertyGroup>
-+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" 
Label="Configuration">
-+    <ConfigurationType>StaticLibrary</ConfigurationType>
-+    <UseOfMfc>false</UseOfMfc>
-+    <PlatformToolset>v120</PlatformToolset>
-+    <CharacterSet>MultiByte</CharacterSet>
-+  </PropertyGroup>
-+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" 
Label="Configuration">
-+    <ConfigurationType>StaticLibrary</ConfigurationType>
-+    <UseOfMfc>false</UseOfMfc>
-+    <PlatformToolset>v120</PlatformToolset>
-+    <CharacterSet>MultiByte</CharacterSet>
-+  </PropertyGroup>
-+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release 
MX|Win32'" Label="Configuration">
-+    <ConfigurationType>StaticLibrary</ConfigurationType>
-+    <UseOfMfc>false</UseOfMfc>
-+    <PlatformToolset>v120</PlatformToolset>
-+    <CharacterSet>MultiByte</CharacterSet>
-+  </PropertyGroup>
-+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release MX|x64'" 
Label="Configuration">
-+    <ConfigurationType>StaticLibrary</ConfigurationType>
-+    <UseOfMfc>false</UseOfMfc>
-+    <PlatformToolset>v120</PlatformToolset>
-+    <CharacterSet>MultiByte</CharacterSet>
-+  </PropertyGroup>
-+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" 
Label="Configuration">
-+    <ConfigurationType>StaticLibrary</ConfigurationType>
-+    <UseOfMfc>false</UseOfMfc>
-+    <PlatformToolset>v120</PlatformToolset>
-+    <CharacterSet>MultiByte</CharacterSet>
-+  </PropertyGroup>
-+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" 
Label="Configuration">
-+    <ConfigurationType>StaticLibrary</ConfigurationType>
-+    <UseOfMfc>false</UseOfMfc>
-+    <PlatformToolset>v120</PlatformToolset>
-+    <CharacterSet>MultiByte</CharacterSet>
-+  </PropertyGroup>
-+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug MX|Win32'" 
Label="Configuration">
-+    <ConfigurationType>StaticLibrary</ConfigurationType>
-+    <UseOfMfc>false</UseOfMfc>
-+    <PlatformToolset>v120</PlatformToolset>
-+    <CharacterSet>MultiByte</CharacterSet>
-+  </PropertyGroup>
-+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug MX|x64'" 
Label="Configuration">
-+    <ConfigurationType>StaticLibrary</ConfigurationType>
-+    <UseOfMfc>false</UseOfMfc>
-+    <PlatformToolset>v120</PlatformToolset>
-+    <CharacterSet>MultiByte</CharacterSet>
-+  </PropertyGroup>
-+  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
-+  <ImportGroup Label="ExtensionSettings">
-+  </ImportGroup>
-+  <ImportGroup Label="PropertySheets" 
Condition="'$(Configuration)|$(Platform)'=='Template|Win32'">
-+    <Import Project="common.props" />
-+  </ImportGroup>
-+  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Template|x64'" 
Label="PropertySheets">
-+    <Import Project="common.props" />
-+  </ImportGroup>
-+  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" 
Label="PropertySheets">
-+    <Import Project="common.props" />
-+  </ImportGroup>
-+  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" 
Label="PropertySheets">
-+    <Import Project="common.props" />
-+  </ImportGroup>
-+  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release MX|Win32'" 
Label="PropertySheets">
-+    <Import Project="common.props" />
-+  </ImportGroup>
-+  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release MX|x64'" 
Label="PropertySheets">
-+    <Import Project="common.props" />
-+  </ImportGroup>
-+  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" 
Label="PropertySheets">
-+    <Import Project="common.props" />
-+  </ImportGroup>
-+  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" 
Label="PropertySheets">
-+    <Import Project="common.props" />
-+  </ImportGroup>
-+  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug MX|Win32'" 
Label="PropertySheets">
-+    <Import Project="common.props" />
-+  </ImportGroup>
-+  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug MX|x64'" 
Label="PropertySheets">
-+    <Import Project="common.props" />
-+  </ImportGroup>
-+  <PropertyGroup Label="UserMacros" />
-+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug MX|Win32'">
-+    <OutDir>$(LIB_DIR)\$(Configuration)\$(PlatformName)\</OutDir>
-+    <IntDir>tmp\$(TargetName)\$(Configuration)\$(PlatformName)\</IntDir>
-+    <TargetName>glew32mxsd</TargetName>
-+  </PropertyGroup>
-+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug MX|x64'">
-+    <OutDir>$(LIB_DIR)\$(Configuration)\$(PlatformName)\</OutDir>
-+    <IntDir>tmp\$(TargetName)\$(Configuration)\$(PlatformName)\</IntDir>
-+    <TargetName>glew32mxsd</TargetName>
-+  </PropertyGroup>
-+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
-+    <OutDir>$(LIB_DIR)\$(Configuration)\$(PlatformName)\</OutDir>
-+    <IntDir>tmp\$(TargetName)\$(Configuration)\$(PlatformName)\</IntDir>
-+    <TargetName>glew32s</TargetName>
-+  </PropertyGroup>
-+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
-+    <OutDir>$(LIB_DIR)\$(Configuration)\$(PlatformName)\</OutDir>
-+    <IntDir>tmp\$(TargetName)\$(Configuration)\$(PlatformName)\</IntDir>
-+    <TargetName>glew32s</TargetName>
-+  </PropertyGroup>
-+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release 
MX|Win32'">
-+    <OutDir>$(LIB_DIR)\$(Configuration)\$(PlatformName)\</OutDir>
-+    <IntDir>tmp\$(TargetName)\$(Configuration)\$(PlatformName)\</IntDir>
-+    <TargetName>glew32mxs</TargetName>
-+  </PropertyGroup>
-+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release MX|x64'">
-+    <OutDir>$(LIB_DIR)\$(Configuration)\$(PlatformName)\</OutDir>
-+    <IntDir>tmp\$(TargetName)\$(Configuration)\$(PlatformName)\</IntDir>
-+    <TargetName>glew32mxs</TargetName>
-+  </PropertyGroup>
-+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
-+    <OutDir>$(LIB_DIR)\$(Configuration)\$(PlatformName)\</OutDir>
-+    <IntDir>tmp\$(TargetName)\$(Configuration)\$(PlatformName)\</IntDir>
-+    <TargetName>glew32sd</TargetName>
-+  </PropertyGroup>
-+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
-+    <OutDir>$(LIB_DIR)\$(Configuration)\$(PlatformName)\</OutDir>
-+    <IntDir>tmp\$(TargetName)\$(Configuration)\$(PlatformName)\</IntDir>
-+    <TargetName>glew32sd</TargetName>
-+  </PropertyGroup>
-+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Template|Win32'">
-+    <OutDir>$(LIB_DIR)\$(Configuration)\$(PlatformName)\</OutDir>
-+    <IntDir>tmp\$(TargetName)\$(Configuration)\$(PlatformName)\</IntDir>
-+  </PropertyGroup>
-+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Template|x64'">
-+    <OutDir>$(LIB_DIR)\$(Configuration)\$(PlatformName)\</OutDir>
-+    <IntDir>tmp\$(TargetName)\$(Configuration)\$(PlatformName)\</IntDir>
-+  </PropertyGroup>
-+  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug 
MX|Win32'">
-+    <ClCompile>
-+      <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
-+      <InlineFunctionExpansion>Default</InlineFunctionExpansion>
-+      <FunctionLevelLinking>false</FunctionLevelLinking>
-+      <Optimization>Disabled</Optimization>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+      <WarningLevel>Level3</WarningLevel>
-+      
<AdditionalIncludeDirectories>../../include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-+      
<PreprocessorDefinitions>WIN32;_DEBUG;_LIB;WIN32_LEAN_AND_MEAN;GLEW_MX;GLEW_STATIC;%(PreprocessorDefinitions)</PreprocessorDefinitions>
-+      <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
-+    </ClCompile>
-+    <ResourceCompile>
-+      <Culture>0x0409</Culture>
-+      
<PreprocessorDefinitions>_DEBUG;GLEW_MX;GLEW_STATIC;%(PreprocessorDefinitions)</PreprocessorDefinitions>
-+    </ResourceCompile>
-+    <Bscmake>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+    </Bscmake>
-+    <Lib>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+      <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
-+      <TargetMachine>MachineX86</TargetMachine>
-+    </Lib>
-+  </ItemDefinitionGroup>
-+  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug 
MX|x64'">
-+    <ClCompile>
-+      <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
-+      <InlineFunctionExpansion>Default</InlineFunctionExpansion>
-+      <FunctionLevelLinking>false</FunctionLevelLinking>
-+      <Optimization>Disabled</Optimization>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+      <WarningLevel>Level3</WarningLevel>
-+      
<AdditionalIncludeDirectories>../../include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-+      
<PreprocessorDefinitions>WIN32;_DEBUG;_LIB;WIN32_LEAN_AND_MEAN;GLEW_MX;GLEW_STATIC;%(PreprocessorDefinitions)</PreprocessorDefinitions>
-+      <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
-+    </ClCompile>
-+    <ResourceCompile>
-+      <Culture>0x0409</Culture>
-+      
<PreprocessorDefinitions>_DEBUG;GLEW_MX;GLEW_STATIC;%(PreprocessorDefinitions)</PreprocessorDefinitions>
-+    </ResourceCompile>
-+    <Bscmake>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+    </Bscmake>
-+    <Lib>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+      <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
-+      <TargetMachine>MachineX64</TargetMachine>
-+    </Lib>
-+  </ItemDefinitionGroup>
-+  <ItemDefinitionGroup 
Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
-+    <ClCompile>
-+      <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
-+      <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
-+      <StringPooling>true</StringPooling>
-+      <FunctionLevelLinking>true</FunctionLevelLinking>
-+      <Optimization>MaxSpeed</Optimization>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+      <WarningLevel>Level3</WarningLevel>
-+      
<AdditionalIncludeDirectories>../../include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-+      
<PreprocessorDefinitions>WIN32;NDEBUG;_LIB;WIN32_LEAN_AND_MEAN;GLEW_STATIC;%(PreprocessorDefinitions)</PreprocessorDefinitions>
-+    </ClCompile>
-+    <ResourceCompile>
-+      <Culture>0x0409</Culture>
-+      
<PreprocessorDefinitions>NDEBUG;GLEW_STATIC;%(PreprocessorDefinitions)</PreprocessorDefinitions>
-+    </ResourceCompile>
-+    <Bscmake>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+    </Bscmake>
-+    <Lib>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+      <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
-+      <TargetMachine>MachineX86</TargetMachine>
-+    </Lib>
-+  </ItemDefinitionGroup>
-+  <ItemDefinitionGroup 
Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
-+    <ClCompile>
-+      <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
-+      <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
-+      <StringPooling>true</StringPooling>
-+      <FunctionLevelLinking>true</FunctionLevelLinking>
-+      <Optimization>MaxSpeed</Optimization>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+      <WarningLevel>Level3</WarningLevel>
-+      
<AdditionalIncludeDirectories>../../include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-+      
<PreprocessorDefinitions>WIN32;NDEBUG;_LIB;WIN32_LEAN_AND_MEAN;GLEW_STATIC;%(PreprocessorDefinitions)</PreprocessorDefinitions>
-+    </ClCompile>
-+    <ResourceCompile>
-+      <Culture>0x0409</Culture>
-+      
<PreprocessorDefinitions>NDEBUG;GLEW_STATIC;%(PreprocessorDefinitions)</PreprocessorDefinitions>
-+    </ResourceCompile>
-+    <Bscmake>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+    </Bscmake>
-+    <Lib>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+      <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
-+      <TargetMachine>MachineX64</TargetMachine>
-+    </Lib>
-+  </ItemDefinitionGroup>
-+  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release 
MX|Win32'">
-+    <ClCompile>
-+      <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
-+      <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
-+      <StringPooling>true</StringPooling>
-+      <FunctionLevelLinking>true</FunctionLevelLinking>
-+      <Optimization>MaxSpeed</Optimization>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+      <WarningLevel>Level3</WarningLevel>
-+      
<AdditionalIncludeDirectories>../../include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-+      
<PreprocessorDefinitions>WIN32;NDEBUG;_LIB;WIN32_LEAN_AND_MEAN;GLEW_MX;GLEW_STATIC;%(PreprocessorDefinitions)</PreprocessorDefinitions>
-+    </ClCompile>
-+    <ResourceCompile>
-+      <Culture>0x0409</Culture>
-+      
<PreprocessorDefinitions>NDEBUG;GLEW_MX;GLEW_STATIC;%(PreprocessorDefinitions)</PreprocessorDefinitions>
-+    </ResourceCompile>
-+    <Bscmake>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+    </Bscmake>
-+    <Lib>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+      <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
-+      <TargetMachine>MachineX86</TargetMachine>
-+    </Lib>
-+  </ItemDefinitionGroup>
-+  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release 
MX|x64'">
-+    <ClCompile>
-+      <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
-+      <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
-+      <StringPooling>true</StringPooling>
-+      <FunctionLevelLinking>true</FunctionLevelLinking>
-+      <Optimization>MaxSpeed</Optimization>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+      <WarningLevel>Level3</WarningLevel>
-+      
<AdditionalIncludeDirectories>../../include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-+      
<PreprocessorDefinitions>WIN32;NDEBUG;_LIB;WIN32_LEAN_AND_MEAN;GLEW_MX;GLEW_STATIC;%(PreprocessorDefinitions)</PreprocessorDefinitions>
-+    </ClCompile>
-+    <ResourceCompile>
-+      <Culture>0x0409</Culture>
-+      
<PreprocessorDefinitions>NDEBUG;GLEW_MX;GLEW_STATIC;%(PreprocessorDefinitions)</PreprocessorDefinitions>
-+    </ResourceCompile>
-+    <Bscmake>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+    </Bscmake>
-+    <Lib>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+      <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
-+      <TargetMachine>MachineX64</TargetMachine>
-+    </Lib>
-+  </ItemDefinitionGroup>
-+  <ItemDefinitionGroup 
Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
-+    <ClCompile>
-+      <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
-+      <InlineFunctionExpansion>Default</InlineFunctionExpansion>
-+      <FunctionLevelLinking>false</FunctionLevelLinking>
-+      <Optimization>Disabled</Optimization>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+      <WarningLevel>Level3</WarningLevel>
-+      
<PreprocessorDefinitions>WIN32;_DEBUG;_LIB;WIN32_LEAN_AND_MEAN;GLEW_STATIC;%(PreprocessorDefinitions)</PreprocessorDefinitions>
-+      <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
-+    </ClCompile>
-+    <ResourceCompile>
-+      <Culture>0x0409</Culture>
-+      
<PreprocessorDefinitions>_DEBUG;GLEW_STATIC;%(PreprocessorDefinitions)</PreprocessorDefinitions>
-+    </ResourceCompile>
-+    <Bscmake>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+    </Bscmake>
-+    <Lib>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+      <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
-+      <TargetMachine>MachineX86</TargetMachine>
-+    </Lib>
-+  </ItemDefinitionGroup>
-+  <ItemDefinitionGroup 
Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
-+    <ClCompile>
-+      <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
-+      <InlineFunctionExpansion>Default</InlineFunctionExpansion>
-+      <FunctionLevelLinking>false</FunctionLevelLinking>
-+      <Optimization>Disabled</Optimization>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+      <WarningLevel>Level3</WarningLevel>
-+      
<PreprocessorDefinitions>WIN32;_DEBUG;_LIB;WIN32_LEAN_AND_MEAN;GLEW_STATIC;%(PreprocessorDefinitions)</PreprocessorDefinitions>
-+      <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
-+    </ClCompile>
-+    <ResourceCompile>
-+      <Culture>0x0409</Culture>
-+      
<PreprocessorDefinitions>_DEBUG;GLEW_STATIC;%(PreprocessorDefinitions)</PreprocessorDefinitions>
-+    </ResourceCompile>
-+    <Bscmake>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+    </Bscmake>
-+    <Lib>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+      <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
-+      <TargetMachine>MachineX64</TargetMachine>
-+    </Lib>
-+  </ItemDefinitionGroup>
-+  <ItemDefinitionGroup 
Condition="'$(Configuration)|$(Platform)'=='Template|Win32'">
-+    <ClCompile>
-+      
<AdditionalIncludeDirectories>../../include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-+    </ClCompile>
-+  </ItemDefinitionGroup>
-+  <ItemDefinitionGroup 
Condition="'$(Configuration)|$(Platform)'=='Template|x64'">
-+    <ClCompile>
-+      
<AdditionalIncludeDirectories>../../include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
-+    </ClCompile>
-+  </ItemDefinitionGroup>
-+  <ItemGroup>
-+    <ClCompile Include="..\..\src\glew.c" />
-+  </ItemGroup>
-+  <ItemGroup>
-+    <ClInclude Include="..\..\include\GL\glew.h" />
-+    <ClInclude Include="..\..\include\GL\wglew.h" />
-+  </ItemGroup>
-+  <ItemGroup>
-+    <ResourceCompile Include="..\glew.rc" />
-+  </ItemGroup>
-+  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
-+  <ImportGroup Label="ExtensionTargets">
-+  </ImportGroup>
-+</Project>
---- /dev/null
-+++ glew/build/vc12/glew_shared.vcxproj
-@@ -0,0 +1,472 @@
-+<?xml version="1.0" encoding="utf-8"?>
-+<Project DefaultTargets="Build" ToolsVersion="12.0" 
xmlns="http://schemas.microsoft.com/developer/msbuild/2003";>
-+  <ItemGroup Label="ProjectConfigurations">
-+    <ProjectConfiguration Include="Debug MX|Win32">
-+      <Configuration>Debug MX</Configuration>
-+      <Platform>Win32</Platform>
-+    </ProjectConfiguration>
-+    <ProjectConfiguration Include="Debug MX|x64">
-+      <Configuration>Debug MX</Configuration>
-+      <Platform>x64</Platform>
-+    </ProjectConfiguration>
-+    <ProjectConfiguration Include="Debug|Win32">
-+      <Configuration>Debug</Configuration>
-+      <Platform>Win32</Platform>
-+    </ProjectConfiguration>
-+    <ProjectConfiguration Include="Debug|x64">
-+      <Configuration>Debug</Configuration>
-+      <Platform>x64</Platform>
-+    </ProjectConfiguration>
-+    <ProjectConfiguration Include="Release MX|Win32">
-+      <Configuration>Release MX</Configuration>
-+      <Platform>Win32</Platform>
-+    </ProjectConfiguration>
-+    <ProjectConfiguration Include="Release MX|x64">
-+      <Configuration>Release MX</Configuration>
-+      <Platform>x64</Platform>
-+    </ProjectConfiguration>
-+    <ProjectConfiguration Include="Release|Win32">
-+      <Configuration>Release</Configuration>
-+      <Platform>Win32</Platform>
-+    </ProjectConfiguration>
-+    <ProjectConfiguration Include="Release|x64">
-+      <Configuration>Release</Configuration>
-+      <Platform>x64</Platform>
-+    </ProjectConfiguration>
-+  </ItemGroup>
-+  <PropertyGroup Label="Globals">
-+    <SccProjectName />
-+    <SccLocalPath />
-+    <ProjectGuid>{55AE3D72-7DE6-F19F-AEF2-9AE8CA26CF3D}</ProjectGuid>
-+  </PropertyGroup>
-+  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
-+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" 
Label="Configuration">
-+    <ConfigurationType>DynamicLibrary</ConfigurationType>
-+    <UseOfMfc>false</UseOfMfc>
-+    <PlatformToolset>v120</PlatformToolset>
-+  </PropertyGroup>
-+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" 
Label="Configuration">
-+    <ConfigurationType>DynamicLibrary</ConfigurationType>
-+    <UseOfMfc>false</UseOfMfc>
-+    <PlatformToolset>v120</PlatformToolset>
-+  </PropertyGroup>
-+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug MX|Win32'" 
Label="Configuration">
-+    <ConfigurationType>DynamicLibrary</ConfigurationType>
-+    <UseOfMfc>false</UseOfMfc>
-+    <PlatformToolset>v120</PlatformToolset>
-+  </PropertyGroup>
-+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug MX|x64'" 
Label="Configuration">
-+    <ConfigurationType>DynamicLibrary</ConfigurationType>
-+    <UseOfMfc>false</UseOfMfc>
-+    <PlatformToolset>v120</PlatformToolset>
-+  </PropertyGroup>
-+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" 
Label="Configuration">
-+    <ConfigurationType>DynamicLibrary</ConfigurationType>
-+    <UseOfMfc>false</UseOfMfc>
-+    <PlatformToolset>v120</PlatformToolset>
-+  </PropertyGroup>
-+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" 
Label="Configuration">
-+    <ConfigurationType>DynamicLibrary</ConfigurationType>
-+    <UseOfMfc>false</UseOfMfc>
-+    <PlatformToolset>v120</PlatformToolset>
-+  </PropertyGroup>
-+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release 
MX|Win32'" Label="Configuration">
-+    <ConfigurationType>DynamicLibrary</ConfigurationType>
-+    <UseOfMfc>false</UseOfMfc>
-+    <PlatformToolset>v120</PlatformToolset>
-+  </PropertyGroup>
-+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release MX|x64'" 
Label="Configuration">
-+    <ConfigurationType>DynamicLibrary</ConfigurationType>
-+    <UseOfMfc>false</UseOfMfc>
-+    <PlatformToolset>v120</PlatformToolset>
-+  </PropertyGroup>
-+  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
-+  <ImportGroup Label="ExtensionSettings">
-+  </ImportGroup>
-+  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" 
Label="PropertySheets">
-+    <Import Project="common.props" />
-+  </ImportGroup>
-+  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" 
Label="PropertySheets">
-+    <Import Project="common.props" />
-+  </ImportGroup>
-+  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug MX|Win32'" 
Label="PropertySheets">
-+    <Import Project="common.props" />
-+  </ImportGroup>
-+  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug MX|x64'" 
Label="PropertySheets">
-+    <Import Project="common.props" />
-+  </ImportGroup>
-+  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" 
Label="PropertySheets">
-+    <Import Project="common.props" />
-+  </ImportGroup>
-+  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" 
Label="PropertySheets">
-+    <Import Project="common.props" />
-+  </ImportGroup>
-+  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release MX|Win32'" 
Label="PropertySheets">
-+    <Import Project="common.props" />
-+  </ImportGroup>
-+  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release MX|x64'" 
Label="PropertySheets">
-+    <Import Project="common.props" />
-+  </ImportGroup>
-+  <PropertyGroup Label="UserMacros" />
-+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release 
MX|Win32'">
-+    <OutDir>$(BIN_DIR)\$(Configuration)\$(PlatformName)\</OutDir>
-+    <IntDir>tmp\$(TargetName)\$(Configuration)\$(PlatformName)\</IntDir>
-+    <LinkIncremental>false</LinkIncremental>
-+    <TargetName>glew32mx</TargetName>
-+  </PropertyGroup>
-+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release MX|x64'">
-+    <OutDir>$(BIN_DIR)\$(Configuration)\$(PlatformName)\</OutDir>
-+    <IntDir>tmp\$(TargetName)\$(Configuration)\$(PlatformName)\</IntDir>
-+    <LinkIncremental>false</LinkIncremental>
-+    <TargetName>glew32mx</TargetName>
-+  </PropertyGroup>
-+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
-+    <OutDir>$(BIN_DIR)\$(Configuration)\$(PlatformName)\</OutDir>
-+    <IntDir>tmp\$(TargetName)\$(Configuration)\$(PlatformName)\</IntDir>
-+    <LinkIncremental>false</LinkIncremental>
-+    <TargetName>glew32</TargetName>
-+  </PropertyGroup>
-+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
-+    <OutDir>$(BIN_DIR)\$(Configuration)\$(PlatformName)\</OutDir>
-+    <IntDir>tmp\$(TargetName)\$(Configuration)\$(PlatformName)\</IntDir>
-+    <LinkIncremental>false</LinkIncremental>
-+    <TargetName>glew32</TargetName>
-+  </PropertyGroup>
-+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug MX|Win32'">
-+    <OutDir>$(BIN_DIR)\$(Configuration)\$(PlatformName)\</OutDir>
-+    <IntDir>tmp\$(TargetName)\$(Configuration)\$(PlatformName)\</IntDir>
-+    <LinkIncremental>false</LinkIncremental>
-+    <TargetName>glew32mxd</TargetName>
-+  </PropertyGroup>
-+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug MX|x64'">
-+    <OutDir>$(BIN_DIR)\$(Configuration)\$(PlatformName)\</OutDir>
-+    <IntDir>tmp\$(TargetName)\$(Configuration)\$(PlatformName)\</IntDir>
-+    <LinkIncremental>false</LinkIncremental>
-+    <TargetName>glew32mxd</TargetName>
-+  </PropertyGroup>
-+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
-+    <OutDir>$(BIN_DIR)\$(Configuration)\$(PlatformName)\</OutDir>
-+    <IntDir>tmp\$(TargetName)\$(Configuration)\$(PlatformName)\</IntDir>
-+    <LinkIncremental>false</LinkIncremental>
-+    <TargetName>glew32d</TargetName>
-+  </PropertyGroup>
-+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
-+    <OutDir>$(BIN_DIR)\$(Configuration)\$(PlatformName)\</OutDir>
-+    <IntDir>tmp\$(TargetName)\$(Configuration)\$(PlatformName)\</IntDir>
-+    <LinkIncremental>false</LinkIncremental>
-+    <TargetName>glew32d</TargetName>
-+  </PropertyGroup>
-+  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release 
MX|Win32'">
-+    <ClCompile>
-+      <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
-+      <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
-+      <StringPooling>true</StringPooling>
-+      <FunctionLevelLinking>true</FunctionLevelLinking>
-+      <Optimization>MaxSpeed</Optimization>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+      <WarningLevel>Level3</WarningLevel>
-+      
<AdditionalIncludeDirectories>$(INCLUDE_DIR)</AdditionalIncludeDirectories>
-+      
<PreprocessorDefinitions>WIN32;WIN32_LEAN_AND_MEAN;VC_EXTRALEAN;GLEW_MX;GLEW_BUILD;%(PreprocessorDefinitions)</PreprocessorDefinitions>
-+    </ClCompile>
-+    <Midl>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+      
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
-+      <MkTypLibCompatible>true</MkTypLibCompatible>
-+      <TargetEnvironment>Win32</TargetEnvironment>
-+    </Midl>
-+    <ResourceCompile>
-+      <Culture>0x0409</Culture>
-+      
<PreprocessorDefinitions>NDEBUG;GLEW_MX;%(PreprocessorDefinitions)</PreprocessorDefinitions>
-+    </ResourceCompile>
-+    <Bscmake>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+    </Bscmake>
-+    <Link>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+      <LinkDLL>true</LinkDLL>
-+      <SubSystem>Console</SubSystem>
-+      <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
-+      
<ImportLibrary>$(LIB_DIR)\$(Configuration)\$(PlatformName)\$(TargetName).lib</ImportLibrary>
-+      <BaseAddress>0x62AA0000</BaseAddress>
-+      
<AdditionalDependencies>opengl32.lib;%(AdditionalDependencies)</AdditionalDependencies>
-+      <AdditionalOptions> /ignore:4089</AdditionalOptions>
-+      <AdditionalLibraryDirectories>
-+      </AdditionalLibraryDirectories>
-+    </Link>
-+  </ItemDefinitionGroup>
-+  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release 
MX|x64'">
-+    <ClCompile>
-+      <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
-+      <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
-+      <StringPooling>true</StringPooling>
-+      <FunctionLevelLinking>true</FunctionLevelLinking>
-+      <Optimization>MaxSpeed</Optimization>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+      <WarningLevel>Level3</WarningLevel>
-+      
<AdditionalIncludeDirectories>$(INCLUDE_DIR)</AdditionalIncludeDirectories>
-+      
<PreprocessorDefinitions>WIN32;WIN32_LEAN_AND_MEAN;VC_EXTRALEAN;GLEW_MX;GLEW_BUILD;%(PreprocessorDefinitions)</PreprocessorDefinitions>
-+    </ClCompile>
-+    <Midl>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+      
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
-+      <MkTypLibCompatible>true</MkTypLibCompatible>
-+    </Midl>
-+    <ResourceCompile>
-+      <Culture>0x0409</Culture>
-+      
<PreprocessorDefinitions>NDEBUG;GLEW_MX;%(PreprocessorDefinitions)</PreprocessorDefinitions>
-+    </ResourceCompile>
-+    <Bscmake>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+    </Bscmake>
-+    <Link>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+      <LinkDLL>true</LinkDLL>
-+      <SubSystem>Console</SubSystem>
-+      <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
-+      
<ImportLibrary>$(LIB_DIR)\$(Configuration)\$(PlatformName)\$(TargetName).lib</ImportLibrary>
-+      <BaseAddress>0x62AA0000</BaseAddress>
-+      
<AdditionalDependencies>opengl32.lib;%(AdditionalDependencies)</AdditionalDependencies>
-+      <AdditionalOptions> /ignore:4089</AdditionalOptions>
-+      <AdditionalLibraryDirectories>
-+      </AdditionalLibraryDirectories>
-+    </Link>
-+  </ItemDefinitionGroup>
-+  <ItemDefinitionGroup 
Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
-+    <ClCompile>
-+      <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
-+      <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
-+      <StringPooling>true</StringPooling>
-+      <FunctionLevelLinking>true</FunctionLevelLinking>
-+      <Optimization>MaxSpeed</Optimization>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+      <WarningLevel>Level3</WarningLevel>
-+      
<AdditionalIncludeDirectories>$(INCLUDE_DIR)</AdditionalIncludeDirectories>
-+      
<PreprocessorDefinitions>WIN32;WIN32_LEAN_AND_MEAN;VC_EXTRALEAN;GLEW_BUILD;%(PreprocessorDefinitions)</PreprocessorDefinitions>
-+    </ClCompile>
-+    <Midl>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+      
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
-+      <MkTypLibCompatible>true</MkTypLibCompatible>
-+      <TargetEnvironment>Win32</TargetEnvironment>
-+    </Midl>
-+    <ResourceCompile>
-+      <Culture>0x0409</Culture>
-+      
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
-+    </ResourceCompile>
-+    <Bscmake>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+    </Bscmake>
-+    <Link>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+      <LinkDLL>true</LinkDLL>
-+      <SubSystem>Console</SubSystem>
-+      <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
-+      
<ImportLibrary>$(LIB_DIR)\$(Configuration)\$(PlatformName)\$(TargetName).lib</ImportLibrary>
-+      <BaseAddress>0x62AA0000</BaseAddress>
-+      
<AdditionalDependencies>opengl32.lib;%(AdditionalDependencies)</AdditionalDependencies>
-+      <AdditionalOptions> /ignore:4089</AdditionalOptions>
-+      <AdditionalLibraryDirectories>
-+      </AdditionalLibraryDirectories>
-+    </Link>
-+  </ItemDefinitionGroup>
-+  <ItemDefinitionGroup 
Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
-+    <ClCompile>
-+      <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
-+      <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
-+      <StringPooling>true</StringPooling>
-+      <FunctionLevelLinking>true</FunctionLevelLinking>
-+      <Optimization>MaxSpeed</Optimization>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+      <WarningLevel>Level3</WarningLevel>
-+      
<AdditionalIncludeDirectories>$(INCLUDE_DIR)</AdditionalIncludeDirectories>
-+      
<PreprocessorDefinitions>WIN32;WIN32_LEAN_AND_MEAN;VC_EXTRALEAN;GLEW_BUILD;%(PreprocessorDefinitions)</PreprocessorDefinitions>
-+    </ClCompile>
-+    <Midl>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+      
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
-+      <MkTypLibCompatible>true</MkTypLibCompatible>
-+    </Midl>
-+    <ResourceCompile>
-+      <Culture>0x0409</Culture>
-+      
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
-+    </ResourceCompile>
-+    <Bscmake>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+    </Bscmake>
-+    <Link>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+      <LinkDLL>true</LinkDLL>
-+      <SubSystem>Console</SubSystem>
-+      <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
-+      
<ImportLibrary>$(LIB_DIR)\$(Configuration)\$(PlatformName)\$(TargetName).lib</ImportLibrary>
-+      <BaseAddress>0x62AA0000</BaseAddress>
-+      
<AdditionalDependencies>opengl32.lib;%(AdditionalDependencies)</AdditionalDependencies>
-+      <AdditionalOptions> /ignore:4089</AdditionalOptions>
-+      <AdditionalLibraryDirectories>
-+      </AdditionalLibraryDirectories>
-+    </Link>
-+  </ItemDefinitionGroup>
-+  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug 
MX|Win32'">
-+    <ClCompile>
-+      <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
-+      <InlineFunctionExpansion>Default</InlineFunctionExpansion>
-+      <FunctionLevelLinking>false</FunctionLevelLinking>
-+      <Optimization>Disabled</Optimization>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+      <WarningLevel>Level3</WarningLevel>
-+      
<AdditionalIncludeDirectories>$(INCLUDE_DIR)</AdditionalIncludeDirectories>
-+      
<PreprocessorDefinitions>WIN32;WIN32_MEAN_AND_LEAN;VC_EXTRALEAN;GLEW_MX;GLEW_BUILD;%(PreprocessorDefinitions)</PreprocessorDefinitions>
-+      <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
-+    </ClCompile>
-+    <Midl>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+      
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
-+      <MkTypLibCompatible>true</MkTypLibCompatible>
-+      <TargetEnvironment>Win32</TargetEnvironment>
-+    </Midl>
-+    <ResourceCompile>
-+      <Culture>0x0409</Culture>
-+      
<PreprocessorDefinitions>_DEBUG;GLEW_MX;%(PreprocessorDefinitions)</PreprocessorDefinitions>
-+    </ResourceCompile>
-+    <Bscmake>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+    </Bscmake>
-+    <Link>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+      <LinkDLL>true</LinkDLL>
-+      <GenerateDebugInformation>true</GenerateDebugInformation>
-+      <SubSystem>Console</SubSystem>
-+      <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
-+      
<ImportLibrary>$(LIB_DIR)\$(Configuration)\$(PlatformName)\$(TargetName).lib</ImportLibrary>
-+      <BaseAddress>0x62AA0000</BaseAddress>
-+      
<AdditionalDependencies>opengl32.lib;%(AdditionalDependencies)</AdditionalDependencies>
-+      <AdditionalLibraryDirectories>
-+      </AdditionalLibraryDirectories>
-+    </Link>
-+  </ItemDefinitionGroup>
-+  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug 
MX|x64'">
-+    <ClCompile>
-+      <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
-+      <InlineFunctionExpansion>Default</InlineFunctionExpansion>
-+      <FunctionLevelLinking>false</FunctionLevelLinking>
-+      <Optimization>Disabled</Optimization>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+      <WarningLevel>Level3</WarningLevel>
-+      
<AdditionalIncludeDirectories>$(INCLUDE_DIR)</AdditionalIncludeDirectories>
-+      
<PreprocessorDefinitions>WIN32;WIN32_MEAN_AND_LEAN;VC_EXTRALEAN;GLEW_MX;GLEW_BUILD;%(PreprocessorDefinitions)</PreprocessorDefinitions>
-+      <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
-+    </ClCompile>
-+    <Midl>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+      
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
-+      <MkTypLibCompatible>true</MkTypLibCompatible>
-+    </Midl>
-+    <ResourceCompile>
-+      <Culture>0x0409</Culture>
-+      
<PreprocessorDefinitions>_DEBUG;GLEW_MX;%(PreprocessorDefinitions)</PreprocessorDefinitions>
-+    </ResourceCompile>
-+    <Bscmake>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+    </Bscmake>
-+    <Link>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+      <LinkDLL>true</LinkDLL>
-+      <GenerateDebugInformation>true</GenerateDebugInformation>
-+      <SubSystem>Console</SubSystem>
-+      <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
-+      
<ImportLibrary>$(LIB_DIR)\$(Configuration)\$(PlatformName)\$(TargetName).lib</ImportLibrary>
-+      <BaseAddress>0x62AA0000</BaseAddress>
-+      
<AdditionalDependencies>opengl32.lib;%(AdditionalDependencies)</AdditionalDependencies>
-+      <AdditionalLibraryDirectories>
-+      </AdditionalLibraryDirectories>
-+    </Link>
-+  </ItemDefinitionGroup>
-+  <ItemDefinitionGroup 
Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
-+    <ClCompile>
-+      <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
-+      <InlineFunctionExpansion>Default</InlineFunctionExpansion>
-+      <FunctionLevelLinking>false</FunctionLevelLinking>
-+      <Optimization>Disabled</Optimization>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+      
<PreprocessorDefinitions>WIN32;WIN32_MEAN_AND_LEAN;VC_EXTRALEAN;GLEW_BUILD;%(PreprocessorDefinitions)</PreprocessorDefinitions>
-+      <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
-+      <WarningLevel>Level3</WarningLevel>
-+      
<AdditionalIncludeDirectories>$(INCLUDE_DIR)</AdditionalIncludeDirectories>
-+    </ClCompile>
-+    <Midl>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+      
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
-+      <MkTypLibCompatible>true</MkTypLibCompatible>
-+      <TargetEnvironment>Win32</TargetEnvironment>
-+    </Midl>
-+    <ResourceCompile>
-+      <Culture>0x0409</Culture>
-+      
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
-+    </ResourceCompile>
-+    <Bscmake>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+    </Bscmake>
-+    <Link>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+      <LinkDLL>true</LinkDLL>
-+      <GenerateDebugInformation>true</GenerateDebugInformation>
-+      <SubSystem>Console</SubSystem>
-+      <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
-+      
<ImportLibrary>$(LIB_DIR)\$(Configuration)\$(PlatformName)\$(TargetName).lib</ImportLibrary>
-+      <BaseAddress>0x62AA0000</BaseAddress>
-+      
<AdditionalDependencies>opengl32.lib;%(AdditionalDependencies)</AdditionalDependencies>
-+      <AdditionalLibraryDirectories>
-+      </AdditionalLibraryDirectories>
-+    </Link>
-+  </ItemDefinitionGroup>
-+  <ItemDefinitionGroup 
Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
-+    <ClCompile>
-+      <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
-+      <InlineFunctionExpansion>Default</InlineFunctionExpansion>
-+      <FunctionLevelLinking>false</FunctionLevelLinking>
-+      <Optimization>Disabled</Optimization>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+      
<PreprocessorDefinitions>WIN32;WIN32_LEAN_AND_MEAN;GLEW_BUILD;%(PreprocessorDefinitions)</PreprocessorDefinitions>
-+      <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
-+      <WarningLevel>Level3</WarningLevel>
-+      
<AdditionalIncludeDirectories>$(INCLUDE_DIR)</AdditionalIncludeDirectories>
-+    </ClCompile>
-+    <Midl>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+      
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
-+      <MkTypLibCompatible>true</MkTypLibCompatible>
-+    </Midl>
-+    <ResourceCompile>
-+      <Culture>0x0409</Culture>
-+      
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
-+    </ResourceCompile>
-+    <Bscmake>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+    </Bscmake>
-+    <Link>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+      <LinkDLL>true</LinkDLL>
-+      <GenerateDebugInformation>true</GenerateDebugInformation>
-+      <SubSystem>Console</SubSystem>
-+      <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
-+      
<ImportLibrary>$(LIB_DIR)\$(Configuration)\$(PlatformName)\$(TargetName).lib</ImportLibrary>
-+      <BaseAddress>0x62AA0000</BaseAddress>
-+      
<AdditionalDependencies>opengl32.lib;%(AdditionalDependencies)</AdditionalDependencies>
-+      <AdditionalLibraryDirectories>
-+      </AdditionalLibraryDirectories>
-+    </Link>
-+  </ItemDefinitionGroup>
-+  <ItemGroup>
-+    <ClCompile Include="..\..\src\glew.c" />
-+  </ItemGroup>
-+  <ItemGroup>
-+    <ClInclude Include="..\..\include\GL\glew.h" />
-+    <ClInclude Include="..\..\include\GL\wglew.h" />
-+  </ItemGroup>
-+  <ItemGroup>
-+    <ResourceCompile Include="..\glew.rc" />
-+  </ItemGroup>
-+  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
-+  <ImportGroup Label="ExtensionTargets">
-+  </ImportGroup>
-+</Project>
---- /dev/null
-+++ glew/build/vc12/glewinfo.vcxproj
-@@ -0,0 +0,446 @@
-+<?xml version="1.0" encoding="utf-8"?>
-+<Project DefaultTargets="Build" ToolsVersion="12.0" 
xmlns="http://schemas.microsoft.com/developer/msbuild/2003";>
-+  <ItemGroup Label="ProjectConfigurations">
-+    <ProjectConfiguration Include="Debug MX|Win32">
-+      <Configuration>Debug MX</Configuration>
-+      <Platform>Win32</Platform>
-+    </ProjectConfiguration>
-+    <ProjectConfiguration Include="Debug MX|x64">
-+      <Configuration>Debug MX</Configuration>
-+      <Platform>x64</Platform>
-+    </ProjectConfiguration>
-+    <ProjectConfiguration Include="Debug|Win32">
-+      <Configuration>Debug</Configuration>
-+      <Platform>Win32</Platform>
-+    </ProjectConfiguration>
-+    <ProjectConfiguration Include="Debug|x64">
-+      <Configuration>Debug</Configuration>
-+      <Platform>x64</Platform>
-+    </ProjectConfiguration>
-+    <ProjectConfiguration Include="Release MX|Win32">
-+      <Configuration>Release MX</Configuration>
-+      <Platform>Win32</Platform>
-+    </ProjectConfiguration>
-+    <ProjectConfiguration Include="Release MX|x64">
-+      <Configuration>Release MX</Configuration>
-+      <Platform>x64</Platform>
-+    </ProjectConfiguration>
-+    <ProjectConfiguration Include="Release|Win32">
-+      <Configuration>Release</Configuration>
-+      <Platform>Win32</Platform>
-+    </ProjectConfiguration>
-+    <ProjectConfiguration Include="Release|x64">
-+      <Configuration>Release</Configuration>
-+      <Platform>x64</Platform>
-+    </ProjectConfiguration>
-+  </ItemGroup>
-+  <PropertyGroup Label="Globals">
-+    <SccProjectName />
-+    <SccLocalPath />
-+    <ProjectGuid>{8EFB5DCB-C0C4-1670-5938-A0E0F1A1C5EA}</ProjectGuid>
-+  </PropertyGroup>
-+  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
-+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Template|Win32'" 
Label="Configuration">
-+    <ConfigurationType>Application</ConfigurationType>
-+  </PropertyGroup>
-+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Template|x64'" 
Label="Configuration">
-+    <ConfigurationType>Application</ConfigurationType>
-+  </PropertyGroup>
-+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" 
Label="Configuration">
-+    <ConfigurationType>Application</ConfigurationType>
-+    <UseOfMfc>false</UseOfMfc>
-+    <PlatformToolset>v120</PlatformToolset>
-+  </PropertyGroup>
-+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" 
Label="Configuration">
-+    <ConfigurationType>Application</ConfigurationType>
-+    <UseOfMfc>false</UseOfMfc>
-+    <PlatformToolset>v120</PlatformToolset>
-+  </PropertyGroup>
-+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" 
Label="Configuration">
-+    <ConfigurationType>Application</ConfigurationType>
-+    <UseOfMfc>false</UseOfMfc>
-+    <PlatformToolset>v120</PlatformToolset>
-+  </PropertyGroup>
-+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" 
Label="Configuration">
-+    <ConfigurationType>Application</ConfigurationType>
-+    <UseOfMfc>false</UseOfMfc>
-+    <PlatformToolset>v120</PlatformToolset>
-+  </PropertyGroup>
-+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug MX|Win32'" 
Label="Configuration">
-+    <ConfigurationType>Application</ConfigurationType>
-+    <UseOfMfc>false</UseOfMfc>
-+    <PlatformToolset>v120</PlatformToolset>
-+  </PropertyGroup>
-+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug MX|x64'" 
Label="Configuration">
-+    <ConfigurationType>Application</ConfigurationType>
-+    <UseOfMfc>false</UseOfMfc>
-+    <PlatformToolset>v120</PlatformToolset>
-+  </PropertyGroup>
-+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release 
MX|Win32'" Label="Configuration">
-+    <ConfigurationType>Application</ConfigurationType>
-+    <UseOfMfc>false</UseOfMfc>
-+    <PlatformToolset>v120</PlatformToolset>
-+  </PropertyGroup>
-+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release MX|x64'" 
Label="Configuration">
-+    <ConfigurationType>Application</ConfigurationType>
-+    <UseOfMfc>false</UseOfMfc>
-+    <PlatformToolset>v120</PlatformToolset>
-+  </PropertyGroup>
-+  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
-+  <ImportGroup Label="ExtensionSettings">
-+  </ImportGroup>
-+  <ImportGroup Label="PropertySheets" 
Condition="'$(Configuration)|$(Platform)'=='Template|Win32'">
-+    <Import Project="common.props" />
-+  </ImportGroup>
-+  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Template|x64'" 
Label="PropertySheets">
-+    <Import Project="common.props" />
-+  </ImportGroup>
-+  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" 
Label="PropertySheets">
-+    <Import Project="common.props" />
-+  </ImportGroup>
-+  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" 
Label="PropertySheets">
-+    <Import Project="common.props" />
-+  </ImportGroup>
-+  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" 
Label="PropertySheets">
-+    <Import Project="common.props" />
-+  </ImportGroup>
-+  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" 
Label="PropertySheets">
-+    <Import Project="common.props" />
-+  </ImportGroup>
-+  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug MX|Win32'" 
Label="PropertySheets">
-+    <Import Project="common.props" />
-+  </ImportGroup>
-+  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug MX|x64'" 
Label="PropertySheets">
-+    <Import Project="common.props" />
-+  </ImportGroup>
-+  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release MX|Win32'" 
Label="PropertySheets">
-+    <Import Project="common.props" />
-+  </ImportGroup>
-+  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release MX|x64'" 
Label="PropertySheets">
-+    <Import Project="common.props" />
-+  </ImportGroup>
-+  <PropertyGroup Label="UserMacros" />
-+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release 
MX|Win32'">
-+    <OutDir>$(BIN_DIR)\$(Configuration)\$(PlatformName)\</OutDir>
-+    <IntDir>tmp\$(TargetName)\$(Configuration)\$(PlatformName)\</IntDir>
-+    <LinkIncremental>false</LinkIncremental>
-+    <TargetName>glewinfo-mx</TargetName>
-+  </PropertyGroup>
-+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release MX|x64'">
-+    <OutDir>$(BIN_DIR)\$(Configuration)\$(PlatformName)\</OutDir>
-+    <IntDir>tmp\$(TargetName)\$(Configuration)\$(PlatformName)\</IntDir>
-+    <LinkIncremental>false</LinkIncremental>
-+    <TargetName>glewinfo-mx</TargetName>
-+  </PropertyGroup>
-+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug MX|Win32'">
-+    <OutDir>$(BIN_DIR)\$(Configuration)\$(PlatformName)\</OutDir>
-+    <IntDir>tmp\$(TargetName)\$(Configuration)\$(PlatformName)\</IntDir>
-+    <LinkIncremental>false</LinkIncremental>
-+    <TargetName>glewinfo-mxd</TargetName>
-+  </PropertyGroup>
-+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug MX|x64'">
-+    <OutDir>$(BIN_DIR)\$(Configuration)\$(PlatformName)\</OutDir>
-+    <IntDir>tmp\$(TargetName)\$(Configuration)\$(PlatformName)\</IntDir>
-+    <LinkIncremental>false</LinkIncremental>
-+    <TargetName>glewinfo-mxd</TargetName>
-+  </PropertyGroup>
-+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
-+    <OutDir>$(BIN_DIR)\$(Configuration)\$(PlatformName)\</OutDir>
-+    <IntDir>tmp\$(TargetName)\$(Configuration)\$(PlatformName)\</IntDir>
-+    <LinkIncremental>false</LinkIncremental>
-+    <TargetName>glewinfod</TargetName>
-+  </PropertyGroup>
-+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
-+    <OutDir>$(BIN_DIR)\$(Configuration)\$(PlatformName)\</OutDir>
-+    <IntDir>tmp\$(TargetName)\$(Configuration)\$(PlatformName)\</IntDir>
-+    <LinkIncremental>false</LinkIncremental>
-+    <TargetName>glewinfod</TargetName>
-+  </PropertyGroup>
-+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
-+    <OutDir>$(BIN_DIR)\$(Configuration)\$(PlatformName)\</OutDir>
-+    <IntDir>tmp\$(TargetName)\$(Configuration)\$(PlatformName)\</IntDir>
-+    <LinkIncremental>false</LinkIncremental>
-+    <TargetName>glewinfo</TargetName>
-+  </PropertyGroup>
-+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
-+    <OutDir>$(BIN_DIR)\$(Configuration)\$(PlatformName)\</OutDir>
-+    <IntDir>tmp\$(TargetName)\$(Configuration)\$(PlatformName)\</IntDir>
-+    <LinkIncremental>false</LinkIncremental>
-+    <TargetName>glewinfo</TargetName>
-+  </PropertyGroup>
-+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Template|Win32'">
-+    <OutDir>$(BIN_DIR)\$(Configuration)\$(PlatformName)\</OutDir>
-+    <TargetName>glewinfo</TargetName>
-+    <IntDir>tmp\$(TargetName)\$(Configuration)\$(PlatformName)\</IntDir>
-+  </PropertyGroup>
-+  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Template|x64'">
-+    <OutDir>$(BIN_DIR)\$(Configuration)\$(PlatformName)\</OutDir>
-+    <TargetName>glewinfo</TargetName>
-+    <IntDir>tmp\$(TargetName)\$(Configuration)\$(PlatformName)\</IntDir>
-+  </PropertyGroup>
-+  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release 
MX|Win32'">
-+    <ClCompile>
-+      <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
-+      <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
-+      <StringPooling>true</StringPooling>
-+      <FunctionLevelLinking>true</FunctionLevelLinking>
-+      <Optimization>MaxSpeed</Optimization>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+      <WarningLevel>Level3</WarningLevel>
-+      
<PreprocessorDefinitions>WIN32;WIN32_LEAN_AND_MEAN;GLEW_MX;GLEW_STATIC;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
-+    </ClCompile>
-+    <Midl>
-+      <TypeLibraryName>.\..\..\bin\glewinfo.tlb</TypeLibraryName>
-+    </Midl>
-+    <ResourceCompile>
-+      <Culture>0x0409</Culture>
-+      
<PreprocessorDefinitions>NDEBUG;GLEW_MX;%(PreprocessorDefinitions)</PreprocessorDefinitions>
-+    </ResourceCompile>
-+    <Bscmake>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+    </Bscmake>
-+    <Link>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+      <SubSystem>Console</SubSystem>
-+      <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
-+      
<AdditionalDependencies>glew32mxs.lib;opengl32.lib;%(AdditionalDependencies)</AdditionalDependencies>
-+      
<AdditionalLibraryDirectories>$(LIB_DIR)\$(Configuration)\$(PlatformName)\</AdditionalLibraryDirectories>
-+    </Link>
-+  </ItemDefinitionGroup>
-+  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release 
MX|x64'">
-+    <ClCompile>
-+      <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
-+      <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
-+      <StringPooling>true</StringPooling>
-+      <FunctionLevelLinking>true</FunctionLevelLinking>
-+      <Optimization>MaxSpeed</Optimization>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+      <WarningLevel>Level3</WarningLevel>
-+      
<PreprocessorDefinitions>WIN32;WIN32_LEAN_AND_MEAN;GLEW_MX;GLEW_STATIC;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
-+    </ClCompile>
-+    <Midl>
-+      <TypeLibraryName>.\..\..\bin\glewinfo.tlb</TypeLibraryName>
-+    </Midl>
-+    <ResourceCompile>
-+      <Culture>0x0409</Culture>
-+      
<PreprocessorDefinitions>NDEBUG;GLEW_MX;%(PreprocessorDefinitions)</PreprocessorDefinitions>
-+    </ResourceCompile>
-+    <Bscmake>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+    </Bscmake>
-+    <Link>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+      <SubSystem>Console</SubSystem>
-+      <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
-+      
<AdditionalDependencies>glew32mxs.lib;opengl32.lib;%(AdditionalDependencies)</AdditionalDependencies>
-+      
<AdditionalLibraryDirectories>$(LIB_DIR)\$(Configuration)\$(PlatformName)\</AdditionalLibraryDirectories>
-+    </Link>
-+  </ItemDefinitionGroup>
-+  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug 
MX|Win32'">
-+    <ClCompile>
-+      <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
-+      <InlineFunctionExpansion>Default</InlineFunctionExpansion>
-+      <FunctionLevelLinking>false</FunctionLevelLinking>
-+      <Optimization>Disabled</Optimization>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+      <WarningLevel>Level3</WarningLevel>
-+      
<PreprocessorDefinitions>WIN32;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;GLEW_MX;GLEW_STATIC;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
-+      <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
-+    </ClCompile>
-+    <Midl>
-+      <TypeLibraryName>.\..\..\bin\glewinfo.tlb</TypeLibraryName>
-+    </Midl>
-+    <ResourceCompile>
-+      <Culture>0x0409</Culture>
-+      
<PreprocessorDefinitions>_DEBUG;GLEW_MX;%(PreprocessorDefinitions)</PreprocessorDefinitions>
-+    </ResourceCompile>
-+    <Bscmake>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+    </Bscmake>
-+    <Link>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+      <GenerateDebugInformation>true</GenerateDebugInformation>
-+      <SubSystem>Console</SubSystem>
-+      <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
-+      
<AdditionalDependencies>glew32mxsd.lib;opengl32.lib;%(AdditionalDependencies)</AdditionalDependencies>
-+      
<AdditionalLibraryDirectories>$(LIB_DIR)\$(Configuration)\$(PlatformName)\</AdditionalLibraryDirectories>
-+    </Link>
-+  </ItemDefinitionGroup>
-+  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug 
MX|x64'">
-+    <ClCompile>
-+      <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
-+      <InlineFunctionExpansion>Default</InlineFunctionExpansion>
-+      <FunctionLevelLinking>false</FunctionLevelLinking>
-+      <Optimization>Disabled</Optimization>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+      <WarningLevel>Level3</WarningLevel>
-+      
<PreprocessorDefinitions>WIN32;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;GLEW_MX;GLEW_STATIC;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
-+      <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
-+    </ClCompile>
-+    <Midl>
-+      <TypeLibraryName>.\..\..\bin\glewinfo.tlb</TypeLibraryName>
-+    </Midl>
-+    <ResourceCompile>
-+      <Culture>0x0409</Culture>
-+      
<PreprocessorDefinitions>_DEBUG;GLEW_MX;%(PreprocessorDefinitions)</PreprocessorDefinitions>
-+    </ResourceCompile>
-+    <Bscmake>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+    </Bscmake>
-+    <Link>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+      <GenerateDebugInformation>true</GenerateDebugInformation>
-+      <SubSystem>Console</SubSystem>
-+      <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
-+      
<AdditionalDependencies>glew32mxsd.lib;opengl32.lib;%(AdditionalDependencies)</AdditionalDependencies>
-+      
<AdditionalLibraryDirectories>$(LIB_DIR)\$(Configuration)\$(PlatformName)\</AdditionalLibraryDirectories>
-+    </Link>
-+  </ItemDefinitionGroup>
-+  <ItemDefinitionGroup 
Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
-+    <ClCompile>
-+      <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
-+      <InlineFunctionExpansion>Default</InlineFunctionExpansion>
-+      <FunctionLevelLinking>false</FunctionLevelLinking>
-+      <Optimization>Disabled</Optimization>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+      <WarningLevel>Level3</WarningLevel>
-+      
<PreprocessorDefinitions>WIN32;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;GLEW_STATIC;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
-+      <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
-+    </ClCompile>
-+    <Midl>
-+      <TypeLibraryName>.\..\..\bin\glewinfo.tlb</TypeLibraryName>
-+    </Midl>
-+    <ResourceCompile>
-+      <Culture>0x0409</Culture>
-+      
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
-+    </ResourceCompile>
-+    <Bscmake>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+    </Bscmake>
-+    <Link>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+      <GenerateDebugInformation>true</GenerateDebugInformation>
-+      <SubSystem>Console</SubSystem>
-+      <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
-+      
<AdditionalDependencies>glew32sd.lib;opengl32.lib;%(AdditionalDependencies)</AdditionalDependencies>
-+      
<AdditionalLibraryDirectories>$(LIB_DIR)\$(Configuration)\$(PlatformName)\</AdditionalLibraryDirectories>
-+    </Link>
-+  </ItemDefinitionGroup>
-+  <ItemDefinitionGroup 
Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
-+    <ClCompile>
-+      <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
-+      <InlineFunctionExpansion>Default</InlineFunctionExpansion>
-+      <FunctionLevelLinking>false</FunctionLevelLinking>
-+      <Optimization>Disabled</Optimization>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+      <WarningLevel>Level3</WarningLevel>
-+      
<PreprocessorDefinitions>WIN32;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;GLEW_STATIC;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
-+      <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
-+    </ClCompile>
-+    <Midl>
-+      <TypeLibraryName>.\..\..\bin\glewinfo.tlb</TypeLibraryName>
-+    </Midl>
-+    <ResourceCompile>
-+      <Culture>0x0409</Culture>
-+      
<PreprocessorDefinitions>_DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
-+    </ResourceCompile>
-+    <Bscmake>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+    </Bscmake>
-+    <Link>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+      <GenerateDebugInformation>true</GenerateDebugInformation>
-+      <SubSystem>Console</SubSystem>
-+      <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
-+      
<AdditionalDependencies>glew32sd.lib;opengl32.lib;%(AdditionalDependencies)</AdditionalDependencies>
-+      
<AdditionalLibraryDirectories>$(LIB_DIR)\$(Configuration)\$(PlatformName)\</AdditionalLibraryDirectories>
-+    </Link>
-+  </ItemDefinitionGroup>
-+  <ItemDefinitionGroup 
Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
-+    <ClCompile>
-+      <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
-+      <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
-+      <StringPooling>true</StringPooling>
-+      <FunctionLevelLinking>true</FunctionLevelLinking>
-+      <Optimization>MaxSpeed</Optimization>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+      <WarningLevel>Level3</WarningLevel>
-+      
<PreprocessorDefinitions>WIN32;WIN32_LEAN_AND_MEAN;GLEW_STATIC;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
-+    </ClCompile>
-+    <Midl>
-+      <TypeLibraryName>.\..\..\bin\glewinfo.tlb</TypeLibraryName>
-+    </Midl>
-+    <ResourceCompile>
-+      <Culture>0x0409</Culture>
-+      
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
-+    </ResourceCompile>
-+    <Bscmake>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+    </Bscmake>
-+    <Link>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+      <SubSystem>Console</SubSystem>
-+      <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
-+      
<AdditionalDependencies>glew32s.lib;opengl32.lib;%(AdditionalDependencies)</AdditionalDependencies>
-+      
<AdditionalLibraryDirectories>$(LIB_DIR)\$(Configuration)\$(PlatformName)\</AdditionalLibraryDirectories>
-+    </Link>
-+  </ItemDefinitionGroup>
-+  <ItemDefinitionGroup 
Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
-+    <ClCompile>
-+      <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
-+      <InlineFunctionExpansion>OnlyExplicitInline</InlineFunctionExpansion>
-+      <StringPooling>true</StringPooling>
-+      <FunctionLevelLinking>true</FunctionLevelLinking>
-+      <Optimization>MaxSpeed</Optimization>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+      <WarningLevel>Level3</WarningLevel>
-+      
<PreprocessorDefinitions>WIN32;WIN32_LEAN_AND_MEAN;GLEW_STATIC;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
-+    </ClCompile>
-+    <Midl>
-+      <TypeLibraryName>.\..\..\bin\glewinfo.tlb</TypeLibraryName>
-+    </Midl>
-+    <ResourceCompile>
-+      <Culture>0x0409</Culture>
-+      
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
-+    </ResourceCompile>
-+    <Bscmake>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+    </Bscmake>
-+    <Link>
-+      <SuppressStartupBanner>true</SuppressStartupBanner>
-+      <SubSystem>Console</SubSystem>
-+      <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
-+      
<AdditionalDependencies>glew32s.lib;opengl32.lib;%(AdditionalDependencies)</AdditionalDependencies>
-+      
<AdditionalLibraryDirectories>$(LIB_DIR)\$(Configuration)\$(PlatformName)\</AdditionalLibraryDirectories>
-+    </Link>
-+  </ItemDefinitionGroup>
-+  <ItemDefinitionGroup 
Condition="'$(Configuration)|$(Platform)'=='Template|Win32'">
-+    <Link>
-+      <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
-+      
<AdditionalLibraryDirectories>$(LIB_DIR)\$(Configuration)\$(PlatformName)\</AdditionalLibraryDirectories>
-+    </Link>
-+    <ClCompile />
-+    <ClCompile>
-+    </ClCompile>
-+  </ItemDefinitionGroup>
-+  <ItemDefinitionGroup 
Condition="'$(Configuration)|$(Platform)'=='Template|x64'">
-+    <Link>
-+      <OutputFile>$(OutDir)$(TargetName)$(TargetExt)</OutputFile>
-+      
<AdditionalLibraryDirectories>$(LIB_DIR)\$(Configuration)\$(PlatformName)\</AdditionalLibraryDirectories>
-+    </Link>
-+    <ClCompile />
-+    <ClCompile>
-+    </ClCompile>
-+  </ItemDefinitionGroup>
-+  <ItemGroup>
-+    <ClCompile Include="..\..\src\glewinfo.c" />
-+  </ItemGroup>
-+  <ItemGroup>
-+    <ProjectReference Include="glew_static.vcxproj">
-+      <Project>{664e6f0d-6784-4760-9565-d54f8eb1edf4}</Project>
-+    </ProjectReference>
-+  </ItemGroup>
-+  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
-+  <ImportGroup Label="ExtensionTargets">
-+  </ImportGroup>
-+</Project>
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to