summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/minicom/minicom-2.6.2
diff options
context:
space:
mode:
authorMartin Jansa <Martin.Jansa@gmail.com>2013-07-21 15:34:21 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-07-29 13:09:08 +0100
commitbfd75e4f47701a7566e431816ceb7e295b33af99 (patch)
tree802400dfe5ac070e46135637cc3564c8f1463f66 /meta/recipes-extended/minicom/minicom-2.6.2
parent331e651fd8ea94f2bc909007ce61e759f6f2a570 (diff)
downloadpoky-bfd75e4f47701a7566e431816ceb7e295b33af99.tar.gz
minicom: add configure option and PACKAGECONFIG for lockdev
* it's autodetected from sysroot * add PACKAGECONFIG to make it deterministic (From OE-Core rev: a886f2f78c847df9d6fbbcbd3c4ad3581b928e2f) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/minicom/minicom-2.6.2')
-rw-r--r--meta/recipes-extended/minicom/minicom-2.6.2/allow.to.disable.lockdev.patch21
1 files changed, 21 insertions, 0 deletions
diff --git a/meta/recipes-extended/minicom/minicom-2.6.2/allow.to.disable.lockdev.patch b/meta/recipes-extended/minicom/minicom-2.6.2/allow.to.disable.lockdev.patch
new file mode 100644
index 0000000000..f5c08896ff
--- /dev/null
+++ b/meta/recipes-extended/minicom/minicom-2.6.2/allow.to.disable.lockdev.patch
@@ -0,0 +1,21 @@
1Upstream-Status: Pending
2
3Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
4
5--- a/configure.in 2013-02-06 18:18:13.000000000 +0100
6+++ b/configure.in 2013-07-21 15:31:27.614828894 +0200
7@@ -40,7 +40,13 @@
8 fi
9
10 PKG_PROG_PKG_CONFIG
11-if test -n "$PKG_CONFIG"; then
12+
13+AC_ARG_ENABLE([lockdev],
14+ AS_HELP_STRING([--enable-lockdev],
15+ [Enable lockdev support (def: enabled)]),
16+ [], [enable_lockdev="yes"])
17+
18+if test -n "$PKG_CONFIG" && test "x$enable_lockdev" = xyes; then
19 PKG_CHECK_MODULES([LOCKDEV], [lockdev], AC_DEFINE([HAVE_LOCKDEV],[1],[Define if you have lockdev]),[:])
20 fi
21