On Sat, Jul 20, 2019 at 1:35 PM Sid <s...@bsdmail.com> wrote:
>
> On trying to run www/weblint, I got this error message:
>
>  Can't use 'defined(%hash)' (Maybe you should just omit the defined()?) at 
> /usr/local/bin/weblint line 846.
>
> It's worked on a previous compile. I'm not sure if this is a bug or if I need 
> to configure something. Thank you.

Perl no longer supports defined(%hash). Instead of
  if defined(%hash)
it should be
  if (%hash)

# Adam


-- 
Adam Weinberger
ad...@adamw.org
https://www.adamw.org
_______________________________________________
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"

Reply via email to