summaryrefslogtreecommitdiff
path: root/devel/librfuncs
AgeCommit message (Collapse)AuthorFilesLines
2005-02-23Add RMD160 digests.agc1-1/+2
2004-11-29Re: pkg/28464 gpgme won't build. Enabling PTHREAD_AUTO_VARS is Makefile.shannonjr1-1/+3
2004-11-16Change to revision 1.0.6. This revision recognises that SunOS hasshannonjr2-5/+5
thread-safe getenv() and strerror() functions. With thread-safe functions, not mutexes are used to serialize access to these functions.
2004-11-12Remove redundant uses of PTHREAD_{CFLAGS,LDFLAGS} now that they're addedjlam1-4/+2
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-09It's "its".snj1-1/+1
2004-11-08Updated to 1.0.5 to correct problem pointed out by Mark Davies:shannonjr2-5/+5
"Your tests in configure to decide if you need each of the functions are testing a different variable name from the one that gets set so you always create an rfuncs.h that has all three definitions even if you dont need them, which leads to problems on systems that provide some but not all of them natively." Correction by Mark Davies.
2004-11-07Re: pkg/27884: Use of librfuncs breaks gpgmeshannonjr3-7/+7
Updated to 1.0.4 to fix a bug in getenv_r() where ENOENT was not returned if the string name was not found in the environment.
2004-11-05pkg/28001: devel/librfuncs dies on configureshannonjr2-5/+5
Update to revision 1.0.3 to correct mistake where config subdirectory contained symbolic links: config.guess -> /usr/pkgsrc/mk/gnu-config/config.guess config.sub -> /usr/pkgsrc/mk/gnu-config/config.sub that were a consequence of the tarball being created after a build inm pkgsrc (files were replaced with symbolic links).
2004-11-04Update to version 1.0.2. This version uses the mutexes from eithershannonjr2-5/+5
pthread or pth according to what pthread.buildlink3.mk and the autotools identify. If neither pthread nor pth is found no thread locking is performed.
2004-10-30Simplified buildlink3.mk file by removing lines that attempted to includeshannonjr1-5/+1
the header file <rfuncs.h> through a compiler flag along with some unnecessary linker flags. This should hopefully resolve pkg/27631, security/gpgme dies on configure.
2004-10-24*** empty log message ***shannonjr1-3/+3
2004-10-24Updated to 1.0.1 to use NetBSD threadlib if availableshannonjr1-2/+2
2004-10-23Provides missing POSIX *_r functions: ttyname_r(), getenv_r() andshannonjr5-0/+67
strerror_r(). These are thread safe versions of the corresponding functions without the "_r". The package is implemented so that it may be used simply by including it's buildlink3.mk file.