diff options
author | Romain Naour <romain.naour@openwide.fr> | 2015-04-15 22:36:12 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-04-16 07:49:05 +0200 |
commit | db6cda67acf406ac1346d632f01a9ed3319470b5 (patch) | |
tree | 74ea74b01d2a51c083d8ef0f27b07e2250a883da | |
parent | 6ec8adc134145922354a4dbe815a669003e052f8 (diff) | |
download | buildroot-db6cda67acf406ac1346d632f01a9ed3319470b5.tar.gz buildroot-db6cda67acf406ac1346d632f01a9ed3319470b5.zip |
package/libfreeimage: needs C++ support
Fixes:
http://autobuild.buildroot.net/results/f52/f52dd2939984cd7a6926b8ad6d5be13dcf3afae8
Signed-off-by: Romain Naour <romain.naour@openwide.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/libfreeimage/Config.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/package/libfreeimage/Config.in b/package/libfreeimage/Config.in index 546593b024..914c0af175 100644 --- a/package/libfreeimage/Config.in +++ b/package/libfreeimage/Config.in @@ -1,5 +1,6 @@ config BR2_PACKAGE_LIBFREEIMAGE bool "libfreeimage" + depends on BR2_INSTALL_LIBSTDCPP depends on !BR2_STATIC_LIBS help FreeImage is an Open Source library project for developers who @@ -9,5 +10,5 @@ config BR2_PACKAGE_LIBFREEIMAGE http://freeimage.sourceforge.net -comment "libfreeimage needs a toolchain w/ dynamic library" - depends on BR2_STATIC_LIBS +comment "libfreeimage needs a toolchain w/ C++, dynamic library" + depends on BR2_STATIC_LIBS || !BR2_INSTALL_LIBSTDCPP |