From owner-svn-ports-all@freebsd.org Wed Jan 10 17:06:49 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A9730E68524; Wed, 10 Jan 2018 17:06:49 +0000 (UTC) (envelope-from ale@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 85E2D7EDBE; Wed, 10 Jan 2018 17:06:49 +0000 (UTC) (envelope-from ale@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C57C4648; Wed, 10 Jan 2018 17:06:48 +0000 (UTC) (envelope-from ale@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w0AH6mo2011711; Wed, 10 Jan 2018 17:06:48 GMT (envelope-from ale@FreeBSD.org) Received: (from ale@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w0AH6mR2011710; Wed, 10 Jan 2018 17:06:48 GMT (envelope-from ale@FreeBSD.org) Message-Id: <201801101706.w0AH6mR2011710@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ale set sender to ale@FreeBSD.org using -f From: Alex Dupre Date: Wed, 10 Jan 2018 17:06:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r458660 - head/www/libmicrohttpd X-SVN-Group: ports-head X-SVN-Commit-Author: ale X-SVN-Commit-Paths: head/www/libmicrohttpd X-SVN-Commit-Revision: 458660 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Jan 2018 17:06:49 -0000 Author: ale Date: Wed Jan 10 17:06:48 2018 New Revision: 458660 URL: https://svnweb.freebsd.org/changeset/ports/458660 Log: Enable SSL support by default and bump PORTREVISION. Approved by: maintainer Modified: head/www/libmicrohttpd/Makefile Modified: head/www/libmicrohttpd/Makefile ============================================================================== --- head/www/libmicrohttpd/Makefile Wed Jan 10 16:11:15 2018 (r458659) +++ head/www/libmicrohttpd/Makefile Wed Jan 10 17:06:48 2018 (r458660) @@ -3,6 +3,7 @@ PORTNAME= libmicrohttpd DISTVERSION= 0.9.58 +PORTREVISION= 1 CATEGORIES= www MASTER_SITES= GNU @@ -20,6 +21,7 @@ USE_LDCONFIG= yes CPE_VENDOR= gnu OPTIONS_DEFINE= GNUTLS +OPTIONS_DEFAULT=GNUTLS GNUTLS_LIB_DEPENDS= libgcrypt.so:security/libgcrypt \ libgnutls.so:security/gnutls @@ -27,9 +29,5 @@ GNUTLS_CONFIGURE_WITH= libgcrypt-prefix=${LOCALBASE} g GNUTLS_CONFIGURE_ENABLE=https INFO= libmicrohttpd libmicrohttpd-tutorial - -post-patch: - @${REINPLACE_CMD} -e 's|bin_PROGRAMS =|noinst_PROGRAMS +=|' \ - ${WRKSRC}/src/examples/Makefile.in .include