Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 21 Aug 2020 18:12:18 +0000 (UTC)
From:      Kyle Evans <kevans@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r545616 - head/mail/mmh/files
Message-ID:  <202008211812.07LICI74035211@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: kevans
Date: Fri Aug 21 18:12:18 2020
New Revision: 545616
URL: https://svnweb.freebsd.org/changeset/ports/545616

Log:
  mail/mmh: fix build with -fno-common
  
  mmh had just a minor build issue with -fno-common, fixed with a trivial
  patch to extern the variable in question.
  
  PR:		248812
  Approved by:	satanist+freebsd@bureaucracy.de (maintainer)
  MFH:		2020Q3 (build fix: -fno-common)

Added:
  head/mail/mmh/files/patch-uip_mhbuild.c   (contents, props changed)

Added: head/mail/mmh/files/patch-uip_mhbuild.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/mail/mmh/files/patch-uip_mhbuild.c	Fri Aug 21 18:12:18 2020	(r545616)
@@ -0,0 +1,11 @@
+--- uip/mhbuild.c.orig	2020-08-21 13:38:24 UTC
++++ uip/mhbuild.c
+@@ -51,7 +51,7 @@ char *version=VERSION;
+ ** Directory to place tmp files.  This must
+ ** be set before these routines are called.
+ */
+-char *tmp;
++extern char *tmp;
+ 
+ pid_t xpid = 0;
+ 



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