summaryrefslogtreecommitdiff
path: root/devel/unproven-pthreads/Makefile
AgeCommit message (Collapse)AuthorFilesLines
2002-10-16* Use buildlink2.jlam1-3/+16
* We can't use the funky SETENV construct because it breaks some of the code related to computing package sizes. Use a different way to remove unwanted environment variables from the shell environment before calling BSD make.
2002-08-29Fix the "MAKEOBJDIRPREFIX being set causes problems" in a different way.agc1-9/+4
Explicitly add "USETOOLS=no" to the MAKE_ENV. Overload the SETENV definition to unset MAKEOBJDIRPREFIX properly.
2002-08-25Merge changes in packages from the buildlink2 branch that havejlam1-1/+1
buildlink2.mk files back into the main trunk.
2002-08-16also unset MAKEOBJDIRPREFIX for installjdolecek1-1/+4
2002-08-16explicitly unset MAKEOBJDIRPREFIX for build; the build makes some assumtionsjdolecek1-1/+5
about location of .OBJDIR, and wouldn't build if MAKEOBJDIRPREFIX is set
2002-07-18Use the new CONFIG_GUESS_OVERRIDE and CONFIG_SUB_OVERRIDE mechanisms.agc1-1/+4
Patch i386 configuration to recognise netbsdelf - more architecture changes are necessary here.
2002-07-10PKGREVISION++ suggested by wizskrll1-2/+2
2002-06-23Use GNU_CONFIGURE_PREFIX instead of HAS_CONFIGURE workaround.jlam1-3/+3
2001-11-29Get rid of manually adding "nbX" to PKGNAME when a pkg was changed inhubertf1-2/+2
pkgsrc. Instead, a new variable PKGREVISION is invented that can get bumped independent of DISTNAME and PKGNAME. Example #1: DISTNAME= foo-X.Y PKGREVISION= Z => PKGNAME= foo-X.YnbZ Example #2: DISTNAME= barthing-X.Y PKGNAME= bar-X.Y PKGREVISION= Z => PKGNAME= bar=X.YnbZ (!) On subsequent changes, only PKGREVISION needs to be bumped, no more risk of getting DISTNAME changed accidentally.
2001-09-27Mechanical changes to 375 files to change dependency patterns of the formjlam1-2/+2
foo-* to foo-[0-9]*. This is to cause the dependencies to match only the packages whose base package name is "foo", and not those named "foo-bar". A concrete example is p5-Net-* matching p5-Net-DNS as well as p5-Net. Also change dependency examples in Packages.txt to reflect this.
2001-05-19Use ${XARGS} instead of invoking xargs directly.jlam1-4/+4
2001-04-12Provide a vfork in libpthread as suggested in pkg/10801.skrll1-1/+4
There is no need to worry about if its called vfork or __vfork14. The right one will get built. As vfork is not used internally don't worry about creating a syscall wrapper. While I'm here remove a completely unnecessary unistd.h that's looks as though it was for a early version linux.
2001-04-12Previous commit was pretty much useless without this lot.skrll1-3/+2
Support sparc. XXX fp state needs looking at.
2001-03-23Incorporate some patches from Wolfgang Solfrank (ws@tools.de)agc1-2/+2
"The changes to unproven-pthreads fix a problem with fstat not using the pthreads filedescriptors, but the native ones (the code for this was already there (slightly buggy), but it wasn't used for some unknown reason). In addition, the handling of select is improved, as the original code may wake up not all threads waiting for some event." Bump version number to unproven-pthreads-0.17nb2
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.wiz1-1/+2
2001-01-09Add support for the PowerPC.briggs1-2/+2
2000-12-28Add alpha support to unproven-pthreads.wiz1-3/+4
By Olaf Seibert <rhialto@polderland.nl>, posted on port-alpha on 2000/08/08. Compiles fine, otherwise untested.
2000-09-11Modify order of compile flags of pgcc, as requested in pkg/9921.wiz1-1/+2
Approved by explorer. Step to 0.17nb1.
2000-07-10bump to 0.17 -- fixes a resolver bug, and works with 1.5{,A,B} as well.explorer1-2/+2
2000-05-24bump to 0.16, which includes Jason Thorpe's mutex changesexplorer1-2/+2
2000-04-18bump up to 0.15 to implement p{read,write}{,v}explorer1-2/+2
2000-04-14bump to 0.14 -- handle signals a little better. Bugs are still there, but ↵explorer1-2/+2
at least they _work_ now.
2000-04-07bump to 0.13 -- fixes sigaction() brokennessexplorer1-2/+2
2000-03-27bump to 0.12 which fixes a locking bug in dup2()explorer1-3/+2
2000-02-22add CONFLICTS. installs the same files as mit-pthreadsdmcmahill1-1/+2
2000-01-27upgrade to 0.11, and enable on m68k since I've been told it works there, too.explorer1-4/+4
2000-01-18update to 0.10 to include NetBSD-current's netdb.h, with ipv6 stuff. Iexplorer1-2/+2
really need to take the various getXbyY_r() functions and put them in the main source tree, and ditch this file.
2000-01-02replaced some commands by their ${COMMAND} counterpartswiz1-4/+4
1999-12-28replaced some commands by their ${COMMAND} counterpartswiz1-4/+4
1999-12-11version 0.9: fixes sendmsg() and recvmsg(), and fixes an errno tracking problemexplorer1-2/+2
1999-12-02up to 0.8 now, whee. bind9 builds without warnings now.explorer1-2/+2
1999-11-24move to 0.7. This silences some rather annoying errno/sys_errlist noise.explorer1-8/+2
1999-11-12upgrade to 0.6, which should work on NetBSD-1.4.1/arm32explorer1-5/+4
1999-11-12Import unproven-pthreads, the mit-pthreads based cleanup I'm hacking on.explorer1-0/+35
Why am I using MIT-Pthreads? Because all the alternatives seem to have very low level problems. PTL2 has a locking problem of some sort that I cannot track down, and the author insists that lock = PTHREAD_MUTEX_INIT; is always to be legal, so he uses a pointer for locks. This means pthread_lock() can break in out of memory situations, and therefore so can pthread_once(), and if you're using that to protect logging, and you need to report a memory depletion, you're screwed. --Michael