Index: head/devel/argp-standalone/Makefile =================================================================== --- head/devel/argp-standalone/Makefile (revision 531219) +++ head/devel/argp-standalone/Makefile (revision 531220) @@ -1,30 +1,30 @@ # Created by: Sergey Matveychuk # $FreeBSD$ PORTNAME= argp-standalone PORTVERSION= 1.3 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= devel MASTER_SITES= http://www.lysator.liu.se/~nisse/misc/ \ LOCAL/sem MAINTAINER= ports@FreeBSD.org COMMENT= Standalone version of arguments parsing functions from GLIBC LICENSE= LGPL20+ PD LICENSE_COMB= multi USES= autoreconf libtool USE_CSTD= gnu89 GNU_CONFIGURE= yes USE_LDCONFIG= yes INSTALL_TARGET= install-strip PLIST_FILES= lib/libargp.a \ lib/libargp.so lib/libargp.so.0 lib/libargp.so.0.0.0 \ include/argp.h post-install: ${INSTALL_DATA} ${WRKSRC}/argp.h ${STAGEDIR}${PREFIX}/include .include Index: head/devel/argp-standalone/files/patch-argp-help.c =================================================================== --- head/devel/argp-standalone/files/patch-argp-help.c (nonexistent) +++ head/devel/argp-standalone/files/patch-argp-help.c (revision 531220) @@ -0,0 +1,14 @@ +--- argp-help.c.orig 2020-04-09 17:39:48 UTC ++++ argp-help.c +@@ -1704,7 +1704,10 @@ Try `%s --help' or `%s --usage' for more information.\ + void __argp_help (const struct argp *argp, FILE *stream, + unsigned flags, char *name) + { +- _help (argp, 0, stream, flags, name); ++ struct argp_state state = { ++ .root_argp = argp, ++ }; ++ _help (argp, &state, stream, flags, name); + } + #ifdef weak_alias + weak_alias (__argp_help, argp_help) Property changes on: head/devel/argp-standalone/files/patch-argp-help.c ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property