aboutsummaryrefslogtreecommitdiffstats
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-contrib-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 @@
+--- libgphoto2-2.4.11.orig/configure.ac 2013-07-19 21:59:10.857223729 +0200
++++ libgphoto2-2.4.11/configure.ac 2013-07-19 22:06:13.873233928 +0200
+@@ -270,15 +270,21 @@
+ dnl ---------------------------------------------------------------------------
+ dnl check for libgd
+ dnl ---------------------------------------------------------------------------
+-LIBGD=""
+-libgd_msg="no"
+-AC_SUBST(LIBGD)
+-AC_CHECK_LIB(gd,gdImageCreateTrueColor,[
+- AC_CHECK_HEADER(gd.h,[
+- AC_DEFINE(HAVE_GD,1,[define if we have LIBGD and its headers])
+- LIBGD="-lgd"
+- libgd_msg="yes"
+- ])
++AC_ARG_ENABLE([gd],
++[AS_HELP_STRING([--enable-gd],
++ [enable gd support])],[
++ LIBGD=""
++ libgd_msg="no"
++ AC_SUBST(LIBGD)
++ if test "x$enableval" != "xno"; then
++ AC_CHECK_LIB(gd,gdImageCreateTrueColor,[
++ AC_CHECK_HEADER(gd.h,[
++ AC_DEFINE(HAVE_GD,1,[define if we have LIBGD and its headers])
++ LIBGD="-lgd"
++ libgd_msg="yes"
++ ])
++ ])
++ fi
+ ])
+ GP_CONFIG_MSG([GD conversion support],[${libgd_msg}])
+