From owner-freebsd-ports Tue Jul 23 12:20:12 2002 Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C587337B401 for ; Tue, 23 Jul 2002 12:20:05 -0700 (PDT) Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7F1FE43E65 for ; Tue, 23 Jul 2002 12:20:05 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.4/8.12.4) with ESMTP id g6NJK4JU034745 for ; Tue, 23 Jul 2002 12:20:04 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.4/8.12.4/Submit) id g6NJK4L4034743; Tue, 23 Jul 2002 12:20:04 -0700 (PDT) Date: Tue, 23 Jul 2002 12:20:04 -0700 (PDT) Message-Id: <200207231920.g6NJK4L4034743@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org Cc: From: Oliver Braun Subject: Re: ports/40828: [MAINTAINER UPDATE] Fix devel/hat for bento Reply-To: Oliver Braun Sender: owner-freebsd-ports@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org The following reply was made to PR ports/40828; it has been noted by GNATS. From: Oliver Braun To: freebsd-gnats-submit@FreeBSD.org Cc: Subject: Re: ports/40828: [MAINTAINER UPDATE] Fix devel/hat for bento Date: Tue, 23 Jul 2002 21:13:53 +0200 hat does not build with ghc-5.04. I am working with the developers on this, but it is no FreeBSD-specific problem. For the time being set FORBIDDEN if WITHOUT_NHC98 is defined and undef WITH_GHC if WITH_GHC is defined. Please apply this patch and add files/patch-script::harch from my previous message in this PR. Regards, Olli Index: Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/devel/hat/Makefile,v retrieving revision 1.15 diff -u -r1.15 Makefile --- Makefile 15 Jul 2002 17:21:53 -0000 1.15 +++ Makefile 23 Jul 2002 19:06:18 -0000 @@ -12,6 +12,14 @@ =20 MAINTAINER=3D obraun@informatik.unibw-muenchen.de =20 +.if defined(WITHOUT_NHC98) +FORBIDDEN=3D does not build with ghc-5.04 for the time being +.endif + +.if defined(WITH_GHC) +.undef WITH_GHC +.endif + .if !defined(WITHOUT_NHC98) BUILD_DEPENDS=3D nhc98:${PORTSDIR}/lang/nhc98 RUN_DEPENDS=3D nhc98:${PORTSDIR}/lang/nhc98 @@ -63,8 +71,9 @@ @${ECHO_CMD} " HAT will be built and installed for ghc only." .else @${ECHO_CMD} " HAT will be built and installed for nhc98 only." - @${ECHO_CMD} " Define WITH_GHC to install for ghc, too." - @${ECHO_CMD} " Define WITHOUT_NHC98 to install for ghc only." +# @${ECHO_CMD} " Define WITH_GHC to install for ghc, too." +# @${ECHO_CMD} " Define WITHOUT_NHC98 to install for ghc only." + @${ECHO_CMD} " HAT does not build with ghc-5.04 for the time being." .endif @${ECHO_CMD} "" =20 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message