diff -urN /usr/ports/graphics/poppler/Makefile poppler/Makefile --- /usr/ports/graphics/poppler/Makefile 2020-03-21 18:27:09.000000000 +0530 +++ poppler/Makefile 2020-03-27 21:20:32.282515000 +0530 @@ -3,6 +3,7 @@ PORTNAME= poppler DISTVERSION= 0.86.1 +PORTREVISION= 1 CATEGORIES= graphics print MASTER_SITES= https://poppler.freedesktop.org/ diff -urN /usr/ports/graphics/poppler/files/patch-glib_poppler-action.cc poppler/files/patch-glib_poppler-action.cc --- /usr/ports/graphics/poppler/files/patch-glib_poppler-action.cc 1970-01-01 05:30:00.000000000 +0530 +++ poppler/files/patch-glib_poppler-action.cc 2020-03-27 21:15:51.734128000 +0530 @@ -0,0 +1,51 @@ +--- glib/poppler-action.cc.orig 2020-03-01 19:52:52 UTC ++++ glib/poppler-action.cc +@@ -627,39 +627,39 @@ _poppler_action_new (PopplerDocument *document, + switch (link->getKind ()) { + case actionGoTo: + action->type = POPPLER_ACTION_GOTO_DEST; +- build_goto_dest (document, action, dynamic_cast (link)); ++ build_goto_dest (document, action, static_cast (link)); + break; + case actionGoToR: + action->type = POPPLER_ACTION_GOTO_REMOTE; +- build_goto_remote (action, dynamic_cast (link)); ++ build_goto_remote (action, static_cast (link)); + break; + case actionLaunch: + action->type = POPPLER_ACTION_LAUNCH; +- build_launch (action, dynamic_cast (link)); ++ build_launch (action, static_cast (link)); + break; + case actionURI: + action->type = POPPLER_ACTION_URI; +- build_uri (action, dynamic_cast (link)); ++ build_uri (action, static_cast (link)); + break; + case actionNamed: + action->type = POPPLER_ACTION_NAMED; +- build_named (action, dynamic_cast (link)); ++ build_named (action, static_cast (link)); + break; + case actionMovie: + action->type = POPPLER_ACTION_MOVIE; +- build_movie (document, action, dynamic_cast (link)); ++ build_movie (document, action, static_cast (link)); + break; + case actionRendition: + action->type = POPPLER_ACTION_RENDITION; +- build_rendition (action, dynamic_cast (link)); ++ build_rendition (action, static_cast (link)); + break; + case actionOCGState: + action->type = POPPLER_ACTION_OCG_STATE; +- build_ocg_state (document, action, dynamic_cast (link)); ++ build_ocg_state (document, action, static_cast (link)); + break; + case actionJavaScript: + action->type = POPPLER_ACTION_JAVASCRIPT; +- build_javascript (action, dynamic_cast (link)); ++ build_javascript (action, static_cast (link)); + break; + case actionUnknown: + default: diff -urN /usr/ports/graphics/poppler/files/patch-utils_HtmlOutputDev.cc poppler/files/patch-utils_HtmlOutputDev.cc --- /usr/ports/graphics/poppler/files/patch-utils_HtmlOutputDev.cc 1970-01-01 05:30:00.000000000 +0530 +++ poppler/files/patch-utils_HtmlOutputDev.cc 2020-03-27 21:15:51.735410000 +0530 @@ -0,0 +1,11 @@ +--- utils/HtmlOutputDev.cc.orig 2020-03-01 19:52:52 UTC ++++ utils/HtmlOutputDev.cc +@@ -1838,7 +1838,7 @@ int HtmlOutputDev::getOutlinePageNum(OutlineItem *item + if (!action || action->getKind() != actionGoTo) + return pagenum; + +- link = dynamic_cast(action); ++ link = static_cast(action); + + if (!link || !link->isOk()) + return pagenum; diff -urN /usr/ports/graphics/poppler-glib/Makefile poppler-glib/Makefile --- /usr/ports/graphics/poppler-glib/Makefile 2020-03-21 18:27:09.000000000 +0530 +++ poppler-glib/Makefile 2020-03-27 21:20:45.385262000 +0530 @@ -1,7 +1,7 @@ # Created by: Michael Johnson # $FreeBSD: head/graphics/poppler-glib/Makefile 528853 2020-03-21 12:57:09Z tcberner $ -PORTREVISION= 1 +PORTREVISION= 2 COMMENT= GLib bindings to poppler