From amdmi3@amdmi3.ru  Sun Sep 18 23:45:32 2011
Return-Path: <amdmi3@amdmi3.ru>
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 57D26106564A
	for <freebsd-gnats-submit@freebsd.org>; Sun, 18 Sep 2011 23:45:32 +0000 (UTC)
	(envelope-from amdmi3@amdmi3.ru)
Received: from smtp.timeweb.ru (smtp.timeweb.ru [92.53.116.15])
	by mx1.freebsd.org (Postfix) with ESMTP id 1141B8FC0A
	for <freebsd-gnats-submit@freebsd.org>; Sun, 18 Sep 2011 23:45:31 +0000 (UTC)
Received: from [213.148.20.85] (helo=hive.panopticon)
	by smtp.timeweb.ru with esmtpsa (TLSv1:CAMELLIA256-SHA:256)
	(Exim 4.76)
	(envelope-from <amdmi3@amdmi3.ru>)
	id 1R5R3B-0007ix-GY; Mon, 19 Sep 2011 03:45:29 +0400
Received: from hades.panopticon (hades.panopticon [192.168.0.32])
	by hive.panopticon (Postfix) with ESMTP id 55261B851;
	Mon, 19 Sep 2011 03:45:29 +0400 (MSD)
Received: by hades.panopticon (Postfix, from userid 1000)
	id 4EF7CB843; Mon, 19 Sep 2011 03:45:29 +0400 (MSD)
Message-Id: <20110918234529.4EF7CB843@hades.panopticon>
Date: Mon, 19 Sep 2011 03:45:29 +0400 (MSD)
From: Dmitry Marakasov <amdmi3@amdmi3.ru>
To: FreeBSD-gnats-submit@freebsd.org
Cc: bf@FreeBSD.org
Subject: [PATCH] security/tor: mark MAKE_JOBS_UNSAFE
X-Send-Pr-Version: 3.113
X-GNATS-Notify:

>Number:         160814
>Category:       ports
>Synopsis:       [PATCH] security/tor: mark MAKE_JOBS_UNSAFE
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    bf
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Sun Sep 18 23:50:04 UTC 2011
>Closed-Date:    Tue Sep 20 01:34:58 UTC 2011
>Last-Modified:  Tue Sep 20 01:40:06 UTC 2011
>Originator:     Dmitry Marakasov
>Release:        FreeBSD 8.2-RELEASE i386
>Organization:
>Environment:
System: FreeBSD hades.panopticon 8.2-RELEASE FreeBSD 8.2-RELEASE #0: Tue Mar  8 09:48:52 MSK
>Description:
Mark MAKE_JOBS_UNSAFE, parallel build fails:

---
cc -DHAVE_CONFIG_H -I. -I../..    -I../../src/common -I/usr/local/include/event2 -I/usr/local/include -I/usr/include  -O2 -pipe -march=prescott  -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -fstack-protector-all -fwrapv -fPIE -Wstack-protector --param ssp-buffer-size=1 -Wall -fno-strict-aliasing -MT util_codedigest.o -MD -MP -MF .deps/util_codedigest.Tpo -c -o util_codedigest.o util_codedigest.c
mv -f .deps/util_codedigest.Tpo .deps/util_codedigest.Po
rm -f libor.a
ar cru libor.a address.o log.o util.o  compat.o container.o mempool.o  memarea.o di_ops.o procmon.o  util_codedigest.o  
ranlib libor.a
mv -f .deps/compat_libevent.Tpo .deps/compat_libevent.Po
rm -f libor-event.a
ar cru libor-event.a compat_libevent.o 
ranlib libor-event.a
mv -f .deps/crypto.Tpo .deps/crypto.Po
rm -f libor-crypto.a
ar cru libor-crypto.a crypto.o aes.o  tortls.o torgzip.o 
ranlib libor-crypto.a
Making all in or
make: don't know how to make ./libtor.a. Stop
*** Error code 1
1 error
---

Port maintainer (bf@FreeBSD.org) is cc'd.

Generated with FreeBSD Port Tools 0.99
>How-To-Repeat:
>Fix:

--- tor-0.2.2.33.patch begins here ---
Index: Makefile
===================================================================
RCS file: /home/amdmi3/projects/freebsd/FreeBSD.cvs/ports/security/tor/Makefile,v
retrieving revision 1.72
diff -u -u -r1.72 Makefile
--- Makefile	17 Sep 2011 04:39:51 -0000	1.72
+++ Makefile	18 Sep 2011 23:40:35 -0000
@@ -49,6 +49,7 @@
 		TOR_CPPFLAGS_libevent="-I${LOCALBASE}/include/event2 -I${LOCALBASE}/include" \
 		TOR_LDFLAGS_libevent="-L${LOCALBASE}/lib/event2" \
 		TOR_LIBEVENT_LIBS="-levent-2.0"
+MAKE_JOBS_UNSAFE=yes
 
 OPTIONS=	BUFFREELISTS "freelists for buffer RAM" on \
 		INSTR_DOWNLOADS "instrument downloads for analysis" off \
--- tor-0.2.2.33.patch ends here ---

>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->bf 
Responsible-Changed-By: edwin 
Responsible-Changed-When: Sun Sep 18 23:50:14 UTC 2011 
Responsible-Changed-Why:  
Over to maintainer (via the GNATS Auto Assign Tool) 

http://www.freebsd.org/cgi/query-pr.cgi?pr=160814 

Date: Mon, 19 Sep 2011 05:42:48 -0400
From: "b. f." <bf1783@googlemail.com>
To: Dmitry Marakasov <amdmi3@amdmi3.ru>, bug-followup@FreeBSD.org
Subject: Re: [PATCH] security/tor: mark MAKE_JOBS_UNSAFE

 How many jobs were you using during the failed build?
 
 b.

Date: Mon, 19 Sep 2011 17:12:08 +0400
From: Dmitry Marakasov <amdmi3@amdmi3.ru>
To: bf1783@gmail.com
Subject: Re: [PATCH] security/tor: mark MAKE_JOBS_UNSAFE

 3 on 2-core cpu.
 
 -- 
 Dmitry Marakasov   .   55B5 0596 FF1E 8D84 5F56  9510 D35A 80DD F9D2 F77D
 amdmi3@amdmi3.ru  ..:  jabber: amdmi3@jabber.ru    http://www.amdmi3.ru
State-Changed-From-To: open->closed 
State-Changed-By: bf 
State-Changed-When: Tue Sep 20 01:34:56 UTC 2011 
State-Changed-Why:  
Committed, with minor changes. Thanks! 

http://www.freebsd.org/cgi/query-pr.cgi?pr=160814 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/160814: commit references a PR
Date: Tue, 20 Sep 2011 01:33:14 +0000 (UTC)

 bf          2011-09-20 01:33:00 UTC
 
   FreeBSD ports repository
 
   Modified files:
     security/tor         Makefile 
   Log:
   add a few mirrors and mark MAKE_JOBS_UNSAFE [1]
   
   PR:             160814 [1]
   Submitted by:   amdmi3 [1]
   
   Revision  Changes    Path
   1.73      +5 -0      ports/security/tor/Makefile
 _______________________________________________
 cvs-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/cvs-all
 To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
 
>Unformatted:
