From owner-freebsd-ports-bugs@FreeBSD.ORG Mon May 9 19:10:07 2011 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B844B106566B for ; Mon, 9 May 2011 19:10:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 927338FC15 for ; Mon, 9 May 2011 19:10:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id p49JA7vt009703 for ; Mon, 9 May 2011 19:10:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id p49JA7Pl009702; Mon, 9 May 2011 19:10:07 GMT (envelope-from gnats) Resent-Date: Mon, 9 May 2011 19:10:07 GMT Resent-Message-Id: <201105091910.p49JA7Pl009702@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Chris Rees Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6A2B9106564A for ; Mon, 9 May 2011 19:02:54 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22]) by mx1.freebsd.org (Postfix) with ESMTP id 5BBEB8FC14 for ; Mon, 9 May 2011 19:02:54 +0000 (UTC) Received: from red.freebsd.org (localhost [127.0.0.1]) by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p49J2slp031166 for ; Mon, 9 May 2011 19:02:54 GMT (envelope-from nobody@red.freebsd.org) Received: (from nobody@localhost) by red.freebsd.org (8.14.4/8.14.4/Submit) id p49J2skB031164; Mon, 9 May 2011 19:02:54 GMT (envelope-from nobody) Message-Id: <201105091902.p49J2skB031164@red.freebsd.org> Date: Mon, 9 May 2011 19:02:54 GMT From: Chris Rees To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: ports/156912: Fix port: mail/thunderbird occasionally breaks with gmake-3.82 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 May 2011 19:10:08 -0000 >Number: 156912 >Category: ports >Synopsis: Fix port: mail/thunderbird occasionally breaks with gmake-3.82 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon May 09 19:10:07 UTC 2011 >Closed-Date: >Last-Modified: >Originator: Chris Rees >Release: >Organization: >Environment: >Description: Described at [1] is a build failure, which has been tracked down to a change in allowed syntax by gmake between 3.81 and 3.82 (I tested this using both versions). Buried under some weird ifndefs in ${WRKSRC}/mailnews/extensions/smime/build/Makefile.in is the line: SHARED_LIBRARY_LIBS + = ../../../base/util/$(LIB_PREFIX)msgbsutl_s.$(LIB_SUFFIX) using the (now invalid) + = syntax. This patch corrects this, thus solving the build problem for this minority of users. [1] http://www.mail-archive.com/freebsd-questions@freebsd.org/msg246017.html >How-To-Repeat: >Fix: Patch attached with submission follows: Index: files/patch-mailnews-extensions-smime-build-Makefile.in =================================================================== RCS file: files/patch-mailnews-extensions-smime-build-Makefile.in diff -N files/patch-mailnews-extensions-smime-build-Makefile.in --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-mailnews-extensions-smime-build-Makefile.in 9 May 2011 19:01:08 -0000 @@ -0,0 +1,11 @@ +--- mailnews/extensions/smime/build/Makefile.in.orig 2011-05-09 18:49:18.458634807 +0100 ++++ mailnews/extensions/smime/build/Makefile.in 2011-05-09 18:50:07.015309434 +0100 +@@ -81,7 +81,7 @@ + $(NULL) + + ifndef MOZ_STATIC_MAIL_BUILD +-SHARED_LIBRARY_LIBS + = ../../../base/util/$(LIB_PREFIX)msgbsutl_s.$(LIB_SUFFIX) ++SHARED_LIBRARY_LIBS += ../../../base/util/$(LIB_PREFIX)msgbsutl_s.$(LIB_SUFFIX) + endif + + ifdef MOZILLA_INTERNAL_API >Release-Note: >Audit-Trail: >Unformatted: