diff options
author | leeym <leeym@FreeBSD.org> | 2003-09-27 01:44:04 +0000 |
---|---|---|
committer | leeym <leeym@FreeBSD.org> | 2003-09-27 01:44:04 +0000 |
commit | b6279fd1df7f616db7521ad00b2fe08698fae4cd (patch) | |
tree | 77e829738a0d350b645897c9b13f6f6c6789c541 | |
parent | 26acd0587049f4ac61e843a598425212ced9374a (diff) | |
download | FreeBSD-ports-b6279fd1df7f616db7521ad00b2fe08698fae4cd.zip FreeBSD-ports-b6279fd1df7f616db7521ad00b2fe08698fae4cd.tar.gz |
- Fix options parsing
- Bump PORTREVISION
PR: 57253
Submitted by: Nicolas Jombart <ecu@ipv42.net>
-rw-r--r-- | sysutils/ccze/Makefile | 1 | ||||
-rw-r--r-- | sysutils/ccze/files/patch-ccze-compat.c | 11 |
2 files changed, 12 insertions, 0 deletions
diff --git a/sysutils/ccze/Makefile b/sysutils/ccze/Makefile index 1da059d..9d49629 100644 --- a/sysutils/ccze/Makefile +++ b/sysutils/ccze/Makefile @@ -7,6 +7,7 @@ PORTNAME= ccze PORTVERSION= 0.2.1 +PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= ftp://bonehunter.rulez.org/pub/ccze/stable/ diff --git a/sysutils/ccze/files/patch-ccze-compat.c b/sysutils/ccze/files/patch-ccze-compat.c new file mode 100644 index 0000000..3eae278 --- /dev/null +++ b/sysutils/ccze/files/patch-ccze-compat.c @@ -0,0 +1,11 @@ +--- src/ccze-compat.c.orig Fri Sep 26 17:27:22 2003 ++++ src/ccze-compat.c Fri Sep 26 17:27:39 2003 +@@ -275,7 +275,7 @@ + char **valuep) + { + int i = getsubopt (optionp, tokens, valuep); +-#if HAVE_SUBOPTARg ++#if HAVE_SUBOPTARG + if (!*valuep && suboptarg) + *valuep = strdup (suboptarg); + #endif |