diff options
author | wiz <wiz@pkgsrc.org> | 2003-03-21 22:54:38 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2003-03-21 22:54:38 +0000 |
commit | 452db341150bd2edfb9a4722b568345fb6345fe7 (patch) | |
tree | 6ac5a634c59eb6a42cecec8931dae4a8bf19b2bb /lang/smlnj/Makefile.common | |
parent | e9602f1ccb8a58e8f7232574df0e77961633c132 (diff) | |
download | pkgsrc-452db341150bd2edfb9a4722b568345fb6345fe7.tar.gz |
Update to 110.42, from Christopher Richards in connection with PR 18678.
Changes:
A number of small, but important bug fixes.
Diffstat (limited to 'lang/smlnj/Makefile.common')
-rw-r--r-- | lang/smlnj/Makefile.common | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/lang/smlnj/Makefile.common b/lang/smlnj/Makefile.common new file mode 100644 index 00000000000..206703db08e --- /dev/null +++ b/lang/smlnj/Makefile.common @@ -0,0 +1,25 @@ +# $NetBSD: Makefile.common,v 1.1 2003/03/21 22:55:01 wiz Exp $ + +# smlnj also supports hppa, sparc, ppc, mlrisc & alpha +# pkg support for those platforms, and say, solaris-x86 +# is left as an (easy) exercise for the reader. +ONLY_FOR_PLATFORM= NetBSD-*-i386 SunOS-*-sparc NetBSD-*-sparc + +.include "../../mk/bsd.prefs.mk" + +# Possible values of BOX and OS must be kept in sync with the +# currently ported platforms. + +.if ${OPSYS} == "SunOS" +OS= ${LOWER_OPSYS} +.elif ${OPSYS} == "NetBSD" +OS= bsd +.endif + +.if ${MACHINE_ARCH} == "i386" +BOX= x86 +.elif ${MACHINE_ARCH} == "sparc" +BOX= ${MACHINE_ARCH} +.endif + +PLIST_SUBST+= BOX=${BOX} OS=${OS} |