From 85709ebe92aa86eab6b1055e9b45b61df9fadcc9 Mon Sep 17 00:00:00 2001 From: Evgeny Grin Date: Tue, 5 Dec 2017 16:39:17 +0300 Subject: [PATCH 4/6] libmicrohttpd: enforce https support This will ensure that package will be built with HTTPS support or build will fail (no accidental builds without HTTPS) --- libmicrohttpd/trunk/PKGBUILD | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libmicrohttpd/trunk/PKGBUILD b/libmicrohttpd/trunk/PKGBUILD index de6ff799504..21592ff9b40 100644 --- a/libmicrohttpd/trunk/PKGBUILD +++ b/libmicrohttpd/trunk/PKGBUILD @@ -23,7 +23,8 @@ sha256sums=('dec1a76487d7e48ad74b468a888bfda1c05731f185ff950f1e363ca9d39caf4e' build() { cd ${pkgname}-${pkgver} ./configure --prefix=/usr --disable-dependency-tracking --enable-largefile \ - --enable-messages --with-pic + --enable-messages --with-pic \ + --enable-https make } -- 2.15.1.windows.2