Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 10 Apr 2018 08:53:19 +0000 (UTC)
From:      Michael Landin <mich@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r466946 - in head/security/mhash: . files
Message-ID:  <201804100853.w3A8rKMB022286@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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
+ 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201804100853.w3A8rKMB022286>