Shader Exception for Ubuntu 24.04.1 LTS
Hi there, I love your software. However, when I tried to run it on my Ubuntu 24.04 (wether it was from apt or from source) I got the following shader error:
SomePrompt> gource
terminate called after throwing an instance of 'ShaderException'
what(): vertex shader 'shadow' failed to compile:
0:5(16): error: no function with name 'ftransform'
2 | {
3 | gl_TexCoord[0] = gl_MultiTexCoord0;
4 | gl_FrontColor = gl_Color;
-> 5 | gl_Position = ftransform();
6 | }
Abandon (core dumped)
Do you know what could of triggered it ? And if so, how it could be fixed? I look forward to your response. HenraL
Gource assumes your graphics card driver will create a OpenGL Compatibility context which is normally the default when its not specified. I'm guessing its created a different kind of context that doesn't define the ftransform() GLSL function.
What GPU do you have? Possibly you can try a different graphics driver to see if that fixes it.
I don't have a dedicated gpu, I am on a hp BANG & OLFUSEN pc, basically a computer for work environements. The graphics are managed by the processor. Here is a tty output for more information:
> lspci | grep VGA
00:02.0 VGA compatible controller: Intel Corporation WhiskeyLake-U GT2 [UHD Graphics 620] (rev 02)
This also occurs with gource 0.55 installed via Homebrew on Fedora Silverblue 40.
Of note, based on previous comments, this is a Dell Laptop with hybrid graphics. Everything defaults to the integrated Intel GPU. Relevant lspci output:
❯ lspci | grep VGA
0000:00:02.0 VGA compatible controller: Intel Corporation TigerLake-H GT1 [UHD Graphics] (rev 01)
0000:01:00.0 VGA compatible controller: NVIDIA Corporation GA107GLM [RTX A2000 Mobile] (rev a1)
I've made a change so now it actually requests an OpenGL compatibility profile context, so will be interested to see what happens when you try it now.
Also now if you run gource --log-level debug it prints out the version of the opengl context that was created which might tell us something.
This is what I have when I run gource with --log-level debug:
DEBUG: requesting video mode 1024 x 768
DEBUG: opengl viewport 1024 x 768
DEBUG: drawable size 1024 x 768
DEBUG: viewport dpi ratio 1.00 x 1.00
DEBUG: creating texture from /usr/local/share/gource/file.png
DEBUG: setting font scale for resolution 1024 x 768 to 1.00
DEBUG: creating texture from /usr/local/share/gource/bloom.tga
DEBUG: creating texture from /usr/local/share/gource/beam.png
DEBUG: creating texture from /usr/local/share/gource/user.png
terminate called after throwing an instance of 'ShaderException'
what(): vertex shader 'shadow' failed to compile:
0:5(16): error: no function with name 'ftransform'
2 | {
3 | gl_TexCoord[0] = gl_MultiTexCoord0;
4 | gl_FrontColor = gl_Color;
-> 5 | gl_Position = ftransform();
6 | }
Abandon (core dumped)
This is still the same computer.
@HenraL it looks like it might not have built the change as I don't see an 'opengl version' message. Make sure the src/core sub module is up to date with git submodule update.
The new version just hangs I am on ubuntu Ubuntu 24.04.1 LTS Here is the output log for the run on your repository:
./gource --log-level debug
DEBUG: requesting video mode 1024 x 768
DEBUG: opengl version 4.6 (Compatibility Profile) Mesa 24.0.9-0ubuntu0.2
DEBUG: opengl viewport 1024 x 768
DEBUG: drawable size 1024 x 768
DEBUG: viewport dpi ratio 1.00 x 1.00
DEBUG: creating texture from /usr/local/share/gource/file.png
DEBUG: setting font scale for resolution 1024 x 768 to 1.00
DEBUG: creating texture from /usr/local/share/gource/bloom.tga
DEBUG: creating texture from /usr/local/share/gource/beam.png
DEBUG: creating texture from /usr/local/share/gource/user.png
DEBUG: log-format = git
@HenraL that's no good. Curious what opengl version you get if you comment out this line https://github.com/acaudwell/Core/blob/df513a31f531e869a0eb7a2a6174a0e93b8d2ffb/display.cpp#L254 in src/core/display.cpp and recompile it.
You could try updating your mesa opengl driver as there's quite a few releases since 24.0.9: https://www.mesa3d.org/news/
I'm not exactly sure what package it will be, you could try looking at dpkg -l | grep mesa to figure it out.
Sorry to continue talking on an old thread (but didn't have a lot of time since the past 17 weeks, studies are hectic), I looked into the code you asked me to comment the line, but it appears that there is no obvious way to compile your project using conventional methods (via makefile or cmake). Is there a way you could provide more information in the readme so that we know how to proceed for compiling the project.
I will wait for your response
PS: I checked to see if gource worked on my computer just before writing this comment (I tried from the apt, but that one was still broken, and I also recompiled from source, this is the output (are the compilation warnings normal?), also the line you asked me to comment (according to my vscode) will have no impact on the final compilation because either my sdl version is lower than 2.0.0 or just not present on my computer), by the way, the compiled version is still the same, it still hangs:
# The command that was used to start the required compilation operations
./autogen.sh && ./configure && make -j$(nproc) # nproc here corresponds to 8
# The output of the command that was run
configure.ac:30: installing 'build-aux/compile'
configure.ac:11: installing 'build-aux/config.guess'
configure.ac:11: installing 'build-aux/config.sub'
configure.ac:9: installing 'build-aux/install-sh'
configure.ac:9: installing 'build-aux/missing'
Makefile.am: installing 'build-aux/depcomp'
parallel-tests: installing 'build-aux/test-driver'
autoreconf ran successfully.
Initializing submodules...
Sous-module 'src/core' (https://github.com/acaudwell/Core.git) enregistré pour le chemin 'src/core'
Updating submodules...
Clonage dans '/home/eletellier/manually_installed_software/gource/gource/src/core'...
Chemin de sous-module 'src/core' : 'df513a31f531e869a0eb7a2a6174a0e93b8d2ffb' extrait
Run './configure && make' to continue.
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a race-free mkdir -p... /usr/bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking build system type... x86_64-pc-linux-gnu
checking host system type... x86_64-pc-linux-gnu
checking for g++... g++
checking whether the C++ compiler works... yes
checking for C++ compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether the compiler supports GNU C++... yes
checking whether g++ accepts -g... yes
checking for g++ option to enable C++11 features... none needed
checking whether make supports the include directive... yes (GNU style)
checking dependency style of g++... gcc3
checking for timegm... yes
checking for unsetenv... yes
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for gcc... gcc
checking whether the compiler supports GNU C... yes
checking whether gcc accepts -g... yes
checking for gcc option to enable C11 features... none needed
checking whether gcc understands -c and -o together... yes
checking dependency style of gcc... gcc3
checking for stdio.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for strings.h... yes
checking for sys/stat.h... yes
checking for sys/types.h... yes
checking for unistd.h... yes
checking for pkg-config... (cached) /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for GL... yes
checking for GL/gl.h... yes
checking for compiling a minimal OpenGL program... yes
checking for linking a minimal OpenGL program... yes
checking for pkg-config... (cached) /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for GLU... yes
checking for GL/glu.h... yes
checking for compiling a minimal OpenGL Utility (GLU) program... yes
checking for linking a minimal GLU program... yes
checking if GLU varargs tesselator is using non-standard form... no
checking for FT2... yes
checking for PCRE2... yes
checking for GLEW... yes
checking for SDL2... yes
checking for PNG... yes
checking for IMG_LoadPNG_RW... yes
checking for IMG_LoadJPG_RW... yes
checking for boostlib >= 1.46 (104600)... yes
checking whether the Boost::System library is available... yes
checking for exit in -lboost_system... yes
checking whether the Boost::Filesystem library is available... yes
checking for exit in -lboost_filesystem... yes
checking for glm/glm.hpp... yes
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating Makefile
config.status: executing depfiles commands
g++ -DPACKAGE_NAME=\"Gource\" -DPACKAGE_TARNAME=\"gource\" -DPACKAGE_VERSION=\"0.56\" -DPACKAGE_STRING=\"Gource\ 0.56\" -DPACKAGE_BUGREPORT=\"[email protected]\" -DPACKAGE_URL=\"\" -DPACKAGE=\"gource\" -DVERSION=\"0.56\" -DHAVE_TIMEGM=1 -DHAVE_UNSETENV=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 -DSTDC_HEADERS=1 -DHAVE_GL_GL_H=1 -DHAVE_GL=1 -DHAVE_GL_GLU_H=1 -DHAVE_GLU=1 -DHAVE_IMG_LOADPNG_RW=1 -DHAVE_IMG_LOADJPG_RW=1 -DHAVE_BOOST=/\*\*/ -DHAVE_BOOST_SYSTEM=/\*\*/ -DHAVE_BOOST_FILESYSTEM=/\*\*/ -I. -DSDLAPP_RESOURCE_DIR=\"/usr/local/share/gource\" -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/local/include -I/usr/local/include/SDL2 -I/usr/include/SDL2 -D_REENTRANT -I/usr/include/libpng16 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/libpng16 -I/usr/include -std=gnu++0x -Wall -Wno-sign-compare -Wno-reorder -Wno-unused-but-set-variable -Wno-unused-variable -g -O2 -MT src/gource-main.o -MD -MP -MF src/.deps/gource-main.Tpo -c -o src/gource-main.o `test -f 'src/main.cpp' || echo './'`src/main.cpp
g++ -DPACKAGE_NAME=\"Gource\" -DPACKAGE_TARNAME=\"gource\" -DPACKAGE_VERSION=\"0.56\" -DPACKAGE_STRING=\"Gource\ 0.56\" -DPACKAGE_BUGREPORT=\"[email protected]\" -DPACKAGE_URL=\"\" -DPACKAGE=\"gource\" -DVERSION=\"0.56\" -DHAVE_TIMEGM=1 -DHAVE_UNSETENV=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 -DSTDC_HEADERS=1 -DHAVE_GL_GL_H=1 -DHAVE_GL=1 -DHAVE_GL_GLU_H=1 -DHAVE_GLU=1 -DHAVE_IMG_LOADPNG_RW=1 -DHAVE_IMG_LOADJPG_RW=1 -DHAVE_BOOST=/\*\*/ -DHAVE_BOOST_SYSTEM=/\*\*/ -DHAVE_BOOST_FILESYSTEM=/\*\*/ -I. -DSDLAPP_RESOURCE_DIR=\"/usr/local/share/gource\" -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/local/include -I/usr/local/include/SDL2 -I/usr/include/SDL2 -D_REENTRANT -I/usr/include/libpng16 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/libpng16 -I/usr/include -std=gnu++0x -Wall -Wno-sign-compare -Wno-reorder -Wno-unused-but-set-variable -Wno-unused-variable -g -O2 -MT src/gource-action.o -MD -MP -MF src/.deps/gource-action.Tpo -c -o src/gource-action.o `test -f 'src/action.cpp' || echo './'`src/action.cpp
g++ -DPACKAGE_NAME=\"Gource\" -DPACKAGE_TARNAME=\"gource\" -DPACKAGE_VERSION=\"0.56\" -DPACKAGE_STRING=\"Gource\ 0.56\" -DPACKAGE_BUGREPORT=\"[email protected]\" -DPACKAGE_URL=\"\" -DPACKAGE=\"gource\" -DVERSION=\"0.56\" -DHAVE_TIMEGM=1 -DHAVE_UNSETENV=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 -DSTDC_HEADERS=1 -DHAVE_GL_GL_H=1 -DHAVE_GL=1 -DHAVE_GL_GLU_H=1 -DHAVE_GLU=1 -DHAVE_IMG_LOADPNG_RW=1 -DHAVE_IMG_LOADJPG_RW=1 -DHAVE_BOOST=/\*\*/ -DHAVE_BOOST_SYSTEM=/\*\*/ -DHAVE_BOOST_FILESYSTEM=/\*\*/ -I. -DSDLAPP_RESOURCE_DIR=\"/usr/local/share/gource\" -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/local/include -I/usr/local/include/SDL2 -I/usr/include/SDL2 -D_REENTRANT -I/usr/include/libpng16 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/libpng16 -I/usr/include -std=gnu++0x -Wall -Wno-sign-compare -Wno-reorder -Wno-unused-but-set-variable -Wno-unused-variable -g -O2 -MT src/gource-bloom.o -MD -MP -MF src/.deps/gource-bloom.Tpo -c -o src/gource-bloom.o `test -f 'src/bloom.cpp' || echo './'`src/bloom.cpp
g++ -DPACKAGE_NAME=\"Gource\" -DPACKAGE_TARNAME=\"gource\" -DPACKAGE_VERSION=\"0.56\" -DPACKAGE_STRING=\"Gource\ 0.56\" -DPACKAGE_BUGREPORT=\"[email protected]\" -DPACKAGE_URL=\"\" -DPACKAGE=\"gource\" -DVERSION=\"0.56\" -DHAVE_TIMEGM=1 -DHAVE_UNSETENV=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 -DSTDC_HEADERS=1 -DHAVE_GL_GL_H=1 -DHAVE_GL=1 -DHAVE_GL_GLU_H=1 -DHAVE_GLU=1 -DHAVE_IMG_LOADPNG_RW=1 -DHAVE_IMG_LOADJPG_RW=1 -DHAVE_BOOST=/\*\*/ -DHAVE_BOOST_SYSTEM=/\*\*/ -DHAVE_BOOST_FILESYSTEM=/\*\*/ -I. -DSDLAPP_RESOURCE_DIR=\"/usr/local/share/gource\" -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/local/include -I/usr/local/include/SDL2 -I/usr/include/SDL2 -D_REENTRANT -I/usr/include/libpng16 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/libpng16 -I/usr/include -std=gnu++0x -Wall -Wno-sign-compare -Wno-reorder -Wno-unused-but-set-variable -Wno-unused-variable -g -O2 -MT src/gource-caption.o -MD -MP -MF src/.deps/gource-caption.Tpo -c -o src/gource-caption.o `test -f 'src/caption.cpp' || echo './'`src/caption.cpp
g++ -DPACKAGE_NAME=\"Gource\" -DPACKAGE_TARNAME=\"gource\" -DPACKAGE_VERSION=\"0.56\" -DPACKAGE_STRING=\"Gource\ 0.56\" -DPACKAGE_BUGREPORT=\"[email protected]\" -DPACKAGE_URL=\"\" -DPACKAGE=\"gource\" -DVERSION=\"0.56\" -DHAVE_TIMEGM=1 -DHAVE_UNSETENV=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 -DSTDC_HEADERS=1 -DHAVE_GL_GL_H=1 -DHAVE_GL=1 -DHAVE_GL_GLU_H=1 -DHAVE_GLU=1 -DHAVE_IMG_LOADPNG_RW=1 -DHAVE_IMG_LOADJPG_RW=1 -DHAVE_BOOST=/\*\*/ -DHAVE_BOOST_SYSTEM=/\*\*/ -DHAVE_BOOST_FILESYSTEM=/\*\*/ -I. -DSDLAPP_RESOURCE_DIR=\"/usr/local/share/gource\" -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/local/include -I/usr/local/include/SDL2 -I/usr/include/SDL2 -D_REENTRANT -I/usr/include/libpng16 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/libpng16 -I/usr/include -std=gnu++0x -Wall -Wno-sign-compare -Wno-reorder -Wno-unused-but-set-variable -Wno-unused-variable -g -O2 -MT src/core/gource-conffile.o -MD -MP -MF src/core/.deps/gource-conffile.Tpo -c -o src/core/gource-conffile.o `test -f 'src/core/conffile.cpp' || echo './'`src/core/conffile.cpp
g++ -DPACKAGE_NAME=\"Gource\" -DPACKAGE_TARNAME=\"gource\" -DPACKAGE_VERSION=\"0.56\" -DPACKAGE_STRING=\"Gource\ 0.56\" -DPACKAGE_BUGREPORT=\"[email protected]\" -DPACKAGE_URL=\"\" -DPACKAGE=\"gource\" -DVERSION=\"0.56\" -DHAVE_TIMEGM=1 -DHAVE_UNSETENV=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 -DSTDC_HEADERS=1 -DHAVE_GL_GL_H=1 -DHAVE_GL=1 -DHAVE_GL_GLU_H=1 -DHAVE_GLU=1 -DHAVE_IMG_LOADPNG_RW=1 -DHAVE_IMG_LOADJPG_RW=1 -DHAVE_BOOST=/\*\*/ -DHAVE_BOOST_SYSTEM=/\*\*/ -DHAVE_BOOST_FILESYSTEM=/\*\*/ -I. -DSDLAPP_RESOURCE_DIR=\"/usr/local/share/gource\" -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/local/include -I/usr/local/include/SDL2 -I/usr/include/SDL2 -D_REENTRANT -I/usr/include/libpng16 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/libpng16 -I/usr/include -std=gnu++0x -Wall -Wno-sign-compare -Wno-reorder -Wno-unused-but-set-variable -Wno-unused-variable -g -O2 -MT src/core/gource-display.o -MD -MP -MF src/core/.deps/gource-display.Tpo -c -o src/core/gource-display.o `test -f 'src/core/display.cpp' || echo './'`src/core/display.cpp
g++ -DPACKAGE_NAME=\"Gource\" -DPACKAGE_TARNAME=\"gource\" -DPACKAGE_VERSION=\"0.56\" -DPACKAGE_STRING=\"Gource\ 0.56\" -DPACKAGE_BUGREPORT=\"[email protected]\" -DPACKAGE_URL=\"\" -DPACKAGE=\"gource\" -DVERSION=\"0.56\" -DHAVE_TIMEGM=1 -DHAVE_UNSETENV=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 -DSTDC_HEADERS=1 -DHAVE_GL_GL_H=1 -DHAVE_GL=1 -DHAVE_GL_GLU_H=1 -DHAVE_GLU=1 -DHAVE_IMG_LOADPNG_RW=1 -DHAVE_IMG_LOADJPG_RW=1 -DHAVE_BOOST=/\*\*/ -DHAVE_BOOST_SYSTEM=/\*\*/ -DHAVE_BOOST_FILESYSTEM=/\*\*/ -I. -DSDLAPP_RESOURCE_DIR=\"/usr/local/share/gource\" -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/local/include -I/usr/local/include/SDL2 -I/usr/include/SDL2 -D_REENTRANT -I/usr/include/libpng16 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/libpng16 -I/usr/include -std=gnu++0x -Wall -Wno-sign-compare -Wno-reorder -Wno-unused-but-set-variable -Wno-unused-variable -g -O2 -MT src/core/gource-frustum.o -MD -MP -MF src/core/.deps/gource-frustum.Tpo -c -o src/core/gource-frustum.o `test -f 'src/core/frustum.cpp' || echo './'`src/core/frustum.cpp
g++ -DPACKAGE_NAME=\"Gource\" -DPACKAGE_TARNAME=\"gource\" -DPACKAGE_VERSION=\"0.56\" -DPACKAGE_STRING=\"Gource\ 0.56\" -DPACKAGE_BUGREPORT=\"[email protected]\" -DPACKAGE_URL=\"\" -DPACKAGE=\"gource\" -DVERSION=\"0.56\" -DHAVE_TIMEGM=1 -DHAVE_UNSETENV=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 -DSTDC_HEADERS=1 -DHAVE_GL_GL_H=1 -DHAVE_GL=1 -DHAVE_GL_GLU_H=1 -DHAVE_GLU=1 -DHAVE_IMG_LOADPNG_RW=1 -DHAVE_IMG_LOADJPG_RW=1 -DHAVE_BOOST=/\*\*/ -DHAVE_BOOST_SYSTEM=/\*\*/ -DHAVE_BOOST_FILESYSTEM=/\*\*/ -I. -DSDLAPP_RESOURCE_DIR=\"/usr/local/share/gource\" -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/local/include -I/usr/local/include/SDL2 -I/usr/include/SDL2 -D_REENTRANT -I/usr/include/libpng16 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/libpng16 -I/usr/include -std=gnu++0x -Wall -Wno-sign-compare -Wno-reorder -Wno-unused-but-set-variable -Wno-unused-variable -g -O2 -MT src/core/gource-fxfont.o -MD -MP -MF src/core/.deps/gource-fxfont.Tpo -c -o src/core/gource-fxfont.o `test -f 'src/core/fxfont.cpp' || echo './'`src/core/fxfont.cpp
mv -f src/.deps/gource-caption.Tpo src/.deps/gource-caption.Po
g++ -DPACKAGE_NAME=\"Gource\" -DPACKAGE_TARNAME=\"gource\" -DPACKAGE_VERSION=\"0.56\" -DPACKAGE_STRING=\"Gource\ 0.56\" -DPACKAGE_BUGREPORT=\"[email protected]\" -DPACKAGE_URL=\"\" -DPACKAGE=\"gource\" -DVERSION=\"0.56\" -DHAVE_TIMEGM=1 -DHAVE_UNSETENV=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 -DSTDC_HEADERS=1 -DHAVE_GL_GL_H=1 -DHAVE_GL=1 -DHAVE_GL_GLU_H=1 -DHAVE_GLU=1 -DHAVE_IMG_LOADPNG_RW=1 -DHAVE_IMG_LOADJPG_RW=1 -DHAVE_BOOST=/\*\*/ -DHAVE_BOOST_SYSTEM=/\*\*/ -DHAVE_BOOST_FILESYSTEM=/\*\*/ -I. -DSDLAPP_RESOURCE_DIR=\"/usr/local/share/gource\" -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/local/include -I/usr/local/include/SDL2 -I/usr/include/SDL2 -D_REENTRANT -I/usr/include/libpng16 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/libpng16 -I/usr/include -std=gnu++0x -Wall -Wno-sign-compare -Wno-reorder -Wno-unused-but-set-variable -Wno-unused-variable -g -O2 -MT src/core/gource-logger.o -MD -MP -MF src/core/.deps/gource-logger.Tpo -c -o src/core/gource-logger.o `test -f 'src/core/logger.cpp' || echo './'`src/core/logger.cpp
mv -f src/core/.deps/gource-frustum.Tpo src/core/.deps/gource-frustum.Po
g++ -DPACKAGE_NAME=\"Gource\" -DPACKAGE_TARNAME=\"gource\" -DPACKAGE_VERSION=\"0.56\" -DPACKAGE_STRING=\"Gource\ 0.56\" -DPACKAGE_BUGREPORT=\"[email protected]\" -DPACKAGE_URL=\"\" -DPACKAGE=\"gource\" -DVERSION=\"0.56\" -DHAVE_TIMEGM=1 -DHAVE_UNSETENV=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 -DSTDC_HEADERS=1 -DHAVE_GL_GL_H=1 -DHAVE_GL=1 -DHAVE_GL_GLU_H=1 -DHAVE_GLU=1 -DHAVE_IMG_LOADPNG_RW=1 -DHAVE_IMG_LOADJPG_RW=1 -DHAVE_BOOST=/\*\*/ -DHAVE_BOOST_SYSTEM=/\*\*/ -DHAVE_BOOST_FILESYSTEM=/\*\*/ -I. -DSDLAPP_RESOURCE_DIR=\"/usr/local/share/gource\" -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/local/include -I/usr/local/include/SDL2 -I/usr/include/SDL2 -D_REENTRANT -I/usr/include/libpng16 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/libpng16 -I/usr/include -std=gnu++0x -Wall -Wno-sign-compare -Wno-reorder -Wno-unused-but-set-variable -Wno-unused-variable -g -O2 -MT src/core/gource-mousecursor.o -MD -MP -MF src/core/.deps/gource-mousecursor.Tpo -c -o src/core/gource-mousecursor.o `test -f 'src/core/mousecursor.cpp' || echo './'`src/core/mousecursor.cpp
In file included from src/bloom.cpp:18:
In member function ‘bloom_vertex& bloom_vertex::operator=(const bloom_vertex&)’,
inlined from ‘void bloombuf::add(GLuint, const glm::vec2&, const glm::vec2&, const glm::vec4&, const glm::vec4&)’ at src/bloom.cpp:85:17:
src/bloom.h:28:7: warning: ‘*(unsigned char (*)[24])((char*)&v1 + offsetof(bloom_vertex, bloom_vertex::padding[0]))’ is used uninitialized [-Wuninitialized]
28 | class bloom_vertex {
| ^~~~~~~~~~~~
src/bloom.cpp: In member function ‘void bloombuf::add(GLuint, const glm::vec2&, const glm::vec2&, const glm::vec4&, const glm::vec4&)’:
src/bloom.cpp:72:18: note: ‘v1’ declared here
72 | bloom_vertex v1(pos, colour, texcoord);
| ^~
In member function ‘bloom_vertex& bloom_vertex::operator=(const bloom_vertex&)’,
inlined from ‘void bloombuf::add(GLuint, const glm::vec2&, const glm::vec2&, const glm::vec4&, const glm::vec4&)’ at src/bloom.cpp:86:17:
src/bloom.h:28:7: warning: ‘*(unsigned char (*)[24])((char*)&v2 + offsetof(bloom_vertex, bloom_vertex::padding[0]))’ is used uninitialized [-Wuninitialized]
28 | class bloom_vertex {
| ^~~~~~~~~~~~
src/bloom.cpp: In member function ‘void bloombuf::add(GLuint, const glm::vec2&, const glm::vec2&, const glm::vec4&, const glm::vec4&)’:
src/bloom.cpp:73:18: note: ‘v2’ declared here
73 | bloom_vertex v2(pos + vec2(dims.x, 0.0f), colour, texcoord);
| ^~
In member function ‘bloom_vertex& bloom_vertex::operator=(const bloom_vertex&)’,
inlined from ‘void bloombuf::add(GLuint, const glm::vec2&, const glm::vec2&, const glm::vec4&, const glm::vec4&)’ at src/bloom.cpp:87:17:
src/bloom.h:28:7: warning: ‘*(unsigned char (*)[24])((char*)&v3 + offsetof(bloom_vertex, bloom_vertex::padding[0]))’ is used uninitialized [-Wuninitialized]
28 | class bloom_vertex {
| ^~~~~~~~~~~~
src/bloom.cpp: In member function ‘void bloombuf::add(GLuint, const glm::vec2&, const glm::vec2&, const glm::vec4&, const glm::vec4&)’:
src/bloom.cpp:74:18: note: ‘v3’ declared here
74 | bloom_vertex v3(pos + dims, colour, texcoord);
| ^~
In member function ‘bloom_vertex& bloom_vertex::operator=(const bloom_vertex&)’,
inlined from ‘void bloombuf::add(GLuint, const glm::vec2&, const glm::vec2&, const glm::vec4&, const glm::vec4&)’ at src/bloom.cpp:88:17:
src/bloom.h:28:7: warning: ‘*(unsigned char (*)[24])((char*)&v4 + offsetof(bloom_vertex, bloom_vertex::padding[0]))’ is used uninitialized [-Wuninitialized]
28 | class bloom_vertex {
| ^~~~~~~~~~~~
src/bloom.cpp: In member function ‘void bloombuf::add(GLuint, const glm::vec2&, const glm::vec2&, const glm::vec4&, const glm::vec4&)’:
src/bloom.cpp:75:18: note: ‘v4’ declared here
75 | bloom_vertex v4(pos + vec2(0.0f, dims.y), colour, texcoord);
| ^~
mv -f src/core/.deps/gource-display.Tpo src/core/.deps/gource-display.Po
mv -f src/.deps/gource-bloom.Tpo src/.deps/gource-bloom.Po
g++ -DPACKAGE_NAME=\"Gource\" -DPACKAGE_TARNAME=\"gource\" -DPACKAGE_VERSION=\"0.56\" -DPACKAGE_STRING=\"Gource\ 0.56\" -DPACKAGE_BUGREPORT=\"[email protected]\" -DPACKAGE_URL=\"\" -DPACKAGE=\"gource\" -DVERSION=\"0.56\" -DHAVE_TIMEGM=1 -DHAVE_UNSETENV=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 -DSTDC_HEADERS=1 -DHAVE_GL_GL_H=1 -DHAVE_GL=1 -DHAVE_GL_GLU_H=1 -DHAVE_GLU=1 -DHAVE_IMG_LOADPNG_RW=1 -DHAVE_IMG_LOADJPG_RW=1 -DHAVE_BOOST=/\*\*/ -DHAVE_BOOST_SYSTEM=/\*\*/ -DHAVE_BOOST_FILESYSTEM=/\*\*/ -I. -DSDLAPP_RESOURCE_DIR=\"/usr/local/share/gource\" -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/local/include -I/usr/local/include/SDL2 -I/usr/include/SDL2 -D_REENTRANT -I/usr/include/libpng16 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/libpng16 -I/usr/include -std=gnu++0x -Wall -Wno-sign-compare -Wno-reorder -Wno-unused-but-set-variable -Wno-unused-variable -g -O2 -MT src/core/gource-plane.o -MD -MP -MF src/core/.deps/gource-plane.Tpo -c -o src/core/gource-plane.o `test -f 'src/core/plane.cpp' || echo './'`src/core/plane.cpp
g++ -DPACKAGE_NAME=\"Gource\" -DPACKAGE_TARNAME=\"gource\" -DPACKAGE_VERSION=\"0.56\" -DPACKAGE_STRING=\"Gource\ 0.56\" -DPACKAGE_BUGREPORT=\"[email protected]\" -DPACKAGE_URL=\"\" -DPACKAGE=\"gource\" -DVERSION=\"0.56\" -DHAVE_TIMEGM=1 -DHAVE_UNSETENV=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 -DSTDC_HEADERS=1 -DHAVE_GL_GL_H=1 -DHAVE_GL=1 -DHAVE_GL_GLU_H=1 -DHAVE_GLU=1 -DHAVE_IMG_LOADPNG_RW=1 -DHAVE_IMG_LOADJPG_RW=1 -DHAVE_BOOST=/\*\*/ -DHAVE_BOOST_SYSTEM=/\*\*/ -DHAVE_BOOST_FILESYSTEM=/\*\*/ -I. -DSDLAPP_RESOURCE_DIR=\"/usr/local/share/gource\" -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/local/include -I/usr/local/include/SDL2 -I/usr/include/SDL2 -D_REENTRANT -I/usr/include/libpng16 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/libpng16 -I/usr/include -std=gnu++0x -Wall -Wno-sign-compare -Wno-reorder -Wno-unused-but-set-variable -Wno-unused-variable -g -O2 -MT src/core/gource-ppm.o -MD -MP -MF src/core/.deps/gource-ppm.Tpo -c -o src/core/gource-ppm.o `test -f 'src/core/ppm.cpp' || echo './'`src/core/ppm.cpp
mv -f src/.deps/gource-action.Tpo src/.deps/gource-action.Po
g++ -DPACKAGE_NAME=\"Gource\" -DPACKAGE_TARNAME=\"gource\" -DPACKAGE_VERSION=\"0.56\" -DPACKAGE_STRING=\"Gource\ 0.56\" -DPACKAGE_BUGREPORT=\"[email protected]\" -DPACKAGE_URL=\"\" -DPACKAGE=\"gource\" -DVERSION=\"0.56\" -DHAVE_TIMEGM=1 -DHAVE_UNSETENV=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 -DSTDC_HEADERS=1 -DHAVE_GL_GL_H=1 -DHAVE_GL=1 -DHAVE_GL_GLU_H=1 -DHAVE_GLU=1 -DHAVE_IMG_LOADPNG_RW=1 -DHAVE_IMG_LOADJPG_RW=1 -DHAVE_BOOST=/\*\*/ -DHAVE_BOOST_SYSTEM=/\*\*/ -DHAVE_BOOST_FILESYSTEM=/\*\*/ -I. -DSDLAPP_RESOURCE_DIR=\"/usr/local/share/gource\" -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/local/include -I/usr/local/include/SDL2 -I/usr/include/SDL2 -D_REENTRANT -I/usr/include/libpng16 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/libpng16 -I/usr/include -std=gnu++0x -Wall -Wno-sign-compare -Wno-reorder -Wno-unused-but-set-variable -Wno-unused-variable -g -O2 -MT src/core/gource-quadtree.o -MD -MP -MF src/core/.deps/gource-quadtree.Tpo -c -o src/core/gource-quadtree.o `test -f 'src/core/quadtree.cpp' || echo './'`src/core/quadtree.cpp
mv -f src/core/.deps/gource-plane.Tpo src/core/.deps/gource-plane.Po
g++ -DPACKAGE_NAME=\"Gource\" -DPACKAGE_TARNAME=\"gource\" -DPACKAGE_VERSION=\"0.56\" -DPACKAGE_STRING=\"Gource\ 0.56\" -DPACKAGE_BUGREPORT=\"[email protected]\" -DPACKAGE_URL=\"\" -DPACKAGE=\"gource\" -DVERSION=\"0.56\" -DHAVE_TIMEGM=1 -DHAVE_UNSETENV=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 -DSTDC_HEADERS=1 -DHAVE_GL_GL_H=1 -DHAVE_GL=1 -DHAVE_GL_GLU_H=1 -DHAVE_GLU=1 -DHAVE_IMG_LOADPNG_RW=1 -DHAVE_IMG_LOADJPG_RW=1 -DHAVE_BOOST=/\*\*/ -DHAVE_BOOST_SYSTEM=/\*\*/ -DHAVE_BOOST_FILESYSTEM=/\*\*/ -I. -DSDLAPP_RESOURCE_DIR=\"/usr/local/share/gource\" -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/local/include -I/usr/local/include/SDL2 -I/usr/include/SDL2 -D_REENTRANT -I/usr/include/libpng16 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/libpng16 -I/usr/include -std=gnu++0x -Wall -Wno-sign-compare -Wno-reorder -Wno-unused-but-set-variable -Wno-unused-variable -g -O2 -MT src/core/gource-regex.o -MD -MP -MF src/core/.deps/gource-regex.Tpo -c -o src/core/gource-regex.o `test -f 'src/core/regex.cpp' || echo './'`src/core/regex.cpp
mv -f src/.deps/gource-main.Tpo src/.deps/gource-main.Po
g++ -DPACKAGE_NAME=\"Gource\" -DPACKAGE_TARNAME=\"gource\" -DPACKAGE_VERSION=\"0.56\" -DPACKAGE_STRING=\"Gource\ 0.56\" -DPACKAGE_BUGREPORT=\"[email protected]\" -DPACKAGE_URL=\"\" -DPACKAGE=\"gource\" -DVERSION=\"0.56\" -DHAVE_TIMEGM=1 -DHAVE_UNSETENV=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 -DSTDC_HEADERS=1 -DHAVE_GL_GL_H=1 -DHAVE_GL=1 -DHAVE_GL_GLU_H=1 -DHAVE_GLU=1 -DHAVE_IMG_LOADPNG_RW=1 -DHAVE_IMG_LOADJPG_RW=1 -DHAVE_BOOST=/\*\*/ -DHAVE_BOOST_SYSTEM=/\*\*/ -DHAVE_BOOST_FILESYSTEM=/\*\*/ -I. -DSDLAPP_RESOURCE_DIR=\"/usr/local/share/gource\" -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/local/include -I/usr/local/include/SDL2 -I/usr/include/SDL2 -D_REENTRANT -I/usr/include/libpng16 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/libpng16 -I/usr/include -std=gnu++0x -Wall -Wno-sign-compare -Wno-reorder -Wno-unused-but-set-variable -Wno-unused-variable -g -O2 -MT src/core/gource-resource.o -MD -MP -MF src/core/.deps/gource-resource.Tpo -c -o src/core/gource-resource.o `test -f 'src/core/resource.cpp' || echo './'`src/core/resource.cpp
mv -f src/core/.deps/gource-fxfont.Tpo src/core/.deps/gource-fxfont.Po
g++ -DPACKAGE_NAME=\"Gource\" -DPACKAGE_TARNAME=\"gource\" -DPACKAGE_VERSION=\"0.56\" -DPACKAGE_STRING=\"Gource\ 0.56\" -DPACKAGE_BUGREPORT=\"[email protected]\" -DPACKAGE_URL=\"\" -DPACKAGE=\"gource\" -DVERSION=\"0.56\" -DHAVE_TIMEGM=1 -DHAVE_UNSETENV=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 -DSTDC_HEADERS=1 -DHAVE_GL_GL_H=1 -DHAVE_GL=1 -DHAVE_GL_GLU_H=1 -DHAVE_GLU=1 -DHAVE_IMG_LOADPNG_RW=1 -DHAVE_IMG_LOADJPG_RW=1 -DHAVE_BOOST=/\*\*/ -DHAVE_BOOST_SYSTEM=/\*\*/ -DHAVE_BOOST_FILESYSTEM=/\*\*/ -I. -DSDLAPP_RESOURCE_DIR=\"/usr/local/share/gource\" -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/local/include -I/usr/local/include/SDL2 -I/usr/include/SDL2 -D_REENTRANT -I/usr/include/libpng16 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/libpng16 -I/usr/include -std=gnu++0x -Wall -Wno-sign-compare -Wno-reorder -Wno-unused-but-set-variable -Wno-unused-variable -g -O2 -MT src/core/gource-sdlapp.o -MD -MP -MF src/core/.deps/gource-sdlapp.Tpo -c -o src/core/gource-sdlapp.o `test -f 'src/core/sdlapp.cpp' || echo './'`src/core/sdlapp.cpp
mv -f src/core/.deps/gource-conffile.Tpo src/core/.deps/gource-conffile.Po
g++ -DPACKAGE_NAME=\"Gource\" -DPACKAGE_TARNAME=\"gource\" -DPACKAGE_VERSION=\"0.56\" -DPACKAGE_STRING=\"Gource\ 0.56\" -DPACKAGE_BUGREPORT=\"[email protected]\" -DPACKAGE_URL=\"\" -DPACKAGE=\"gource\" -DVERSION=\"0.56\" -DHAVE_TIMEGM=1 -DHAVE_UNSETENV=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 -DSTDC_HEADERS=1 -DHAVE_GL_GL_H=1 -DHAVE_GL=1 -DHAVE_GL_GLU_H=1 -DHAVE_GLU=1 -DHAVE_IMG_LOADPNG_RW=1 -DHAVE_IMG_LOADJPG_RW=1 -DHAVE_BOOST=/\*\*/ -DHAVE_BOOST_SYSTEM=/\*\*/ -DHAVE_BOOST_FILESYSTEM=/\*\*/ -I. -DSDLAPP_RESOURCE_DIR=\"/usr/local/share/gource\" -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/local/include -I/usr/local/include/SDL2 -I/usr/include/SDL2 -D_REENTRANT -I/usr/include/libpng16 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/libpng16 -I/usr/include -std=gnu++0x -Wall -Wno-sign-compare -Wno-reorder -Wno-unused-but-set-variable -Wno-unused-variable -g -O2 -MT src/core/gource-seeklog.o -MD -MP -MF src/core/.deps/gource-seeklog.Tpo -c -o src/core/gource-seeklog.o `test -f 'src/core/seeklog.cpp' || echo './'`src/core/seeklog.cpp
mv -f src/core/.deps/gource-regex.Tpo src/core/.deps/gource-regex.Po
g++ -DPACKAGE_NAME=\"Gource\" -DPACKAGE_TARNAME=\"gource\" -DPACKAGE_VERSION=\"0.56\" -DPACKAGE_STRING=\"Gource\ 0.56\" -DPACKAGE_BUGREPORT=\"[email protected]\" -DPACKAGE_URL=\"\" -DPACKAGE=\"gource\" -DVERSION=\"0.56\" -DHAVE_TIMEGM=1 -DHAVE_UNSETENV=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 -DSTDC_HEADERS=1 -DHAVE_GL_GL_H=1 -DHAVE_GL=1 -DHAVE_GL_GLU_H=1 -DHAVE_GLU=1 -DHAVE_IMG_LOADPNG_RW=1 -DHAVE_IMG_LOADJPG_RW=1 -DHAVE_BOOST=/\*\*/ -DHAVE_BOOST_SYSTEM=/\*\*/ -DHAVE_BOOST_FILESYSTEM=/\*\*/ -I. -DSDLAPP_RESOURCE_DIR=\"/usr/local/share/gource\" -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/local/include -I/usr/local/include/SDL2 -I/usr/include/SDL2 -D_REENTRANT -I/usr/include/libpng16 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/libpng16 -I/usr/include -std=gnu++0x -Wall -Wno-sign-compare -Wno-reorder -Wno-unused-but-set-variable -Wno-unused-variable -g -O2 -MT src/core/gource-settings.o -MD -MP -MF src/core/.deps/gource-settings.Tpo -c -o src/core/gource-settings.o `test -f 'src/core/settings.cpp' || echo './'`src/core/settings.cpp
mv -f src/core/.deps/gource-logger.Tpo src/core/.deps/gource-logger.Po
g++ -DPACKAGE_NAME=\"Gource\" -DPACKAGE_TARNAME=\"gource\" -DPACKAGE_VERSION=\"0.56\" -DPACKAGE_STRING=\"Gource\ 0.56\" -DPACKAGE_BUGREPORT=\"[email protected]\" -DPACKAGE_URL=\"\" -DPACKAGE=\"gource\" -DVERSION=\"0.56\" -DHAVE_TIMEGM=1 -DHAVE_UNSETENV=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 -DSTDC_HEADERS=1 -DHAVE_GL_GL_H=1 -DHAVE_GL=1 -DHAVE_GL_GLU_H=1 -DHAVE_GLU=1 -DHAVE_IMG_LOADPNG_RW=1 -DHAVE_IMG_LOADJPG_RW=1 -DHAVE_BOOST=/\*\*/ -DHAVE_BOOST_SYSTEM=/\*\*/ -DHAVE_BOOST_FILESYSTEM=/\*\*/ -I. -DSDLAPP_RESOURCE_DIR=\"/usr/local/share/gource\" -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/local/include -I/usr/local/include/SDL2 -I/usr/include/SDL2 -D_REENTRANT -I/usr/include/libpng16 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/libpng16 -I/usr/include -std=gnu++0x -Wall -Wno-sign-compare -Wno-reorder -Wno-unused-but-set-variable -Wno-unused-variable -g -O2 -MT src/core/gource-shader.o -MD -MP -MF src/core/.deps/gource-shader.Tpo -c -o src/core/gource-shader.o `test -f 'src/core/shader.cpp' || echo './'`src/core/shader.cpp
mv -f src/core/.deps/gource-mousecursor.Tpo src/core/.deps/gource-mousecursor.Po
g++ -DPACKAGE_NAME=\"Gource\" -DPACKAGE_TARNAME=\"gource\" -DPACKAGE_VERSION=\"0.56\" -DPACKAGE_STRING=\"Gource\ 0.56\" -DPACKAGE_BUGREPORT=\"[email protected]\" -DPACKAGE_URL=\"\" -DPACKAGE=\"gource\" -DVERSION=\"0.56\" -DHAVE_TIMEGM=1 -DHAVE_UNSETENV=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 -DSTDC_HEADERS=1 -DHAVE_GL_GL_H=1 -DHAVE_GL=1 -DHAVE_GL_GLU_H=1 -DHAVE_GLU=1 -DHAVE_IMG_LOADPNG_RW=1 -DHAVE_IMG_LOADJPG_RW=1 -DHAVE_BOOST=/\*\*/ -DHAVE_BOOST_SYSTEM=/\*\*/ -DHAVE_BOOST_FILESYSTEM=/\*\*/ -I. -DSDLAPP_RESOURCE_DIR=\"/usr/local/share/gource\" -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/local/include -I/usr/local/include/SDL2 -I/usr/include/SDL2 -D_REENTRANT -I/usr/include/libpng16 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/libpng16 -I/usr/include -std=gnu++0x -Wall -Wno-sign-compare -Wno-reorder -Wno-unused-but-set-variable -Wno-unused-variable -g -O2 -MT src/core/gource-shader_common.o -MD -MP -MF src/core/.deps/gource-shader_common.Tpo -c -o src/core/gource-shader_common.o `test -f 'src/core/shader_common.cpp' || echo './'`src/core/shader_common.cpp
mv -f src/core/.deps/gource-resource.Tpo src/core/.deps/gource-resource.Po
g++ -DPACKAGE_NAME=\"Gource\" -DPACKAGE_TARNAME=\"gource\" -DPACKAGE_VERSION=\"0.56\" -DPACKAGE_STRING=\"Gource\ 0.56\" -DPACKAGE_BUGREPORT=\"[email protected]\" -DPACKAGE_URL=\"\" -DPACKAGE=\"gource\" -DVERSION=\"0.56\" -DHAVE_TIMEGM=1 -DHAVE_UNSETENV=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 -DSTDC_HEADERS=1 -DHAVE_GL_GL_H=1 -DHAVE_GL=1 -DHAVE_GL_GLU_H=1 -DHAVE_GLU=1 -DHAVE_IMG_LOADPNG_RW=1 -DHAVE_IMG_LOADJPG_RW=1 -DHAVE_BOOST=/\*\*/ -DHAVE_BOOST_SYSTEM=/\*\*/ -DHAVE_BOOST_FILESYSTEM=/\*\*/ -I. -DSDLAPP_RESOURCE_DIR=\"/usr/local/share/gource\" -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/local/include -I/usr/local/include/SDL2 -I/usr/include/SDL2 -D_REENTRANT -I/usr/include/libpng16 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/libpng16 -I/usr/include -std=gnu++0x -Wall -Wno-sign-compare -Wno-reorder -Wno-unused-but-set-variable -Wno-unused-variable -g -O2 -MT src/core/gource-stringhash.o -MD -MP -MF src/core/.deps/gource-stringhash.Tpo -c -o src/core/gource-stringhash.o `test -f 'src/core/stringhash.cpp' || echo './'`src/core/stringhash.cpp
mv -f src/core/.deps/gource-ppm.Tpo src/core/.deps/gource-ppm.Po
g++ -DPACKAGE_NAME=\"Gource\" -DPACKAGE_TARNAME=\"gource\" -DPACKAGE_VERSION=\"0.56\" -DPACKAGE_STRING=\"Gource\ 0.56\" -DPACKAGE_BUGREPORT=\"[email protected]\" -DPACKAGE_URL=\"\" -DPACKAGE=\"gource\" -DVERSION=\"0.56\" -DHAVE_TIMEGM=1 -DHAVE_UNSETENV=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 -DSTDC_HEADERS=1 -DHAVE_GL_GL_H=1 -DHAVE_GL=1 -DHAVE_GL_GLU_H=1 -DHAVE_GLU=1 -DHAVE_IMG_LOADPNG_RW=1 -DHAVE_IMG_LOADJPG_RW=1 -DHAVE_BOOST=/\*\*/ -DHAVE_BOOST_SYSTEM=/\*\*/ -DHAVE_BOOST_FILESYSTEM=/\*\*/ -I. -DSDLAPP_RESOURCE_DIR=\"/usr/local/share/gource\" -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/local/include -I/usr/local/include/SDL2 -I/usr/include/SDL2 -D_REENTRANT -I/usr/include/libpng16 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/libpng16 -I/usr/include -std=gnu++0x -Wall -Wno-sign-compare -Wno-reorder -Wno-unused-but-set-variable -Wno-unused-variable -g -O2 -MT src/core/gource-texture.o -MD -MP -MF src/core/.deps/gource-texture.Tpo -c -o src/core/gource-texture.o `test -f 'src/core/texture.cpp' || echo './'`src/core/texture.cpp
mv -f src/core/.deps/gource-quadtree.Tpo src/core/.deps/gource-quadtree.Po
g++ -DPACKAGE_NAME=\"Gource\" -DPACKAGE_TARNAME=\"gource\" -DPACKAGE_VERSION=\"0.56\" -DPACKAGE_STRING=\"Gource\ 0.56\" -DPACKAGE_BUGREPORT=\"[email protected]\" -DPACKAGE_URL=\"\" -DPACKAGE=\"gource\" -DVERSION=\"0.56\" -DHAVE_TIMEGM=1 -DHAVE_UNSETENV=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 -DSTDC_HEADERS=1 -DHAVE_GL_GL_H=1 -DHAVE_GL=1 -DHAVE_GL_GLU_H=1 -DHAVE_GLU=1 -DHAVE_IMG_LOADPNG_RW=1 -DHAVE_IMG_LOADJPG_RW=1 -DHAVE_BOOST=/\*\*/ -DHAVE_BOOST_SYSTEM=/\*\*/ -DHAVE_BOOST_FILESYSTEM=/\*\*/ -I. -DSDLAPP_RESOURCE_DIR=\"/usr/local/share/gource\" -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/local/include -I/usr/local/include/SDL2 -I/usr/include/SDL2 -D_REENTRANT -I/usr/include/libpng16 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/libpng16 -I/usr/include -std=gnu++0x -Wall -Wno-sign-compare -Wno-reorder -Wno-unused-but-set-variable -Wno-unused-variable -g -O2 -MT src/core/gource-png_writer.o -MD -MP -MF src/core/.deps/gource-png_writer.Tpo -c -o src/core/gource-png_writer.o `test -f 'src/core/png_writer.cpp' || echo './'`src/core/png_writer.cpp
mv -f src/core/.deps/gource-stringhash.Tpo src/core/.deps/gource-stringhash.Po
g++ -DPACKAGE_NAME=\"Gource\" -DPACKAGE_TARNAME=\"gource\" -DPACKAGE_VERSION=\"0.56\" -DPACKAGE_STRING=\"Gource\ 0.56\" -DPACKAGE_BUGREPORT=\"[email protected]\" -DPACKAGE_URL=\"\" -DPACKAGE=\"gource\" -DVERSION=\"0.56\" -DHAVE_TIMEGM=1 -DHAVE_UNSETENV=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 -DSTDC_HEADERS=1 -DHAVE_GL_GL_H=1 -DHAVE_GL=1 -DHAVE_GL_GLU_H=1 -DHAVE_GLU=1 -DHAVE_IMG_LOADPNG_RW=1 -DHAVE_IMG_LOADJPG_RW=1 -DHAVE_BOOST=/\*\*/ -DHAVE_BOOST_SYSTEM=/\*\*/ -DHAVE_BOOST_FILESYSTEM=/\*\*/ -I. -DSDLAPP_RESOURCE_DIR=\"/usr/local/share/gource\" -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/local/include -I/usr/local/include/SDL2 -I/usr/include/SDL2 -D_REENTRANT -I/usr/include/libpng16 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/libpng16 -I/usr/include -std=gnu++0x -Wall -Wno-sign-compare -Wno-reorder -Wno-unused-but-set-variable -Wno-unused-variable -g -O2 -MT src/core/gource-timezone.o -MD -MP -MF src/core/.deps/gource-timezone.Tpo -c -o src/core/gource-timezone.o `test -f 'src/core/timezone.cpp' || echo './'`src/core/timezone.cpp
mv -f src/core/.deps/gource-timezone.Tpo src/core/.deps/gource-timezone.Po
g++ -DPACKAGE_NAME=\"Gource\" -DPACKAGE_TARNAME=\"gource\" -DPACKAGE_VERSION=\"0.56\" -DPACKAGE_STRING=\"Gource\ 0.56\" -DPACKAGE_BUGREPORT=\"[email protected]\" -DPACKAGE_URL=\"\" -DPACKAGE=\"gource\" -DVERSION=\"0.56\" -DHAVE_TIMEGM=1 -DHAVE_UNSETENV=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 -DSTDC_HEADERS=1 -DHAVE_GL_GL_H=1 -DHAVE_GL=1 -DHAVE_GL_GLU_H=1 -DHAVE_GLU=1 -DHAVE_IMG_LOADPNG_RW=1 -DHAVE_IMG_LOADJPG_RW=1 -DHAVE_BOOST=/\*\*/ -DHAVE_BOOST_SYSTEM=/\*\*/ -DHAVE_BOOST_FILESYSTEM=/\*\*/ -I. -DSDLAPP_RESOURCE_DIR=\"/usr/local/share/gource\" -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/local/include -I/usr/local/include/SDL2 -I/usr/include/SDL2 -D_REENTRANT -I/usr/include/libpng16 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/libpng16 -I/usr/include -std=gnu++0x -Wall -Wno-sign-compare -Wno-reorder -Wno-unused-but-set-variable -Wno-unused-variable -g -O2 -MT src/core/gource-vbo.o -MD -MP -MF src/core/.deps/gource-vbo.Tpo -c -o src/core/gource-vbo.o `test -f 'src/core/vbo.cpp' || echo './'`src/core/vbo.cpp
mv -f src/core/.deps/gource-seeklog.Tpo src/core/.deps/gource-seeklog.Po
g++ -DPACKAGE_NAME=\"Gource\" -DPACKAGE_TARNAME=\"gource\" -DPACKAGE_VERSION=\"0.56\" -DPACKAGE_STRING=\"Gource\ 0.56\" -DPACKAGE_BUGREPORT=\"[email protected]\" -DPACKAGE_URL=\"\" -DPACKAGE=\"gource\" -DVERSION=\"0.56\" -DHAVE_TIMEGM=1 -DHAVE_UNSETENV=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 -DSTDC_HEADERS=1 -DHAVE_GL_GL_H=1 -DHAVE_GL=1 -DHAVE_GL_GLU_H=1 -DHAVE_GLU=1 -DHAVE_IMG_LOADPNG_RW=1 -DHAVE_IMG_LOADJPG_RW=1 -DHAVE_BOOST=/\*\*/ -DHAVE_BOOST_SYSTEM=/\*\*/ -DHAVE_BOOST_FILESYSTEM=/\*\*/ -I. -DSDLAPP_RESOURCE_DIR=\"/usr/local/share/gource\" -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/local/include -I/usr/local/include/SDL2 -I/usr/include/SDL2 -D_REENTRANT -I/usr/include/libpng16 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/libpng16 -I/usr/include -std=gnu++0x -Wall -Wno-sign-compare -Wno-reorder -Wno-unused-but-set-variable -Wno-unused-variable -g -O2 -MT src/core/gource-vectors.o -MD -MP -MF src/core/.deps/gource-vectors.Tpo -c -o src/core/gource-vectors.o `test -f 'src/core/vectors.cpp' || echo './'`src/core/vectors.cpp
mv -f src/core/.deps/gource-vectors.Tpo src/core/.deps/gource-vectors.Po
g++ -DPACKAGE_NAME=\"Gource\" -DPACKAGE_TARNAME=\"gource\" -DPACKAGE_VERSION=\"0.56\" -DPACKAGE_STRING=\"Gource\ 0.56\" -DPACKAGE_BUGREPORT=\"[email protected]\" -DPACKAGE_URL=\"\" -DPACKAGE=\"gource\" -DVERSION=\"0.56\" -DHAVE_TIMEGM=1 -DHAVE_UNSETENV=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 -DSTDC_HEADERS=1 -DHAVE_GL_GL_H=1 -DHAVE_GL=1 -DHAVE_GL_GLU_H=1 -DHAVE_GLU=1 -DHAVE_IMG_LOADPNG_RW=1 -DHAVE_IMG_LOADJPG_RW=1 -DHAVE_BOOST=/\*\*/ -DHAVE_BOOST_SYSTEM=/\*\*/ -DHAVE_BOOST_FILESYSTEM=/\*\*/ -I. -DSDLAPP_RESOURCE_DIR=\"/usr/local/share/gource\" -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/local/include -I/usr/local/include/SDL2 -I/usr/include/SDL2 -D_REENTRANT -I/usr/include/libpng16 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/libpng16 -I/usr/include -std=gnu++0x -Wall -Wno-sign-compare -Wno-reorder -Wno-unused-but-set-variable -Wno-unused-variable -g -O2 -MT src/gource-dirnode.o -MD -MP -MF src/.deps/gource-dirnode.Tpo -c -o src/gource-dirnode.o `test -f 'src/dirnode.cpp' || echo './'`src/dirnode.cpp
mv -f src/core/.deps/gource-vbo.Tpo src/core/.deps/gource-vbo.Po
g++ -DPACKAGE_NAME=\"Gource\" -DPACKAGE_TARNAME=\"gource\" -DPACKAGE_VERSION=\"0.56\" -DPACKAGE_STRING=\"Gource\ 0.56\" -DPACKAGE_BUGREPORT=\"[email protected]\" -DPACKAGE_URL=\"\" -DPACKAGE=\"gource\" -DVERSION=\"0.56\" -DHAVE_TIMEGM=1 -DHAVE_UNSETENV=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 -DSTDC_HEADERS=1 -DHAVE_GL_GL_H=1 -DHAVE_GL=1 -DHAVE_GL_GLU_H=1 -DHAVE_GLU=1 -DHAVE_IMG_LOADPNG_RW=1 -DHAVE_IMG_LOADJPG_RW=1 -DHAVE_BOOST=/\*\*/ -DHAVE_BOOST_SYSTEM=/\*\*/ -DHAVE_BOOST_FILESYSTEM=/\*\*/ -I. -DSDLAPP_RESOURCE_DIR=\"/usr/local/share/gource\" -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/local/include -I/usr/local/include/SDL2 -I/usr/include/SDL2 -D_REENTRANT -I/usr/include/libpng16 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/libpng16 -I/usr/include -std=gnu++0x -Wall -Wno-sign-compare -Wno-reorder -Wno-unused-but-set-variable -Wno-unused-variable -g -O2 -MT src/gource-file.o -MD -MP -MF src/.deps/gource-file.Tpo -c -o src/gource-file.o `test -f 'src/file.cpp' || echo './'`src/file.cpp
mv -f src/core/.deps/gource-settings.Tpo src/core/.deps/gource-settings.Po
g++ -DPACKAGE_NAME=\"Gource\" -DPACKAGE_TARNAME=\"gource\" -DPACKAGE_VERSION=\"0.56\" -DPACKAGE_STRING=\"Gource\ 0.56\" -DPACKAGE_BUGREPORT=\"[email protected]\" -DPACKAGE_URL=\"\" -DPACKAGE=\"gource\" -DVERSION=\"0.56\" -DHAVE_TIMEGM=1 -DHAVE_UNSETENV=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 -DSTDC_HEADERS=1 -DHAVE_GL_GL_H=1 -DHAVE_GL=1 -DHAVE_GL_GLU_H=1 -DHAVE_GLU=1 -DHAVE_IMG_LOADPNG_RW=1 -DHAVE_IMG_LOADJPG_RW=1 -DHAVE_BOOST=/\*\*/ -DHAVE_BOOST_SYSTEM=/\*\*/ -DHAVE_BOOST_FILESYSTEM=/\*\*/ -I. -DSDLAPP_RESOURCE_DIR=\"/usr/local/share/gource\" -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/local/include -I/usr/local/include/SDL2 -I/usr/include/SDL2 -D_REENTRANT -I/usr/include/libpng16 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/libpng16 -I/usr/include -std=gnu++0x -Wall -Wno-sign-compare -Wno-reorder -Wno-unused-but-set-variable -Wno-unused-variable -g -O2 -MT src/formats/gource-apache.o -MD -MP -MF src/formats/.deps/gource-apache.Tpo -c -o src/formats/gource-apache.o `test -f 'src/formats/apache.cpp' || echo './'`src/formats/apache.cpp
mv -f src/core/.deps/gource-sdlapp.Tpo src/core/.deps/gource-sdlapp.Po
g++ -DPACKAGE_NAME=\"Gource\" -DPACKAGE_TARNAME=\"gource\" -DPACKAGE_VERSION=\"0.56\" -DPACKAGE_STRING=\"Gource\ 0.56\" -DPACKAGE_BUGREPORT=\"[email protected]\" -DPACKAGE_URL=\"\" -DPACKAGE=\"gource\" -DVERSION=\"0.56\" -DHAVE_TIMEGM=1 -DHAVE_UNSETENV=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 -DSTDC_HEADERS=1 -DHAVE_GL_GL_H=1 -DHAVE_GL=1 -DHAVE_GL_GLU_H=1 -DHAVE_GLU=1 -DHAVE_IMG_LOADPNG_RW=1 -DHAVE_IMG_LOADJPG_RW=1 -DHAVE_BOOST=/\*\*/ -DHAVE_BOOST_SYSTEM=/\*\*/ -DHAVE_BOOST_FILESYSTEM=/\*\*/ -I. -DSDLAPP_RESOURCE_DIR=\"/usr/local/share/gource\" -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/local/include -I/usr/local/include/SDL2 -I/usr/include/SDL2 -D_REENTRANT -I/usr/include/libpng16 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/libpng16 -I/usr/include -std=gnu++0x -Wall -Wno-sign-compare -Wno-reorder -Wno-unused-but-set-variable -Wno-unused-variable -g -O2 -MT src/formats/gource-bzr.o -MD -MP -MF src/formats/.deps/gource-bzr.Tpo -c -o src/formats/gource-bzr.o `test -f 'src/formats/bzr.cpp' || echo './'`src/formats/bzr.cpp
mv -f src/core/.deps/gource-texture.Tpo src/core/.deps/gource-texture.Po
g++ -DPACKAGE_NAME=\"Gource\" -DPACKAGE_TARNAME=\"gource\" -DPACKAGE_VERSION=\"0.56\" -DPACKAGE_STRING=\"Gource\ 0.56\" -DPACKAGE_BUGREPORT=\"[email protected]\" -DPACKAGE_URL=\"\" -DPACKAGE=\"gource\" -DVERSION=\"0.56\" -DHAVE_TIMEGM=1 -DHAVE_UNSETENV=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 -DSTDC_HEADERS=1 -DHAVE_GL_GL_H=1 -DHAVE_GL=1 -DHAVE_GL_GLU_H=1 -DHAVE_GLU=1 -DHAVE_IMG_LOADPNG_RW=1 -DHAVE_IMG_LOADJPG_RW=1 -DHAVE_BOOST=/\*\*/ -DHAVE_BOOST_SYSTEM=/\*\*/ -DHAVE_BOOST_FILESYSTEM=/\*\*/ -I. -DSDLAPP_RESOURCE_DIR=\"/usr/local/share/gource\" -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/local/include -I/usr/local/include/SDL2 -I/usr/include/SDL2 -D_REENTRANT -I/usr/include/libpng16 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/libpng16 -I/usr/include -std=gnu++0x -Wall -Wno-sign-compare -Wno-reorder -Wno-unused-but-set-variable -Wno-unused-variable -g -O2 -MT src/formats/gource-commitlog.o -MD -MP -MF src/formats/.deps/gource-commitlog.Tpo -c -o src/formats/gource-commitlog.o `test -f 'src/formats/commitlog.cpp' || echo './'`src/formats/commitlog.cpp
mv -f src/core/.deps/gource-png_writer.Tpo src/core/.deps/gource-png_writer.Po
g++ -DPACKAGE_NAME=\"Gource\" -DPACKAGE_TARNAME=\"gource\" -DPACKAGE_VERSION=\"0.56\" -DPACKAGE_STRING=\"Gource\ 0.56\" -DPACKAGE_BUGREPORT=\"[email protected]\" -DPACKAGE_URL=\"\" -DPACKAGE=\"gource\" -DVERSION=\"0.56\" -DHAVE_TIMEGM=1 -DHAVE_UNSETENV=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 -DSTDC_HEADERS=1 -DHAVE_GL_GL_H=1 -DHAVE_GL=1 -DHAVE_GL_GLU_H=1 -DHAVE_GLU=1 -DHAVE_IMG_LOADPNG_RW=1 -DHAVE_IMG_LOADJPG_RW=1 -DHAVE_BOOST=/\*\*/ -DHAVE_BOOST_SYSTEM=/\*\*/ -DHAVE_BOOST_FILESYSTEM=/\*\*/ -I. -DSDLAPP_RESOURCE_DIR=\"/usr/local/share/gource\" -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/local/include -I/usr/local/include/SDL2 -I/usr/include/SDL2 -D_REENTRANT -I/usr/include/libpng16 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/libpng16 -I/usr/include -std=gnu++0x -Wall -Wno-sign-compare -Wno-reorder -Wno-unused-but-set-variable -Wno-unused-variable -g -O2 -MT src/formats/gource-custom.o -MD -MP -MF src/formats/.deps/gource-custom.Tpo -c -o src/formats/gource-custom.o `test -f 'src/formats/custom.cpp' || echo './'`src/formats/custom.cpp
mv -f src/core/.deps/gource-shader.Tpo src/core/.deps/gource-shader.Po
g++ -DPACKAGE_NAME=\"Gource\" -DPACKAGE_TARNAME=\"gource\" -DPACKAGE_VERSION=\"0.56\" -DPACKAGE_STRING=\"Gource\ 0.56\" -DPACKAGE_BUGREPORT=\"[email protected]\" -DPACKAGE_URL=\"\" -DPACKAGE=\"gource\" -DVERSION=\"0.56\" -DHAVE_TIMEGM=1 -DHAVE_UNSETENV=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 -DSTDC_HEADERS=1 -DHAVE_GL_GL_H=1 -DHAVE_GL=1 -DHAVE_GL_GLU_H=1 -DHAVE_GLU=1 -DHAVE_IMG_LOADPNG_RW=1 -DHAVE_IMG_LOADJPG_RW=1 -DHAVE_BOOST=/\*\*/ -DHAVE_BOOST_SYSTEM=/\*\*/ -DHAVE_BOOST_FILESYSTEM=/\*\*/ -I. -DSDLAPP_RESOURCE_DIR=\"/usr/local/share/gource\" -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/local/include -I/usr/local/include/SDL2 -I/usr/include/SDL2 -D_REENTRANT -I/usr/include/libpng16 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/libpng16 -I/usr/include -std=gnu++0x -Wall -Wno-sign-compare -Wno-reorder -Wno-unused-but-set-variable -Wno-unused-variable -g -O2 -MT src/formats/gource-cvs-exp.o -MD -MP -MF src/formats/.deps/gource-cvs-exp.Tpo -c -o src/formats/gource-cvs-exp.o `test -f 'src/formats/cvs-exp.cpp' || echo './'`src/formats/cvs-exp.cpp
mv -f src/formats/.deps/gource-apache.Tpo src/formats/.deps/gource-apache.Po
g++ -DPACKAGE_NAME=\"Gource\" -DPACKAGE_TARNAME=\"gource\" -DPACKAGE_VERSION=\"0.56\" -DPACKAGE_STRING=\"Gource\ 0.56\" -DPACKAGE_BUGREPORT=\"[email protected]\" -DPACKAGE_URL=\"\" -DPACKAGE=\"gource\" -DVERSION=\"0.56\" -DHAVE_TIMEGM=1 -DHAVE_UNSETENV=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 -DSTDC_HEADERS=1 -DHAVE_GL_GL_H=1 -DHAVE_GL=1 -DHAVE_GL_GLU_H=1 -DHAVE_GLU=1 -DHAVE_IMG_LOADPNG_RW=1 -DHAVE_IMG_LOADJPG_RW=1 -DHAVE_BOOST=/\*\*/ -DHAVE_BOOST_SYSTEM=/\*\*/ -DHAVE_BOOST_FILESYSTEM=/\*\*/ -I. -DSDLAPP_RESOURCE_DIR=\"/usr/local/share/gource\" -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/local/include -I/usr/local/include/SDL2 -I/usr/include/SDL2 -D_REENTRANT -I/usr/include/libpng16 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/libpng16 -I/usr/include -std=gnu++0x -Wall -Wno-sign-compare -Wno-reorder -Wno-unused-but-set-variable -Wno-unused-variable -g -O2 -MT src/formats/gource-cvs2cl.o -MD -MP -MF src/formats/.deps/gource-cvs2cl.Tpo -c -o src/formats/gource-cvs2cl.o `test -f 'src/formats/cvs2cl.cpp' || echo './'`src/formats/cvs2cl.cpp
mv -f src/.deps/gource-file.Tpo src/.deps/gource-file.Po
g++ -DPACKAGE_NAME=\"Gource\" -DPACKAGE_TARNAME=\"gource\" -DPACKAGE_VERSION=\"0.56\" -DPACKAGE_STRING=\"Gource\ 0.56\" -DPACKAGE_BUGREPORT=\"[email protected]\" -DPACKAGE_URL=\"\" -DPACKAGE=\"gource\" -DVERSION=\"0.56\" -DHAVE_TIMEGM=1 -DHAVE_UNSETENV=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 -DSTDC_HEADERS=1 -DHAVE_GL_GL_H=1 -DHAVE_GL=1 -DHAVE_GL_GLU_H=1 -DHAVE_GLU=1 -DHAVE_IMG_LOADPNG_RW=1 -DHAVE_IMG_LOADJPG_RW=1 -DHAVE_BOOST=/\*\*/ -DHAVE_BOOST_SYSTEM=/\*\*/ -DHAVE_BOOST_FILESYSTEM=/\*\*/ -I. -DSDLAPP_RESOURCE_DIR=\"/usr/local/share/gource\" -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/local/include -I/usr/local/include/SDL2 -I/usr/include/SDL2 -D_REENTRANT -I/usr/include/libpng16 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/libpng16 -I/usr/include -std=gnu++0x -Wall -Wno-sign-compare -Wno-reorder -Wno-unused-but-set-variable -Wno-unused-variable -g -O2 -MT src/formats/gource-git.o -MD -MP -MF src/formats/.deps/gource-git.Tpo -c -o src/formats/gource-git.o `test -f 'src/formats/git.cpp' || echo './'`src/formats/git.cpp
mv -f src/formats/.deps/gource-custom.Tpo src/formats/.deps/gource-custom.Po
g++ -DPACKAGE_NAME=\"Gource\" -DPACKAGE_TARNAME=\"gource\" -DPACKAGE_VERSION=\"0.56\" -DPACKAGE_STRING=\"Gource\ 0.56\" -DPACKAGE_BUGREPORT=\"[email protected]\" -DPACKAGE_URL=\"\" -DPACKAGE=\"gource\" -DVERSION=\"0.56\" -DHAVE_TIMEGM=1 -DHAVE_UNSETENV=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 -DSTDC_HEADERS=1 -DHAVE_GL_GL_H=1 -DHAVE_GL=1 -DHAVE_GL_GLU_H=1 -DHAVE_GLU=1 -DHAVE_IMG_LOADPNG_RW=1 -DHAVE_IMG_LOADJPG_RW=1 -DHAVE_BOOST=/\*\*/ -DHAVE_BOOST_SYSTEM=/\*\*/ -DHAVE_BOOST_FILESYSTEM=/\*\*/ -I. -DSDLAPP_RESOURCE_DIR=\"/usr/local/share/gource\" -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/local/include -I/usr/local/include/SDL2 -I/usr/include/SDL2 -D_REENTRANT -I/usr/include/libpng16 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/libpng16 -I/usr/include -std=gnu++0x -Wall -Wno-sign-compare -Wno-reorder -Wno-unused-but-set-variable -Wno-unused-variable -g -O2 -MT src/formats/gource-gitraw.o -MD -MP -MF src/formats/.deps/gource-gitraw.Tpo -c -o src/formats/gource-gitraw.o `test -f 'src/formats/gitraw.cpp' || echo './'`src/formats/gitraw.cpp
mv -f src/.deps/gource-dirnode.Tpo src/.deps/gource-dirnode.Po
g++ -DPACKAGE_NAME=\"Gource\" -DPACKAGE_TARNAME=\"gource\" -DPACKAGE_VERSION=\"0.56\" -DPACKAGE_STRING=\"Gource\ 0.56\" -DPACKAGE_BUGREPORT=\"[email protected]\" -DPACKAGE_URL=\"\" -DPACKAGE=\"gource\" -DVERSION=\"0.56\" -DHAVE_TIMEGM=1 -DHAVE_UNSETENV=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 -DSTDC_HEADERS=1 -DHAVE_GL_GL_H=1 -DHAVE_GL=1 -DHAVE_GL_GLU_H=1 -DHAVE_GLU=1 -DHAVE_IMG_LOADPNG_RW=1 -DHAVE_IMG_LOADJPG_RW=1 -DHAVE_BOOST=/\*\*/ -DHAVE_BOOST_SYSTEM=/\*\*/ -DHAVE_BOOST_FILESYSTEM=/\*\*/ -I. -DSDLAPP_RESOURCE_DIR=\"/usr/local/share/gource\" -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/local/include -I/usr/local/include/SDL2 -I/usr/include/SDL2 -D_REENTRANT -I/usr/include/libpng16 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/libpng16 -I/usr/include -std=gnu++0x -Wall -Wno-sign-compare -Wno-reorder -Wno-unused-but-set-variable -Wno-unused-variable -g -O2 -MT src/formats/gource-hg.o -MD -MP -MF src/formats/.deps/gource-hg.Tpo -c -o src/formats/gource-hg.o `test -f 'src/formats/hg.cpp' || echo './'`src/formats/hg.cpp
mv -f src/formats/.deps/gource-commitlog.Tpo src/formats/.deps/gource-commitlog.Po
g++ -DPACKAGE_NAME=\"Gource\" -DPACKAGE_TARNAME=\"gource\" -DPACKAGE_VERSION=\"0.56\" -DPACKAGE_STRING=\"Gource\ 0.56\" -DPACKAGE_BUGREPORT=\"[email protected]\" -DPACKAGE_URL=\"\" -DPACKAGE=\"gource\" -DVERSION=\"0.56\" -DHAVE_TIMEGM=1 -DHAVE_UNSETENV=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 -DSTDC_HEADERS=1 -DHAVE_GL_GL_H=1 -DHAVE_GL=1 -DHAVE_GL_GLU_H=1 -DHAVE_GLU=1 -DHAVE_IMG_LOADPNG_RW=1 -DHAVE_IMG_LOADJPG_RW=1 -DHAVE_BOOST=/\*\*/ -DHAVE_BOOST_SYSTEM=/\*\*/ -DHAVE_BOOST_FILESYSTEM=/\*\*/ -I. -DSDLAPP_RESOURCE_DIR=\"/usr/local/share/gource\" -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/local/include -I/usr/local/include/SDL2 -I/usr/include/SDL2 -D_REENTRANT -I/usr/include/libpng16 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/libpng16 -I/usr/include -std=gnu++0x -Wall -Wno-sign-compare -Wno-reorder -Wno-unused-but-set-variable -Wno-unused-variable -g -O2 -MT src/formats/gource-svn.o -MD -MP -MF src/formats/.deps/gource-svn.Tpo -c -o src/formats/gource-svn.o `test -f 'src/formats/svn.cpp' || echo './'`src/formats/svn.cpp
mv -f src/formats/.deps/gource-cvs-exp.Tpo src/formats/.deps/gource-cvs-exp.Po
g++ -DPACKAGE_NAME=\"Gource\" -DPACKAGE_TARNAME=\"gource\" -DPACKAGE_VERSION=\"0.56\" -DPACKAGE_STRING=\"Gource\ 0.56\" -DPACKAGE_BUGREPORT=\"[email protected]\" -DPACKAGE_URL=\"\" -DPACKAGE=\"gource\" -DVERSION=\"0.56\" -DHAVE_TIMEGM=1 -DHAVE_UNSETENV=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 -DSTDC_HEADERS=1 -DHAVE_GL_GL_H=1 -DHAVE_GL=1 -DHAVE_GL_GLU_H=1 -DHAVE_GLU=1 -DHAVE_IMG_LOADPNG_RW=1 -DHAVE_IMG_LOADJPG_RW=1 -DHAVE_BOOST=/\*\*/ -DHAVE_BOOST_SYSTEM=/\*\*/ -DHAVE_BOOST_FILESYSTEM=/\*\*/ -I. -DSDLAPP_RESOURCE_DIR=\"/usr/local/share/gource\" -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/local/include -I/usr/local/include/SDL2 -I/usr/include/SDL2 -D_REENTRANT -I/usr/include/libpng16 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/libpng16 -I/usr/include -std=gnu++0x -Wall -Wno-sign-compare -Wno-reorder -Wno-unused-but-set-variable -Wno-unused-variable -g -O2 -MT src/gource-gource.o -MD -MP -MF src/.deps/gource-gource.Tpo -c -o src/gource-gource.o `test -f 'src/gource.cpp' || echo './'`src/gource.cpp
src/formats/git.cpp: In member function ‘BaseLog* GitCommitLog::generateLog(const std::string&)’:
src/formats/git.cpp:180:10: warning: ignoring return value of ‘int chdir(const char*)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
180 | chdir(cwd_buff);
| ~~~~~^~~~~~~~~~
mv -f src/formats/.deps/gource-gitraw.Tpo src/formats/.deps/gource-gitraw.Po
g++ -DPACKAGE_NAME=\"Gource\" -DPACKAGE_TARNAME=\"gource\" -DPACKAGE_VERSION=\"0.56\" -DPACKAGE_STRING=\"Gource\ 0.56\" -DPACKAGE_BUGREPORT=\"[email protected]\" -DPACKAGE_URL=\"\" -DPACKAGE=\"gource\" -DVERSION=\"0.56\" -DHAVE_TIMEGM=1 -DHAVE_UNSETENV=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 -DSTDC_HEADERS=1 -DHAVE_GL_GL_H=1 -DHAVE_GL=1 -DHAVE_GL_GLU_H=1 -DHAVE_GLU=1 -DHAVE_IMG_LOADPNG_RW=1 -DHAVE_IMG_LOADJPG_RW=1 -DHAVE_BOOST=/\*\*/ -DHAVE_BOOST_SYSTEM=/\*\*/ -DHAVE_BOOST_FILESYSTEM=/\*\*/ -I. -DSDLAPP_RESOURCE_DIR=\"/usr/local/share/gource\" -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/local/include -I/usr/local/include/SDL2 -I/usr/include/SDL2 -D_REENTRANT -I/usr/include/libpng16 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/libpng16 -I/usr/include -std=gnu++0x -Wall -Wno-sign-compare -Wno-reorder -Wno-unused-but-set-variable -Wno-unused-variable -g -O2 -MT src/gource-gource_shell.o -MD -MP -MF src/.deps/gource-gource_shell.Tpo -c -o src/gource-gource_shell.o `test -f 'src/gource_shell.cpp' || echo './'`src/gource_shell.cpp
mv -f src/formats/.deps/gource-git.Tpo src/formats/.deps/gource-git.Po
g++ -DPACKAGE_NAME=\"Gource\" -DPACKAGE_TARNAME=\"gource\" -DPACKAGE_VERSION=\"0.56\" -DPACKAGE_STRING=\"Gource\ 0.56\" -DPACKAGE_BUGREPORT=\"[email protected]\" -DPACKAGE_URL=\"\" -DPACKAGE=\"gource\" -DVERSION=\"0.56\" -DHAVE_TIMEGM=1 -DHAVE_UNSETENV=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 -DSTDC_HEADERS=1 -DHAVE_GL_GL_H=1 -DHAVE_GL=1 -DHAVE_GL_GLU_H=1 -DHAVE_GLU=1 -DHAVE_IMG_LOADPNG_RW=1 -DHAVE_IMG_LOADJPG_RW=1 -DHAVE_BOOST=/\*\*/ -DHAVE_BOOST_SYSTEM=/\*\*/ -DHAVE_BOOST_FILESYSTEM=/\*\*/ -I. -DSDLAPP_RESOURCE_DIR=\"/usr/local/share/gource\" -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/local/include -I/usr/local/include/SDL2 -I/usr/include/SDL2 -D_REENTRANT -I/usr/include/libpng16 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/libpng16 -I/usr/include -std=gnu++0x -Wall -Wno-sign-compare -Wno-reorder -Wno-unused-but-set-variable -Wno-unused-variable -g -O2 -MT src/gource-gource_settings.o -MD -MP -MF src/.deps/gource-gource_settings.Tpo -c -o src/gource-gource_settings.o `test -f 'src/gource_settings.cpp' || echo './'`src/gource_settings.cpp
mv -f src/formats/.deps/gource-cvs2cl.Tpo src/formats/.deps/gource-cvs2cl.Po
g++ -DPACKAGE_NAME=\"Gource\" -DPACKAGE_TARNAME=\"gource\" -DPACKAGE_VERSION=\"0.56\" -DPACKAGE_STRING=\"Gource\ 0.56\" -DPACKAGE_BUGREPORT=\"[email protected]\" -DPACKAGE_URL=\"\" -DPACKAGE=\"gource\" -DVERSION=\"0.56\" -DHAVE_TIMEGM=1 -DHAVE_UNSETENV=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 -DSTDC_HEADERS=1 -DHAVE_GL_GL_H=1 -DHAVE_GL=1 -DHAVE_GL_GLU_H=1 -DHAVE_GLU=1 -DHAVE_IMG_LOADPNG_RW=1 -DHAVE_IMG_LOADJPG_RW=1 -DHAVE_BOOST=/\*\*/ -DHAVE_BOOST_SYSTEM=/\*\*/ -DHAVE_BOOST_FILESYSTEM=/\*\*/ -I. -DSDLAPP_RESOURCE_DIR=\"/usr/local/share/gource\" -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/local/include -I/usr/local/include/SDL2 -I/usr/include/SDL2 -D_REENTRANT -I/usr/include/libpng16 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/libpng16 -I/usr/include -std=gnu++0x -Wall -Wno-sign-compare -Wno-reorder -Wno-unused-but-set-variable -Wno-unused-variable -g -O2 -MT src/gource-key.o -MD -MP -MF src/.deps/gource-key.Tpo -c -o src/gource-key.o `test -f 'src/key.cpp' || echo './'`src/key.cpp
mv -f src/formats/.deps/gource-bzr.Tpo src/formats/.deps/gource-bzr.Po
g++ -DPACKAGE_NAME=\"Gource\" -DPACKAGE_TARNAME=\"gource\" -DPACKAGE_VERSION=\"0.56\" -DPACKAGE_STRING=\"Gource\ 0.56\" -DPACKAGE_BUGREPORT=\"[email protected]\" -DPACKAGE_URL=\"\" -DPACKAGE=\"gource\" -DVERSION=\"0.56\" -DHAVE_TIMEGM=1 -DHAVE_UNSETENV=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 -DSTDC_HEADERS=1 -DHAVE_GL_GL_H=1 -DHAVE_GL=1 -DHAVE_GL_GLU_H=1 -DHAVE_GLU=1 -DHAVE_IMG_LOADPNG_RW=1 -DHAVE_IMG_LOADJPG_RW=1 -DHAVE_BOOST=/\*\*/ -DHAVE_BOOST_SYSTEM=/\*\*/ -DHAVE_BOOST_FILESYSTEM=/\*\*/ -I. -DSDLAPP_RESOURCE_DIR=\"/usr/local/share/gource\" -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/local/include -I/usr/local/include/SDL2 -I/usr/include/SDL2 -D_REENTRANT -I/usr/include/libpng16 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/libpng16 -I/usr/include -std=gnu++0x -Wall -Wno-sign-compare -Wno-reorder -Wno-unused-but-set-variable -Wno-unused-variable -g -O2 -MT src/gource-logmill.o -MD -MP -MF src/.deps/gource-logmill.Tpo -c -o src/gource-logmill.o `test -f 'src/logmill.cpp' || echo './'`src/logmill.cpp
mv -f src/core/.deps/gource-shader_common.Tpo src/core/.deps/gource-shader_common.Po
g++ -DPACKAGE_NAME=\"Gource\" -DPACKAGE_TARNAME=\"gource\" -DPACKAGE_VERSION=\"0.56\" -DPACKAGE_STRING=\"Gource\ 0.56\" -DPACKAGE_BUGREPORT=\"[email protected]\" -DPACKAGE_URL=\"\" -DPACKAGE=\"gource\" -DVERSION=\"0.56\" -DHAVE_TIMEGM=1 -DHAVE_UNSETENV=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 -DSTDC_HEADERS=1 -DHAVE_GL_GL_H=1 -DHAVE_GL=1 -DHAVE_GL_GLU_H=1 -DHAVE_GLU=1 -DHAVE_IMG_LOADPNG_RW=1 -DHAVE_IMG_LOADJPG_RW=1 -DHAVE_BOOST=/\*\*/ -DHAVE_BOOST_SYSTEM=/\*\*/ -DHAVE_BOOST_FILESYSTEM=/\*\*/ -I. -DSDLAPP_RESOURCE_DIR=\"/usr/local/share/gource\" -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/local/include -I/usr/local/include/SDL2 -I/usr/include/SDL2 -D_REENTRANT -I/usr/include/libpng16 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/libpng16 -I/usr/include -std=gnu++0x -Wall -Wno-sign-compare -Wno-reorder -Wno-unused-but-set-variable -Wno-unused-variable -g -O2 -MT src/gource-pawn.o -MD -MP -MF src/.deps/gource-pawn.Tpo -c -o src/gource-pawn.o `test -f 'src/pawn.cpp' || echo './'`src/pawn.cpp
src/formats/svn.cpp: In member function ‘BaseLog* SVNCommitLog::generateLog(const std::string&)’:
src/formats/svn.cpp:102:10: warning: ignoring return value of ‘int chdir(const char*)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
102 | chdir(cwd_buff);
| ~~~~~^~~~~~~~~~
mv -f src/.deps/gource-gource_shell.Tpo src/.deps/gource-gource_shell.Po
g++ -DPACKAGE_NAME=\"Gource\" -DPACKAGE_TARNAME=\"gource\" -DPACKAGE_VERSION=\"0.56\" -DPACKAGE_STRING=\"Gource\ 0.56\" -DPACKAGE_BUGREPORT=\"[email protected]\" -DPACKAGE_URL=\"\" -DPACKAGE=\"gource\" -DVERSION=\"0.56\" -DHAVE_TIMEGM=1 -DHAVE_UNSETENV=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 -DSTDC_HEADERS=1 -DHAVE_GL_GL_H=1 -DHAVE_GL=1 -DHAVE_GL_GLU_H=1 -DHAVE_GLU=1 -DHAVE_IMG_LOADPNG_RW=1 -DHAVE_IMG_LOADJPG_RW=1 -DHAVE_BOOST=/\*\*/ -DHAVE_BOOST_SYSTEM=/\*\*/ -DHAVE_BOOST_FILESYSTEM=/\*\*/ -I. -DSDLAPP_RESOURCE_DIR=\"/usr/local/share/gource\" -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/local/include -I/usr/local/include/SDL2 -I/usr/include/SDL2 -D_REENTRANT -I/usr/include/libpng16 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/libpng16 -I/usr/include -std=gnu++0x -Wall -Wno-sign-compare -Wno-reorder -Wno-unused-but-set-variable -Wno-unused-variable -g -O2 -MT src/gource-slider.o -MD -MP -MF src/.deps/gource-slider.Tpo -c -o src/gource-slider.o `test -f 'src/slider.cpp' || echo './'`src/slider.cpp
mv -f src/.deps/gource-pawn.Tpo src/.deps/gource-pawn.Po
g++ -DPACKAGE_NAME=\"Gource\" -DPACKAGE_TARNAME=\"gource\" -DPACKAGE_VERSION=\"0.56\" -DPACKAGE_STRING=\"Gource\ 0.56\" -DPACKAGE_BUGREPORT=\"[email protected]\" -DPACKAGE_URL=\"\" -DPACKAGE=\"gource\" -DVERSION=\"0.56\" -DHAVE_TIMEGM=1 -DHAVE_UNSETENV=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 -DSTDC_HEADERS=1 -DHAVE_GL_GL_H=1 -DHAVE_GL=1 -DHAVE_GL_GLU_H=1 -DHAVE_GLU=1 -DHAVE_IMG_LOADPNG_RW=1 -DHAVE_IMG_LOADJPG_RW=1 -DHAVE_BOOST=/\*\*/ -DHAVE_BOOST_SYSTEM=/\*\*/ -DHAVE_BOOST_FILESYSTEM=/\*\*/ -I. -DSDLAPP_RESOURCE_DIR=\"/usr/local/share/gource\" -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/local/include -I/usr/local/include/SDL2 -I/usr/include/SDL2 -D_REENTRANT -I/usr/include/libpng16 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/libpng16 -I/usr/include -std=gnu++0x -Wall -Wno-sign-compare -Wno-reorder -Wno-unused-but-set-variable -Wno-unused-variable -g -O2 -MT src/gource-spline.o -MD -MP -MF src/.deps/gource-spline.Tpo -c -o src/gource-spline.o `test -f 'src/spline.cpp' || echo './'`src/spline.cpp
mv -f src/formats/.deps/gource-hg.Tpo src/formats/.deps/gource-hg.Po
g++ -DPACKAGE_NAME=\"Gource\" -DPACKAGE_TARNAME=\"gource\" -DPACKAGE_VERSION=\"0.56\" -DPACKAGE_STRING=\"Gource\ 0.56\" -DPACKAGE_BUGREPORT=\"[email protected]\" -DPACKAGE_URL=\"\" -DPACKAGE=\"gource\" -DVERSION=\"0.56\" -DHAVE_TIMEGM=1 -DHAVE_UNSETENV=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 -DSTDC_HEADERS=1 -DHAVE_GL_GL_H=1 -DHAVE_GL=1 -DHAVE_GL_GLU_H=1 -DHAVE_GLU=1 -DHAVE_IMG_LOADPNG_RW=1 -DHAVE_IMG_LOADJPG_RW=1 -DHAVE_BOOST=/\*\*/ -DHAVE_BOOST_SYSTEM=/\*\*/ -DHAVE_BOOST_FILESYSTEM=/\*\*/ -I. -DSDLAPP_RESOURCE_DIR=\"/usr/local/share/gource\" -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/local/include -I/usr/local/include/SDL2 -I/usr/include/SDL2 -D_REENTRANT -I/usr/include/libpng16 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/libpng16 -I/usr/include -std=gnu++0x -Wall -Wno-sign-compare -Wno-reorder -Wno-unused-but-set-variable -Wno-unused-variable -g -O2 -MT src/gource-textbox.o -MD -MP -MF src/.deps/gource-textbox.Tpo -c -o src/gource-textbox.o `test -f 'src/textbox.cpp' || echo './'`src/textbox.cpp
mv -f src/.deps/gource-key.Tpo src/.deps/gource-key.Po
g++ -DPACKAGE_NAME=\"Gource\" -DPACKAGE_TARNAME=\"gource\" -DPACKAGE_VERSION=\"0.56\" -DPACKAGE_STRING=\"Gource\ 0.56\" -DPACKAGE_BUGREPORT=\"[email protected]\" -DPACKAGE_URL=\"\" -DPACKAGE=\"gource\" -DVERSION=\"0.56\" -DHAVE_TIMEGM=1 -DHAVE_UNSETENV=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 -DSTDC_HEADERS=1 -DHAVE_GL_GL_H=1 -DHAVE_GL=1 -DHAVE_GL_GLU_H=1 -DHAVE_GLU=1 -DHAVE_IMG_LOADPNG_RW=1 -DHAVE_IMG_LOADJPG_RW=1 -DHAVE_BOOST=/\*\*/ -DHAVE_BOOST_SYSTEM=/\*\*/ -DHAVE_BOOST_FILESYSTEM=/\*\*/ -I. -DSDLAPP_RESOURCE_DIR=\"/usr/local/share/gource\" -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/local/include -I/usr/local/include/SDL2 -I/usr/include/SDL2 -D_REENTRANT -I/usr/include/libpng16 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/libpng16 -I/usr/include -std=gnu++0x -Wall -Wno-sign-compare -Wno-reorder -Wno-unused-but-set-variable -Wno-unused-variable -g -O2 -MT src/gource-user.o -MD -MP -MF src/.deps/gource-user.Tpo -c -o src/gource-user.o `test -f 'src/user.cpp' || echo './'`src/user.cpp
mv -f src/.deps/gource-logmill.Tpo src/.deps/gource-logmill.Po
g++ -DPACKAGE_NAME=\"Gource\" -DPACKAGE_TARNAME=\"gource\" -DPACKAGE_VERSION=\"0.56\" -DPACKAGE_STRING=\"Gource\ 0.56\" -DPACKAGE_BUGREPORT=\"[email protected]\" -DPACKAGE_URL=\"\" -DPACKAGE=\"gource\" -DVERSION=\"0.56\" -DHAVE_TIMEGM=1 -DHAVE_UNSETENV=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 -DSTDC_HEADERS=1 -DHAVE_GL_GL_H=1 -DHAVE_GL=1 -DHAVE_GL_GLU_H=1 -DHAVE_GLU=1 -DHAVE_IMG_LOADPNG_RW=1 -DHAVE_IMG_LOADJPG_RW=1 -DHAVE_BOOST=/\*\*/ -DHAVE_BOOST_SYSTEM=/\*\*/ -DHAVE_BOOST_FILESYSTEM=/\*\*/ -I. -DSDLAPP_RESOURCE_DIR=\"/usr/local/share/gource\" -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/local/include -I/usr/local/include/SDL2 -I/usr/include/SDL2 -D_REENTRANT -I/usr/include/libpng16 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/libpng16 -I/usr/include -std=gnu++0x -Wall -Wno-sign-compare -Wno-reorder -Wno-unused-but-set-variable -Wno-unused-variable -g -O2 -MT src/gource-zoomcamera.o -MD -MP -MF src/.deps/gource-zoomcamera.Tpo -c -o src/gource-zoomcamera.o `test -f 'src/zoomcamera.cpp' || echo './'`src/zoomcamera.cpp
mv -f src/formats/.deps/gource-svn.Tpo src/formats/.deps/gource-svn.Po
g++ -DPACKAGE_NAME=\"Gource\" -DPACKAGE_TARNAME=\"gource\" -DPACKAGE_VERSION=\"0.56\" -DPACKAGE_STRING=\"Gource\ 0.56\" -DPACKAGE_BUGREPORT=\"[email protected]\" -DPACKAGE_URL=\"\" -DPACKAGE=\"gource\" -DVERSION=\"0.56\" -DHAVE_TIMEGM=1 -DHAVE_UNSETENV=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 -DSTDC_HEADERS=1 -DHAVE_GL_GL_H=1 -DHAVE_GL=1 -DHAVE_GL_GLU_H=1 -DHAVE_GLU=1 -DHAVE_IMG_LOADPNG_RW=1 -DHAVE_IMG_LOADJPG_RW=1 -DHAVE_BOOST=/\*\*/ -DHAVE_BOOST_SYSTEM=/\*\*/ -DHAVE_BOOST_FILESYSTEM=/\*\*/ -I. -DSDLAPP_RESOURCE_DIR=\"/usr/local/share/gource\" -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/local/include -I/usr/local/include/SDL2 -I/usr/include/SDL2 -D_REENTRANT -I/usr/include/libpng16 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/libpng16 -I/usr/include -std=gnu++0x -Wall -Wno-sign-compare -Wno-reorder -Wno-unused-but-set-variable -Wno-unused-variable -g -O2 -MT src/tinyxml/gource-tinyxmlerror.o -MD -MP -MF src/tinyxml/.deps/gource-tinyxmlerror.Tpo -c -o src/tinyxml/gource-tinyxmlerror.o `test -f 'src/tinyxml/tinyxmlerror.cpp' || echo './'`src/tinyxml/tinyxmlerror.cpp
mv -f src/tinyxml/.deps/gource-tinyxmlerror.Tpo src/tinyxml/.deps/gource-tinyxmlerror.Po
g++ -DPACKAGE_NAME=\"Gource\" -DPACKAGE_TARNAME=\"gource\" -DPACKAGE_VERSION=\"0.56\" -DPACKAGE_STRING=\"Gource\ 0.56\" -DPACKAGE_BUGREPORT=\"[email protected]\" -DPACKAGE_URL=\"\" -DPACKAGE=\"gource\" -DVERSION=\"0.56\" -DHAVE_TIMEGM=1 -DHAVE_UNSETENV=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 -DSTDC_HEADERS=1 -DHAVE_GL_GL_H=1 -DHAVE_GL=1 -DHAVE_GL_GLU_H=1 -DHAVE_GLU=1 -DHAVE_IMG_LOADPNG_RW=1 -DHAVE_IMG_LOADJPG_RW=1 -DHAVE_BOOST=/\*\*/ -DHAVE_BOOST_SYSTEM=/\*\*/ -DHAVE_BOOST_FILESYSTEM=/\*\*/ -I. -DSDLAPP_RESOURCE_DIR=\"/usr/local/share/gource\" -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/local/include -I/usr/local/include/SDL2 -I/usr/include/SDL2 -D_REENTRANT -I/usr/include/libpng16 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/libpng16 -I/usr/include -std=gnu++0x -Wall -Wno-sign-compare -Wno-reorder -Wno-unused-but-set-variable -Wno-unused-variable -g -O2 -MT src/tinyxml/gource-tinystr.o -MD -MP -MF src/tinyxml/.deps/gource-tinystr.Tpo -c -o src/tinyxml/gource-tinystr.o `test -f 'src/tinyxml/tinystr.cpp' || echo './'`src/tinyxml/tinystr.cpp
mv -f src/tinyxml/.deps/gource-tinystr.Tpo src/tinyxml/.deps/gource-tinystr.Po
g++ -DPACKAGE_NAME=\"Gource\" -DPACKAGE_TARNAME=\"gource\" -DPACKAGE_VERSION=\"0.56\" -DPACKAGE_STRING=\"Gource\ 0.56\" -DPACKAGE_BUGREPORT=\"[email protected]\" -DPACKAGE_URL=\"\" -DPACKAGE=\"gource\" -DVERSION=\"0.56\" -DHAVE_TIMEGM=1 -DHAVE_UNSETENV=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 -DSTDC_HEADERS=1 -DHAVE_GL_GL_H=1 -DHAVE_GL=1 -DHAVE_GL_GLU_H=1 -DHAVE_GLU=1 -DHAVE_IMG_LOADPNG_RW=1 -DHAVE_IMG_LOADJPG_RW=1 -DHAVE_BOOST=/\*\*/ -DHAVE_BOOST_SYSTEM=/\*\*/ -DHAVE_BOOST_FILESYSTEM=/\*\*/ -I. -DSDLAPP_RESOURCE_DIR=\"/usr/local/share/gource\" -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/local/include -I/usr/local/include/SDL2 -I/usr/include/SDL2 -D_REENTRANT -I/usr/include/libpng16 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/libpng16 -I/usr/include -std=gnu++0x -Wall -Wno-sign-compare -Wno-reorder -Wno-unused-but-set-variable -Wno-unused-variable -g -O2 -MT src/tinyxml/gource-tinyxml.o -MD -MP -MF src/tinyxml/.deps/gource-tinyxml.Tpo -c -o src/tinyxml/gource-tinyxml.o `test -f 'src/tinyxml/tinyxml.cpp' || echo './'`src/tinyxml/tinyxml.cpp
mv -f src/.deps/gource-slider.Tpo src/.deps/gource-slider.Po
g++ -DPACKAGE_NAME=\"Gource\" -DPACKAGE_TARNAME=\"gource\" -DPACKAGE_VERSION=\"0.56\" -DPACKAGE_STRING=\"Gource\ 0.56\" -DPACKAGE_BUGREPORT=\"[email protected]\" -DPACKAGE_URL=\"\" -DPACKAGE=\"gource\" -DVERSION=\"0.56\" -DHAVE_TIMEGM=1 -DHAVE_UNSETENV=1 -DHAVE_STDIO_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_STRINGS_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_UNISTD_H=1 -DSTDC_HEADERS=1 -DHAVE_GL_GL_H=1 -DHAVE_GL=1 -DHAVE_GL_GLU_H=1 -DHAVE_GLU=1 -DHAVE_IMG_LOADPNG_RW=1 -DHAVE_IMG_LOADJPG_RW=1 -DHAVE_BOOST=/\*\*/ -DHAVE_BOOST_SYSTEM=/\*\*/ -DHAVE_BOOST_FILESYSTEM=/\*\*/ -I. -DSDLAPP_RESOURCE_DIR=\"/usr/local/share/gource\" -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/local/include -I/usr/local/include/SDL2 -I/usr/include/SDL2 -D_REENTRANT -I/usr/include/libpng16 -I/usr/include/x86_64-linux-gnu -I/usr/include/webp -I/usr/include/libpng16 -I/usr/include -std=gnu++0x -Wall -Wno-sign-compare -Wno-reorder -Wno-unused-but-set-variable -Wno-unused-variable -g -O2 -MT src/tinyxml/gource-tinyxmlparser.o -MD -MP -MF src/tinyxml/.deps/gource-tinyxmlparser.Tpo -c -o src/tinyxml/gource-tinyxmlparser.o `test -f 'src/tinyxml/tinyxmlparser.cpp' || echo './'`src/tinyxml/tinyxmlparser.cpp
mv -f src/.deps/gource-spline.Tpo src/.deps/gource-spline.Po
mv -f src/tinyxml/.deps/gource-tinyxml.Tpo src/tinyxml/.deps/gource-tinyxml.Po
mv -f src/.deps/gource-textbox.Tpo src/.deps/gource-textbox.Po
mv -f src/tinyxml/.deps/gource-tinyxmlparser.Tpo src/tinyxml/.deps/gource-tinyxmlparser.Po
mv -f src/.deps/gource-zoomcamera.Tpo src/.deps/gource-zoomcamera.Po
mv -f src/.deps/gource-user.Tpo src/.deps/gource-user.Po
mv -f src/.deps/gource-gource.Tpo src/.deps/gource-gource.Po
mv -f src/.deps/gource-gource_settings.Tpo src/.deps/gource-gource_settings.Po
g++ -std=gnu++0x -Wall -Wno-sign-compare -Wno-reorder -Wno-unused-but-set-variable -Wno-unused-variable -g -O2 -o gource src/gource-main.o src/gource-action.o src/gource-bloom.o src/gource-caption.o src/core/gource-conffile.o src/core/gource-display.o src/core/gource-frustum.o src/core/gource-fxfont.o src/core/gource-logger.o src/core/gource-mousecursor.o src/core/gource-plane.o src/core/gource-ppm.o src/core/gource-quadtree.o src/core/gource-regex.o src/core/gource-resource.o src/core/gource-sdlapp.o src/core/gource-seeklog.o src/core/gource-settings.o src/core/gource-shader.o src/core/gource-shader_common.o src/core/gource-stringhash.o src/core/gource-texture.o src/core/gource-png_writer.o src/core/gource-timezone.o src/core/gource-vbo.o src/core/gource-vectors.o src/gource-dirnode.o src/gource-file.o src/formats/gource-apache.o src/formats/gource-bzr.o src/formats/gource-commitlog.o src/formats/gource-custom.o src/formats/gource-cvs-exp.o src/formats/gource-cvs2cl.o src/formats/gource-git.o src/formats/gource-gitraw.o src/formats/gource-hg.o src/formats/gource-svn.o src/gource-gource.o src/gource-gource_shell.o src/gource-gource_settings.o src/gource-key.o src/gource-logmill.o src/gource-pawn.o src/gource-slider.o src/gource-spline.o src/gource-textbox.o src/gource-user.o src/gource-zoomcamera.o src/tinyxml/gource-tinyxmlerror.o src/tinyxml/gource-tinystr.o src/tinyxml/gource-tinyxml.o src/tinyxml/gource-tinyxmlparser.o -lGLU -lGL -lGL -lGLU -lfreetype -lpcre2-8 -L/usr/lib64 -lGLEW -lGL -lX11 -lGLU -L/usr/local/lib -lSDL2_image -Wl,-rpath,/usr/local/lib -Wl,--enable-new-dtags -lSDL2 -lpng16 -lboost_system -lboost_filesystem
Regarding the sdl library, I have noticed that they have a cmake setup, it could be interesting to consider using cmake to build the project (this could be a way to stabilise the dependencies used by your code as well as retaining a way of staying cross platform)
The instructions to compile and the dependencies are in the INSTALL file, though it looks like you got that to work. My best guess is still a bad OpenGL driver. Its odd because I'd expect to see lots of reports software with legacy Opengl code fail with this error if this was a wide spread problem and I'd expect more activity on this issue.