diff options
author | Roman Bogorodskiy <novel@FreeBSD.org> | 2006-08-11 17:36:00 +0000 |
---|---|---|
committer | Roman Bogorodskiy <novel@FreeBSD.org> | 2006-08-11 17:36:00 +0000 |
commit | cf84ff494d190d419021e616a33fa80e1e0abad8 (patch) | |
tree | 33878cf8662909c34648705bf0fb62c715b06916 /mail/msmtp | |
parent | a8a36b50b847afce20faeb009383fd480af62ebf (diff) |
Notes
Diffstat (limited to 'mail/msmtp')
-rw-r--r-- | mail/msmtp/files/patch-gnulib-xvasprintf.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/mail/msmtp/files/patch-gnulib-xvasprintf.c b/mail/msmtp/files/patch-gnulib-xvasprintf.c new file mode 100644 index 000000000000..e7b8fc0b9db3 --- /dev/null +++ b/mail/msmtp/files/patch-gnulib-xvasprintf.c @@ -0,0 +1,13 @@ +--- gnulib/xvasprintf.c.orig Fri Aug 11 17:26:52 2006 ++++ gnulib/xvasprintf.c Fri Aug 11 17:27:31 2006 +@@ -37,6 +37,10 @@ + # define EOVERFLOW E2BIG + #endif + ++#ifndef gl_va_copy ++# define gl_va_copy(a,b) (a) = (b) ++#endif ++ + static inline char * + xstrcat (size_t argcount, va_list args) + { |