Date: Tue, 23 Jul 2002 12:20:04 -0700 (PDT) From: Oliver Braun <obraun@informatik.unibw-muenchen.de> To: freebsd-ports@FreeBSD.org Subject: Re: ports/40828: [MAINTAINER UPDATE] Fix devel/hat for bento Message-ID: <200207231920.g6NJK4L4034743@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
The following reply was made to PR ports/40828; it has been noted by GNATS. From: Oliver Braun <obraun@informatik.unibw-muenchen.de> 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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200207231920.g6NJK4L4034743>