diff options
author | ijliao <ijliao@FreeBSD.org> | 2003-01-02 16:29:24 +0800 |
---|---|---|
committer | ijliao <ijliao@FreeBSD.org> | 2003-01-02 16:29:24 +0800 |
commit | 1d5712e3456801f452e7477dc2a07c90a5e05ba9 (patch) | |
tree | b1aba8f4f14567430e31d11ca4eb295ea5ec8c0c /devel/apr1/files | |
parent | 50282cc176b2c02d4f477fd72b2cb69293d8fd34 (diff) | |
download | freebsd-ports-gnome-1d5712e3456801f452e7477dc2a07c90a5e05ba9.tar.gz freebsd-ports-gnome-1d5712e3456801f452e7477dc2a07c90a5e05ba9.tar.zst freebsd-ports-gnome-1d5712e3456801f452e7477dc2a07c90a5e05ba9.zip |
upgrade to 0.9.1
PR: 46390
Submitted by: Craig Rodrigues <rodrigc@attbi.com> (new maintainer)
Approved by: old maintainer
Diffstat (limited to 'devel/apr1/files')
-rw-r--r-- | devel/apr1/files/patch-apr-Makefile.in | 11 | ||||
-rw-r--r-- | devel/apr1/files/patch-apr-misc-unix-getopt.c | 15 |
2 files changed, 0 insertions, 26 deletions
diff --git a/devel/apr1/files/patch-apr-Makefile.in b/devel/apr1/files/patch-apr-Makefile.in deleted file mode 100644 index d56603894624..000000000000 --- a/devel/apr1/files/patch-apr-Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- apr/Makefile.in.orig Mon Mar 18 20:14:35 2002 -+++ apr/Makefile.in Mon Mar 18 20:11:05 2002 -@@ -42,7 +42,7 @@ - includedir=@includedir@ - srcdir=@srcdir@ - top_srcdir=@top_srcdir@ --top_blddir=@top_builddir@ -+top_blddir=@apr_builddir@ - - EXPORT_FILES = $(top_srcdir)/include/*.h - diff --git a/devel/apr1/files/patch-apr-misc-unix-getopt.c b/devel/apr1/files/patch-apr-misc-unix-getopt.c deleted file mode 100644 index 2634000a14cd..000000000000 --- a/devel/apr1/files/patch-apr-misc-unix-getopt.c +++ /dev/null @@ -1,15 +0,0 @@ ---- apr/misc/unix/getopt.c.orig Thu Nov 29 06:19:51 2001 -+++ apr/misc/unix/getopt.c Sun Aug 11 11:29:01 2002 -@@ -237,10 +237,12 @@ - for (i = 0; ; i++) { - if (opts[i].optch == 0) /* No match */ - return serr(os, "invalid option", p - 2, APR_BADCH); -+ if (opts[i].name) { - len = strlen(opts[i].name); - if (strncmp(p, opts[i].name, len) == 0 - && (p[len] == '\0' || p[len] == '=')) - break; -+ } - } - *optch = opts[i].optch; - |