summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-graphics/gphoto2/libgphoto2-2.4.11
diff options
context:
space:
mode:
authorMartin Jansa <Martin.Jansa@gmail.com>2013-07-13 16:05:39 +0200
committerMartin Jansa <Martin.Jansa@gmail.com>2013-07-20 17:07:30 +0200
commitcf3449958c3b9563d5da98585365f14e87e343d9 (patch)
treed9ee04ed49811ea31b9b997758db2b92d8974431 /meta-oe/recipes-graphics/gphoto2/libgphoto2-2.4.11
parent337b1bac68c548d5e21525961b8a52b72d2cc613 (diff)
downloadmeta-openembedded-cf3449958c3b9563d5da98585365f14e87e343d9.tar.gz
libgphoto2: add configure option for gd and add PACKAGECONFIG
* it's autodetected and pulls couple of other dependencies freetype gd libpng lockdev zlib Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-graphics/gphoto2/libgphoto2-2.4.11')
-rw-r--r--meta-oe/recipes-graphics/gphoto2/libgphoto2-2.4.11/allow.to.disable.gd.patch33
1 files changed, 33 insertions, 0 deletions
diff --git a/meta-oe/recipes-graphics/gphoto2/libgphoto2-2.4.11/allow.to.disable.gd.patch b/meta-oe/recipes-graphics/gphoto2/libgphoto2-2.4.11/allow.to.disable.gd.patch
new file mode 100644
index 0000000000..aa1a12441d
--- /dev/null
+++ b/meta-oe/recipes-graphics/gphoto2/libgphoto2-2.4.11/allow.to.disable.gd.patch
@@ -0,0 +1,33 @@
1--- libgphoto2-2.4.11.orig/configure.ac 2013-07-19 21:59:10.857223729 +0200
2+++ libgphoto2-2.4.11/configure.ac 2013-07-19 22:06:13.873233928 +0200
3@@ -270,15 +270,21 @@
4 dnl ---------------------------------------------------------------------------
5 dnl check for libgd
6 dnl ---------------------------------------------------------------------------
7-LIBGD=""
8-libgd_msg="no"
9-AC_SUBST(LIBGD)
10-AC_CHECK_LIB(gd,gdImageCreateTrueColor,[
11- AC_CHECK_HEADER(gd.h,[
12- AC_DEFINE(HAVE_GD,1,[define if we have LIBGD and its headers])
13- LIBGD="-lgd"
14- libgd_msg="yes"
15- ])
16+AC_ARG_ENABLE([gd],
17+[AS_HELP_STRING([--enable-gd],
18+ [enable gd support])],[
19+ LIBGD=""
20+ libgd_msg="no"
21+ AC_SUBST(LIBGD)
22+ if test "x$enableval" != "xno"; then
23+ AC_CHECK_LIB(gd,gdImageCreateTrueColor,[
24+ AC_CHECK_HEADER(gd.h,[
25+ AC_DEFINE(HAVE_GD,1,[define if we have LIBGD and its headers])
26+ LIBGD="-lgd"
27+ libgd_msg="yes"
28+ ])
29+ ])
30+ fi
31 ])
32 GP_CONFIG_MSG([GD conversion support],[${libgd_msg}])
33