diff options
author | proff <proff> | 1999-12-08 15:48:15 +0000 |
---|---|---|
committer | proff <proff> | 1999-12-08 15:48:15 +0000 |
commit | 019e16a17b1659604abcc787f01084a41a995680 (patch) | |
tree | 61b34aa3d22474f0ce9be6b836aa3731a1bd0e5f /lang/sml-nj/files | |
parent | 82373630cb69079863b7d64920f51e3af16cce79 (diff) | |
download | pkgsrc-019e16a17b1659604abcc787f01084a41a995680.tar.gz |
A Standard ML implementation from Bell-Labs. Implements the SML '97 definition
including the new Basis library with a few minor omissions and discrepancies.
WWW: http://cm.bell-labs.com/cm/cs/what/smlnj/index.html
If you are interested in a lighter weight implementation of ML,
the Moscow-ML port is recommended.
Diffstat (limited to 'lang/sml-nj/files')
-rw-r--r-- | lang/sml-nj/files/md5 | 11 | ||||
-rw-r--r-- | lang/sml-nj/files/patch-global-names | 11 |
2 files changed, 22 insertions, 0 deletions
diff --git a/lang/sml-nj/files/md5 b/lang/sml-nj/files/md5 new file mode 100644 index 00000000000..7b0f4172554 --- /dev/null +++ b/lang/sml-nj/files/md5 @@ -0,0 +1,11 @@ +MD5 (sml-nj/110.9.1-bin.x86-unix.tar.Z) = a8d2a792ef392a0ddd8ece325fd4b892 +MD5 (sml-nj/110.9.1-cm.tar.Z) = ee3987dbee99b5f0b59cb09c1a956a0d +MD5 (sml-nj/110.9.1-cml.tar.Z) = 8c33edee5e75fd18600ef9f0b5b253ae +MD5 (sml-nj/110.9.1-config.tar.Z) = 7a386efc49ca847745f818dcbe5a36bf +MD5 (sml-nj/110.9.1-eXene.tar.Z) = 33f16b9d64f2c02f36172e434f29f136 +MD5 (sml-nj/110.9.1-ml-burg.tar.Z) = c25007873fbe1dd6ae68a2f0a54e7089 +MD5 (sml-nj/110.9.1-ml-lex.tar.Z) = acd4a503f087fb0a4a044d3ff6da5d24 +MD5 (sml-nj/110.9.1-ml-yacc.tar.Z) = 478430b7bcaa41f1d3f1cc66055078d7 +MD5 (sml-nj/110.9.1-runtime.tar.Z) = b73c165b4cf445601926f53566a1a589 +MD5 (sml-nj/110.9.1-smlnj-c.tar.Z) = c15c3295fd1a9afd9eb5aa67ae34543f +MD5 (sml-nj/110.9.1-smlnj-lib.tar.Z) = 53f49d01d3f6c3b4eb175ce07a7c8759 diff --git a/lang/sml-nj/files/patch-global-names b/lang/sml-nj/files/patch-global-names new file mode 100644 index 00000000000..85d10136ce4 --- /dev/null +++ b/lang/sml-nj/files/patch-global-names @@ -0,0 +1,11 @@ +--- src/runtime/include/asm-base.h-- Thu Aug 6 13:40:30 1998 ++++ src/runtime/include/asm-base.h Mon Feb 1 15:33:00 1999 +@@ -16,7 +16,7 @@ + #define FALSE 0 + #define TRUE 1 + +-#if (!defined(GLOBALS_HAVE_UNDERSCORE)) && (defined(OPSYS_SUNOS) || defined(OPSYS_FREEBSD) || defined(OPSYS_NETBSD) || defined(OPSYS_NEXTSTEP) || defined(OPSYS_WIN32)) ++#if (!defined(GLOBALS_HAVE_UNDERSCORE)) && (defined(OPSYS_SUNOS) || (defined(OPSYS_FREEBSD) && !defined(__ELF__)) || defined(OPSYS_NETBSD) || defined(OPSYS_NEXTSTEP) || defined(OPSYS_WIN32)) + # define GLOBALS_HAVE_UNDERSCORE + #endif + |