svn commit: r545616 - head/mail/mmh/files

Kyle Evans kevans at FreeBSD.org
Fri Aug 21 18:12:19 UTC 2020


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 at 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;
+ 


More information about the svn-ports-all mailing list