diff options
author | 2015-05-31 12:37:01 +0200 | |
---|---|---|
committer | 2015-05-31 12:37:01 +0200 | |
commit | f23ff0f6f05eb62bb34ab00f9dce1a697a38a877 (patch) | |
tree | 78b64de305f6eccd87aae8e213f9340e1343eda0 /scripts/src | |
parent | 2923224b5145191960a03674e297e11342b765c5 (diff) |
fix compile on GCC 4.4 on old Ubuntu (nw)
Diffstat (limited to 'scripts/src')
-rw-r--r-- | scripts/src/3rdparty.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/src/3rdparty.lua b/scripts/src/3rdparty.lua index dd53fa8105e..34c9a14599c 100644 --- a/scripts/src/3rdparty.lua +++ b/scripts/src/3rdparty.lua @@ -637,7 +637,7 @@ project "portaudio" "-Wno-sometimes-uninitialized", } else - if (version >= 40400) then + if (version >= 40600) then buildoptions_c { "-Wno-unused-but-set-variable", "-Wno-maybe-uninitialized", |