shithub: libvpx

Download patch

ref: c26c07328fab9a8ed3a6a31d54a6a1bac00fc928
parent: e27a331778c4c99ec37262ea786a3b4cc2a491ac
parent: 48a3df87c0cced325f1bf95c72c8ac0f8392f919
author: Johann Koenig <johannkoenig@google.com>
date: Mon May 21 12:24:13 EDT 2018

Merge "configure,ios: add missing c++11 checks"

--- a/build/make/configure.sh
+++ b/build/make/configure.sh
@@ -832,7 +832,7 @@
     IOS_VERSION_MIN="8.0"
   else
     IOS_VERSION_OPTIONS=""
-    IOS_VERSION_MIN="6.0"
+    IOS_VERSION_MIN="7.0"
   fi
 
   # Handle darwin variants. Newer SDKs allow targeting older
--- a/build/make/iosbuild.sh
+++ b/build/make/iosbuild.sh
@@ -351,7 +351,7 @@
   IOS_VERSION_MIN="8.0"
 else
   IOS_VERSION_OPTIONS=""
-  IOS_VERSION_MIN="6.0"
+  IOS_VERSION_MIN="7.0"
 fi
 
 if [ "${VERBOSE}" = "yes" ]; then
--- a/configure
+++ b/configure
@@ -704,7 +704,7 @@
             soft_enable libyuv
         ;;
         *-android-*)
-            soft_enable webm_io
+            check_add_cxxflags -std=c++11 && soft_enable webm_io
             soft_enable libyuv
             # GTestLog must be modified to use Android logging utilities.
         ;;
@@ -713,7 +713,7 @@
             # x86 targets.
         ;;
         *-iphonesimulator-*)
-            soft_enable webm_io
+            check_add_cxxflags -std=c++11 && soft_enable webm_io
             soft_enable libyuv
         ;;
         *-win*)