diff options
author | Tor Andersson <tor.andersson@artifex.com> | 2017-09-26 23:45:31 +0200 |
---|---|---|
committer | Tor Andersson <tor.andersson@artifex.com> | 2017-11-08 17:57:09 +0100 |
commit | 896830e23e8f94b17bdf386c191a885c972ea8a8 (patch) | |
tree | 061feda4707c8cc989df39e2440550a6ca1a2f7d /.gitmodules | |
parent | 94a5846502cd1f05ec4127872ef06dcd8606f34b (diff) | |
download | mupdf-896830e23e8f94b17bdf386c191a885c972ea8a8.tar.xz |
gl: Remove GLFW and reinstate FreeGLUT.
GLFW doesn't build on Visual Studio 2005 anymore, and I don't have time to keep
up with the changes.
So, we're switching back to FreeGLUT, which is more stable.
I've added the two missing features that made us switch to GLFW in the first
place: input methods and system clipboard support.
If MuPDF is compiled with our version of FreeGLUT, we now use these functions:
* glutKeyboardExtFunc
* glutSetClipboard
* glutGetClipboard
Diffstat (limited to '.gitmodules')
-rw-r--r-- | .gitmodules | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/.gitmodules b/.gitmodules index 8d5899c4..acbc914b 100644 --- a/.gitmodules +++ b/.gitmodules @@ -13,18 +13,18 @@ [submodule "thirdparty/jpeg"] path = thirdparty/libjpeg url = ../thirdparty-libjpeg.git +[submodule "thirdparty/lcms2"] + path = thirdparty/lcms2 + url = ../thirdparty-lcms2.git [submodule "thirdparty/openjpeg"] path = thirdparty/openjpeg url = ../thirdparty-openjpeg.git [submodule "thirdparty/zlib"] path = thirdparty/zlib url = ../thirdparty-zlib.git -[submodule "thirdparty/glfw"] - path = thirdparty/glfw - url = ../thirdparty-glfw.git [submodule "thirdparty/curl"] path = thirdparty/curl url = ../thirdparty-curl.git -[submodule "thirdparty/lcms2"] - path = thirdparty/lcms2 - url = ../thirdparty-lcms2.git +[submodule "thirdparty/freeglut"] + path = thirdparty/freeglut + url = ../thirdparty-freeglut.git |