From owner-svn-ports-all@freebsd.org Tue Apr 10 08:53:20 2018 Return-Path: Delivered-To: svn-ports-all@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 B8067F8A1C8; Tue, 10 Apr 2018 08:53:20 +0000 (UTC) (envelope-from mich@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 6EA6A6B560; Tue, 10 Apr 2018 08:53:20 +0000 (UTC) (envelope-from mich@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 6935732BA; Tue, 10 Apr 2018 08:53:20 +0000 (UTC) (envelope-from mich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w3A8rKFb022290; Tue, 10 Apr 2018 08:53:20 GMT (envelope-from mich@FreeBSD.org) Received: (from mich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w3A8rKMB022286; Tue, 10 Apr 2018 08:53:20 GMT (envelope-from mich@FreeBSD.org) Message-Id: <201804100853.w3A8rKMB022286@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mich set sender to mich@FreeBSD.org using -f From: Michael Landin Date: Tue, 10 Apr 2018 08:53:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r466946 - in head/security/mhash: . files X-SVN-Group: ports-head X-SVN-Commit-Author: mich X-SVN-Commit-Paths: in head/security/mhash: . files X-SVN-Commit-Revision: 466946 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: Tue, 10 Apr 2018 08:53:20 -0000 Author: mich Date: Tue Apr 10 08:53:19 2018 New Revision: 466946 URL: https://svnweb.freebsd.org/changeset/ports/466946 Log: - fix for mhash exporting defined that normally autotools-private - Bump portrevision Reviewed by: mat Added: head/security/mhash/files/patch-configure.in (contents, props changed) head/security/mhash/files/patch-include_mutils_config.h.in (contents, props changed) head/security/mhash/files/patch-include_mutils_mhash__config.h.in (contents, props changed) Modified: head/security/mhash/Makefile Modified: head/security/mhash/Makefile ============================================================================== --- head/security/mhash/Makefile Tue Apr 10 08:33:38 2018 (r466945) +++ head/security/mhash/Makefile Tue Apr 10 08:53:19 2018 (r466946) @@ -3,7 +3,7 @@ PORTNAME= mhash PORTVERSION= 0.9.9.9 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= security MASTER_SITES= SF Added: head/security/mhash/files/patch-configure.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/mhash/files/patch-configure.in Tue Apr 10 08:53:19 2018 (r466946) @@ -0,0 +1,10 @@ +--- configure.in.orig ++++ configure.in +@@ -6,6 +6,7 @@ + AM_INIT_AUTOMAKE + + AC_DEFINE([MHASH_VERSION], PROGRAM_VERSION, "MHash Version") ++AC_CONFIG_HEADER([include/mutils/config.h]) + AC_CONFIG_HEADER([include/mutils/mhash_config.h]) + + Added: head/security/mhash/files/patch-include_mutils_config.h.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/mhash/files/patch-include_mutils_config.h.in Tue Apr 10 08:53:19 2018 (r466946) @@ -0,0 +1,25 @@ +--- include/mutils/config.h.in.orig ++++ include/mutils/config.h.in +@@ -0,0 +1,22 @@ ++/* Name of package */ ++#undef PACKAGE ++ ++/* Define to the address where bug reports for this package should be sent. */ ++#undef PACKAGE_BUGREPORT ++ ++/* Define to the full name of this package. */ ++#undef PACKAGE_NAME ++ ++/* Define to the full name and version of this package. */ ++#undef PACKAGE_STRING ++ ++/* Define to the one symbol short name of this package. */ ++#undef PACKAGE_TARNAME ++ ++/* Define to the version of this package. */ ++#undef PACKAGE_VERSION ++ ++/* Version number of package */ ++#undef VERSION ++ ++ Added: head/security/mhash/files/patch-include_mutils_mhash__config.h.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/mhash/files/patch-include_mutils_mhash__config.h.in Tue Apr 10 08:53:19 2018 (r466946) @@ -0,0 +1,37 @@ +--- include/mutils/mhash_config.h.in.orig ++++ include/mutils/mhash_config.h.in +@@ -181,24 +181,6 @@ + /* Define to 1 if your C compiler doesn't accept -c and -o together. */ + #undef NO_MINUS_C_MINUS_O + +-/* Name of package */ +-#undef PACKAGE +- +-/* Define to the address where bug reports for this package should be sent. */ +-#undef PACKAGE_BUGREPORT +- +-/* Define to the full name of this package. */ +-#undef PACKAGE_NAME +- +-/* Define to the full name and version of this package. */ +-#undef PACKAGE_STRING +- +-/* Define to the one symbol short name of this package. */ +-#undef PACKAGE_TARNAME +- +-/* Define to the version of this package. */ +-#undef PACKAGE_VERSION +- + /* Define to 1 if the C compiler supports function prototypes. */ + #undef PROTOTYPES + +@@ -208,9 +190,6 @@ + /* dmalloc */ + #undef USE_DMALLOC + +-/* Version number of package */ +-#undef VERSION +- + /* Define if using the dmalloc debugging malloc package */ + #undef WITH_DMALLOC +