diff options
author | kris <kris@FreeBSD.org> | 2002-10-21 04:51:22 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2002-10-21 04:51:22 +0800 |
commit | 249907e52b165264b288543acd05ec6ff91c3030 (patch) | |
tree | 78e1f1338e6c2f820855a585536327af067fc8c6 /ftp/proftpd-devel | |
parent | 9919c107ff983701d6a84e1ea63e4bb7d907a9d2 (diff) | |
download | freebsd-ports-gnome-249907e52b165264b288543acd05ec6ff91c3030.tar.gz freebsd-ports-gnome-249907e52b165264b288543acd05ec6ff91c3030.tar.zst freebsd-ports-gnome-249907e52b165264b288543acd05ec6ff91c3030.zip |
Fix build on -current (don't try and guess about the definition of
__size_t), and fix a format string with two many arguments while I'm here.
Diffstat (limited to 'ftp/proftpd-devel')
-rw-r--r-- | ftp/proftpd-devel/files/patch-ai | 11 | ||||
-rw-r--r-- | ftp/proftpd-devel/files/patch-aj | 11 |
2 files changed, 22 insertions, 0 deletions
diff --git a/ftp/proftpd-devel/files/patch-ai b/ftp/proftpd-devel/files/patch-ai new file mode 100644 index 000000000000..418c0c058178 --- /dev/null +++ b/ftp/proftpd-devel/files/patch-ai @@ -0,0 +1,11 @@ +--- contrib/mod_ratio.c.orig Sun Oct 20 13:49:21 2002 ++++ contrib/mod_ratio.c Sun Oct 20 13:50:11 2002 +@@ -606,7 +606,7 @@ + add_response(R_214, + "Bytes: %s Down: %imb Up: %imb CR: %i Mbytes", + stats.btext, (stats.bretr / 1024), (stats.bstor / 1024), +- (stats.bytes / 1024), stats.bytes); ++ (stats.bytes / 1024)); + return HANDLED(cmd); + } + diff --git a/ftp/proftpd-devel/files/patch-aj b/ftp/proftpd-devel/files/patch-aj new file mode 100644 index 000000000000..36d670539f78 --- /dev/null +++ b/ftp/proftpd-devel/files/patch-aj @@ -0,0 +1,11 @@ +--- include/glibc-glob.h.orig Sun Oct 20 13:43:44 2002 ++++ include/glibc-glob.h Sun Oct 20 13:48:38 2002 +@@ -50,7 +50,7 @@ + #endif + + /* We need `size_t' for the following definitions. */ +-#ifndef __size_t ++#if !defined(__size_t) && !defined(__FreeBSD__) + # if defined __GNUC__ && __GNUC__ >= 2 + typedef __SIZE_TYPE__ __size_t; + # ifdef _XOPEN_SOURCE |