diff options
author | novel <novel@FreeBSD.org> | 2006-08-12 01:36:00 +0800 |
---|---|---|
committer | novel <novel@FreeBSD.org> | 2006-08-12 01:36:00 +0800 |
commit | f69e9378a7d9f5c7ac7f2c2f1f336cd636ca3a82 (patch) | |
tree | 7941b00f267c98fff7e6baf786969f07c83ff79b /mail/msmtp | |
parent | 75383688dc418086765b4c91288cbc165768c93e (diff) | |
download | freebsd-ports-gnome-f69e9378a7d9f5c7ac7f2c2f1f336cd636ca3a82.tar.gz freebsd-ports-gnome-f69e9378a7d9f5c7ac7f2c2f1f336cd636ca3a82.tar.zst freebsd-ports-gnome-f69e9378a7d9f5c7ac7f2c2f1f336cd636ca3a82.zip |
Fix build on 4.x.
Reported by: pointyhat via kris
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) + { |