aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/beecrypt/beecrypt/add-option-dev-dsp.patch
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2018-04-10 16:30:38 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-05-04 09:54:57 +0100
commitfb8ca4225f3e26bfc46cf6c06d55df72684c47c6 (patch)
tree97279dd166743af4a973d3c4cdfab96e8119af28 /meta/recipes-support/beecrypt/beecrypt/add-option-dev-dsp.patch
parent0cc82a9158f58a37865f3ccc56156c987706f735 (diff)
downloadopenembedded-core-contrib-fb8ca4225f3e26bfc46cf6c06d55df72684c47c6.tar.gz
beecrypt: remove
This was only in oe-core for RPM5, but RPM4 doesn't use it. Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/recipes-support/beecrypt/beecrypt/add-option-dev-dsp.patch')
-rw-r--r--meta/recipes-support/beecrypt/beecrypt/add-option-dev-dsp.patch34
1 files changed, 0 insertions, 34 deletions
diff --git a/meta/recipes-support/beecrypt/beecrypt/add-option-dev-dsp.patch b/meta/recipes-support/beecrypt/beecrypt/add-option-dev-dsp.patch
deleted file mode 100644
index b3298ce2db..0000000000
--- a/meta/recipes-support/beecrypt/beecrypt/add-option-dev-dsp.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-Add config option --with-dev-dsp.
-
-Upstream-Status: Pending
-
-Signed-off-by: Zhang Xiao <xiao.zhang@windriver.com>
----
---- a/configure.ac
-+++ b/configure.ac
-@@ -106,6 +106,16 @@ AC_ARG_WITH(python,[ --with-python[[=AR
- fi
- ])
-
-+AC_ARG_WITH(dev-dsp,[ --with-dev-dsp enables dev/dsp for entropy producing. auto for auto-detecting dev/dep on host. [[default=no]]],[
-+ if test "$withval" = yes; then
-+ AC_DEFINE([HAVE_DEV_DSP], 1)
-+ else
-+ if test "$withval" = auto; then
-+ ac_detect_dev_dsp=yes
-+ fi
-+ fi
-+ ],[ac_detect_dev_dsp=no])
-+
- # Check for expert mode
- if test "$ac_enable_expert_mode" = yes; then
- BEE_EXPERT_MODE
-@@ -464,7 +474,7 @@ linux*)
- ac_cv_have_dev_dsp=no
- fi
- ])
-- if test "$ac_cv_have_dev_dsp" = yes; then
-+ if test "$ac_cv_have_dev_dsp" = yes && test "$ac_detect_dev_dsp" = yes; then
- AC_DEFINE([HAVE_DEV_DSP], 1)
- fi
- ;;