From: Fredrik Fornwall Date: Tue, 21 Jun 2016 20:57:01 +0000 (-0400) Subject: protobuf: Remove libgnustl_shared.so setup X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/termux-packages/commitdiff_plain/5b612323c66c5ee6f364d66945cdfb9f58b8a520?ds=inline protobuf: Remove libgnustl_shared.so setup It is no longer needed to link against libgnustl_shared.so explicitly, it is done automatically for all C++ code. --- diff --git a/packages/protobuf/build.sh b/packages/protobuf/build.sh index a73eed37..1e9e03ad 100755 --- a/packages/protobuf/build.sh +++ b/packages/protobuf/build.sh @@ -6,8 +6,3 @@ TERMUX_PKG_SRCURL=https://github.com/google/protobuf/releases/download/v${TERMUX # Build a host build first and use the host build protoc: TERMUX_PKG_HOSTBUILD=yes TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--with-protoc=$TERMUX_PKG_HOSTBUILD_DIR/src/protoc" -# Link against libgnustl_shared.so so that other C++ programs that -# uses protobuf (e.g. mosh) may use libgnustl_shared.so. -TERMUX_PKG_DEPENDS="libgnustl" - -LDFLAGS+=" -lgnustl_shared"