summaryrefslogtreecommitdiff
path: root/lang
AgeCommit message (Collapse)AuthorFilesLines
2004-07-06Pullup ticket 45 to the pkgsrc-2004Q2 branch, requested by Grant Beattie.agc1-1/+8
Module Name: pkgsrc Committed By: grant Date: Sat Jul 3 12:15:22 UTC 2004 Modified Files: pkgsrc/lang/gcc3: Makefile.common Log Message: always build gcc3 sub-packages with gcc3-c.
2004-07-06Pullup ticket 43 to the pkgsrc-2004Q2 branch, requested by Gavan Fantom.agc1-2/+3
Module Name: pkgsrc Committed By: gavan Date: Tue Jun 29 13:17:42 UTC 2004 Modified Files: pkgsrc/lang/gcc: buildlink3.mk Log Message: gcc installs in a subdirectory of ${BUILDLINK_PREFIX.gcc}, so make sure that appropriate subdirectory is passed in BUILDLINK_LIBDIRS.gcc. Fixes PR 26109. OK'd by grant. and Module Name: pkgsrc Committed By: gavan Date: Tue Jun 29 13:24:31 UTC 2004 Modified Files: pkgsrc/lang/gcc: buildlink3.mk Log Message: I can't count.
2004-06-18Its a meta-package so don't try to build or install anything.markd2-1/+10
2004-06-17Fix PERL5_ARCHLIB in lang/perl58-thread, which contains the suffixxtraeme1-1/+3
"-thread-multi", with this change games/frozen-bubble finally works, yay!. Bump PKGREVISION.
2004-06-17this can only be built with gcc:grant1-1/+3
"f/proj.h", line 35: #error: "You have to use gcc 2.x to build g77."
2004-06-17regenerate patch with pkgdiff so it applies cleanly withgrant2-7/+11
devel/patch.
2004-06-16Name platform-dependent directory plat-${LOWER_OPSYS} instead ofminskim2-16/+18
plat-${LOWER_OPSYS}1. It makes this package build on platforms where the major version is not 1. Bump PKGREIVISION.
2004-06-15Reverse previous commit (disabling thread-safety), which was poorly thoughjwise2-11/+7
through, unacceptably breaks threaded apps, and was made without consulting the package's maintainer. To quote my mail to packages@: I am reversing this change. With this change, tcl is _not_ usable in threaded apps, while without this change, tcl is perfectly usable in non-threaded apps. The fix for a package which is incorrectly written is not to break the package it depends on, but do your job correctly when writing the package. With buildlink3, this is mind-numbingly easy to do. That you neither contacted the maintainer of this package, nor did the buildlink and dependent package changes which your change requires shows that you have not really thought this through. So, as I said, I am reversing this change. Fix your own package, don't break others.
2004-06-15Don't --enable-threads for now. If we do this, all potential users ofdrochner2-7/+11
libtcl.so/libtk.so (whether linking it in or dlopen() it) must be linked against libpthread. This is something we can't guarantee. Fixes bulk build error in py-imagingtk and numerous runtime problems.
2004-06-15before the SIGINT fix, the PKGREVISION was set to 1 ingrant3-6/+4
python23{,-pth}/Makefile. it was then "bumped" to 1 in Makefile.common. really bump it to 2 and leave it in Makefile.common (hi luke!)
2004-06-15When sugggesting the URL from which to download make the first choice easierabs2-6/+6
to cut and paste: ${DOWNLOAD} or ${ARCHIVE} rather than ${DOWNLOAD} or ${ARCHIVE}
2004-06-14ake sure the build finds all relevant include files.kristerw3-9/+16
2004-06-14* Add patches to ensure that signal handlers consistently don't set SA_RESTARTlukem9-3/+168
(restartable system calls). (These patches have been submitted back to the python community.). Fixes the bug in NetBSD PR [pkg/24797] that I submitted. * Highlight in the DESCR files what the thread support is for that package. * Bump PKGREVISION.
2004-06-12Add quotes around word "install" in the setup command.darcy1-2/+2
Note that this cannot be changed to ${INSTALL} because it is not the install command but rather an argument to setup.py. While adding the quotes makes no difference to the use of the file, it does keep pkglint quiet. This is even more important because this file is included by many other packages and causes warnings when trying to check new Python extensions.
2004-06-12set ${MAKE_ENV} in the environment before calling ${MAKE}.grant1-2/+2
2004-06-12- don't hardcode CC=gccgrant3-6/+29
- don't hardcode RANLIB=ranlib - don't pass gcc specific -W flags - needs -ldl on Solaris
2004-06-10NetBSD 2.0 changes sys.platform to netbsd2 -- catch up with thisrecht8-10/+94
patch by drochner@ in private mail bump PKGREVISION to 1
2004-06-09make this compile with perl58-thread by excluding the _r functions forchristos2-6/+37
protoent and servent. Also there is a stray setrgid there which looks correct to me.
2004-06-09PR pkg/25428: Georg Schwarz, remove an extra '\' in front of ${TRUE},xtraeme1-2/+2
to fix the problems seen in the PLIST files.
2004-06-08Update Sun's JDK version 1.3 to latest release 1.3.1_12, making thisjschauma4-15/+15
sun-jre13-1.0.12 and sun-jdk13-1.0.12 respectively. Patches provided by Hauke Fath in PR pkg/25870 and PR pkg/25871. This update done during the freeze as Sun removes the older distfiles when they release a new version. Changes since latest version, according to http://java.sun.com/j2se/1.3/ReleaseNotes.html: - stack yellow zone not re-enabled after a StackOverflowError - Gregorian calendar gives a java.lang.Illegal ArgumentException only on 12-31-00 - [server] stack yellow zone not re-enabled after a StackOverflowError - compilation results in stack overflow while unrolling loop - rmic uses AWT ?! - -Xcheck:jni uses oop directly in _thread_in_native state - Loop related Hotspot crash - internal Error occurs during offet conversion of byte code in rewrite/relocate - [1.3.1_09]JVM crashes when big number is specified in fillRect() - Japanese characters not converting correctly from Codepage 930 to Codepage 943 - JVM crash with error "Fatal: null exception in compiled code" - Client blocks on getInputStream even after server completes its response - Error ID: e:\ws\1.3.1\hotspot\src\share \vm\ci\ciInstanceKlass.cpp, 121 - 5 JCK tests failing with -Xcheck:jni flag
2004-06-08Add USE_INET6 to BUILD_DEFS as these packages use it. Part of PR#25743 fromcjep1-1/+3
Georg Schwarz.
2004-06-06Add a PYTHON_VERSIONS_INCOMPATIBLE, an additive variable that can be settv1-4/+8
by package Makefiles as well as buildlink3s to prevent usage of particular versions of Python -- even if they appear in PYTHON_VERSIONS_ACCEPTED. (And make Darwin exclusion use this variable instead, so that it effectively overrides any pkg's definition of _ACCEPTED.)
2004-06-06Revert to smlnj-110.42, as 110.45 is troublesome. While doing so, keep itsnj5-245/+248
using buildlink3, fetchable, and buildable with gcc3. Requested by the package's maintainer.
2004-06-05USE_BUILDLINK3 must be set to [Yy][Ee][Ss].xtraeme1-2/+2
2004-06-05Simplify BUILDLINK_JAVA_PREFIX.<jvm>.xtraeme4-28/+16
2004-06-04Allow this to build and install on Linux.jschauma4-4/+59
While here, be explicit as to why we can not build and install the package in separate steps instead of silently setting NO_BUILD.
2004-06-04Add and enable java-wrapper.jmmv1-1/+2
2004-06-04Initial import of java-wrapper, version 1.0:jmmv6-0/+257
java-wrapper is a small wrapper that overrides the most common Java programs. It executes the right Java implementation based on user's preference.
2004-06-03Removing gcc-3.4 and gccAda-3.4 on instructions from Lubomirshannonjr1-3/+1
Sedlacik <salo@xtrmntr.org>
2004-06-03Removing package on instructions from Lubomir Sedlacik <salo@xtrmntr.org>shannonjr66-13023/+0
2004-06-03Add jdk14 (and in some cases jdk13)abs1-2/+2
2004-06-02Regen.minoura1-1/+3
2004-06-02Fix broken info/dir entries.minoura1-0/+15
2004-06-02NetBSD-2.0 get*by*_r functions are for internal use.minoura1-0/+6863
2004-06-02catch up with the Python 2.3.4 updaterecht1-4/+4
2004-06-02Update to 2.3.4recht15-211/+43
This is a bug-fix release for Python 2.3 that fixes a number of bugs, including a couple of weakref bugs and a bug in pickle version 2. There are also a number of fixes to the standard library, and some build fixes - see the release notes ( http://www.python.org/2.3.4/NEWS.html ) for details.
2004-06-02upgrade to 1.51. tons of changes (changelog has 500+ lines from previous)itojun6-153/+56
2004-06-01Remove obsolete package, per discussion on tech-pkg.kristerw5-286/+1
2004-06-01New package: gcc-3.4 revision 3.4.0shannonjr1-1/+2
It conflicts with no other package.
2004-06-01gcc-3.4 This is the gcc 3.4 compiler revision 3.4.0shannonjr34-0/+8537
This package conflicts with no other package.
2004-06-01Added new SUBDIR for gccAda-3.4. The package gccAda-3.4 is new and does notshannonjr1-1/+2
conflict with any other package.
2004-06-01gccAda-3.4.0 This is the gcc 3.4 Ada compilershannonjr32-0/+4486
This package conflicts with no other package.
2004-06-01Fix the install by using libfoo.la not libfoo.so when linking expect.skrll2-20/+21
2004-05-31Do not explicitly force use of lang/egcs for SunOS; the buildlinkkristerw1-8/+1
infrastructure handles compiler issues aoutomagically.
2004-05-29Update ghc to 6.2.1.kristerw24-1416/+628
There are too many changes compared to version 5.04.3 to list here... The changes are described in: http://www.haskell.org/ghc/docs/6.0.1/html/users_guide/release-6-0.html http://www.haskell.org/ghc/docs/6.2.1/html/users_guide/release-6-2.html
2004-05-29Update to 0.6.6.xtraeme3-6/+8
Changes: 0.6.6 (29 May 2004) System.Windows.Forms & System.Drawing: * HelpProvider, TabPageCollection (Russell Stuart). * Button.PerformClick should only work when button is enabled and visible (Jens Kuehner). * Allow multiple texture brushes to use the same image (Gopal V). * Generate image masks from alpha information (Gopal V). * Null reference exception in MessageBox (Gopal V). * UpDown controls (Klaus Treichel). * Ignore KeyPress events in TextBox that are already handled (Gopal V). * Process application KeyPress's before local (Heiko Weiss). * Fixes to MainMenu, SystemIcons, CheckListBox (Gopal V). * Bug in empty TreeView's (leppie). * Performance improvements to MainMenu, Control, ContextMenu (Richard B). * Double-click bug in TextBox (David Logan). * Deserialization of images (Gopal V). * Double buffering of TabControl (Thong Nguyen). * Fixes to ScrollableControl (Gopal V). * ColumnHeader, ListBindingConverter, ImageIndexConverter (Klaus Treichel). Xsharp: * Properly fall back to DISPLAY when displayName null (Ilyak Kasnacheev). * Improve ICE and DCOP to the point of being useful (Ilyak Kasnacheev). * Recognize transparent "ParentRelative" backgrounds (Rhys Weatherley). * Detect MDI top-level windows properly (David Logan, Gopal V). System.Xml: * Fix parsing of empty elements (Richard Baumann). * Various fixes for ml-pnet (Klaus Treichel, Gopal V). * Fixes to element list enumeration (Gopal V). * Attribute handling in XmlDocument (Richard Baumann). * Whitespace and namespace handling (Richard Baumann). * Proper name table usage in NameCache (Richard Baumann). * Lots of small fixes and TODO's (Richard Baumann). * Implement XmlSerialization classes (Richard Baumann). * Fixes for compatibility with ml-pnet (Klaus Treichel). * XmlDocument.Save (Andres March). * Change default namespace URL to expected value (Gopal V). * Processing instructions (Richard Baumann). Serialization: * Binary serialization for decimal, array, string, null (Andre Seidelt). * Implement binary de-serialization (Andre Seidelt). * Fix incompatibilities between systems (Andre Seidelt). * Serialization of keys and array elements (Andre Seidelt). * Handle ISerializable types properly (Andre Seidelt). JScript: * Array accesses in JScript (Carl-Adam Brengesjo). * Argument passing fixes (Carl-Adam Brengesjo). * Parse problems with ++ and -- (Gopal V). * --help and --version for jsrun command (Carl-Adam Brengesjo). * Use ScriptStream for output where required (Carl-Adam Brengesjo). Networking: * Sign extension bug in IPv4 addresses (Russell Stuart). * TcpClient fix (Gopal V). * Stub out cookie and certificate handling in HTTP classes (Gopal V). * SSL tunnelling for HTTP proxies (Gopal V). * Fix parsing of IPv6 hex addresses (Gopal V). Threading: * Internalcall fixes and tests for pnet threading changes (Thong Nguyen). * Rewrote the Threading.Timer class (Russell Stuart). * Asynchonrous delegates (Thong Nguyen). * Minor typo that prevented LocalDataStoreSlot from working (Gopal V). Other: * Improvements to "csupport" for pnetC (Rhys Weatherley). * Bug in TimeSpan (Gopal V). * Fix stream length and buffering in StreamReader/XmlStreamReader (Gopal V). * Hex number parsing (Russell Stuart). * Fixes to file routines to make them more ECMA compliant (Russell Stuart). * Interfaces should be assignable to System.Object (Russell Stuart). * Fixes to Hashtable for removed entries (Russell Stuart). * Partial names in Assembly.LoadFrom (Gopal V). * CodeCompiler/ShellExecute bug with redirected stderr (Gopal V). * Only use response files in CodeCompile with long cmdlines (Gopal V). * Small patch to Security Element (Carl-Adam Brengesjo). * Change "test -e" to "test -f" for Solaris compat (Sebastien BOCQ). * Patches to generic classes (Richard Baumann). * Test cases for System.Reflection.Emit (Jonas Printzen). * ClrConstructor.InvokeOnEmpty for post-allocation construction (Gopal V). * Bugs in "machine.default" file (Gopal V). * "default1.1" profile to build 1.1 and install as default (Rhys W). * Parse fixes to System.Configuration handlers (Gopal V). * Use non-null evidence in AppDomain.CreateInstance (Gopal V). * Handle "file://" URL's in Assembly.LoadFrom (Gopal V).
2004-05-29Update to 0.6.6.xtraeme3-7/+59
Changes: 0.6.6 (29 May 2004) Runtime engine: * GetManifestResourceNames internalcall (Russell Stuart). * Add the --trace option to ilrun (Gopal V). * Fix some I4/I/M/T cases in the verifier (Rhys Weatherley, Gopal V). * Fix to Directory.GetFiles internalcall (Russell Stuart). * Many fixes and speedups to the monitor implementation (Thong Nguyen). * Remap some gtk# dll references (Ilyak Kasnacheev). * Automatically load assemblies during "GetType" (Gopal V). * Handling for interruptes and aborts (Thong Nguyen). * Verification of indirect method calls (Gopal V). * Resolve classes properly before layout (Gopal V). * Support for Interlocked* functions (Thong Nguyen). * Looser association of real threads with engine threads, to make it easier to move to app domains in the future (Thong Nguyen). * Asynchronous delegates (Thong Nguyen). * Better shutdown logic for multi-threaded programs (Thong Nguyen). * ILExecThreadBoxNoValue (Thong Nguyen). * Dynamic invocation of methods with out/ref parameters (Thong Nguyen). * Include inherited interfaces in return from "GetInterfaces" (Gopal V). * Entry points must be in .exe's, not .dll's (Gopal V). * Problems in OutputExceptionTable with nested try/catch (Rhys W). * Fixes to make ilrun compile with gcc 3.4.0 (Norbert Bellow). * Implement Thread.Abort (Thong Nguyen). * Use interlocked increments for profile counts (Thong Nguyen). C# Compiler: * Stack underflow problem in codegen for "switch" (Rhys Weatherley). * Problem with 8-bit characters in pre-processor lines (Rhys Weatherley). * "/recurse" option for compiler compat mode (Gopal V). * Fix semantic analysis for identifers and member accesses (Gopal V). * Resolve aliases for fully qualified namespaces (Gopal V). * "goto case" should emit a leave inside a "try" (Russell Stuart). * Bug with ';' in #endregion directives (Russell Stuart). * Handle "protected internal" across assemblies (Richard Baumann). * Disambiguate static members and types with the same name (Gopal V). C Compiler: * Add dependency options to the pre-processor (-M, -MD, etc) (Rhys W). * Fixes for bit field accesses (Rhys Weatherley). * Complex structure initializers (Rhys Weatherley). * Array access on managed arrays (Gopal V). Linker: * Strong alias linking for vararg methods (Rhys Weatherley). Csant: * Comma-separated lists of target dependencies (Russell Stuart). * Directory deletion and copying (Russell Stuart). Platform Support: * Win32-specific filename expansion (Rhys Weatherley). * Disable zlib under mingw32 because of dependency issues (Rhys W). * Fixes for Win32 file operations (Thong Nguyen). * Integrate libgc version 6.3alpha6 (Thong Nguyen). * Overflow bugs in time routines (Thong Nguyen). * ILGetSinceRebootTime for Windows (Thong Nguyen).
2004-05-29Update to 0.6.6.xtraeme3-6/+20
Changes: 0.6.6 (29 May 2004) * Use dependency tracking in Makefile's because cscc supports it. * Make word sizes dynamic, and remove __WORDSIZE. * Implement "fcntl". * Implement the basic infrastructure for socket and netdb functions. * Import inet* routines from glibc. * Mismatched definitions for __pt_thread_run and __syscall_seek (Gopal V).
2004-05-28Update lang/jikes to 1.21.xtraeme2-6/+6
Changes: A regression in 1.20 that caused us to complain about supposedly invalid .class files has been rectified. Some minor error message improvements have been made.
2004-05-28pkg/23871 Ada runtime is not relocatable (same as gcc Bug ada/12950)shannonjr2-2/+38
part 2/2