diff options
author | Pieter De Gendt <pieter.degendt@gmail.com> | 2015-02-02 10:05:42 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-02-02 11:37:15 +0100 |
commit | 9d79ce0bbdf6cd79c252b11c716bfc20467031f1 (patch) | |
tree | 61ff50f235c23b8af77e2a61db42e939d0438c8b /package/libvips/Config.in | |
parent | 242f6720931d4f86fb6f8fc9742a29a297f878c4 (diff) | |
download | buildroot-9d79ce0bbdf6cd79c252b11c716bfc20467031f1.tar.gz buildroot-9d79ce0bbdf6cd79c252b11c716bfc20467031f1.zip |
libvips: new package
[Thomas:
- Fix variable name: LIBVIPS_CONF_OPTSS -> LIBVIPS_CONF_OPTS
- Add a lot of --without-<foo> options to make sure we explicitly
disable optional features that are not handled by the .mk file.
- Remove the host-swig dependency, which was probably thought of
being needed by Pieter due to --without-python not being passed
explicitly.
- Remove trailing spaces in Config.in.
- Rename patch to the new naming convention.]
Signed-off-by: Pieter De Gendt <pieter.degendt@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/libvips/Config.in')
-rw-r--r-- | package/libvips/Config.in | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/package/libvips/Config.in b/package/libvips/Config.in new file mode 100644 index 0000000000..1a0d35c5cf --- /dev/null +++ b/package/libvips/Config.in @@ -0,0 +1,18 @@ +config BR2_PACKAGE_LIBVIPS + bool "libvips" + depends on BR2_USE_WCHAR # gettext, libglib2 + depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2 + depends on BR2_USE_MMU # fork() + select BR2_PACKAGE_LIBGLIB2 + select BR2_PACKAGE_LIBXML2 + select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT_IF_LOCALE + help + libvips is a 2D image processing library. Compared to + similar libraries, libvips runs quickly and uses little + memory. + + http://www.vips.ecs.soton.ac.uk/ + +comment "libvips needs a toolchain w/ wchar, threads" + depends on BR2_USE_MMU + depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS |