hackedbox: fix new clang
New clang defaults to higher standard version than this code complies with. Set the c++98 explicitly to fix compilation.
This commit is contained in:
parent
448c5af692
commit
23185c1deb
1 changed files with 2 additions and 0 deletions
|
@ -32,6 +32,8 @@ stdenv.mkDerivation (finalAttrs: {
|
|||
pkg-config
|
||||
];
|
||||
|
||||
CXXFLAGS = "-std=c++98";
|
||||
|
||||
buildInputs = [
|
||||
freetype
|
||||
fribidi
|
||||
|
|
Loading…
Reference in a new issue