diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2014-07-11 18:06:28 -0300 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-07-12 11:48:55 +0200 |
commit | d296361aa8900ca06f2c426365fc1fed5a869b0e (patch) | |
tree | 8f572b3d1852826108152f02b87334904bcd7d28 /package/polarssl/polarssl-no-test-suite.patch | |
parent | d0c4261bd1b7eae75782667d237b2ae216bc6828 (diff) | |
download | buildroot-d296361aa8900ca06f2c426365fc1fed5a869b0e.tar.gz buildroot-d296361aa8900ca06f2c426365fc1fed5a869b0e.zip |
polarssl: security bump to version 1.2.11
Fixes CVE-2014-4911 and a few other issues that don't have a CVE assigned
(backports from 1.3.x branch).
The no programs & shared/static patches are now upstream albeit in a
slightly different form.
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/polarssl/polarssl-no-test-suite.patch')
-rw-r--r-- | package/polarssl/polarssl-no-test-suite.patch | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/package/polarssl/polarssl-no-test-suite.patch b/package/polarssl/polarssl-no-test-suite.patch deleted file mode 100644 index 7e0744132d..0000000000 --- a/package/polarssl/polarssl-no-test-suite.patch +++ /dev/null @@ -1,26 +0,0 @@ -Add BUILD_TESTS option to disable test suite - -By default, PolarSSL builds a fairly extensive test suite to validate -the library. In the context of Buildroot, building this test suite is -not really useful, so we add a BUILD_TESTS to disable its build. - -Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> - -Index: polarssl-1.1.1/CMakeLists.txt -=================================================================== ---- polarssl-1.1.1.orig/CMakeLists.txt -+++ polarssl-1.1.1/CMakeLists.txt -@@ -27,9 +27,11 @@ - add_subdirectory(library) - add_subdirectory(include) - --if(CMAKE_COMPILER_IS_GNUCC) -+option(BUILD_TESTS "Build tests." ON) -+ -+if(CMAKE_COMPILER_IS_GNUCC AND BUILD_TESTS) - add_subdirectory(tests) --endif(CMAKE_COMPILER_IS_GNUCC) -+endif(CMAKE_COMPILER_IS_GNUCC AND BUILD_TESTS) - - add_subdirectory(programs) - |