diff options
author | Ted Hess <thess@kitschensync.net> | 2019-03-04 12:12:31 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-04 12:12:31 -0500 |
commit | 805a478555f06cf0224ecc6359cc291bdfc39693 (patch) | |
tree | 4fdd089c2fd1f6e0d0f834e641a234241f23a153 | |
parent | 48769259a8f1f58edcd3be6558e04b8f2873583e (diff) | |
parent | ba46c407ca4e2dc152be8cd9e673c327182fd85b (diff) |
Merge pull request #8060 from neheb/so
libsoup: Disable debug and introspection
-rw-r--r-- | libs/libsoup/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/libs/libsoup/Makefile b/libs/libsoup/Makefile index e872fe9d6..d26ef00e5 100644 --- a/libs/libsoup/Makefile +++ b/libs/libsoup/Makefile @@ -7,7 +7,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=libsoup PKG_VERSION:=2.65.1 -PKG_RELEASE:=2 +PKG_RELEASE:=3 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz PKG_SOURCE_URL:=@GNOME/$(PKG_NAME)/2.65 @@ -35,13 +35,16 @@ define Package/libsoup endef CONFIGURE_ARGS += \ + --disable-debug \ --disable-glibtest \ --disable-gtk-doc-html \ + --disable-introspection \ --disable-more-warnings \ --disable-vala \ --without-apache-httpd \ --without-gnome \ - --without-gssapi + --without-gssapi \ + --without-ntlm-auth define package/libsoup/decription Libsoup is an HTTP library implementation in C |