Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 20 May 1999 18:10:02 -0700 (PDT)
From:      mvh@ix.netcom.com (Mike Harding)
To:        freebsd-ports@FreeBSD.org
Subject:   Re: ports/11786: gnupg-0.9.6 port does not install
Message-ID:  <199905210110.SAA00207@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
The following reply was made to PR ports/11786; it has been noted by GNATS.

From: mvh@ix.netcom.com (Mike Harding)
To: cpiazza@home.net
Cc: freebsd-gnats-submit@FreeBSD.org
Subject: Re: ports/11786: gnupg-0.9.6 port does not install
Date: Thu, 20 May 1999 18:07:51 -0700 (PDT)

 I also got it to work by putting CFLAGS=-O in /etc/make.conf.  It's
 the -pipe that's making it choke.  The build picks up CFLAGS=-O -pipe
 if you don't define it.
 
    X-Priority: 3 (Normal)
    Content-Type: text/plain; charset=us-ascii
    Date: Thu, 20 May 1999 14:54:01 -0700 (PDT)
    Reply-To: Chris Piazza <cpiazza@home.net>
    Sender: norn@norn.ca.eu.org
    From: Chris Piazza <cpiazza@home.net>
    X-RULES: lists
 
    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 <bsd.port.pre.mk>
    -
    -.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 <bsd.port.post.mk>
    +.include <bsd.port.mk>
 
 
    ---
    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




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199905210110.SAA00207>