summaryrefslogtreecommitdiff
path: root/lang/chicken
AgeCommit message (Collapse)AuthorFilesLines
2010-05-13Update to Chicken 4.5.0.asau5-51/+7
Submitted by Peter Bex on IRC. Changes in 4.5.0 - internal fixes of handling of alternative installation-prefix in setup-api - certain compiler-warnings that are in really just notes and don't indicate a possible error (like reimport of identifiers) are only shown with -S or in verbose mode - fixed handling of VARDIR in `chicken-install' (thanks to Davide Puricelli) - `chicken-install -test' doesn't runs tests for dependencies - when a non-else clause follows an else-clause in `cond', `case' or `select' a warning (note) is shown in verbose mode - removed the deprecated `define-extension' and `define-compiled-syntax' - `chicken-uninstall' now always asks before removing extensions, unless `-force' is given - improved performance of keyword-argument processing slightly - `export' outside of a module definition has no effect - `number->string' now accepts arbitrary bases between 2 and 16 (thanks to Christian Kellermann) - fixed `standard-extension' in `setup-api' module - literal constants keep their identity, even when inlined - Unit library: added `fxodd?' and `fxeven?' - All hardcoded special forms have been replaced with syntax definitions that expand into internal forms, this allows redefinition and shadowing of all Scheme core forms - faster implementations of `get' and `put!' - faster implementation of `assq' in unsafe mode - the `-sx' option prefixes each output line with `;' - slightly better expansion performance - more documentation of the C API (thanks to Peter Bex) - `module' supports a shorthand form that refers directly to a file to be included as the module body - added runtime option `-:G' to force GUI mode (on platforms that distinguish between GUI and non-GUI applications) - removed the unsafe runtime library (`libuchicken'), this simplifies and speeds up the build and reduces the risk of executables loading library units from different variants of the runtime system - removed the `-unsafe-libraries' option from `chicken' and `csc' - removed bootstrapping target and bootstrapping files from development repository; to bootstrap the system, either use a release or development-snapshot tarball or fetch a statically linked precompiled `chicken' binary from http://chicken.wiki.br/chicken-projects/bootstrap/ - Jim Ursetto provided some fixes for building universal binaries on Mac OS X - `csc' now compiles and links Windows resource (.rc) files when given on the command line - `chicken-install' and `chicken-uninstall' have an embedded manifest that suppresses the elevation dialog on Windows Vista and later when UAC is activated (Thanks to Thomas Chust) - the `install' program is not used in the build on mingw and mingw/MSYS platforms, since this is broken on older mingw versions - line-number-information is now properly handled (in the few places where it is used) correctly for included files; the source file is given in trace-output in addition to the line number - removed compiler warning for shared objects compiled in unsafe mode - unboxing is now only done in unsafe mode - in unsafe mode, pointer-accessors from the `lolevel' unit are now handled intrinsically by the compiler - `chicken-install' accepts now relative pathnames for the `-prefix' option - `define-record-type' now optionally allows using SRFI-17 setters as record-field modifiers - `integer?' returns `#f' for NaN and infinite numbers - `csc' now has an `-no-elevation' option for embedding a manifest that prevents the elevation dialog on Windows Vista and later when IAC is activated - the `,d' csi command displays qualified symbols properly - symbols starting with the `#\#' character trigger an error when encountered by the reader - Unit posix: `glob->regexp' now always returns a regular expression object or optionally an SRE - Unit posix: `terminal-port?' and `terminal-size' have been implemented for Windows, the latter always returns `0 0', though (thanks to Jim Ursetto) - Unit regex: `regexp' now accepts a regular expression object as argument - Unit regex: removed `glob?' - fixed bug in `chicken-install'/`chicken-uninstall' and `chicken-status' that prevented collapsed command-line options to be handled correctly. - disabled runpath-fix for deployed applications for netbsd (but resurrected providing a runpath at all, thanks to Peter Bex) - Peter Bex provided documentation for the `C_closure' C API function
2010-03-15Update to Chicken 4.4.0.asau5-81/+123
Contributed by Peter Bex. New in Chicken 4.4.0: - the system can now be built with llvm-gcc and/or "clang" (the LLVM C compiler which doesn't use the GNU C frontend) - added new option `-trunk' to `chicken-install', which forces building and installing the development version of extensions in combination with `-t local' - added new option `-deploy' to `chicken-install', which builds extension for use in "deployed" applications (see below) - added option `-deploy' to `csc', the compiler driver. With this option `csc' can build fully self-contained application bundles and double-clickable Macintosh GUI apps; see the "Deployment" manual chapter for more information - the directory given to the `-prefix' option of `chicken-install' may now be a relative pathname. - removed GUI-specific runtime library (`libchicken-gui') from Windows build - GUI- and non-GUI applications now use the same runtime library - special forms of the foreign-function interface have been replaced with an internal form and syntax to allow renaming and shadowing of these forms - the new `-private-repository' option in `csc' compiles executables with the extension-repository path set to the directory from which the program was started - `csc': deprecated the `-W' and `-windows' options, added `-gui' as a platform-independent replacement - `require-extension'/`use' accepts now import-specifications - user-defined extension-specifiers and `set-extension-specifier!' have been removed - `delete-file[*]', `rename-file', `create-directory', `file-copy', `file-move', `delete-directory' and `change-directory' return their argument/destination filename on success - added the missing procedure `condition-variable-name' to the srfi-18 library unit (Thanks to Joerg Wittenberger) - the `glob?' function from the `regex' unit has been deprecated - added the procedure `scan-input-lines' to the `utils' library unit - added new runtime option `-:g' which enables GC debugging output - reclamation of unused symbols in "symbol-gc" mode (`-:w') now only takes place for symbols with an empty property-list - on Windows loading of code compiled with [non-]GUI runtime libraries will fail and produce an error message when the loading executable is linked with a different runtime system - on Windows, GUI libraries were not correctly linked by `csc' - unit posix: added setter for `file-modification-time' - the banner shows the branchname of the build, unless it's "master" - the `-no-install' option to `chicken-install' is ignored when building/installing dependencies - `chicken-uninstall' takes a glob instead of a regular expression as argument - the rename and compare functions for low-level macro-definitions accept now arbitrary s-expressions and renames/compares them recursively - `number->string' handles negative-numbers with bases different from 10 correctly (thanks to Peter Danenberg) - removed deprecated `setup-install-flag' and `setup-verbose-flag' from the `setup-api' module - added new option `-repository' to `chicken-install' (Thanks to Christian Kellermann) - removed `chicken-setup' stub program - fix to `csc' to use the correct library when fixing dynamic load paths (Thanks to Derrell Piper) - removed html documentation from distribution (the wiki manual will now be installed) - fixed bug in `reexport' which caused syntax not to be correctly reexported - previous assignments to a toplevel variable that are separated by side effect free expressions are removed - fixed windows version of `find-files' (thanks to Jim Ursetto) - documentation for extensions is not installed automatically by `chicken-install' anymore - changed binary version from "4" to "5", because the new runtime libraries are not binary-compatible with previous releases; this means all eggs have to be reinstalled and existing programs be recompiled! - added unboxing pass to compiler which results in partially dramatical performance improvements for unsafe floating-point-intensive code; unboxing is enabled on optimization levels 4 and 5 - removed rest-argument-vector optimization as it could conflict with inlining (thanks to Sven Hartrumpf) - renamed `pointer-offset' to `pointer+' and deprecated `pointer-offset' - toplevel assignments that have no other side-effects can be eliminated if it can be shown that the value is not used (the compiler will generate a warning in this case) - removed deprecated `-quiet' option in `chicken' program - removed deprecated `run-time-macros' declaration - removed deprecated `-v2' and `-v3' options in `csc' program - removed deprecated `list-of' function (it is exclusively available as `list-of?' now) - removed deprecated `stat-...' functions in posix library unit - removed deprecated `for-each-line' and `for-each-argv-line' procedures in utils library unit - added `fpinteger?' and `fpabs' - deprecated `define-compiled-syntax' - added new floating-point primitives `fpsin', `fpcos', `fptan', `fpasin', `fpacos', `fpatan', `fpatan2', `fpexp', `fplog', `fpexpt' and `fpsqrt' - heavy cleanup of floating math functions which gives much better performance, especially for code compiled in unsafe mode - calling `assert' with a single argument shows the tested expression on failure - various bugfixes and cleaning up
2009-12-15Update Chicken to 4.3.0.asau3-7/+11
Patch provided by Peter Bex. Changes in 4.3.0: - removed tracing facility and apply-hook (see the "trace" egg for a replacement for tracing and breakpoints) - chicken-install(1): renamed `-host-extension' option to `-host' - added support for a make(1) configuration file ("config.make") - `chicken-install' now allows specifiying a proxy for retrieving extensions over HTTP (thanks to Nicolas Pelletier) - fixed bug in `cond-expand' that incorrectly renamed feature-identifiers if the form was the product of a syntax expansion (reported by Thomas Bushnell) - import-libraries are only generated by the compiler if they don't exist yet and if the content has actually changed (this simplifies makefile- rules in some cases) - it is now possible to pass a config-file to `make(1)' instead of specifying all build-options as variables on the command-line (see README) - removed compiler options for "benchmark-mode" and replaced them with a new optimization level (5) (note that `-O5' does not imply fixnum mode anymore) - `hen.el' and `scheme-complete.el' are not bundled with the core system anymore - `hen.el' is currently not maintained, and `scheme-complete.el' has its own release cycle; both files are available, see http://chicken.wiki.br/emacs - removed meaningless benchmark suite and cleaned up - added optional argument to `grep' that allows applying a function to each matched item (contributed by Tony Sidaway) - added extension-property `import-only', which makes it possible to create extensions that have no runtime part - the argument to `seconds->string', `seconds->utc-time' and `seconds->local-time' is now optional and defaults to the value of `(current-seconds)' (suggested by Mario Goulart) - removed read-syntax for `syntax' form - fixed bug in `get-condition-property' - fixed bug in windows version of `process-execute' - TCP timeouts throw exception of kind `timeout' to allow distinguishing between timeouts and other errors - removed some internal functions that manipulate environments - fixed bugs in `standard-extension' (`setup-api' module) and added keyword arguments for building static extensions and adding custom properties - when cross-compiling, `chicken-install(1)' doesn't pass `-setup-mode' (the host tools should not attempt to load target binaries) - `installation-prefix' in the `setup-api' module was not always correctly set - the `-force' option in `chicken-install(1)' overrides the CHICKEN version check - disabled e-mail feature in `chicken-bug(1)', since it doesn't work anyway, in the moment - fixed bug in `reexport' that made it impossible to reexport core library definitions - fix in optimizer that sometimes caused C functions for inlined procedures to be emitted multiple times (Thanks to Joerg Wittenberger) - documented `define-compiler-syntax' and `let-compiler-syntax' - printer for hash-tables shows current number of stores items - when upgrading during installation of a dependency `chicken-install' shows the version to upgrade to (Thanks to Christian Kellermann) - Updated scheme-complete (Thanks to Alex Shinn) - fix for pathnames with whitespace in 'runtests.sh' on Windows - fix for 'normalize-pathname' with absolute pathname argument - added 'decompose-directory' to unit files - fix for 'local-timezone-abbreviation' - wasn't using the current time so tz-name constant - deprecated 'make-pathname' separator argument
2009-09-22Update Chicken to 4.2.0.asau3-20/+6
Changes in 4.2.0: - added compiler option `-emit-all-import-libraries' - added `reexport' - added compiler and interpreter option `-setup-mode' - various minor performance improvements - fix for 'create-directory' when parents wanted - `for-each-line' and `for-each-argv-line' have been deprecated - chicken-install tries alternative servers if server responds with error - fixed load bug (ticket #72) - new library procedure `get-condition-property' - many mingw build fixes (thanks tp Fadi Moukayed) - setup-api: deprecated `cross-chicken' (use `cond-expand' or `feature?' instead) - added topological-sort to data-structures unit; chicken-install sorts dependencies before installing them - "-optimize-level 2" enables inlining by default - disable executable stack in assembly code modules (patch by Zbigniew, reported by Marijn Schouten) - csc now always exits with a status code of 1 on errors (patch by Zbigniew)
2009-08-08Update to 4.1.0, provided by Peter Bex via pkgsrc-wip (wip/chicken-current).wiz4-87/+106
4.1.0 - The new parameter "parantheses-synonyms" and the command-line option "-no-parantheses-synonyms" allows disabling list-like behaviour of "{ ... }" and "[ ... ]" tokens - The new parameter "symbol-escape" and the command-line option "-no-symbol-escape" allows disabling "| ... |" symbol escape syntax - Added command-line option "-r5rs-syntax" to disable CHICKEN-specific read-syntax - Added compiler command-line-option "-no-compiler-syntax" - Deprecated "getenv" (use "get-environment-variable" instead) - Removed "macro?" and "undefine-macro!" - Support for Microsoft Visual Studio / MSVC has been dropped - The compiler provides now a simple flow-analysis pass that does basic checking of argument-count and -types for core library procedures (new option "-scrutinize") - New compiler-options "-no-argc-checks", "-no-bound-checks", "-no-procedure checks", "-no-procedure-checks-for-usual-bindings", "-types TYPEFILE" and "-consult-inline-file FILENAME" - Added a "chicken-setup" stub-application to catch incorrect use of this tool (which has been replaced in 4.0.0 with "chicken-install") - Changed "setup-install-flag" and "setup-verbose-flag" to "setup-install-mode" and "setup-verbose-mode" in "setup-api" module, the old names are still available but deprecated - Posix unit: added "socket?", "block-device?" and "character-device?", deprecated redundant "stat-..." procedures - Also in Posix unit: "canonical-path" has been deprecated, "normalize-pathname" from the "files" unit provides now most of the functionality - Added "directory-exists?" - "(for-each (lambda ...) X)" is compiled as a loop - The argument-count check for format-strings for "[sf]printf" with a constant string argument is done at compile-time - A stub application named "chicken-setup" is installed to catch when a user invokes theobsolete tool instead of the new "chicken-install". 4.0.0 - removed `apropos' and `apropos-list' from the "utils" library unit; available as an extension - removed texinfo and PDF documentation - this will possible be added back later - replaced PCRE regex engine with Alex Shinn's "irregex" regular expression package - removed `-extension' option - removed `-static-extensions' csc option and added `-static-extension NAME' - `regex' unit: removed `regexp*' and `regex-optimize' - added `CHICKEN_new_finalizable_gc_root()' - `length' checks its argument for being cyclic - removed custom declarations and "link-options" and "c-options" declarations - deprecated "-quiet" option to "chicken" program - added "-update-db" option to chicken-install - the compiler now suggests possibly required module-imports - moved non-standard syntax-definitions into "chicken-syntax" library unit - the pretty-printer prints the end-of-file object readably now - alternative conditional execution paths have separate allocation computation (previously the allocation of all alternatives was coalesced) - removed unused "%kmp-search" from "srfi-13" library unit - expander handles syntax-reexports and makes unexported syntax available for exported expanders in import libraries - added checks in some procedures in the "tcp" library unit - the macro system has been completely overhauled and converted to hygienic macros - a macro-aware module system has been added - added "-sx" option to csi - removed the following deprecated functions: [un]shift! andmap ormap byte-vector? byte-vector-fill! make-byte-vector byte-vector byte-vector-set! byte-vector-ref byte-vector->list list->byte-vector string->byte-vector byte-vector->string byte-vector-length make-static-byte-vector static-byte-vector->pointer byte-vector-move! byte-vector-append! set-file-position! set-user-id! set-group-id! set-process-group-id! macro? undefine-macro! - the situation-identifiers "run-time" and "compile-time" have been removed - the compiler options "-check-imports", "-import" and "-emit-exports" have been removed - new procedures: strip-syntax expand - new macros define-syntax module export - the following macros have been removed: define-foreign-record define-foreign-enum define-macro define-extension - "local" mode, in which locally defined exported toplevel variables can be inlined - new options and declarations "[-]local", "[-]inline-global" and "-emit-inline-file" - optimization levels changed to use inlining: -optimize-level 3: enables -inline -local (but *not* -unsafe) -optimize-level 4: enables -inline -local -unsafe - increased default inlining-limit to 20 - support for cross-module inlining - "make <VARIABLES> bench" runs the benchmark suite - "chicken-setup" has been replaced by new command line tools "chicken-install", "chicken-uninstall" and "chicken-status", which are more flexible and allow greater freedom when creating local or application- specific repositories - extension-installation can be done directly from SVN repositories or a local file tree - enabled chicken mirror site as alternative download location
2009-06-14Replace @exec/@unexec with @pkgdir or drop it.joerg1-2/+2
2009-06-14Remove @dirrm entries from PLISTsjoerg1-6/+1
2008-10-07Update chicken to 3.4.0.ahoka3-7/+9
Changes between 3.3.0 and 3.4.0: - Fixes to the MinGW build. - PCRE 7.7 - Bug fix for bitwise-or use [Joerg Wittenberger] - Bug fix in thread-terminate! [thanks to Joerg Wittenberger] - Cygwin build patched to put the runtime libraries in the right place. [thanks to Nathan Thern] - added support for out-of-tree compilation (via the SRCDIR variable) [thanks to Ivan Shmakov] - bug fix for (string->number "/") - support for selective procedure profiling in the compiler - unit utils: moved file- and pathname-related procedures to unit files - new unit files
2008-08-02Update to chicken-3.3.0. From Aleksej Saushev.tnn3-7/+10
- the build system now sets the SONAME field of libchicken.so under Linux - added use of unit ports to unit extras and chicken-setup - unit utils and extras: moved port extensions to unit ports - new unit ports - some fixes to the build system when USE_HOST_PCRE is set - fixed an allocation bug in decode_literal - bug fix for bitwise-or use [Joerg Wittenberger] - bug fix pointer->address - other bug fixes
2008-06-27Treat DragonFly the same as other BSDs.obache1-2/+2
Patch provided by MAINTAINER Aleksej Saushev in PR 39054.
2008-05-12Update chicken from 3.10 to 3.20degroote3-9/+13
From Changelog : - unit extras: moved lists, queues, strings to data-structures - new unit data-structures - unit library: symbol->string now copies its argument - chicken-setup: added option -svn-trunk - unit utils: added file-copy and file-move (request by the einit team) - unit srfi-69: added hash-table-clear! - unit srfi-69: new - unit extras: moved SRFI 69 to unit srfi-69 Contributed by Aleksej Saushev
2008-04-07Update to chicken-3.1.0.tnn3-8/+7
Changes: faster socket writes, posix date fixes, hashtable enhancements.
2008-03-13Update master site URL.tnn1-2/+2
2008-03-11Add the shared library search path in addition to the run path for -lpcre.tnn1-2/+2
2008-03-10Update to chicken-3.0.0, from pkgsrc-wip.tnn6-209/+107
Some highlights: 3.0.0: - On sparc64 architectures more than 126 procedure arguments are allowed [Thanks to Peter Bex] 2.7xx: - PCRE support - new GNU Make based build process - libffi is not used anymore, handcoded assembler is used for x86, x86-64 and powerpc platforms - TCP timeout handling - added Lisp-style symbol property lists - the "chicken-bug" program can now be used to create bug reports - countless bugfixes and minor improvements
2007-04-17Update chicken to 2.60, aka 2.6.obache6-30/+29
Based on patch provided by Alaric Snell-Pym in pkgsrc-users@. Things changed since the last release (2.5): - Many bugfixes - Better support for Sun's C compiler - Input-performance has been improved - PCRE (Perl compatible regular expressions) by Philip Hazel is now bundled with CHICKEN - Static linking of extensions is now possible (when supported by the egg) - The interpreter warns about references to potentially unbound variables in loaded code and expressions entered on the REPL - The expansion process is traced during compilation and interpretation to give (slightly) more usable syntactic context in error messages - library: * added `any?`, `bit-set?' and `on-exit' - eval: * new procedure `set-parameterized-read-syntax!' - posix: * SRFI-17 setters for `file-position`, `current-user-id', `current-group-id', `process-group-id'; the respective setter-procedures are still available but have been deprecated * `file-stat' returns more information (including device info) * added `process*' - extras: * added `read-string!' - utils: * `apropos' and `apropos-list' procedures - srfi-4: * added `read-u8vector', `read-u8vector!' and `write-u8vector' - srfi-18: * added `time->milliseconds' and `milliseconds->time' - csi: * `-ss SCRIPTNAME' option - csc: * accepts options given in the environment variable `CSC_OPTIONS' * new options `-static-extensions' and `-host' - chicken/csc: * new option `-keep-shadowed-macros' - chicken-setup: * accepts options given in the environment variable `CHICKEN_SETUP_OPTIONS' * allows retrieval and installation of eggs from subversion a repository and the local filesystem * new options `-tree FILENAME', `-svn', `-local', `-revision' and `-destdir PATHNAME' * added helper procedures `required-chicken-version' and `required-extension-version' - Lots of improvements in the CMake build
2007-01-02Update chicken to 2.50 a.k.a. 2.5.obache6-55/+99
Based on patch provided by Peter Schuller in PR 35339. Changes: - Bugfixes - CHICKEN can now be built using CMake <http://www.cmake.org>, in fact CMake is required to built CHICKEN from sources on Windows with the Microsoft tools - the whole build process has been cleaned up and simplified - the "easyffi" and "tinyclos" library units have been removed from the base system and are now available as separate extensions - the deprecated "set-dispatch-read-syntax!" has been removed - Will Farr cleaned up the behaviour of number-type specific numeric operations ("fx..."/"fp...") with respect to safe/unsafe mode - added "(finite? NUMBER)" - the "$" macro moved into its own separate extension - the values of "software-type", "software-version", "machine-type" and "machine -byte-order" are now registered as features and can be tested using "cond-expand" or "#+" - all tools now support the "-release" option - chicken-setup: added "-test" option
2006-12-06Fix libtool.m4 fragment to properly detect shared libraries onjoerg2-1/+103
DragonFly.
2006-11-03DESTDIR support.joerg1-1/+3
2006-10-10Update chicken to 2.41, based on PR 34504 by Peter Bex.obache11-193/+36
Mark directories used by chiken's own package `egg' as OWN_DIRS so that keep eggs when updating this package.
2006-05-23Update lang/chicken to 2.3, patch from PR 33533 by Peter Bextonio5-34/+13
In Changelog: - Many bugfixes - chicken-config was removed, "csc" providing the same functionality - option -objc generates files in Objective-C mode - options '-framework', '-rpath'... ...
2006-04-05List the info files directly in the PLIST, and honor PKGINFODIR andjlam2-3/+4
PKGMANDIR.
2006-03-04Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where nojlam1-2/+2
developer is officially maintaining the package. The rationale for changing this from "tech-pkg" to "pkgsrc-users" is that it implies that any user can try to maintain the package (by submitting patches to the mailing list). Since the folks most likely to care about the package are the folks that want to use it or are already using it, this would leverage the energy of users who aren't developers.
2006-02-05Recursive revision bump / recommended bump for gettext ABI change.joerg1-1/+2
2005-12-31Fix errno. Add DragonFly support.joerg7-1/+164
2005-12-05Fixed pkglint warnings. The warnings are mostly quoting issues, forrillig1-2/+2
example MAKE_ENV+=FOO=${BAR} is changed to MAKE_ENV+=FOO=${BAR:Q}. Some other changes are outlined in http://mail-index.netbsd.org/tech-pkg/2005/12/02/0034.html
2005-11-20Setting MAKEINFO in the MAKE_ENV does not seem strong enough for some bulkrillig1-2/+2
builds. Let's try MAKE_FLAGS instead.
2005-11-16Updated chicken to 2.2 using some patches by Peter Bex via private mail.rillig6-110/+18
There are far too many details that have changed to mention here. Fixes PR 30783.
2005-05-22Remove USE_GNU_TOOLS and replace with the correct USE_TOOLS definitions:jlam1-2/+2
USE_GNU_TOOLS -> USE_TOOLS awk -> gawk m4 -> gm4 make -> gmake sed -> gsed yacc -> bison
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2005-02-24Add RMD160 digestsagc1-1/+2
2005-01-16Update to 1.89. Too many changes since the last version of the package tojmmv3-10/+7
list here. See the installed PREFIX/share/doc/chicken/ChangeLog file for a complete list. Closes PR pkg/28980 by Peter Bex.
2004-10-03Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10tv1-1/+2
in the process. (More information on tech-pkg.) Bump PKGREVISION and BUILDLINK_DEPENDS of all packages using libtool and installing .la files. Bump PKGREVISION (only) of all packages depending directly on the above via a buildlink3 include.
2004-09-22Mechanical changes to package PLISTs to make use of LIBTOOLIZE_PLIST.jlam1-25/+1
All library names listed by *.la files no longer need to be listed in the PLIST, e.g., instead of: lib/libfoo.a lib/libfoo.la lib/libfoo.so lib/libfoo.so.0 lib/libfoo.so.0.1 one simply needs: lib/libfoo.la and bsd.pkg.mk will automatically ensure that the additional library names are listed in the installed package +CONTENTS file. Also make LIBTOOLIZE_PLIST default to "yes".
2004-09-05Update to version 1.66seb7-58/+47
Provided in PR pkg/26832 by Peter dot Bex at student dot kun dot nl with minor additions (info file handling and resource limit specification so test target runs on my test platforms). Many changes since last packaged version, too many to list here. See installed file PREFIX/share/doc/chicken/ChangeLog for a complete list.
2004-07-24Bump PKGREVISION for missing dir.wiz1-1/+2
2004-07-24Create ${PREFIX}/lib/chicken; needed for library eggs.wiz4-15/+21
Based on PR 26414 by Peter Bex.
2004-06-02upgrade to 1.51. tons of changes (changelog has 500+ lines from previous)itojun6-153/+56
2004-03-23USE_BUILDLINK3, fix build on sparc64 with gcc2.snj1-1/+5
2004-02-15upgrade to 1.33. too many updates to mention here.itojun6-148/+125
see http://www.call-with-current-continuation.org/ChangeLog.txt for complete changelog.
2004-02-14LIBTOOL_OVERRIDE and SHLIBTOOL_OVERRIDE are now lists of shell globsjlam1-2/+1
relative to ${WRKSRC}. Remove redundant LIBTOOL_OVERRIDE settings that are automatically handled by the default setting in bsd.pkg.mk.
2003-09-12upgrade to 1.17.itojun3-8/+8
2003-08-25 flw <flw@gurke> * /cvsroot/chicken/chicken/csc.in, /cvsroot/chicken/chicken/doc/FAQ.html, /cvsroot/chicken/chicken/doc/manual.tex, /cvsroot/chicken/chicken/highlevel-macros.scm, /cvsroot/chicken/chicken/library.scm, /cvsroot/chicken/chicken/moremacros.scm, /cvsroot/chicken/chicken/runtime.c: - csc.in: `-embedded' wasn't recognized - library.scm: `get-keyword' accepts any object as keys - runtime.c: `C_callback' doesn't do a minor GC at entry [Thanks to Bruce Hoult] - `(. ...)' segfaulted instead of giving an error message [Thanks to Category 5] - `(receive X)' is allowed and returns the list of the result-values 2003-08-17 flw <flw@gurke> * /cvsroot/chicken/chicken/eval.scm, /cvsroot/chicken/chicken/runtime.c: - fixed big performance leak in minor GC handling: GC-timing stuff for `time' macro caused way too many kernel calls [Thanks to Bruce Hoult] - `dump_trace()' didn't initialize output buffer properly 2003-08-07 flw <flw@gurke> * /cvsroot/chicken/chicken/chicken.h, /cvsroot/chicken/chicken/compiler.scm, /cvsroot/chicken/chicken/csc.bat, /cvsroot/chicken/chicken/csc.in, /cvsroot/chicken/chicken/csi.scm, /cvsroot/chicken/chicken/doc/Makefile, /cvsroot/chicken/chicken/doc/README, /cvsroot/chicken/chicken/doc/manual.t2p, /cvsroot/chicken/chicken/doc/manual.tex, /cvsroot/chicken/chicken/eval.scm, /cvsroot/chicken/chicken/highlevel-macros.scm, /cvsroot/chicken/chicken/lolevel.scm, /cvsroot/chicken/chicken/moremacros.scm, /cvsroot/chicken/chicken/posix.scm, /cvsroot/chicken/chicken/runtime.c, /cvsroot/chicken/chicken/build.scm, /cvsroot/chicken/chicken/chicken-setup.scm: - eval.scm: `extension-path' - lolevel.scm: `global-ref', `global-set!' and `global-bound?' - csc: static libs are reordered to link libchicken last [thanks to Sven Hartrumpf] - posix.scm: `group-information' - added index to the manual [thanks to Peter Wang] - 'loevel was declared as provided by csi (which was wrong) - removed `define-id-macro' and `let-id-macro' - setup-specification attributes `test', `test-command' and `test-chicken-version' - `C_alloc_in_heap()' is called with number of words (not bytes) 2003-07-30 flw <flw@gurke> * /cvsroot/chicken/chicken/doc/manual.tex, /cvsroot/chicken/chicken/extras.scm, /cvsroot/chicken/chicken/optimizer.scm, /cvsroot/chicken/chicken/posix.scm, /cvsroot/chicken/chicken/runtime.c, /cvsroot/chicken/chicken/c-backend.scm, /cvsroot/chicken/chicken/chicken.h, /cvsroot/chicken/chicken/configure.in, /cvsroot/chicken/chicken/csc.in: - `csc' added `-s' option to linker, when linking with optimization (won't work when building shared object) - fixed countless typos in manual.tex [Thanks to Bruce Mitchener] - `csc' uses `-bundle' instead of `-shared' under Mac OS X - runtime.c: dload_2 prefixes dlsym'd name with "_" - posix.scm: under Mac OS X, `environ' is not used (and `current-environment' always returns '()) - removed `C_collectibles' and added `C_gc_protect()' and `C_gc_unprotect()' - fixed compiler bug that caused repeated explicit rest-argument list consing [Thanks to Sven Hartrumpf] - added `string-compare3[-ci]' - reduced C_STACK_RESERVE to 4096; the previous setting could overflow the stack-check on machines with a stack in very high memory 2003-07-25 flw <flw@gurke> * /cvsroot/chicken/chicken/build.scm, /cvsroot/chicken/chicken/chicken-setup.scm, /cvsroot/chicken/chicken/chicken.h, /cvsroot/chicken/chicken/compiler.scm, /cvsroot/chicken/chicken/csc.bat, /cvsroot/chicken/chicken/csc.in, /cvsroot/chicken/chicken/csi.scm, /cvsroot/chicken/chicken/doc/FAQ.html, /cvsroot/chicken/chicken/doc/README, /cvsroot/chicken/chicken/doc/README.CVS, /cvsroot/chicken/chicken/doc/manual.t2p, /cvsroot/chicken/chicken/doc/manual.tex, /cvsroot/chicken/chicken/eval.scm, /cvsroot/chicken/chicken/posix.scm, /cvsroot/chicken/chicken/runtime.c: - added `C_end_of_main' macro to chicken.h - `location' now accepts callback-names - bumped version to 1.15 - `csc' accepts '-windows' under Cygwin - chicken-setup.scm/eval.scm: ##sys#load-library-extension is exported (and used) - the STACKTRACE is printed directly (and not saved in a file) - `,d' in csi stops after 40 elements when printing sequences - chicken-setup.scm: fixed hardcoded ".so" - posix.scm: fixed some routines that weren't updated to the new I/O system 2003-07-17 flw <flw@gurke> * /cvsroot/chicken/chicken/doc/FAQ.html, /cvsroot/chicken/chicken/doc/README, /cvsroot/chicken/chicken/scheduler.scm: - scheduler.scm: fixed bug in `##sys#all-threads' - scheduler.scm: fixed invalid timeout computation in `##sys#fdset-select-timeout' [thanks to Peter Wang] 2003-07-15 flw <flw@gurke> * /cvsroot/chicken/chicken/csc.bat, /cvsroot/chicken/chicken/csi.1, /cvsroot/chicken/chicken/doc/FAQ.html, /cvsroot/chicken/chicken/doc/manual.t2p, /cvsroot/chicken/chicken/doc/manual.tex, /cvsroot/chicken/chicken/eval.scm, /cvsroot/chicken/chicken/library.scm, /cvsroot/chicken/chicken/posix.scm, /cvsroot/chicken/chicken/script-utils.scm: - library.scm: vector-resize - script-utils: for-each-line - uses newest autotools (libtool 1.5, autoconf 2.57, automake 1.7.6) - posix.scm: fixed bug in `process-execute' [Thanks to Peter Wang]
2003-09-09-Wl,-R${LIBDIR} is needed in "csi" script.itojun2-1/+15
XXX non-netbsd?
2003-08-27upgrade to 1.12.itojun5-23/+26
2003-06-14 flw <flw@ultra.callcc.org> * /cvsroot/chicken/chicken/batch-driver.scm, /cvsroot/chicken/chicken/build.scm, /cvsroot/chicken/chicken/chicken.h, /cvsroot/chicken/chicken/c-platform.scm, /cvsroot/chicken/chicken/csi.scm, /cvsroot/chicken/chicken/doc/manual.tex, /cvsroot/chicken/chicken/doc/README, /cvsroot/chicken/chicken/doc/README.CVS, /cvsroot/chicken/chicken/doc/README.txt, /cvsroot/chicken/chicken/extras.scm, /cvsroot/chicken/chicken/library.scm, /cvsroot/chicken/chicken/lolevel.scm, /cvsroot/chicken/chicken/Makefile.am, /cvsroot/chicken/chicken/posix.scm, /cvsroot/chicken/chicken/runtime.c: - extras.scm: the first argument to `read-string' is now optional - runtime.c: interning of empty string referenced uninitialized memory - posix.scm: I/O on ports returned by `process' is now fully nonblocking - posix.scm: `errno/wouldblock' - files loaded via the `-extend' compiler option are also searched in the current include-path - `##sys#call-with-direct-continuation' and `##sys#direct-return' (they might turn out useful) - lolevel.scm: `unbound-variable-value' - posix.scm: `file-read' didn't check the buffer argument early enough - extras.scm: `write-string' - csi doesn't use the lolevel unit anymore - `chicken-setup.c' was not up to date - added BOOTSTRAP_PATH to Makefile.am, this simplifies the invocation of make when bootstrapping the system from CVS sources [Thanks to Peter Keller] 2003-06-06 flw <flw@ultra.callcc.org> * /cvsroot/chicken/chicken/doc/manual.tex, /cvsroot/chicken/chicken/library.scm, /cvsroot/chicken/chicken/posix.scm, /cvsroot/chicken/chicken/runtime.c, /cvsroot/chicken/chicken/tcp.scm: - tcp.scm: tcp-listener-port - fixed bug in runtime.c that resulted in fopen() being called with invalid file-mode - tcp.scm: EWOULDBLOCK wasn't defined under Win32 with MSVC - the printer mixed up "input" and "output" when printing port objects - fixed bug in read-char handler of pipe-ports - fixed two unbound variable bugs in library.scm and posix.scm - commit updates ChangeLog at website and send message to mailing list. In other words: SMTP and FTP extensions are imminent ;-) 2003-06-02 flw <flw@ultra.callcc.org> * /cvsroot/chicken/chicken/compiler.scm, /cvsroot/chicken/chicken/csi.scm, /cvsroot/chicken/chicken/doc/FAQ.html, /cvsroot/chicken/chicken/doc/manual.tex, /cvsroot/chicken/chicken/doc/README, /cvsroot/chicken/chicken/doc/README.txt, /cvsroot/chicken/chicken/eval.scm, /cvsroot/chicken/chicken/extras.scm, /cvsroot/chicken/chicken/format.scm, /cvsroot/chicken/chicken/library.scm, /cvsroot/chicken/chicken/lolevel.scm, /cvsroot/chicken/chicken/posix.scm, /cvsroot/chicken/chicken/runtime.c, /cvsroot/chicken/chicken/scheduler.scm, /cvsroot/chicken/chicken/support.scm, /cvsroot/chicken/chicken/tcp.scm, /cvsroot/chicken/chicken/batch-driver.scm, /cvsroot/chicken/chicken/build.scm, /cvsroot/chicken/chicken/chicken.h: - fixed problem with scheduler.scm (C_msleep) under Windows - overhauled I/O subsystem - lolevel.scm: invalid-procedure-call-handler - declaration `safe-globals' - internal compiler for `##core#app' - eval/visit uses `##core#app' - debug-option `D' - (hopefully) settled all thread-safety issues in `format.scm' - nonblocking I/O for tcp-ports - made `##sys#errno' an int, instead of an integer (library.scm) - fixed bug in tcp.scm: partial writes to tcp-port didn't remove sent part - `##sys#thread-block-for-i/o!' for output (or mixed?) mode doesn't work properly (deactived, does simple polling) 2003-05-21 flw <flw@ultra.callcc.org> * /cvsroot/chicken/chicken/chicken-setup.scm, /cvsroot/chicken/chicken/doc/FAQ.html, /cvsroot/chicken/chicken/doc/manual.tex, /cvsroot/chicken/chicken/library.scm, /cvsroot/chicken/chicken/scheduler.scm: - scheduler.scm: timeout-values in nanoseconds where calculated incorrectly - chicken-setup.scm: -wrap doesn't create registry, if not existing - ##sys#special-read-syntax-table - updated FAQ a little 2003-05-19 flw <flw@ultra.callcc.org> * /cvsroot/chicken/chicken/chicken.h, /cvsroot/chicken/chicken/compiler.scm, /cvsroot/chicken/chicken/doc/manual.tex, /cvsroot/chicken/chicken/eval.scm, /cvsroot/chicken/chicken/highlevel-macros.scm, /cvsroot/chicken/chicken/moremacros.scm, /cvsroot/chicken/chicken/posix.scm, /cvsroot/chicken/chicken/runtime.c, /cvsroot/chicken/chicken/scheduler.scm: - `define-foreign-variable' isn't seen by `visit' anymore - `C_flonum()' advanced allocation pointer wrongly on 64-bit platforms - `parameterize' accepts arbitrary expressions in the parameter position of the binding-list - applied patches by Sven Hartrumpf that remove unneeded special casing for ICC - constants defined via `define-constant' are visible inside constant-expressions for that form - the scheduler doesn't waste CPU cycles when waiting for thread- or I/O-timeout, unless other threads are ready [Thanks to Chris Double] 2003-05-08 flw <flw@ultra.callcc.org> * /cvsroot/chicken/chicken/doc/manual.tex, /cvsroot/chicken/chicken/doc/README, /cvsroot/chicken/chicken/doc/README.txt, /cvsroot/chicken/chicken/support.scm, /cvsroot/chicken/chicken/build.scm, /cvsroot/chicken/chicken/chicken.h, /cvsroot/chicken/chicken/compiler.scm, /cvsroot/chicken/chicken/eval.scm, /cvsroot/chicken/chicken/highlevel-macros.scm, /cvsroot/chicken/chicken/moremacros.scm, /cvsroot/chicken/chicken/parameters.scm, /cvsroot/chicken/chicken/posix.scm, /cvsroot/chicken/chicken/runtime.c: - fixed bug in `process-execute', pointers to potentially gc-moved strings where retained [thanks to Joerg Wittenberger] - `define-constant' evaluates 2nd argument at compile time - fixed bug with mutable constants in `define-constant' forms - visiting handles `define-foreign-type' and `define-foreign-variable' - fixed compiler bug in support.scm: `estimate-foreign-result-size' allocated one word too little if flonum result has to be aligned - `##core#inline[_allocate]' expanded incorrectly with the hygienic macro system [Thanks to Panagiotis Vossos] - fixed 32-bit dependencies: C_FLONUM_TAG was wrong on 64-bit platforms; C_equalp() used `int' where a `C_word' was needed - 8-byte alignment was incorrectly handled for 64-bit platforms 2003-05-04 flw <flw@ultra.callcc.org> * /cvsroot/chicken/chicken/doc/manual.tex, /cvsroot/chicken/chicken/library.scm: - `output-port?' returned 0 on closed port [Thanks to Burton Samograd] * /cvsroot/chicken/chicken/chicken.h, /cvsroot/chicken/chicken/chicken-setup.scm, /cvsroot/chicken/chicken/compiler.scm, /cvsroot/chicken/chicken/csi.scm, /cvsroot/chicken/chicken/doc/manual.tex, /cvsroot/chicken/chicken/doc/README, /cvsroot/chicken/chicken/doc/README.txt, /cvsroot/chicken/chicken/eval.scm, /cvsroot/chicken/chicken/extras.scm, /cvsroot/chicken/chicken/format.scm, /cvsroot/chicken/chicken/highlevel-macros.scm, /cvsroot/chicken/chicken/library.scm, /cvsroot/chicken/chicken/moremacros.scm, /cvsroot/chicken/chicken/parameters.scm, /cvsroot/chicken/chicken/posix.scm, /cvsroot/chicken/chicken/runtime.c, /cvsroot/chicken/chicken/srfi-13.scm, /cvsroot/chicken/chicken/support.scm, /cvsroot/chicken/chicken/batch-driver.scm, /cvsroot/chicken/chicken/build.scm: - `substring' signals (exn bounds) - replaced several occurences of `substring' with `##sys#substring' - moved the description of `process' into the proper manual section - `process' should read non-blocking, now - buffer grows by doubling it's size in `read-line' - chicken-setup: defaults options are "-O2 -d0" - format is thread-safe - the transcript port wasn't properly recognized as a tty-port - vector-copy! signals (exn bounds) - several small optimizations in library.scm - non-exported globals where still exported, if ref'd before definition - non-blocking `process' seems to work - `csi -setup-help' and -uninstall - `string-null?' is expanded inline - visit handling constant- and inline-definitions - `define-constant' wasn't consistently handled in hygienic and non-hygienic mode - removed procedure-definition syntax for `define-constant' 2003-04-23 flw <flw@ultra.callcc.org> * /cvsroot/chicken/chicken/build.scm, /cvsroot/chicken/chicken/c-backend.scm, /cvsroot/chicken/chicken/chicken.h, /cvsroot/chicken/chicken/chicken-setup.scm, /cvsroot/chicken/chicken/compiler.scm, /cvsroot/chicken/chicken/configure.in, /cvsroot/chicken/chicken/doc/manual.tex, /cvsroot/chicken/chicken/doc/README, /cvsroot/chicken/chicken/doc/README.txt, /cvsroot/chicken/chicken/eval.scm, /cvsroot/chicken/chicken/extras.scm, /cvsroot/chicken/chicken/library.scm, /cvsroot/chicken/chicken/lolevel.scm, /cvsroot/chicken/chicken/posix.scm, /cvsroot/chicken/chicken/regex.scm, /cvsroot/chicken/chicken/runtime.c, /cvsroot/chicken/chicken/support.scm: - hidden globals where not properly checked for boundedness - the foreign return types `c-pointer' and `pointer' did not return `#f' on NULL results [thanks to Peter Wang] - `##sys#void' is handled better by `canonicalize-begin-body' (support.scm) - fixed space leaks in `regex.scm' - `read-line' accepts optional limit - `-setup' gives useful error-message on non-UNIX platforms - there where two conflicting versions of `provided?' - chicken-setup handles single-file case - some warning-options are passed to CFLAGS - fixed typo in posix.scm [Thanks to Joerg Wittenberger] 2003-04-19 flw <flw@ultra.callcc.org> * /cvsroot/chicken/chicken/highlevel-macros.scm, /cvsroot/chicken/chicken/runtime.c: - fixed a couple of 32-bit dependencies [Thanks to Panagiotis Vossos] - fixed bug in syntax-case version of condition-case * /cvsroot/chicken/chicken/psyntax-chicken.pp: removed psyntax-chicken.pp * /cvsroot/chicken/chicken/examples/ctclsh.scm, /cvsroot/chicken/chicken/doc/manual.tex, /cvsroot/chicken/chicken/doc/README.txt, /cvsroot/chicken/chicken/doc/README, /cvsroot/chicken/chicken/support.scm, /cvsroot/chicken/chicken/tcp.scm, /cvsroot/chicken/chicken/runtime.c, /cvsroot/chicken/chicken/srfi-25.scm, /cvsroot/chicken/chicken/csi.scm, /cvsroot/chicken/chicken/highlevel-macros.scm, /cvsroot/chicken/chicken/library.scm, /cvsroot/chicken/chicken/moremacros.scm, /cvsroot/chicken/chicken/optimizer.scm, /cvsroot/chicken/chicken/psyntax.scm, /cvsroot/chicken/chicken/batch-driver.scm, /cvsroot/chicken/chicken/build.scm, /cvsroot/chicken/chicken/c-backend.scm, /cvsroot/chicken/chicken/chicken.1, /cvsroot/chicken/chicken/chicken.scm, /cvsroot/chicken/chicken/compiler.scm, /cvsroot/chicken/chicken/c-platform.scm, /cvsroot/chicken/chicken/Makefile.am: - fixed bug in c-backend.scm: heap-limit settings [Thanks to Sven Hartrumpf] - fixed bug in runtime.c: handling of -:t... was bogus [Thanks to Sven] - the default output-file for `chicken' is now the original-filename (+ ".c") [Thanks to Panagiotis Vossos] - syntax-case uses `##sys#void' in expansions - removed `error-handler' - diversified exceptions a little - srfi-25: signals more sensible exn types - added `condition-case' 2003-04-08 flw <flw@ultra.callcc.org> * /cvsroot/chicken/chicken/compiler.scm, /cvsroot/chicken/chicken/doc/manual.tex, /cvsroot/chicken/chicken/eval.scm, /cvsroot/chicken/chicken/examples/prolog.scm, /cvsroot/chicken/chicken/examples/schelog-support.scm, /cvsroot/chicken/chicken/library.scm, /cvsroot/chicken/chicken/match-support.scm, /cvsroot/chicken/chicken/posix.scm, /cvsroot/chicken/chicken/regex.scm, /cvsroot/chicken/chicken/runtime.c, /cvsroot/chicken/chicken/scheduler.scm, /cvsroot/chicken/chicken/script-utils.scm, /cvsroot/chicken/chicken/srfi-13.scm, /cvsroot/chicken/chicken/srfi-14.scm, /cvsroot/chicken/chicken/srfi-18.scm, /cvsroot/chicken/chicken/srfi-1.scm, /cvsroot/chicken/chicken/srfi-37.scm, /cvsroot/chicken/chicken/srfi-4.scm, /cvsroot/chicken/chicken/syntax-case.scm, /cvsroot/chicken/chicken/tcp.scm: - eval.scm: `##sys#environment-is-mutable' isn't hidden anymore. - scheduler.scm: ##sys#fetch-and-clear. - simplified some code in tcp.scm. - `(build-platform)' returns 'intel for ICC. - removed `interrupts-disabled' declaration. 2003-04-03 flw <flw@ultra.callcc.org> * /cvsroot/chicken/chicken/configure.in, /cvsroot/chicken/chicken/doc/manual.tex, /cvsroot/chicken/chicken/runtime.c: - Changed calls to AC_INIT and AM_INIT_AUTOMAKE in configure.in to new syntax. - Recreated autotool files using newest versions. 2003-03-31 flw <flw@ultra.callcc.org> * /cvsroot/chicken/chicken/batch-driver.scm, /cvsroot/chicken/chicken/build.scm, /cvsroot/chicken/chicken/chicken.1, /cvsroot/chicken/chicken/chicken-setup.scm, /cvsroot/chicken/chicken/compiler.scm, /cvsroot/chicken/chicken/c-platform.scm, /cvsroot/chicken/chicken/csc.bat, /cvsroot/chicken/chicken/csc.in, /cvsroot/chicken/chicken/csi.scm, /cvsroot/chicken/chicken/doc/manual.tex, /cvsroot/chicken/chicken/doc/README, /cvsroot/chicken/chicken/doc/README.txt, /cvsroot/chicken/chicken/eval.scm, /cvsroot/chicken/chicken/highlevel-macros.scm, /cvsroot/chicken/chicken/library.scm, /cvsroot/chicken/chicken/moremacros.scm, /cvsroot/chicken/chicken/posix.scm, /cvsroot/chicken/chicken/support.scm: - Removed syntax checks from internal `##core#...' forms. - `require-at-runtime' setup-specification. - `csi -setup -init' did not install core extensions. - `seconds->string' (posix.scm) couldn't handle large (but valid) non-fixnum integers [Thanks to Anthony Carrico] - `visit' and `-visit' options to csi and chicken. - `(gc #t)' didn't return number of free bytes. - `pathname-directory-separator' was #\\ under Cygwin (is now #\/). - Removed fixnum->flonum coercion warning in reader. 2003-03-23 njbeckford <njbeckford@ultra.callcc.org> * /cvsroot/chicken/chicken/runtime.c: Got rid of buffer overflow in C_get_environment_variable. 2003-03-22 njbeckford <njbeckford@ultra.callcc.org> * /cvsroot/chicken/chicken/Makefile.am: Undid change that made both MORE_LIBS and MORE_STATIC_LIBS be the same thing. * /cvsroot/chicken/chicken/Makefile.am: Made both MORE_LIBS and MORE_STATIC_LIBS be the same thing. * /cvsroot/chicken/chicken/Makefile.am: -all-static replaced by -static. On Solaris, need libdl.so and libnsl.so since no libdl.a nor libnsl.a. * /cvsroot/chicken/chicken/Makefile.am: "make doc" and "make testsuites" now use CHICKEN=../chicken * /cvsroot/chicken/chicken/Makefile.am: Uses MORE_STATIC_LIBS instead of MORE_LIBS for lib[xxx_]chicken_la_LDFLAGS so that libtool does not add "-ldl" whenever something links with lib[xxx-]chicken.la. * /cvsroot/chicken/chicken/chicken-config.in, /cvsroot/chicken/chicken/configure.in, /cvsroot/chicken/chicken/csc.in, /cvsroot/chicken/chicken/Makefile.am, /cvsroot/chicken/chicken/runtime.c: configure.in: Made new variable SHLIBS which has -ldl or -ldld, which will only be used in non -all-static code. Makefile.am: Use SHLIBS to differentiate MORE_LIBS from MORE_STATIC_LIBS. runtime.c: Do not even try to use dl.h/dlfcn.h/dlopen/shlopen when in all-static mode. chicken-config.in, csc.in: Use MORE_STATIC_LIBS (%morestaticlibs%) in static mode.
2003-07-21COMMENT should start with a capital letter.martti1-2/+2
2003-07-17s/netbsd.org/NetBSD.org/grant1-2/+2
2003-06-02Use tech-pkg@ in favor of packages@ as MAINTAINER for orphaned packages.jschauma1-2/+2
Should anybody feel like they could be the maintainer for any of thewe packages, please adjust.
2003-05-21Update to version 1.0seb7-102/+239
Package changes: Put documentation in the canonical pkgsrc directories. Add test target support. Gmake is not needed anymore. Things changed in release 1.0: - Many bugfixes - Declaration specifier `compress-literals' and compiler-option `-compress-literals N' - Chicken now compiles on OpenBSD [Thanks to Steve Elkins] - `library' unit: (chicken-version) - A new version of the portable syntax-case macro system is now used, which provides `identifier-syntax', `fluid-let-syntax' and `datum->syntax-object', allows low-level macros (`define-macro') in combination with hygienic macros and supports the module system used in Chez Scheme (but does not handle separate compilation) - The syntax `(define-syntax (name var) ...)' is allowed - Chicken supports now SRFI-37 officially (A new library unit named `srfi-37' has been added) - The old module system has been removed. It was rather hackishly implemented and didn't integrate well with the highlevel macro system - The scheduler and the threading system have been massively overhauled and scale a little better - The pattern-matcher is now available in combination with the highlevel macro system, enter `(include "match")' or `(require-for-syntax 'match)' to make it available - SRFI-22 script interpreters `scheme-chicken' and `scheme-chicken-hygienic' have been added - Compiled `#!' scheme scripts with an invocation line of `csi -script' or `scheme-chicken'/`scheme-chicken-hygienic' automagically link with all libraries which would normally be available under the interpreter. - Type-checks of fixed size objects are slightly more efficient - Extension-libraries can now be stored alternatively in a directory given by the CHICKEN_REGISTRY environment variable or in `$HOME/.chicken-registry' - The new library unit `tcp' provides a PLTish socket interface, `tcp-accept' and I/O from socket ports do not block other running threads - The new compiler/interpreter option `-strict-letrec' enables a fully R5RS compliant expansion of `letrec' - Chicken should now pass all tests of Scott G. Millers `r5rs_pitfalls.scm' - Jonah Beckford ported SWIG (<http://www.swig.org>) to Chicken! Check out a preliminary version at <http://beckford.netfirms.com/hobbies/swig/> - On Windows (Cygwin, Mingw32 and MSVC), CHICKEN now supports shared libraries and dynamic loading. Many thanks to Jonah Beckford for his tremendous work! Things changed in release 0.1082: - Bugfixes. - Support for SRFI's 26 (cut) and 30 (block comments). - Peter Keller translated the manual into LaTeX. Pdf and html documentation is available. - Peter Keller has contributed a comprehensive testing framework (fully R5RS compliant). - Declaration specifiers: export compile-time-macros-only - Library unit `extras': hash-table-remove! ->string - Library unit `posix': sleep - Library unit `lolevel': pointer-offset pointer-u8-ref pointer-u8-set! pointer-s8-ref pointer-s8-set! pointer-u16-ref pointer-u16-set! pointer-s16-ref pointer-s16-set! pointer-u32-ref pointer-u32-set! pointer-s32-ref pointer-s32-set! pointer-f32-ref pointer-f32-set! pointer-f64-ref pointer-f64-set! - Dynamic loading is now supported on older HP-UX systems that provide `shl_load()' instead of `dlopen()' (Thanks to Tony Garnock-Jones) - Error messages have been (slightly) improved. - A system for simplified packaging, building and installation of extension-libraries (based on shared libraries) is now provided. - New data type `locatives' allow to create pointers into arbitrary sections of various kinds of Scheme data objects. - So called `locations' simplify passing pointers to local or global Scheme variables to foreign procedures. - FFI-generated code is a little bit more compact and efficient. - Chicken supports alternative keyword syntaxes (CL/DSSSL) via the compiler/interpreter option `-keyword-style' and the parameter `keyword-style' - `define-record-printer' now handles SRFI-9 record types. - The regex-libraries now allow the creation of precompiled regular expressions (new procedures `regexp' and `regexp?').
2003-05-06Drop trailing whitespace. Ok'ed by wiz.jmmv1-3/+3
2002-08-20make it work with non-netbsditojun2-7/+10