From owner-freebsd-ports Thu May 20 15: 0: 4 1999 Delivered-To: freebsd-ports@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id E481C14FC1 for ; Thu, 20 May 1999 15:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id PAA84658; Thu, 20 May 1999 15:00:02 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Date: Thu, 20 May 1999 15:00:02 -0700 (PDT) Message-Id: <199905202200.PAA84658@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Chris Piazza Subject: Re: ports/11786: gnupg-0.9.6 port does not install Reply-To: Chris Piazza Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org The following reply was made to PR ports/11786; it has been noted by GNATS. From: Chris Piazza To: Mike Harding , freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: ports/11786: gnupg-0.9.6 port does not install Date: Thu, 20 May 1999 14:54:01 -0700 (PDT) On 20-May-99 Mike Harding wrote: > I have verified this problem on 3 separate 3.2 systems and on a 3.1 > release system. The > problem seems to be the -pipe in the options for the assembly code - the > compiler hangs > for some reason. Removing the -pipe makes it work, or forcing the port > to not make > the assembly code. > Yes, I confirm that this happens. I just tested it out on my 3.2-RELEASE system and it hung, here's a fix -- I'm still not sure why it happens, though. Index: Makefile =================================================================== RCS file: /cvs/FreeBSD/ports/security/gnupg/Makefile,v retrieving revision 1.10 diff -u -r1.10 Makefile --- Makefile 1999/05/09 04:46:30 1.10 +++ Makefile 1999/05/20 21:52:56 @@ -16,16 +16,10 @@ RESTRICTED= "Crypto; export-controlled" GNU_CONFIGURE= YES -CONFIGURE_ARGS= --with-included-gettext +CONFIGURE_ARGS= --with-included-gettext --disable-asm MAN1= gpg.1 MLINKS= gpg.1 gpgm.1 -.include - -.if ${OSVERSION} < 300000 -CONFIGURE_ARGS+=--disable-asm -.endif - post-install: .if !defined(NOPORTDOCS) ${MKDIR} ${PREFIX}/share/doc/gnupg @@ -42,4 +36,4 @@ check: (cd ${WRKSRC}; ${MAKE} check) -.include +.include --- Chris Piazza Abbotsford, BC, Canada cpiazza@home.net finger norn@norn.ca.eu.org for PGP key To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message