diff options
author | wiz <wiz> | 2000-02-27 04:28:44 +0000 |
---|---|---|
committer | wiz <wiz> | 2000-02-27 04:28:44 +0000 |
commit | e0d160e8fe24a770382fbe9114b1876c574d5564 (patch) | |
tree | e4f25411a5cdaf70e76122f9916f130f502a55a8 /devel/pth/Makefile | |
parent | a70d6ba4e008644d41e7e7caefc01fc7d72316b8 (diff) | |
download | pkgsrc-e0d160e8fe24a770382fbe9114b1876c574d5564.tar.gz |
updated pth to 1.3.2. Changes from 1.3.1:
*) Do no longer use -woff in CFLAGS for IRIX 6.5.2 and above.
*) Replaced ``while (1)'' constructs with ``for (;;)'' because some
compilers like this more and do not warn about constant expressions.
*) Added hint to pth.pod that ``pth_join(<tid>, NULL)'' is allowed.
*) Cancel and join the ticker thread explicitly in test_select.c
*) Removed unnecessary code in pth_event.c
*) Add special namespace workarounds to pthread.h.in for HPUX
platforms where the pthread_kill() prototypes conflict without this.
Diffstat (limited to 'devel/pth/Makefile')
-rw-r--r-- | devel/pth/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/devel/pth/Makefile b/devel/pth/Makefile index 6963a9b6ca0..5e021f47683 100644 --- a/devel/pth/Makefile +++ b/devel/pth/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.22 2000/02/21 19:54:36 wiz Exp $ +# $NetBSD: Makefile,v 1.23 2000/02/27 04:28:44 wiz Exp $ # -DISTNAME= pth-1.3.1 +DISTNAME= pth-1.3.2 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GNU:=pth/} @@ -9,10 +9,13 @@ MAINTAINER= packages@netbsd.org HOMEPAGE= http://www.gnu.org/software/pth/pth.html CONFLICTS= pth-current-* +# for PLIST +VERS= 13.2 USE_LIBTOOL= YES GNU_CONFIGURE= YES CONFIGURE_ARGS+= --enable-pthread +PLIST_SUBST+= VERS=${VERS} post-install: ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/pth/ |