Remove the patch which fixed upstream Upstream changes: 4.54 Tue Aug 14 13:54:48 CEST 2018 - include sys/mkdev.h or sys/sysmacros.h if available. - further tweaks to configure invocation for systems requiring --rpath. - no longer rely on custom paths on win32 platforms. - try to work around buggy PAGESIZE macro on solaris. 4.53 Tue Aug 14 11:27:50 CEST 2018 - add $Config{libs} to LIBS for configure, to work around systems with broken library dependencies (... openbsd). 4.52 Sun Aug 12 08:09:45 CEST 2018 - config.h.in was missing in distribution. 4.51 Sun Aug 12 07:24:14 CEST 2018 - complete rework of the autoconf framework: IO::AIO now uses its own config.h, separate from libeio, and tries to test the actual perl environment, not the standard system environment. - provide nanosecond-accracy stat time accessors for both perl and IO::AIO stat functions. - removed non-portable C++ syntax from eio.c. - try to fix readdir tests on cygwin spuriously failing. 4.5 Wed Aug 1 00:23:55 CEST 2018 - aio_mtouch touch all pages as requested, not just the first page in most cases. - new function: IO::AIO::mremap, linux-specific mremap, with constants MREMAP_MAYMOVE and MREMAP_FIXED. - add O_ACCMODE. - add (undocumented) MSG_CMSG_CLOEXEC and SOCK_CLOEXEC constants.
28 lines
828 B
Makefile
28 lines
828 B
Makefile
# $NetBSD: Makefile,v 1.18 2018/08/15 02:03:38 wen Exp $
|
|
#
|
|
|
|
DISTNAME= IO-AIO-4.54
|
|
PKGNAME= p5-${DISTNAME}
|
|
CATEGORIES= devel perl5
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=IO/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://search.cpan.org/dist/IO-AIO/
|
|
COMMENT= Perl 5 module implementing asynchronous input/output
|
|
LICENSE= ${PERL5_LICENSE}
|
|
|
|
# Note: libeio is bundle with the distribution tarball.
|
|
# Its configure script is run via Makefile.PL
|
|
# with all perl configuration settings, id est
|
|
# the Config module, set in its environment
|
|
|
|
# build time requirment
|
|
BUILD_DEPENDS+= p5-Canary-Stability-[0-9]*:../../devel/p5-Canary-Stability
|
|
|
|
USE_LANGUAGES= c
|
|
PERL5_PACKLIST= auto/IO/AIO/.packlist
|
|
|
|
DEPENDS+= p5-common-sense-[0-9]*:../../devel/p5-common-sense
|
|
|
|
.include "../../lang/perl5/module.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|