Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRick Kern <kernrj@gmail.com>2016-06-26 23:44:40 +0300
committerMichael Niedermayer <michael@niedermayer.cc>2016-06-27 00:27:22 +0300
commit18ce5a4d1b3f87b3b45651401cdf3352de34cfa1 (patch)
tree6cae4b12fc7c28c6c0aaf8f3661f894d0898e7a9
parentcf09348b9e03502c7051f7d771f22ffd25611e23 (diff)
configure: use c++98 for c++ filesn3.1
Use c++98 standard instead of c++11. Signed-off-by: Rick Kern <kernrj@gmail.com> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> (cherry picked from commit 729d82abae2f9bae3e5152022d2df0bb5bcde98e) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 6aadf9c7c8..3760641385 100755
--- a/configure
+++ b/configure
@@ -4529,7 +4529,7 @@ fi
add_cppflags -D_ISOC99_SOURCE
add_cxxflags -D__STDC_CONSTANT_MACROS
-add_cxxflags -std=c++11
+add_cxxflags -std=c++98
check_cflags -std=c99
check_cc -D_FILE_OFFSET_BITS=64 <<EOF && add_cppflags -D_FILE_OFFSET_BITS=64
#include <stdlib.h>