diff options
author | Otavio Salvador <otavio@ossystems.com.br> | 2014-07-26 17:09:43 -0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-07-27 08:31:09 +0100 |
commit | cdb9b9619fa5417dfaee171142ad0ce9daefc461 (patch) | |
tree | 7ad5f81adc7cdca8f2ae8c8bcfd2a06104709a43 /meta/recipes-graphics/directfb | |
parent | 7952151dfc45c126041fedf826b94e61030d65a5 (diff) | |
download | poky-cdb9b9619fa5417dfaee171142ad0ce9daefc461.tar.gz |
directfb-examples: Fix building with new autoconf
This fixes the following build error:
,----
| .../configure: line 4229: syntax error near unexpected token `DIRECTFB,'
| .../configure: line 4229: `PKG_CHECK_MODULES(DIRECTFB, directfb >= $DIRECTFB_REQUIRED_VERSION, WATER=`$PKG_CONFIG --variable=water directfb` ,'
`----
(From OE-Core rev: 3f7fcbc167c13bdaa6c12a81c7851530d72f02e0)
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics/directfb')
-rw-r--r-- | meta/recipes-graphics/directfb/directfb-examples/configure.in-Fix-string-argument-syntax.patch | 28 | ||||
-rw-r--r-- | meta/recipes-graphics/directfb/directfb-examples_1.7.0.bb | 1 |
2 files changed, 29 insertions, 0 deletions
diff --git a/meta/recipes-graphics/directfb/directfb-examples/configure.in-Fix-string-argument-syntax.patch b/meta/recipes-graphics/directfb/directfb-examples/configure.in-Fix-string-argument-syntax.patch new file mode 100644 index 0000000000..0717ea6f88 --- /dev/null +++ b/meta/recipes-graphics/directfb/directfb-examples/configure.in-Fix-string-argument-syntax.patch | |||
@@ -0,0 +1,28 @@ | |||
1 | From 88077ed156a714f32bb408f422278d61611ffd41 Mon Sep 17 00:00:00 2001 | ||
2 | From: Otavio Salvador <otavio@ossystems.com.br> | ||
3 | Date: Sat, 26 Jul 2014 16:57:46 -0300 | ||
4 | Subject: [PATCH] configure.in: Fix string argument syntax | ||
5 | |||
6 | Upstream-Status: Submitted | ||
7 | |||
8 | Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> | ||
9 | --- | ||
10 | configure.in | 2 +- | ||
11 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
12 | |||
13 | diff --git a/configure.in b/configure.in | ||
14 | index bfe1b82..e939bbd 100644 | ||
15 | --- a/configure.in | ||
16 | +++ b/configure.in | ||
17 | @@ -65,7 +65,7 @@ fi) | ||
18 | |||
19 | DIRECTFB_REQUIRED_VERSION=1.4.14 | ||
20 | |||
21 | -PKG_CHECK_MODULES(DIRECTFB, directfb >= $DIRECTFB_REQUIRED_VERSION,[ WATER=`$PKG_CONFIG --variable=water directfb` ], | ||
22 | +PKG_CHECK_MODULES([DIRECTFB], directfb >= $DIRECTFB_REQUIRED_VERSION,[ WATER=`$PKG_CONFIG --variable=water directfb` ], | ||
23 | AC_MSG_ERROR([$DIRECTFB_PKG_ERRORS | ||
24 | *** DirectFB $DIRECTFB_REQUIRED_VERSION or newer is required. The latest version | ||
25 | *** of DirectFB is available from http://www.directfb.org/.])) | ||
26 | -- | ||
27 | 1.7.10.4 | ||
28 | |||
diff --git a/meta/recipes-graphics/directfb/directfb-examples_1.7.0.bb b/meta/recipes-graphics/directfb/directfb-examples_1.7.0.bb index 6057596071..9c3e8bf3d3 100644 --- a/meta/recipes-graphics/directfb/directfb-examples_1.7.0.bb +++ b/meta/recipes-graphics/directfb/directfb-examples_1.7.0.bb | |||
@@ -8,6 +8,7 @@ LICENSE = "MIT" | |||
8 | 8 | ||
9 | SRC_URI = " \ | 9 | SRC_URI = " \ |
10 | http://www.directfb.org/downloads/Extras/DirectFB-examples-${PV}.tar.gz \ | 10 | http://www.directfb.org/downloads/Extras/DirectFB-examples-${PV}.tar.gz \ |
11 | file://configure.in-Fix-string-argument-syntax.patch \ | ||
11 | " | 12 | " |
12 | 13 | ||
13 | LIC_FILES_CHKSUM = "file://COPYING;md5=ecf6fd2b19915afc4da56043926ca18f" | 14 | LIC_FILES_CHKSUM = "file://COPYING;md5=ecf6fd2b19915afc4da56043926ca18f" |