libfolly: Fix folly missing deps
authorAmol Bhave <redacted>
Sat, 11 May 2019 13:35:01 +0000 (06:35 -0700)
committerAmol Bhave <redacted>
Sat, 11 May 2019 13:52:09 +0000 (06:52 -0700)
Description: folly automatically picks up lz4 and unwind if they are found
by its cmake build script. This is causing buildbot failure.
Include these libraries in DEPENDS as well.

Test Plan:
 - build packages liblz4 and libunwind
 - build folly, and check that it throws an error
 - add this patch, and rebuild
 - verify that it succeeds this time around

Compile Tested: nbg6817, openwrt master

Maintainer: me
Signed-off-by: Amol Bhave <redacted>
libs/libfolly/Makefile

index 233ed295caa9094b9bc4b15343d7dd8ade09d714..83e4f454b50acf810443d817f0213903ecde6b79 100644 (file)
@@ -35,7 +35,7 @@ define Package/libfolly
        DEPENDS:=+libstdcpp +boost +boost-context +boost-system +boost-thread \
                +boost-date_time +boost-filesystem +boost-program_options +boost-regex \
                +libbz2 +libopenssl +libdouble-conversion +libevent2 +glog +zlib +libzstd \
-               +gflags +libsodium +liblzma +libaio
+               +gflags +libsodium +liblzma +libaio +liblz4 +libunwind +libatomic
 endef
 
 define Package/libfolly/description
git clone https://git.99rst.org/PROJECT