svn commit: r545618 - branches/2020Q3/mail/mmh/files
Kyle Evans
kevans at FreeBSD.org
Fri Aug 21 18:20:14 UTC 2020
Author: kevans
Date: Fri Aug 21 18:20:13 2020
New Revision: 545618
URL: https://svnweb.freebsd.org/changeset/ports/545618
Log:
MFH: r545616
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)
Approved by: ports-secteam (implicit: -fno-common build fix)
Added:
branches/2020Q3/mail/mmh/files/patch-uip_mhbuild.c
- copied unchanged from r545616, head/mail/mmh/files/patch-uip_mhbuild.c
Modified:
Directory Properties:
branches/2020Q3/ (props changed)
Copied: branches/2020Q3/mail/mmh/files/patch-uip_mhbuild.c (from r545616, head/mail/mmh/files/patch-uip_mhbuild.c)
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ branches/2020Q3/mail/mmh/files/patch-uip_mhbuild.c Fri Aug 21 18:20:13 2020 (r545618, copy of r545616, head/mail/mmh/files/patch-uip_mhbuild.c)
@@ -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-branches
mailing list