Commit graph

2871 commits

Author SHA1 Message Date
kristerw
0cb5223564 Include mk/pthread.buildlink3.mk so that the packages using this file
will find libpthread.
2004-11-21 21:27:35 +00:00
kristerw
bc74385e32 Include mk/pthread.buildlink3.mk so that linking with libguile works
on NetBSD 1.6 too.
2004-11-21 14:16:49 +00:00
wiz
a725781e15 Add missing file to PLIST. 2004-11-20 01:06:33 +00:00
adam
5d9bab12e0 Changes 2.1.9:
o   DLD can open the C library (2.1.6).
o   Fix bug in compilation of ##() expression where the expression
    evaluates to an integer (2.1.8).
o   Fix bug in #next: on sockets (2.1.6).
o   Fix crash when accessing an ill-formed namespace from Smalltalk code
    (2.1.8).
o   Fixes to the JIT compiler (2.1.8).
o   Improvements to Gtk+ bindings (2.1.9).
o   libltdl is no longer configured in a separate subdirectory (2.1.6).
o   Portability improvements (2.1.8).
o   Updated to Automake 1.8, Libtool 1.5 (CVS checkout on 2003-08-01),
    Autoconf 2.59a, snprintfv 1.1 (2.1.6).
o   Updates to Emacs mode (2.1.6).
2004-11-19 13:01:46 +00:00
adam
7cbb817b01 Changes 5.42.1:
* Removed beta designation.
* Daniel A. Steffen <steffen@ics.mq.edu.au> provided patch for
  MacOS to avoid panic-redefinition.

Changes 5.41.0:
* Simon Taylor <simon@unisolve.com.xau> provided fix for
  interact -o which was completely broken by 5.40.1.

Changes 5.40.1:
* Added scroll support to official tkterm.  Copied all fixes
  from/to term_expect to/from tkterm.
* Kiran Madabhushi <maskiran@hotmail.xcom> encountered interact
  diagnostics incorrectly pointing to expect_background.  Also,
  found multiple -o flags behaving unexpectedly.  Added diag.

* Kristoffer Eriksson <ske@pkmab.xse> noted typo in SIMPLE code
  in exp_inter.c.  However, this is extremely unlikely to affect
  any machines.

* Reinhard Max <max@suse.xcom> noted that "make test" failed when
  run in the background.  The log testcase was testing the
  send_tty command.  Added code in both Expect and in the test
  to handle this.
2004-11-18 16:47:19 +00:00
wiz
dce1dbb4a2 Update to 1.6.5. Greg Troxel and I did the same work here, so I'll commit
it before someone else does too :)

Changes since Guile 1.6.4 (changes in 1.6.5):

* Changes to the distribution

** Bugs have been fixed that prevented the (re)generation of psyntax.pp.

** SRFI-31 has been added (special form `rec' for recursive evaluation)

(use-modules (srfi srfi-31)) will now provide support for SRFI-31.
See the Guile info pages for more documentation.

** SRFI-39 has been added (parameter objects)

** Guile is now compiled with -fno-strict-aliasing when gcc is detected.

** The --enable-htmldoc option has been removed from 'configure'.

Support for translating the documentation into HTML is now always
provided.  Use 'make html'.

* Changes to the stand-alone interpreter

** GC bug fixed.

The use of scm_must_realloc() for memory which is scanned by GC, could
trigger a GC scan of a free()d block of memory. This is now fixed.

* Changes to Scheme functions and syntax

** array-map! and array-map-in-order! now require at least one source array.

Previously a call without any source arrays like (array-map! array
proc) would cause a segfault.  Now such calls are properly rejected.

** srfi-4 has been overhauled

Bugs have been fixed, and performance may be improved in certain
situations.  Among other things, large 64-bit values should print
correctly now.

** gethost no longer causes an exception when trying to throw an exception

** call-with-output-string doesn't segv on closed port

Previously call-with-output-string would give a segmentation fault if
the string port was closed by the called function.  An exception is
raised now.

** (ice-9 popen) duplicate pipe fd fix

open-pipe, open-input-pipe and open-output-pipe left an extra copy of
their pipe file descriptor in the child, which was normally harmless,
but it can prevent the parent seeing eof or a broken pipe immediately                               and has now been fixed.

** source-properties and set-source-properties! fix

Properties set with set-source-properties! can now be read back
correctly with source-properties.

** SRFI-1 delete equality argument order fixed.

In the srfi-1 module delete and delete!, the order of the arguments to
the "=" procedure now matches the SRFI-1 specification.

** SRFI-19 date-week-number fix

date-week-number now correctly respects the requested day of week
starting the week.

* Changes to the C interface
2004-11-18 12:30:49 +00:00
wiz
d61fb965e0 Add commented out lines for php and php5. 2004-11-18 09:15:15 +00:00
jlam
55ba984801 Move selection of the default perl58 (whether it is threaded or not) into
bsd.pkg.mk.  lang/perl58 now always builds perl58, while lang/perl58-thread
builds perl58-thread (POLS).  Fixes PR pkg/28343.
2004-11-17 22:55:14 +00:00
sketch
8d6b06def1 This package relies heavily on gcc, and has a tendancy to infinite loop when
attempting to build with a different compiler.  Mark as ONLY_FOR_COMPILER.
2004-11-17 17:20:13 +00:00
jlam
1f652193ae Migrate OS/architecture hacks for correct compilation to a separate
hacks.mk file.
2004-11-16 22:44:51 +00:00
tron
2bf59febe3 Properly define "DISTINFO" when building a bundled PHP extension. 2004-11-16 15:33:12 +00:00
jlam
b67b0725c4 Rework the Berkeley DB detection in buildlink3:
* Add a db1.builtin.mk file that detects whether DB-1.85 functionality
    exists in the base system, and remove the distinction between
    "native" and the other Berkeley DB packages -- we now refer to
    db[1234].  This paves the way for any future databases/db1 package.

  * USE_DB185 shouldn't need to be set by any packages -- its correct
    value is now automatically determined by bdb.buildlink3.mk depending
    on whether we explicitly request db1 or not.  By default, if you
    include bdb.buildlink3.mk, you want DB-1.85 functionality and
    USE_DB185 defaults to "yes", but if you explicitly remove db1 from
    the list of acceptable DBs, then USE_DB185 defaults to "no".

  * Set BDB_LIBS to the library options needed to link against the DB
    library when bdb.buildlink3.mk is included.

  * We only add the DB library to the linker command automatically if
    we want DB-1.85 functionality; otherwise assume that the package
    configure process can figure out how to probe for the correct
    headers and libraries.

Edit package Makefiles to nuke redundant settings of USE_DB185.
2004-11-15 17:54:49 +00:00
shannonjr
0cbac7c9e1 Add missing '-print' to FIND 2004-11-15 11:38:42 +00:00
jlam
4bed44310d Narrow down the scope of the powerpc-codegen hack to only NetBSD/powerpc
as there aren't reports from other OSes yet (it's likely okay using
Darwin).
2004-11-14 08:00:14 +00:00
jlam
201a688e30 Remove optimisation flags from GCC command line when building on powerpc
to avoid a codegen bug:

	http://mail-index.netbsd.org/port-macppc/2004/10/18/0001.html
2004-11-14 07:50:58 +00:00
jlam
2ab1ac2122 Separate out hacks from package Makefile into hacks.mk. 2004-11-14 07:48:30 +00:00
jlam
43ac8c39e1 Replace USE_GCC_SHLIB with "USE_LANGUAGE=c c++" (the latter implies the
former) for applications that are known to require C++.
2004-11-13 22:04:52 +00:00
jlam
5e5ac5cef9 USE_BUILDLINK3 is a yes/no variable. 2004-11-13 21:28:27 +00:00
jlam
25692439cd Whitespace nit. 2004-11-12 23:30:07 +00:00
jlam
0786cc66d4 Default to building perl-thread on platforms with native pthreads.
Perl-5.8.x and up are supposed to properly support pthreads if they're
available.  The GNU pth support isn't quite there yet, so we can't build
with thread support on all platforms.
2004-11-12 23:29:34 +00:00
jlam
1f0bab159b When building perl-thread, ensure that PTHREAD_{CFLAGS,LDFLAGS,LIBS}
are properly recorded in Config.pm.  These values will then be used
when building perl modules using ExtUtils::MakeMaker.  Bump the
PKGREVISION.
2004-11-12 23:27:46 +00:00
shannonjr
67974c9371 If Fortran frontend is being built, dependency on gmp is added. This
follows the stated prerequisites in the gcc installation documentation.
2004-11-12 12:31:28 +00:00
jlam
af591191d2 Remove redundant uses of PTHREAD_{CFLAGS,LDFLAGS} now that they're added
automatically by pthread.buildlink3.mk.  Also, factor out the pthread
library out of PTHREAD_LDFLAGS into a standalone variable PTHREAD_LIBS
and use it in packages where necessary (usually the ones that don't
have a GNU configure script).
2004-11-12 06:39:19 +00:00
jlam
7c16e9acf0 Nuke the code that rebuilt the perl binary as a statically-linked
executable.  Until someone produces benchmarks that show that this
actually makes a difference, this is just added complexity with no
measurable benefit.  Bump the PKGREVISION.
2004-11-10 20:16:57 +00:00
wiz
13fd81e044 Add smarteiffel, and remove smalleiffel. 2004-11-10 16:21:06 +00:00
wiz
383c13a997 Import smarteiffel-2.0 from pkgsrc-wip, packaged by Lars Nordlund.
It is intended to be a complete, though small and very fast, free Eiffel
compiler. It is available for a very wide range of platforms: GNU/Linux,
GNU/Hurd, FreeBSD, BSD/OS, NetBSD, OpenBSD, HP-UX, IRIX, XENIX, Solaris,
DOS, OS2, WINDOWS NT/95/2000, Macintosh, NeXT, Amiga, AmigaDE/Elate, BeOS,
QNX, VMS, etc. Actually, SmartEiffel should run on any platform for which
an ANSI C compiler exists.

The current distribution includes an Eiffel to C compiler, an Eiffel to
Java bytecode compiler, a debugger, a documentation tool, a pretty printer
and various other tools.

This is the successor of lang/smalleiffel.
2004-11-10 16:20:15 +00:00
taca
41357204e0 Fix potential DoS problem in CGI module from Ruby's CVS repository.
(noted by CAN-2004-0983)

Bump package revision.
2004-11-09 14:11:33 +00:00
shannonjr
1b75db3f00 Update to release 3.4.3. This is a bugfix release. 2004-11-08 16:46:27 +00:00
shannonjr
a82e023ca3 Update to 3.4.3. This release is a bug-fix release, containing fixes for
regressions in GCC relative to previous releases of GCC.
2004-11-08 16:44:34 +00:00
adam
b024fc8bfd Changes 1.2.5:
* Bug-fixes and improvements
2004-11-08 11:56:10 +00:00
wiz
6565c87ba9 Update to 5.8.5:
Incompatible Changes

There are no changes incompatible with 5.8.4.

Core Enhancements

Perl's regular expression engine now contains support for matching on the intersection of two Unicode character classes. You can also now refer to user-defined character classes from within other user defined character classes.
Modules and Pragmata

    * Carp improved to work nicely with Safe. Carp's message reporting should now be anomaly free - it will always print out line number information.
    * CGI upgraded to version 3.05
    * charnames now avoids clobbering $_
    * Digest upgraded to version 1.08
    * Encode upgraded to version 2.01
    * FileCache upgraded to version 1.04
    * libnet upgraded to version 1.19
    * Pod::Parser upgraded to version 1.28
    * Pod::Perldoc upgraded to version 3.13
    * Pod::LaTeX upgraded to version 0.57
    * Safe now works properly with Carp
    * Scalar-List-Utils upgraded to version 1.14
    * Shell's documentation has been re-written, and its historical partial auto-quoting of command arguments can now be disabled.
    * Test upgraded to version 1.25
    * Test::Harness upgraded to version 2.42
    * Time::Local upgraded to version 1.10
    * Unicode::Collate upgraded to version 0.40
    * Unicode::Normalize upgraded to version 0.30

Utility Changes

Perl's debugger

The debugger can now emulate stepping backwards, by restarting and rerunning all bar the last command from a saved command history.

h2ph

h2ph is now able to understand a very limited set of C inline functions -- basically, the inline functions that look like CPP macros. This has been introduced to deal with some of the headers of the newest versions of the glibc. The standard warning still applies; to quote h2ph's documentation, you may need to dicker with the files produced.
Installation and Configuration Improvements

Perl 5.8.5 should build cleanly from source on LynxOS.

Selected Bug Fixes

    * The in-place sort optimisation introduced in 5.8.4 had a bug. For example, in code such as

    @a = sort ($b, @a)

      the result would omit the value $b. This is now fixed.
    * The optimisation for unnecessary assignments introduced in 5.8.4 could give spurious warnings. This has been fixed.
    * Perl should now correctly detect and read BOM-marked and (BOMless) UTF-16 scripts of either endianness.
    * Creating a new thread when weak references exist was buggy, and would often cause warnings at interpreter destruction time. The known bug is now fixed.
    * Several obscure bugs involving manipulating Unicode strings with substr have been fixed.
    * Previously if Perl's file globbing function encountered a directory that it did not have permission to open it would return immediately, leading to unexpected truncation of the list of results. This has been fixed, to be consistent with Unix shells' globbing behaviour.
    * Thread creation time could vary wildly between identical runs. This was caused by a poor hashing algorithm in the thread cloning routines, which has now been fixed.
    * The internals of the ithreads implementation were not checking if OS-level thread creation had failed. threads->create() now returns undef in if thead creation fails instead of crashing perl.

New or Changed Diagnostics

    * Perl -V has several improvements
          o correctly outputs local patch names that contain embedded code snippets or other characters that used to confuse it.
          o arguments to -V that look like regexps will give multiple lines of output.
          o a trailing colon suppresses the linefeed and ';' terminator, allowing embedding of queries into shell commands.
          o a leading colon removes the 'name=' part of the response, allowing mapping to any name.
    * When perl fails to find the specified script, it now outputs a second line suggesting that the user use the -S flag:

    $ perl5.8.5 missing.pl
    Can't open perl script "missing.pl": No such file or directory.
    Use -S to search $PATH for it.

Changed Internals

The Unicode character class files used by the regular expression engine are now built at build time from the supplied Unicode consortium data files, instead of being shipped prebuilt. This makes the compressed Perl source tarball about 200K smaller. A side effect is that the layout of files inside lib/unicore has changed.

pkgsrc: fails the same test that 5.8.4 fails (sigaction).
2004-11-07 16:20:11 +00:00
jdolecek
030aad031a merge extension module handling for PHP4 and PHP5 into lang/php/ext.mk,
g/c no longer needed Makefile.module

add support for building extensions off PECL; version for PECL packages
is built as ${PHP_BASE_VERS}.${PECL_VERSION}, i.e. PECL pkg version 1.0
would become php-pkg-4.3.9.1.0 or php-pkg-5.0.2.1.0 respectively
2004-11-06 18:24:40 +00:00
jdolecek
b1a4119af0 use ${PKG_PHP} instead of PHP${PKG_PHP_VERSION} 2004-11-05 21:50:11 +00:00
jdolecek
cc35f4ca5e share MESSAGE.module and PLIST.module between php4 and php5 packages, moving
them to lang/php/
2004-11-05 21:40:25 +00:00
shannonjr
ba3865dc7a Re: pkg/27775 programs compiled with gcc34 don't find gcc34's libraries
Added patch patterned after the one in lang/gcc3 to set rpath for libgcc
2004-11-05 12:40:23 +00:00
jklos
853271db7d Removed an extra line accidentally left while debugging (oops). 2004-11-04 22:51:58 +00:00
jdolecek
f7d2170d80 export the information about selected version via PKG_PHP_VERSION
and the base name of program as PKG_PHP
2004-11-04 18:40:39 +00:00
jdolecek
3737967b46 put items only pertinent to interpreter build to new file Makefile.php
(similar to PHP4 package), and also update to use PKG_OPTIONS

this fixes environment pollution for extension modules, particularily
CONFIGURE_ARGS
2004-11-04 18:38:55 +00:00
minskim
ab76f00092 Make this package build with tcl-8.4.7 and tk-8.4.7. 2004-11-04 01:01:35 +00:00
minskim
1b12e4f863 Make this package build with tcl>=8.4.7. 2004-11-04 00:35:54 +00:00
jdolecek
b30035be67 s/PHP5_VERSION/PHP_BASE_VERS/, to match php4 package 2004-11-02 21:03:03 +00:00
jdolecek
15d24c4687 ${PREFIX}/lib/php/Net might or might not exist, so remove it using
@unuexec ${RM} -rf
2004-11-01 21:57:25 +00:00
jdolecek
da05b47ca8 'data' items must be handled same way as 'test' and 'doc' - they are installed
into BASE/data/<pkgname>/*
2004-11-01 20:31:13 +00:00
jdolecek
4f4ebf540b Deal with backslashes in the file names, translate them to forward
slashes. This is necessary e.g. for pear-DIME, which uses backslashes.
2004-11-01 20:17:20 +00:00
jdolecek
7b5228a60f use shared pear package support framework for both php4 & php5; based on
the former php4 version
2004-11-01 19:55:57 +00:00
jdolecek
b7fe8d73e2 default to full dependance on php for anything including this buildlink 2004-11-01 19:52:58 +00:00
jdolecek
399a4e61d9 Make sure to install the _CLI_ version to ${PREFIX}/bin/php, and _CGI_
to ${PREFIX}/libexec/cgi-bin; install also couple more files same way
as PHP4

Of particular note is that CLI ignores setting of register_argc_argv
(treats as if it would be On), so it's no longer necessary to do anything
special for Pear packages to work. g/c MESSAGE warning about the Pear issue.
2004-11-01 19:46:18 +00:00
jdolecek
e0e2dcc2ef add patches necessary to build php-imap with PHP5 2004-10-31 21:14:54 +00:00
jdolecek
6d7b6f5161 add a USE_PHP_EXT_PATCHES, which makes it possible to have and apply only
extension-specific patches from php5/patches/
2004-10-31 21:14:23 +00:00
jdolecek
52c1980501 new PHP extension module framework, which makes it possible to build
individual PHP extension packages with either PHP 4.x or PHP 5.x

convert existing php4-* packages to this framework and import as php-*
2004-10-31 19:30:29 +00:00