From owner-svn-ports-all@freebsd.org Sat Jan 4 19:29:52 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 39F441F1DF4; Sat, 4 Jan 2020 19:29:52 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47qsKr0rQ7z4Wk8; Sat, 4 Jan 2020 19:29:52 +0000 (UTC) (envelope-from dbaio@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 183F019B39; Sat, 4 Jan 2020 19:29:52 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 004JTpJJ032751; Sat, 4 Jan 2020 19:29:51 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 004JTpsG032749; Sat, 4 Jan 2020 19:29:51 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <202001041929.004JTpsG032749@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Sat, 4 Jan 2020 19:29:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r522048 - in head/irc: eggdrop eggdrop-devel X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: in head/irc: eggdrop eggdrop-devel X-SVN-Commit-Revision: 522048 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.29 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: Sat, 04 Jan 2020 19:29:52 -0000 Author: dbaio Date: Sat Jan 4 19:29:51 2020 New Revision: 522048 URL: https://svnweb.freebsd.org/changeset/ports/522048 Log: irc/eggdrop[-devel]: Fix build with ssl other than base PR: 242988 Submitted by: wcarson.bugzilla@disillusion.net Modified: head/irc/eggdrop-devel/Makefile head/irc/eggdrop/Makefile Modified: head/irc/eggdrop-devel/Makefile ============================================================================== --- head/irc/eggdrop-devel/Makefile Sat Jan 4 18:47:26 2020 (r522047) +++ head/irc/eggdrop-devel/Makefile Sat Jan 4 19:29:51 2020 (r522048) @@ -20,7 +20,9 @@ GH_TAGNAME= 0113cf2 GNU_CONFIGURE= yes CONFIGURE_ARGS+=--with-tcllib=${LOCALBASE}/lib/libtcl${TCL_SHLIB_VER}.so \ - --with-tclinc=${LOCALBASE}/include/tcl${TCL_VER}/tcl.h + --with-tclinc=${LOCALBASE}/include/tcl${TCL_VER}/tcl.h \ + --with-sslinc=${OPENSSLINC} \ + --with-ssllib=${OPENSSLLIB} MAKE_JOBS_UNSAFE= yes LLD_UNSAFE= yes Modified: head/irc/eggdrop/Makefile ============================================================================== --- head/irc/eggdrop/Makefile Sat Jan 4 18:47:26 2020 (r522047) +++ head/irc/eggdrop/Makefile Sat Jan 4 19:29:51 2020 (r522048) @@ -19,7 +19,9 @@ GH_ACCOUNT= eggheads GNU_CONFIGURE= yes CONFIGURE_ARGS+=--with-tcllib=${LOCALBASE}/lib/libtcl${TCL_SHLIB_VER}.so \ - --with-tclinc=${LOCALBASE}/include/tcl${TCL_VER}/tcl.h + --with-tclinc=${LOCALBASE}/include/tcl${TCL_VER}/tcl.h \ + --with-sslinc=${OPENSSLINC} \ + --with-ssllib=${OPENSSLLIB} MAKE_JOBS_UNSAFE= yes LLD_UNSAFE= yes