From 5b612323c66c5ee6f364d66945cdfb9f58b8a520 Mon Sep 17 00:00:00 2001 From: Fredrik Fornwall Date: Tue, 21 Jun 2016 16:57:01 -0400 Subject: [PATCH] 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. --- packages/protobuf/build.sh | 5 ----- 1 file changed, 5 deletions(-) diff --git a/packages/protobuf/build.sh b/packages/protobuf/build.sh index a73eed371..1e9e03ad1 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"