diff options
author | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2021-12-22 15:14:14 +0000 |
---|---|---|
committer | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2021-12-22 15:14:14 +0000 |
commit | 50a154dee7d0eb0d8f90da59f17f59e17d082b24 (patch) | |
tree | 38c3ea9d2b0c759d2dc98ef916945af50334bb19 /regress/usr.sbin/syslogd/Makefile | |
parent | 3a10345051a3c2ed66fc418ef53aa0a4ac7ac71b (diff) |
Replace deprecated IO::Socket::INET6 with IO::Socket::IP.
Diffstat (limited to 'regress/usr.sbin/syslogd/Makefile')
-rw-r--r-- | regress/usr.sbin/syslogd/Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/regress/usr.sbin/syslogd/Makefile b/regress/usr.sbin/syslogd/Makefile index 22a67323846..ea050a83dc2 100644 --- a/regress/usr.sbin/syslogd/Makefile +++ b/regress/usr.sbin/syslogd/Makefile @@ -1,7 +1,6 @@ -# $OpenBSD: Makefile,v 1.33 2021/12/02 15:56:15 kn Exp $ +# $OpenBSD: Makefile,v 1.34 2021/12/22 15:14:13 bluhm Exp $ # The following ports must be installed for the regression tests: -# p5-IO-Socket-INET6 object interface for AF_INET and AF_INET6 domain sockets # p5-Socket6 Perl defines relating to AF_INET6 sockets # p5-IO-Socket-SSL perl interface to SSL sockets # p5-BSD-Resource BSD process resource limit and priority functions @@ -13,7 +12,6 @@ # are missing print a warning and skip the tests, but do not fail. PERL_REQUIRE != perl -Mstrict -Mwarnings -e ' \ - eval { require IO::Socket::INET6 } or print $@; \ eval { require Socket6 } or print $@; \ eval { require IO::Socket::SSL } or print $@; \ eval { require BSD::Resource } or print $@; \ @@ -21,7 +19,7 @@ PERL_REQUIRE != perl -Mstrict -Mwarnings -e ' \ .if ! empty (PERL_REQUIRE) regress: @echo "${PERL_REQUIRE}" - @echo 'run "pkg_add p5-IO-Socket-INET6 p5-Socket6 p5-IO-Socket-SSL p5-BSD-Reource"' + @echo 'run "pkg_add p5-Socket6 p5-IO-Socket-SSL p5-BSD-Reource"' @echo SKIPPED .endif |