diff options
author | agc <agc@pkgsrc.org> | 2002-07-17 09:07:43 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 2002-07-17 09:07:43 +0000 |
commit | fcd8c0cb24de04739b21a1673754cdb4e5a1dd75 (patch) | |
tree | 693407e71370d996679096ef21dfa58ba9bad498 /lang | |
parent | 72dbba9b67f55a2c1cbe0409cd24329d6f2c5410 (diff) | |
download | pkgsrc-fcd8c0cb24de04739b21a1673754cdb4e5a1dd75.tar.gz |
Mark this package as only being for SunOS platforms again. The
changes to get it to build on NetBSD are extensive - for reference,
and the one who comes after me, they are:
+ awk.h defines "proc" in a cpp macro. This doesn't sit too well with
"struct proc" references, as found in <sys/uio.h>. The good news is that
only awk.h and awkgram.y need to be modified to workaround this.
+ the present Makefile copying wrt gettext Makefile.in.in is unnecessary
+ automake is a pre-req of this package
+ and there is a problem in Makefile.in/configure with ${AUTOMAKE} not
being defined properly
and many, many more...
Diffstat (limited to 'lang')
-rw-r--r-- | lang/gawk/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lang/gawk/Makefile b/lang/gawk/Makefile index b3fca0e7e47..db3c2fb33eb 100644 --- a/lang/gawk/Makefile +++ b/lang/gawk/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 2002/04/04 13:58:26 seb Exp $ +# $NetBSD: Makefile,v 1.7 2002/07/17 09:07:43 agc Exp $ # FreeBSD Id: Makefile,v 1.13 1999/01/27 07:41:14 fenner Exp $ DISTNAME= gawk-3.1.0 @@ -9,6 +9,8 @@ MAINTAINER= bouyer@netbsd.org HOMEPAGE= http://www.gnu.org/software/gawk/gawk.html COMMENT= GNU awk +ONLY_FOR_PLATFORM= SunOS-*-* # in NetBSD base system + # this is a lie we only need ${GETTEXT_PREFIX}/share/gettext/po/Makefile.in.in BUILD_USES_MSGFMT= YES |