summaryrefslogtreecommitdiff
path: root/devel/mit-pthreads
AgeCommit message (Collapse)AuthorFilesLines
2001-04-12Regen. Don't know how this got out of sync.skrll1-2/+2
2001-04-12Add _C_LABEL to the sparc assembler files.skrll3-35/+33
Fixes pkg/11360.
2001-04-12MD5->SHA1skrll2-63/+63
2001-04-11There is no need to install a math.h and it can cause problems.skrll2-4/+4
Fixes pkg/10769 from "Rhialto" <rhialto@polderland.nl>
2001-02-25Cleanup MKDIR usage => INSTALL_*_DIRhubertf1-2/+2
XXX need to teach pkglint to be more picky about this
2001-02-16Update to new COMMENT style: COMMENT var in Makefile instead of pkg/COMMENT.wiz2-2/+2
2001-01-10Make the PIC relocations correct on the powerpc.briggs2-8/+8
2001-01-10Support NetBSD-*-powerpcbriggs9-3/+643
2001-01-04The way that shared objects were handled in the PLISTs and bsd.pkg.mk wasagc1-1/+3
out of date - it was based on a.out OBJECT_FMT, and added entries in the generated PLISTs to reflect the symlinks that ELF packages uses. It also tried to be clever, and removed and recreated any symbolic links that were created, which has resulted in some fun, especially with packages which use dlopen(3) to load modules. Some recent changes to our ld.so to bring it more into line with other Operating Systems also exposed some cracks. + Modify bsd.pkg.mk and its shared object handling, so that PLISTs now contain the ELF symlinks. + Don't mess about with file system entries when handling shared objects in bsd.pkg.mk, since it's likely that libtool and the BSD *.mk processing will have got it right, and have a much better idea than we do. + Modify PLISTs to contain "ELF symlinks" + On a.out platforms, delete any "ELF symlinks" from the generated PLISTs + On ELF platforms, no extra processing needs to be done in bsd.pkg.mk + Modify print-PLIST target in bsd.pkg.mk to add dummy symlink entries on a.out platforms + Update the documentation in Packages.txt With many thanks to Thomas Klausner for keeping me honest with this.
2000-11-29Add a patch from Tom Thai - without this patch, mysql will result in aagc2-1/+30
wrong date for "select now()".
2000-08-06Let "configure" recognize NetBSD-1.5*. Patch contributedfredb3-15/+15
by Douglas Wade Needham in PR pkg/10766.
2000-03-16echo -> ${ECHO}wiz1-5/+5
2000-02-22add CONFLICTS. installs the same files as unproven-pthreadsdmcmahill1-1/+2
2000-01-10Regen.mycroft1-1/+2
2000-01-10Disable the fork_lock hack. Programs want to be able to fork themselvesmycroft1-0/+12
before firing up pthreads (e.g. to background).
2000-01-02replaced some commands by their ${COMMAND} counterpartswiz1-4/+4
1999-12-28RCS tags addedwiz9-0/+9
1999-12-28replaced some commands by their ${COMMAND} counterpartswiz1-4/+4
1999-11-15Add patch fuzz factorrh1-1/+3
1999-11-06Fix a rather nasty problem with signals, namely SIGCHLD, that preventedexplorer1-1/+7
running threaded binaries if SIGCHLD was set to SIG_IGN. What happens is that pthreads uses either sigaction() or signal() to set up signals when switching thread state. It used HAVE_SYSCALL_SIGACTION to decide which to use. But, while we have a FUNCTION called sigaction(), the syscall is __sigaction14, which caused HAVE_SYSCALL_SIGACTION to not be defined. This would have been ok if the pthread kernel didn't assume signal would return 0 for success and non-zero for failure. Signal() returns the previous handler. SIG_IGN != 0, so pthreads thought the call failed. Resulting in a call to abort().
1999-11-05remove ALL the local path...explorer2-4/+4
1999-11-05how'd this sneak in there? Remove local paths from patch fileexplorer2-5/+4
1999-11-05add machdep_sys_ftruncate() as wellexplorer2-5/+6
1999-11-05do the machdep_sys_lseek() thing slightly differently, but do it everwhere ↵explorer2-1/+13
via a common include file.
1999-11-05somehow patch-bc was lost from hereexplorer1-1/+2
1999-11-05two fixes. One, context switch fix (sorta) and another obvious bug in call ↵explorer3-2/+38
to pthread_sigmask()
1999-11-05another 1.4.x vs. -current fixexplorer2-7/+11
1999-11-05Make the endian.h thing work on 1.4.1 as well as 1.4L. I don't know exactly ↵explorer2-6/+10
when the file sys/endian.h was created, but I don't really care as I know it wasn't in 1.4.x and it is in the latest -current.
1999-11-05make makepatchsumexplorer1-2/+8
1999-11-05remove pthreads's endian.h, as it isn't needed anymore.explorer2-3/+5
1999-11-05commit patches to make a try at fixing signal handling, compilation under ELF.explorer8-13/+506
I'll sync these changes up to the mysql package when I test these changes a bit more.
1999-09-10Regen.bad1-6/+6
1999-09-10Make this compile on 1.3ish m68k machines:bad5-25/+43
In engine-m68000-netbsd.c: Move the declaration of __sycall() before the function it's first used in In syscall-m68000-netbsd.S don't use the compat_13 sigprocmask/sigsuspend syscall number constants, they were just SYS__sigprocmask/suspend. Fix the configure script to do the same dance for the 1.3ish systems as for the other architectures. Fix a typo in config.guess.
1999-08-02regen.bad1-3/+3
1999-08-02config/configure.in: change m4 quotes where necessary.bad2-12/+20
Also fix two typos that might affect 1.4ish sparc and arm32.
1999-08-02oops. regen.bad1-3/+2
1999-08-01Per Andy Finnell: use same magic to pacify the ansi cpp as inbad2-10/+12
syscall-template-m68000-netbsd.S.
1999-07-29Add m68k support to MIT-pthreads. By Andy Finnell <andy@vei.net>.bad9-11/+553
Thanks to Greg Oster for testing on the hp300.
1999-07-09Add package patch-sum filesagc1-0/+39
1999-06-20Don't use "{}" or "[]" in "ONLY_FOR_PLATFORM" or "NOT_FOR_PLATFORM"tron1-2/+4
because "bsd.pkg.mk" can't handle those patterns. Fixes PR pkg/7808 by Chris Demetriou.
1999-06-02Fix spelling of Chris Provenzano's name.agc1-1/+1
Fixes PR 7689, from Eric Mumpower.
1999-05-24Change {ONLY,NOT}_FOR_{ARCH,OPSYS} format to {ONLY,NOT}_FOR_PLATFORMtv1-3/+2
pattern match format. Minor pkglint along the way.
1999-05-18Fix obvious typo in getprotoent.cbad1-0/+15
From gson@araneus.fi (Andreas Gustafsson).
1999-05-02Link shared library with "/usr/lib/c++rt0.o" on a.out systems to make suretron2-12/+10
that pthread_init() gets called. Fixes PR pkg/7433 by Andreas Gustafsson.
1999-05-01Nuke private definitions of "BINOWN" and "BINGRP" so that files don'ttron2-6/+18
get installed under the id of the user which compiled the package.
1999-05-01Correct "rm" command which is supposed to remove "libpthread_pic.a".tron1-2/+2
Fixes PR pkg/7505 by Nick Hudson.
1999-04-30Update from Andreas Gustafsson.bad1-3/+5
Don't fail to build on 1.3.x systems.
1999-04-29First half of PR #7433: Must use c++rt0.o as SHLIB_LDSTARTFILE on a.outbad1-5/+15
platforms. From Andreas Gustafsson.
1999-04-29Provide getopt() prototype and externs in include/unistd.h.bad1-0/+16
From Andreas Gustafsson PR #7434.
1999-04-29Don't pass linker input files and options when the linker isn't run.bad1-3/+3
From Andreas Gustafsson PR #7453.