summaryrefslogtreecommitdiff
path: root/lang/nhc98
AgeCommit message (Collapse)AuthorFilesLines
2004-05-02Convert to buildlink3.snj1-4/+3
2004-03-26Use INCOMPAT_CURSES now that NetBSD curses provide KEY_RESIZE.wiz1-2/+3
2004-03-13Add x86_64 to the list of LP64 architectures.kristerw1-2/+2
2004-01-27Use $FIND with "-print". Noted by Georg Schwarz in PR pkg/24248heinz1-2/+2
2004-01-24replace deprecated USE_GMAKE with USE_GNU_TOOLS+=make.grant1-2/+2
2004-01-20Move WRKSRC definition away from the first paragraph in a Makefile.agc1-2/+2
2004-01-16Fix build problem on NetBSD -current.kristerw2-6/+19
2004-01-16Add patches from the nhc98 web page:kristerw7-183/+369
* A degenerate type synonym like type T a = a in some circumstances incorrectly caused an occurence check error. * Several new features in gcc-3.3 cause breakage in the nhc98 build. This patch fixes many [but ot all] of those problems. PKGREVISION++.
2004-01-03Fix multi-line strings and an incorrect function call identified by gcc3.kristerw3-1/+517
2003-09-28Back out last change related to moving ncurses/buildlink2.mk tojlam1-2/+2
curses.buildlink2.mk. This was wrong because we _really_ do want to express that we want _n_curses when we include the buildlink2.mk file. We should have a better way to say that the NetBSD curses doesn't quite work well enough. In fact, it's far better to depend on ncurses by default, and exceptionally note when it's okay to use NetBSD curses for specific packages. We will look into this again in the future.
2003-09-27move ncurses/buildlink2.mk to mk/curses.buildlink2.mk, as it providesgrant1-2/+2
support for base system curses/ncurses as well as ncurses itself. suggested by wiz.
2003-07-17s/netbsd.org/NetBSD.org/grant1-2/+2
2003-07-13PKGREVISION bump for libiconv update.wiz1-1/+2
2003-06-18When constructing the WRKSRC definition, use ${PKGNAME_NOREV} rather thanagc1-2/+2
${PKGNAME}, so that the WRKSRC definition is immune from any subsequent PKGREVISION changes. With thanks to jmc for the nudge.
2003-03-30Actually use HARCH which was set in PLIST_SUBST but never put in the PLIST file.jmc1-69/+69
Allows this to be installed on something other than x86
2003-03-29Place WRKSRC where it belongs, to make pkglint happy; ok'ed by wiz.jmmv1-2/+2
2003-03-19Update nhc98 to 1.16.kristerw4-207/+210
Changes since 1.14a include: * A large subset of the base package of hierarchical libraries is now included in the build. * The primitive FFI mechanism has been updated to match the latest official spec, and the full Foreign libraries are also included (in hierarchical form). * The library function List.sortBy now uses a stable O(n log n) mergesort. * Numerous other small fixes, including revisions to the Haskell'98 standard.
2003-01-24Note in USE_NCURSES variable which functions actually are missing for thiswiz1-2/+2
to build with native curses.
2002-12-26Move java.mk to java-vm.mk to avoid name conflict with devel/mk-files asjlam1-3/+2
suggested by Simon J. Gerraty.
2002-11-14buildlink1 -> buildlink2, and use java.mk for proper Java handling.jlam4-11/+48
2002-08-25Update lang/nhc98 to version 1.14a.kristerw4-49/+108
Changes since version 1.06 include: * Lots of bugfixes. * The Hat tracing system is now entirely separate from the nhc98 compiler (and is thus not included in the package)
2002-01-03This package uses 'javac'. Set USE_JAVA in the hope that it provides it.wiz1-1/+2
2001-12-26Buildlinkify.wiz3-9/+11
2001-11-01Move pkg/ files into package's toplevel directoryzuntum2-1/+1
2001-07-15Remove some blank space.jtb1-2/+1
2001-07-15Update to version 1.06.jtb4-77/+42
Changes include: * Updated the Prelude/Libraries to match the newly revised Haskell'98 Report. * Default build target is now basic + tracer (was just basic). * Building with gcc now builds everything with gcc, including profiling and tracing. This is much faster. * Bugfixes.
2001-05-22Change ALL_TARGET.jtb1-2/+2
2001-05-22Update to nhc98-1.04.jtb4-38/+122
nhc98 1.04 (2001-05-21) features * New: Support for extended module namespaces of the form Long.Hierarchical.Module.Name is now provided in both nhc98 and hmake. * Update: Improved printing of I/O error messages. * Update: Improved (more accurate) time profiling now provided. * Bugfix: An identifier hidden on import and redefined in the current module, then exported, but also imported qualified and used qualified in the current module, led to an incorrect interface file being generated. * Bugfix: hmake issued an unnecessary -cpp flag on some literate files. * Bugfix: Type of IO.hSetPosn :: Handle -> HandlePosn -> IO () was incorrect * Bugfix: Compile-time error in src/tracer/runtime/ident.c on RedHat 7 and other systems using the new ISO C standard for fpos_t. * Bugfix: A file opened in ReadMode or WriteMode was actually opened in ReadWriteMode, so if the file had strict permissions the correct opening command would fail. Conversely, opening in ReadWriteMode actually gave ReadMode instead, and file updates silently failed. * Bugfix: Operator sections suffered from priority inversion, for example (^2*3) was incorrectly parsed as (^(2*3)), even though ^ binds more tightly than *. * Bugfix: The library function Directory.createDirectory gave strange permissions to the new directory. (Mode was in hex, but should have been octal!) The following updates and bugfixes are specifically for Hat, the redex-trail-based tracing and debugging system. * New architecture: Traced programs now build their trails in files, not in the heap. This has four consequences: (1) you no longer need to give your program large amounts of extra memory to trace it; but (2) you may need to have large amounts of free disk space, particularly to trace long-running programs; (3) for the moment, traced programs now run even slower (we are working to improve this); and (4) trails are now first-class objects, so new tools can manipulate them to provide several different views of the computation. * New tools: Storing trails in files means we can now provide more tools to examine them. The original graphical browser is now renamed hat-trail, and can fully explore the redex trails in file. hat-stack gives a virtual stack back-trace from a trail file (no need to re-run the program). hat-observe gives you HOOD-like observation of the input and output from functions. hat-detect does algorithmic debugging in the style of Freja; it discovers and identifies the location of a bug after asking you some simple questions. hat-check verifies the integrity of the trail file, prints a textual dump, and gives statistics about its contents. * Update: Fuller Standard Library support for tracing: added Directory, System, CPUTime, Random. (Still missing: Time, Locale.) * Update: More Haskell'98 language features are accepted: named fields can now be traced, although the hat tools don't yet show them in source form. Pattern bindings are also handled better. _________________________________________________________________
2001-04-19Move to sha1 digests, and add distfile sizes.agc1-2/+3
2001-04-17+ move the distfile digest/checksum value from files/md5 to distinfoagc1-1/+1
+ move the patch digest/checksum values from files/patch-sum to distinfo
2001-04-14Change MAINTAINER section to packages@netbsd.orgjtb1-2/+2
2001-02-24Updated to nhc-1.02. No changelog, but seejtb3-38/+60
http://www.cs.york.ac.uk/fp/nhc98/status.html for a summary of changes for this new release.
2001-02-19Generate PLIST to work on architectures other than ix86. Should fixjtb2-24/+26
Sparc bulk build problem.
2001-02-17Move the COMMENT from being in its own file to a definition in theagc2-2/+2
package Makefile.
2001-01-25Not for Alpha platform. Currently only supported on 32 bit platforms.jtb1-1/+3
2001-01-22Removed ONLY_FOR_PLATFORM tag as it should work on other 32 bit machines.jtb1-3/+1
2000-11-29Initial import of new "nhc98" package:jtb5-0/+247
Portable Haskell 98 compiler