pkgsrc/lang
enami dcfcf12e01 Update to 0.9.3.2.
Here is list of changes:

0.9.3.2:
Fix documentation build problem when configured to use non default
encoding.

0.9.3.1:
Fix build problem on Windows/MinGW.

0.9.3:
* New Features
    o Lazy sequences: An efficient and seamless support of mixing lazy
      evaluation with ordinary list procedures. Forcing delayed
      evaluation is implicit, so you can pass lazy list to normal list
      procedures such as car or fold. See the manual entry for the
      details and examples.
    o gauche.generator: A general utilities for generators, a thunk that
      generates a value every time it is called. Lazy sequences are built
      on top of generators. See the manual entry for the details.
    o Threads are now supported on Windows/MinGW build. It is directly
      based on Win32 thread API instead of pthreads; but Scheme-level
      semantics are almost the same. The cond-expand conditions are
      slightly modified to accomodate both thread models--- see Threads
      for the details.
    o add-load-path macro now accepts an optional argument to make the
      given path relative to the currently loaded file. This is useful to
      distribute a script accompanied with library files; for example,
      specify (add-load-path "." :relative) in the script makes the
      library files searched from the same directory where the script
      exists. Then users can just copy the directory to anywhere and run
      the script.
    o A chained-application macro $: Incorporated the feature which has
      been experimented as gauche.experimental.app. This macro allows (f
      a b (g c d (h i j))) to be written as ($ f a b $ g c d $ h i j).
      Although it is slighly longer, it is sometimes work better with
      indentation of deeply nested function calls. See the manual entry
      for the full explanation.
    o A new gosh option -m module allows the main procedure to be
      searched in the specified module instead of the default user
      module. This allows a Scheme file to work both as a library module
      and an executable scripts (e.g. for running tests or demos); name
      the test program main but not export it, and it won't affect
      ordinary module users, but you can test the module by using -m
      option.

* Incompatibile Changes
    o util.queue: Thread-safe queue can now be created with zero
      max-length, which is handy as a synchronization device. This is an
      incompatible change---previously, specyfing zero to :max-length
      means unlimited queue length. (Cf: Queue of zero length
      http://blog.practical-scheme.net/gauche/20110107-zero-length-queue ).
    o Fixed a regexp bug in treatment of BOL/EOL assertions (^, $) within
      the assetion blocks such as (?=...). Regarding BOL/EOL assertions,
      these assertion blocks are treated as if they're stand-alone. The
      fixed behavior is now compatible with Perl and Oniguruma. The code
      that counted on the previous (buggy) behavior may break by this
      change.
    o Removed gauche.auxsys module. This module contained several
      less-used system procedures; now they are in the core. The module
      was autoloaded, so not many code should be affected by this change.
      Only the code that explicitly refer to this module needs to be
      changed.

* Improvements
    o Many frequently-used list procedures (all of util.list, and some of
      srfi-1) are now included in the core. The module util.list is no
      longer needed, although it is kept just for the backward
      compatibility. From srfi-1, the following procedures are now in the
      core: null-list?, cons*, last, member (extended one), take, drop,
      take-right, drop-right, take!, drop-right!, delete, delete!,
      delete-duplicates, delete-duplicates!, assoc (extended one),
      alist-copy, alist-delete, alist-delete!, any, every, filter,
      filter!, remove, remove!, filter-map, fold, fold-right, find,
      find-tail, split-at, split-at!, iota.
    o New macros and procedures: values->list, fold-left,
      regexp-num-groups, regexp-named-groups.
    o New procedure applicable? can be used to check object's
      applicability finer than procedure?. Related, a special class
      <bottom> is added, which behaves as a subtype of any classes.
    o Build process is overhauled to allow out-of-source-tree build.
    o Regular expression engine is slightly improved. For example, it now
      calculates the set of characters that can be a beginning of a part
      of regexp, and uses it to skip the input efficiently.
    o thread-terminate! now attempts to terminate the target thread
      gracefully, and only tries the forceful means when the gracefull
      termination fails.
    o open-input-file now accepts :encoding #t argument, which tells the
      procedure to use a coding-aware port. That is, it can recognize
      coding: ... specification in the beginning of the file. Useful to
      process source files.
    o map is now restart-safe, that is, saving continuations in middle of
      mapping and restarting it doesn't affect previous results. This is
      required in R6RS.
    o Various small improvements in the compiler and VM stack layout.
    o gauche.test: test-module now checks the number of arguments given
      to the global procedures. This is useful to catch careless
      mistakes. In rare cases that you do intend to pass number of
      arguments incompatible to the normal usage of the procedures, list
      such procedures in :bypass-arity-check keyword argument (It is
      possible because of the dynamic nature of the language---methods of
      a different signature may be added later, for example).
    o gauche.test: test-end has a keyword argument to exit with non-zero
      status if test failed. New function test-summary-check exits with
      non-zero status when the test record file indicates there have been
      failures. Both are useful to propagate test failure to upper levels
      such as continuous integration server.
    o srfi-42: Support :generator qualifier to allow using generator
      procedures in a sense of gauche.generator.
    o file.util: touch-file and touch-files takes various keyword
      arguments similar to touch(1) command.
    o rfc.http: A new parameter http-proxy allows to set the default http
      proxy. The https connection now uses a library bundled to Gauche,
      no longer requires external stunnel command.
    o GC is bumped to bdwgc 7.2-alpha6.

* Bux fixes
    o Fixed an incorrect rounding bug when inexact numbers were given to
      div and mod.
    o Fixed another division bug in /., when both dividend and divisor
      are too big to be represented by floating-point numbers.
    o In quasiquote expander, unquote and unquote-splicing are recognized
      hygienically.
    o force is now thread-safe.
    o Fixed some MT-hazards in file loading/requiring. Thanks to Kirill
      Zorin for tracking those hard-to-find bugs.
    o Fixed a bug that made (regexp-compile '(alt)) Bus Error.
    o Fixed another regexp bug that didn't handle case-folding match
      beyond ASCII range. Patch from OOHASHI Daichi.
    o gauche.parameter: Accessing parameters created in unrelated threads
      used to raise an error. It was annoying, since such situation could
      occur inadvertently when autoload is involved. Now the parameters
      work regardless of where they are created.
    o rfc.json: Fixed a bug that produced incorrect JSON.
    o rfc.http: Fixed the behavior of redirection for 3xx responses. You
      can also customize the behavior.
    o gauche.threads: Fixed a bug in thread-sleep! when passed an exact
      rational number.
    o util.stream: stream-count didn't work.
2012-05-13 06:08:10 +00:00
..
a60
algol68g Add missing mk/termcap buildlink. 2011-12-17 10:15:48 +00:00
awka Kill reundant .TP statements. Bump revision. 2012-01-24 20:41:00 +00:00
baci Convert the remaining few packages that explicitly set DEPENDS or 2012-01-14 00:51:36 +00:00
basic256 Recursive bump from icu shlib major bumped to 49. 2012-04-27 12:31:32 +00:00
boomerang Recursive bump for lang/ocaml buildlink addition. 2011-12-06 00:19:21 +00:00
brandybasic
bwbasic Update to 2.50 2012-01-15 15:29:31 +00:00
caml-light Fix insecure-temp-files, PR 45558 2011-11-06 19:32:07 +00:00
camlp5 Set BUILDLINK_ABI_DEPENDS correctly (with +=, not ?=) 2012-05-07 01:53:12 +00:00
ccsh Transfer ownership to pkgsrc-users. pancake's address is not valid any 2010-07-06 10:17:11 +00:00
cdl3 Set BUILDLINK_ABI_DEPENDS correctly (with +=, not ?=) 2012-05-07 01:53:12 +00:00
Cg-compiler Set BUILDLINK_ABI_DEPENDS correctly (with +=, not ?=) 2012-05-07 01:53:12 +00:00
chicken Update Chicken to version 4.7.0 2011-05-26 20:06:13 +00:00
cim
cint Add CONFLICTS with new man-pages package. For details, see 2012-05-12 07:37:50 +00:00
clang Removed wrong entry from PLIST 2011-12-06 20:03:54 +00:00
classpath Recursive bump for pcre-8.30* (shlib major change) 2012-03-03 00:11:51 +00:00
classpath-gui Recursive bump for pcre-8.30* (shlib major change) 2012-03-03 00:11:51 +00:00
clisp Recursive bump for pcre-8.30* (shlib major change) 2012-03-03 00:11:51 +00:00
clojure Import clojure-1.4.0 as lang/clojure. 2012-05-04 11:51:30 +00:00
coq Recursive bump from icu shlib major bumped to 49. 2012-04-27 12:31:32 +00:00
cparser
cu-prolog
eag
ecl Set BUILDLINK_ABI_DEPENDS correctly (with +=, not ?=) 2012-05-07 01:53:12 +00:00
eieio
elisp-manual
elk This builds a gdbm library if it finds gdbm; buildlink in gdbm so this 2012-04-13 05:43:26 +00:00
embryo Update to Embryo 1.1.0. No detailed changes available. 2011-12-05 17:17:36 +00:00
erlang Set BUILDLINK_ABI_DEPENDS correctly (with +=, not ?=) 2012-05-07 01:53:12 +00:00
erlang-doc Update to Erlang/OTP R15B01 2012-04-12 12:14:12 +00:00
erlang-man Update to Erlang/OTP R15B01 2012-04-12 12:14:12 +00:00
ezm3 Set BUILDLINK_ABI_DEPENDS correctly (with +=, not ?=) 2012-05-07 01:53:12 +00:00
f2c Revert previous change. The missing file is part of devel/libf2c. 2011-11-29 19:01:41 +00:00
ficl Import FICL 4.1.0 as lang/ficl. 2010-12-01 21:58:27 +00:00
focal patch getline() -> get_line() for -current (thank you PSOIX) 2010-04-29 00:22:02 +00:00
fort77 Don't run tests at build time. Fixes PR pkg/42955 2010-03-11 18:55:34 +00:00
g95 Use ${host_alias} in path names so they match ${MACHINE_GNU_PLATFORM} 2012-05-08 03:14:25 +00:00
gambc Update to Gambit C 4.6.5 2012-04-16 10:19:34 +00:00
gauche Update to 0.9.3.2. 2012-05-13 06:08:10 +00:00
gawk Update to 4.0. Provided by Sergey Litvinov <slitvinov@gmail.com> 2012-03-17 03:16:20 +00:00
gcc Set BUILDLINK_ABI_DEPENDS correctly (with +=, not ?=) 2012-05-07 01:53:12 +00:00
gcc3 Disable gcc3-java as it does not build, has not built in years, and 2012-04-07 17:33:54 +00:00
gcc3-ada
gcc3-c
gcc3-c++ Set BUILDLINK_ABI_DEPENDS correctly (with +=, not ?=) 2012-05-07 01:53:12 +00:00
gcc3-f77 Set BUILDLINK_ABI_DEPENDS correctly (with +=, not ?=) 2012-05-07 01:53:12 +00:00
gcc3-java Set BUILDLINK_ABI_DEPENDS correctly (with +=, not ?=) 2012-05-07 01:53:12 +00:00
gcc3-objc Set BUILDLINK_ABI_DEPENDS correctly (with +=, not ?=) 2012-05-07 01:53:12 +00:00
gcc34 Set BUILDLINK_ABI_DEPENDS correctly (with +=, not ?=) 2012-05-07 01:53:12 +00:00
gcc34-ada Set BUILDLINK_ABI_DEPENDS correctly (with +=, not ?=) 2012-05-07 01:53:12 +00:00
gcc44 Set BUILDLINK_ABI_DEPENDS correctly (with +=, not ?=) 2012-05-07 01:53:12 +00:00
gcc45 Set BUILDLINK_ABI_DEPENDS correctly (with +=, not ?=) 2012-05-07 01:53:12 +00:00
gcc46 Set BUILDLINK_ABI_DEPENDS correctly (with +=, not ?=) 2012-05-07 01:53:12 +00:00
gcc47 Set BUILDLINK_ABI_DEPENDS correctly (with +=, not ?=) 2012-05-07 01:53:12 +00:00
gforth Fix annoying marker bug. 2011-03-29 21:19:19 +00:00
ghc Set BUILDLINK_ABI_DEPENDS correctly (with +=, not ?=) 2012-05-07 01:53:12 +00:00
gnat-aux lang/gnat-aux: Sync with gcc 4.6.3 2012-03-02 16:00:58 +00:00
gpc gsed related clean up. 2012-01-14 07:44:33 +00:00
gprolog Update to GNU Prolog version 1.3.1. 2010-05-19 09:10:55 +00:00
guile Increase default stack limit. This gets around a problem where the 2011-05-12 12:15:41 +00:00
guile16 Backport a patch to fix build with GCC 4.4 and extend it to cover GCC 2011-12-02 13:59:35 +00:00
gwydion-dylan Build fix: always pass "--tag" parameter to libtool. 2011-03-31 09:03:21 +00:00
heirloom-awk Not MAKE_JOBS_SAFE. 2011-12-19 01:31:37 +00:00
hugs LICENSE=modified-bsd 2010-09-28 04:36:41 +00:00
icc11 Change ${HOMEPAGE} to ${HOMEPAGE_NONCOMMERCIAL} and set ${HOMEPAGE_COMMERCIAL} 2011-11-11 22:39:27 +00:00
icon Give the package configure script the host type names for "solaris" that 2012-03-05 04:00:44 +00:00
inform Add inform-license and use it for lang/inform (instead of unclear 2010-06-03 09:26:30 +00:00
intercal update to 0.29 2010-11-30 20:13:29 +00:00
ja-gawk
jamvm Transfer ownership to pkgsrc-users. pancake's address is not valid any 2010-07-06 10:17:11 +00:00
japhar Explicitly depend on zlib. This package includes a local copy of it 2010-11-05 13:46:44 +00:00
jasmin Add csh scripts to REPLACE_CSH and add USE_TOOLS+=csh:run 2012-02-07 06:36:35 +00:00
java-lang-spec Update to 3.0 2012-01-14 14:27:50 +00:00
java-vm-spec
jikes
jini
joos USE_TOOLS += yacc. 2012-04-13 05:46:44 +00:00
js add license information to the package Makefile 2010-04-19 06:16:40 +00:00
kaffe Set BUILDLINK_ABI_DEPENDS correctly (with +=, not ?=) 2012-05-07 01:53:12 +00:00
kaffe-esound Recursive bump from audio/libaudiofile, x11/qt4-libs and x11/qt4-tools ABI bump. 2012-01-13 10:54:43 +00:00
kaffe-x11 Recursive bump for pcre-8.30* (shlib major change) 2012-03-03 00:11:51 +00:00
kali Update to Kali Scheme 0.52.2 2010-08-21 14:16:17 +00:00
ksi Update to KSi 3.9.0 2010-08-12 09:27:54 +00:00
librep Set BUILDLINK_ABI_DEPENDS correctly (with +=, not ?=) 2012-05-07 01:53:12 +00:00
libtcl-nothread
likepython Bump PKGREVISION from default python to 2.7. 2012-03-15 11:53:20 +00:00
lua Update to 5.1.5. 2012-03-12 15:49:27 +00:00
LuaJIT
lush Recursive bump from audio/libaudiofile, x11/qt4-libs and x11/qt4-tools ABI bump. 2012-01-13 10:54:43 +00:00
maude Update Maude to version 2.6 2011-04-19 19:18:40 +00:00
mawk HOMEPAGE was added (PR 45726) 2011-12-20 09:07:10 +00:00
mercury Demands bison to build. 2012-03-27 18:43:30 +00:00
minischeme
mit-scheme-bin
mono Set BUILDLINK_ABI_DEPENDS correctly (with +=, not ?=) 2012-05-07 01:53:12 +00:00
mono-basic Recursive bump from icu shlib major bumped to 49. 2012-04-27 12:31:32 +00:00
moscow_ml Fix post-install rule to not (sometimes) leave behind mode 744 2011-11-12 00:37:40 +00:00
mpd Like lang/sr (this comes from the same group/project) there is no support 2011-12-18 19:12:28 +00:00
nawk Reset maintainer, developer lost his commit bit. 2010-03-21 16:29:38 +00:00
newlisp Update to 10.4.0 2012-02-15 03:51:51 +00:00
nhc98
objc Honor ${PKGMANDIR} 2012-05-04 06:58:04 +00:00
ocaml Fix SunOS linker/as args. 2012-03-12 12:28:04 +00:00
ocamlduce Whitespace. 2012-04-13 07:35:46 +00:00
onyx Recursive bump for pcre-8.30* (shlib major change) 2012-03-03 00:11:51 +00:00
oo2c Add user-destdir installation support. 2011-05-27 13:16:04 +00:00
opencobol Update opencobol to version 1.1, from Robert Doerfler (rodo@bloerp.de). 2012-03-23 23:19:37 +00:00
openjdk7 lang/openjdk7: Add support for DragonFly x86_64 2012-05-12 21:01:47 +00:00
openjdk7-bin Set BUILDLINK_ABI_DEPENDS correctly (with +=, not ?=) 2012-05-07 01:53:12 +00:00
ossp-js update master_sites. 2011-03-11 12:50:38 +00:00
p2c Improve the post-extract chmod so it doesn't choke on Solaris, where 2012-03-05 04:04:09 +00:00
p5-Switch Import p5-Switch-2.16 as lang/p5-Switch. 2011-10-28 09:14:41 +00:00
parrot Set BUILDLINK_ABI_DEPENDS correctly (with +=, not ?=) 2012-05-07 01:53:12 +00:00
pcc allow this to build on NetBSD-*-x86_64 2011-10-31 11:55:51 +00:00
pcc-current update to 20120326 snapshot, changelog at 2012-03-27 15:17:04 +00:00
pear Update Archive_Tar which included this package to 1.3.10. 2012-04-29 16:34:49 +00:00
perl5 Teach perllink(1) to transparently handle the case where a file has been 2012-03-04 10:26:57 +00:00
pfe Something docbook-related changed a while ago and this package now 2012-05-06 00:14:08 +00:00
pforth Update to pForth version 27. 2010-11-22 01:25:48 +00:00
php PKG_PHP_VERSION may be 52 for some situation. 2012-05-12 11:27:46 +00:00
php5 Set DISTNAME and DIST_SUBDIR only for !defined(PECL_VERSION). 2012-05-12 10:12:32 +00:00
php5-perl * pass strict PERL location to configure 2012-05-12 11:40:06 +00:00
php53 Update php53 pacakge to 5.3.13 (PHP 5.3.13). 2012-05-09 06:52:51 +00:00
picoc Initial import of picoc-2.1 into the Packages Collection 2012-04-27 04:48:44 +00:00
pict Recursive bump for lang/ocaml buildlink addition. 2011-12-06 00:19:21 +00:00
pnet Add missing mk/termcap buildlink. 2012-01-27 09:15:21 +00:00
pnetC Set BUILDLINK_ABI_DEPENDS correctly (with +=, not ?=) 2012-05-07 01:53:12 +00:00
pnetlib Recursive bump for graphics/freetype2 buildlink addition. 2011-11-01 06:00:33 +00:00
pnetlib-nox11
polyml Update to Poly/ML 5.4.1 2012-03-22 20:48:43 +00:00
py-basicproperty All supported python versions in pkgsrc support eggs, so remove 2012-04-08 20:21:41 +00:00
py-cxfreeze Tag the 28 locations that result in a Python 3.1 package as supporting so. 2011-12-03 00:02:14 +00:00
py-psyco All supported python versions in pkgsrc support eggs, so remove 2012-04-08 20:21:41 +00:00
py-pyrex Reset maintainer, developer has left the building 2012-04-15 22:00:58 +00:00
py24-html-docs Update py24-html-docs to 2.4.4. 2011-06-17 12:19:33 +00:00
py25-html-docs Update py25-html-docs to 2.5.4. 2011-06-17 12:22:38 +00:00
py26-html-docs Update py26-html-docs to 2.6.7. 2011-06-17 12:27:09 +00:00
py27-html-docs Import py27-html-docs-2.7.2 as lang/py27-html-docs. 2011-06-17 12:38:05 +00:00
python Add python32 support. 2012-05-06 13:18:30 +00:00
python25 On recent FreeBSD, ossaudiodev.so is not created. 2012-03-31 02:12:34 +00:00
python26 Set BUILDLINK_ABI_DEPENDS correctly (with +=, not ?=) 2012-05-07 01:53:12 +00:00
python27 "sys.platform is now always 'linux2' on Linux", so revert the linux3 handling 2012-05-10 08:10:00 +00:00
python31 Update python31 to 3.1.5. 2012-04-14 11:22:07 +00:00
python32 "sys.platform is now always 'linux2' on Linux", so set PY_PLATNAME to it. 2012-05-10 09:07:19 +00:00
racket Recursive bump for pcre-8.30* (shlib major change) 2012-03-03 00:11:51 +00:00
racket-textual Update to Racket 5.2.1 2012-02-03 21:34:06 +00:00
rcfunge
rexx-imc Fix build on NetBSD/i386 5.99.55 and Darwin/11.0.1. 2011-09-18 16:51:32 +00:00
rexx-regina
ruby Strict RUBY_VERSION_DEFAULT when RUBY_VERSION_SUPPORTED has one word. 2012-05-07 07:53:28 +00:00
ruby-coffee-script Importing ruby-coffee-script package version 2.2.0. 2012-03-04 16:14:42 +00:00
ruby-coffee-script-source Update ruby-coffee-script-source to 1.3.1. 2012-04-29 14:03:34 +00:00
ruby-doc-stdlib
ruby-execjs Update ruby-execjs to 1.3.1. 2012-04-29 14:04:50 +00:00
ruby18 Reset PKGREVISION with update. 2012-02-16 16:46:24 +00:00
ruby18-base Overhaul buildlink3 processing of Ruby. 2012-03-21 15:40:12 +00:00
ruby19 Reset PKGREVISION. 2012-04-22 08:24:08 +00:00
ruby19-base Update ruby19 packages to 1.9.2p320. 2012-04-22 08:23:00 +00:00
ruby193 Importing ruby193 version 1.9.3p0 (Ruby 1.9.3 p0). 2011-11-08 16:12:25 +00:00
ruby193-base Prevent configure from using some random pkg-config tool found on the 2012-05-08 16:08:53 +00:00
runawk clean-ups (adapted for recent mk-configure) 2012-03-09 18:58:19 +00:00
sablevm USE_TOOLS=unzip instead of DEPENDS/BUILD_DEPENDS. 2012-01-14 03:13:03 +00:00
sablevm-classpath Fix NetBSD PPC build, from Magnus Henoch in PR 34787. 2012-04-08 05:47:30 +00:00
sablevm-classpath-gui Recursive bump for pcre-8.30* (shlib major change) 2012-03-03 00:11:51 +00:00
sather
sbcl Update to SBCL 1.0.56 2012-04-13 12:43:57 +00:00
scala Update to Scala 2.9.2. 2012-05-01 22:22:01 +00:00
scheme48 lang/schema48: Fix bad pthreads detection for DragonFly 2011-12-17 19:02:11 +00:00
scm
see Set BUILDLINK_ABI_DEPENDS correctly (with +=, not ?=) 2012-05-07 01:53:12 +00:00
sigscheme Fix build on SunOS. 2011-04-14 20:06:49 +00:00
siod service suspended. fetch from backup. 2011-03-11 12:55:09 +00:00
smalltalk Recursive bump for pcre-8.30* (shlib major change) 2012-03-03 00:11:51 +00:00
SmartEiffel Bump PKGREVISION from default python to 2.7. 2012-03-15 11:53:20 +00:00
smlnj Update to SML/NJ 110.73 2012-01-29 20:48:48 +00:00
snobol Mark BROKEN, doesn't fetch. 2011-04-22 23:05:26 +00:00
spidermonkey Set BUILDLINK_ABI_DEPENDS correctly (with +=, not ?=) 2012-05-07 01:53:12 +00:00
spl Recursive bump from icu shlib major bumped to 49. 2012-04-27 12:31:32 +00:00
squeak Update to Squeak 4.0 2010-03-19 14:41:56 +00:00
squeak-vm More pcre PKGREVISION bumps. 2012-03-03 12:54:15 +00:00
sr lang/sr: Mask x86_64 platforms 2011-12-17 19:01:24 +00:00
sr-examples
stalin Update MASTER_SITES, HOMEPAGE. 2012-01-04 00:58:36 +00:00
STk Not MAKE_JOBS_SAFE. 2010-03-17 15:12:23 +00:00
sun-jdk6 Updated lang/sun-jdk6 to 6.0.32 2012-05-11 13:04:17 +00:00
sun-jre6 Updated lang/sun-jre6 to 6.0.32 2012-05-11 13:02:37 +00:00
swi-prolog
swi-prolog-lite Set BUILDLINK_ABI_DEPENDS correctly (with +=, not ?=) 2012-05-07 01:53:12 +00:00
swi-prolog-packages Be explicit in not trying to build the JPL interface 2012-03-10 21:36:14 +00:00
tcl Fix UNSHARED_LIB_SUFFIX without dot in configure on FreeBSD. 2012-03-31 01:27:26 +00:00
tcl-expect
tcl-itcl Set BUILDLINK_ABI_DEPENDS correctly (with +=, not ?=) 2012-05-07 01:53:12 +00:00
tcl-itcl-current Set BUILDLINK_ABI_DEPENDS correctly (with +=, not ?=) 2012-05-07 01:53:12 +00:00
tcl-otcl Set BUILDLINK_ABI_DEPENDS correctly (with +=, not ?=) 2012-05-07 01:53:12 +00:00
tcl-tclX Set BUILDLINK_ABI_DEPENDS correctly (with +=, not ?=) 2012-05-07 01:53:12 +00:00
tinyscheme Fix build failure on Linux(PR 44628). 2011-12-06 13:22:17 +00:00
tk-expect
tk-tclX Unbreak after changes to scotty. Add user-destdir support 2011-11-11 19:16:27 +00:00
twelf
ucblogo
umb-scheme
utilisp * MAKE_JOBS_SAFE=no 2011-05-27 09:43:20 +00:00
vala Set BUILDLINK_ABI_DEPENDS correctly (with +=, not ?=) 2012-05-07 01:53:12 +00:00
vala014 Set BUILDLINK_ABI_DEPENDS correctly (with +=, not ?=) 2012-05-07 01:53:12 +00:00
vala016 Set BUILDLINK_ABI_DEPENDS correctly (with +=, not ?=) 2012-05-07 01:53:12 +00:00
vscm Update VCSM to V4R2. 2011-04-17 07:46:05 +00:00
vslisp Fix MASTER_SITES. 2010-05-19 11:11:44 +00:00
wsbasic
yabasic
yap Don't use obsolete "malloc.h", some systems choose to break it intentionally (e.g. DragonFly). 2011-07-09 21:15:48 +00:00
Makefile +python32 2012-05-06 13:13:17 +00:00