diff options
author | wiz <wiz@pkgsrc.org> | 2003-05-02 11:49:47 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2003-05-02 11:49:47 +0000 |
commit | 0594acf27e2afd5d50b45048bca038ebd6e1d8a1 (patch) | |
tree | a95c7994873059f71614dba14723b3df63d138ac /devel/pth/Makefile | |
parent | 6f37e9f789d7a56f3fe43845be4f9314ddea5b06 (diff) | |
download | pkgsrc-0594acf27e2afd5d50b45048bca038ebd6e1d8a1.tar.gz |
Update to 2.0.0, supplied by skrll@netbsd.
Changes:
*) Make pth_poll(3) more compliant to POSIX.1-2001/SUSv3 poll(2).
*) Make pth_select(3) more compliant to POSIX.1-2001/SUSv3 select(2).
*) Replaced pth_event_occurred() with pth_event_status().
*) Add Autoconf option --with-fdsetsize=NUM for enlarging FD_SETSIZE.
*) Added thread attribute PTH_ATTR_DISPATCHES.
*) Added sub-API pth_uctx_* for user-space context switching.
*) Add a Pth variant of the new POSIX pselect(2) function.
*) Internally cleaned up the error handling macros.
*) Added POSIX-compliant sanity checks for bad fds.
*) Added pth_nanosleep() function.
*) Allow a NULL name for pth_msgport_create()
*) Completely rewrote the "hard syscall mapping".
*) Added support to pth_poll(3) for POLLD{RD,WR}{NORM,BAND}.
*) Fixed a long-standing termination bug in pth_exit(3).
*) Upgraded to Autoconf 2.57, Shtool 1.6.2 and Libtool 1.4.3.
*) Add optional support for OSSP ex based exception handling.
Diffstat (limited to 'devel/pth/Makefile')
-rw-r--r-- | devel/pth/Makefile | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/devel/pth/Makefile b/devel/pth/Makefile index b5f971a377c..3b611b0b31f 100644 --- a/devel/pth/Makefile +++ b/devel/pth/Makefile @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.55 2003/02/04 17:31:16 drochner Exp $ +# $NetBSD: Makefile,v 1.56 2003/05/02 11:49:47 wiz Exp $ # -DISTNAME= pth-1.4.1 -PKGREVISION= 7 +DISTNAME= pth-2.0.0 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GNU:=pth/} @@ -14,7 +13,7 @@ CONFLICTS= pth-current-[0-9]* pth-syscall<1.4.1nb1 USE_BUILDLINK2= YES USE_LIBTOOL= YES -LTCONFIG_OVERRIDE= ${WRKSRC}/ltconfig +LIBTOOL_OVERRIDE= ${WRKSRC}/libtool GNU_CONFIGURE= YES CONFIGURE_ARGS+= --enable-pthread CONFIGURE_ARGS+= --with-fdsetsize=1024 @@ -23,8 +22,8 @@ CONFIG_GUESS_OVERRIDE= ${WRKSRC}/config.guess CONFIG_SUB_OVERRIDE= ${WRKSRC}/config.sub # for PLIST -PTH_MAJOR= 14 -PTH_MINOR= 21 +PTH_MAJOR= 20 +PTH_MINOR= 20 PLIST_SUBST+= PTH_MAJOR=${PTH_MAJOR} PTH_MINOR=${PTH_MINOR} .include "../../mk/bsd.prefs.mk" |