diff options
author | Rahul Bedarkar <rahul.bedarkar@imgtec.com> | 2015-06-25 19:13:23 +0530 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-06-28 15:33:51 +0200 |
commit | d980db91dfd15385e1e25c88f14da67a88fef82a (patch) | |
tree | 996bf54c868ec914729e58202f56f9c70630f147 /package/glog/Config.in | |
parent | 53369fbcf45054ebc24da0a55462d17ac1eb7965 (diff) | |
download | buildroot-d980db91dfd15385e1e25c88f14da67a88fef82a.tar.gz buildroot-d980db91dfd15385e1e25c88f14da67a88fef82a.zip |
glog: add dependency on dynamic library
when BR2_STATIC_LIBS=y
src/symbolize.cc:110:19: error: dlfcn.h: No such file or directory
glog requires dlfcn.h header. So add dependency on dynamic library
fixes:
http://autobuild.buildroot.net/results/75d/75d17ceb764c2c1136047c089a0c554770ca98a4/
Signed-off-by: Rahul Bedarkar <rahul.bedarkar@imgtec.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/glog/Config.in')
-rw-r--r-- | package/glog/Config.in | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/package/glog/Config.in b/package/glog/Config.in index aed0a3e7f1..534997af49 100644 --- a/package/glog/Config.in +++ b/package/glog/Config.in @@ -2,10 +2,12 @@ config BR2_PACKAGE_GLOG bool "glog" depends on BR2_INSTALL_LIBSTDCPP depends on BR2_TOOLCHAIN_HAS_THREADS + depends on !BR2_STATIC_LIBS help C++ implementation of the Google logging module https://github.com/google/glog -comment "glog needs a toolchain w/ C++, threads" - depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS +comment "glog needs a toolchain w/ C++, threads, dynamic library" + depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS || \ + BR2_STATIC_LIBS |