diff options
author | Bernd Kuhls <bernd.kuhls@t-online.de> | 2017-08-02 18:52:17 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-08-02 19:07:22 +0200 |
commit | e2385ce1f40278fe6af5035300e2d959f1d9b56e (patch) | |
tree | 8095c58ae4f681e9a25bd7755a707ff83cecb86b | |
parent | 117835d5fcd508f301d62dd08ee658c1982c7fa7 (diff) | |
download | buildroot-e2385ce1f40278fe6af5035300e2d959f1d9b56e.tar.gz buildroot-e2385ce1f40278fe6af5035300e2d959f1d9b56e.zip |
package/libcodec2: disable unittest
Quoting
https://svn.code.sf.net/p/freetel/code/codec2-dev/CMakeLists.txt
"# Unittest should be on for dev builds and off for releases."
If unittest is enabled libcodec2 depends on speex and libsamplerate.
To avoid these dependencies we simply disable unittest.
Fixes
http://autobuild.buildroot.net/results/da2/da2b6402c8fabd85a9ee728e8dbf7b78c5aa801e/
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/libcodec2/libcodec2.mk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/libcodec2/libcodec2.mk b/package/libcodec2/libcodec2.mk index 38ecac164f..7d1c6c3839 100644 --- a/package/libcodec2/libcodec2.mk +++ b/package/libcodec2/libcodec2.mk @@ -11,6 +11,7 @@ LIBCODEC2_LICENSE = LGPL-2.1 LIBCODEC2_LICENSE_FILES = COPYING LIBCODEC2_INSTALL_STAGING = YES LIBCODEC2_SUPPORTS_IN_SOURCE_BUILD = NO +LIBCODEC2_CONF_OPTS = -DUNITTEST=OFF ifeq ($(BR2_PACKAGE_LIBCODEC2_EXAMPLES),y) LIBCODEC2_CONF_OPTS += -DINSTALL_EXAMPLES=ON |