Date: Fri, 21 Aug 2020 18:20:14 +0000 (UTC) From: Kyle Evans <kevans@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r545618 - branches/2020Q3/mail/mmh/files Message-ID: <202008211820.07LIKEbr036553@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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@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; +
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202008211820.07LIKEbr036553>