From owner-svn-ports-head@freebsd.org Fri Oct 5 12:21:47 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AA0C210AA6D2; Fri, 5 Oct 2018 12:21:47 +0000 (UTC) (envelope-from lev@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 5DC4A7E6A6; Fri, 5 Oct 2018 12:21:47 +0000 (UTC) (envelope-from lev@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 58A4E1532A; Fri, 5 Oct 2018 12:21:47 +0000 (UTC) (envelope-from lev@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w95CLlWw038385; Fri, 5 Oct 2018 12:21:47 GMT (envelope-from lev@FreeBSD.org) Received: (from lev@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w95CLlm7038383; Fri, 5 Oct 2018 12:21:47 GMT (envelope-from lev@FreeBSD.org) Message-Id: <201810051221.w95CLlm7038383@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lev set sender to lev@FreeBSD.org using -f From: "Lev A. Serebryakov" Date: Fri, 5 Oct 2018 12:21:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r481274 - in head/www/neon: . files X-SVN-Group: ports-head X-SVN-Commit-Author: lev X-SVN-Commit-Paths: in head/www/neon: . files X-SVN-Commit-Revision: 481274 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 05 Oct 2018 12:21:47 -0000 Author: lev Date: Fri Oct 5 12:21:46 2018 New Revision: 481274 URL: https://svnweb.freebsd.org/changeset/ports/481274 Log: Fix build with openssl 1.1.1 PR: 228867 Submitted by: brnrd@freebsd.org Added: head/www/neon/files/ head/www/neon/files/patch-configure (contents, props changed) Modified: head/www/neon/Makefile Modified: head/www/neon/Makefile ============================================================================== --- head/www/neon/Makefile Fri Oct 5 11:07:12 2018 (r481273) +++ head/www/neon/Makefile Fri Oct 5 12:21:46 2018 (r481274) @@ -3,7 +3,7 @@ PORTNAME= neon PORTVERSION= 0.30.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www MASTER_SITES= LOCAL/lev @@ -14,6 +14,7 @@ LICENSE= GPLv2 USES= pathfix libtool USE_LDCONFIG= yes + GNU_CONFIGURE= yes OPTIONS_SUB= yes Added: head/www/neon/files/patch-configure ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/neon/files/patch-configure Fri Oct 5 12:21:46 2018 (r481274) @@ -0,0 +1,30 @@ +--- configure.orig 2018-10-05 00:12:59 UTC ++++ configure +@@ -6318,7 +6318,7 @@ $ne__code + } + _ACEOF + if ac_fn_c_try_link "$LINENO"; then : +- ne_cv_libsfor_SSL_library_init="-l$lib -ldl"; break ++ ne_cv_libsfor_SSL_library_init_ssl="-l$lib -ldl"; break + fi + rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext +@@ -6329,14 +6329,14 @@ rm -f core conftest.err conftest.$ac_objext \ + conftest$ac_exeext conftest.$ac_ext + fi + { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ne_cv_libsfor_SSL_library_init" >&5 +-$as_echo "$ne_cv_libsfor_SSL_library_init" >&6; } ++$as_echo "$ne_cv_libsfor_SSL_library_init_ssl" >&6; } + +-if test "$ne_cv_libsfor_SSL_library_init" = "not found"; then ++if test "$ne_cv_libsfor_SSL_library_init_ssl" = "not found"; then + as_fn_error $? "could not find library containing SSL_library_init" "$LINENO" 5 +-elif test "$ne_cv_libsfor_SSL_library_init" = "none needed"; then ++elif test "$ne_cv_libsfor_SSL_library_init_ssl" = "none needed"; then + : + else +- NEON_LIBS="$ne_cv_libsfor_SSL_library_init $NEON_LIBS" ++ NEON_LIBS="$ne_cv_libsfor_SSL_library_init_ssl $NEON_LIBS" + + fi + else