mail/smtp-gated update. Changes: - Update from 1.4.18.8 to 1.4.20.0 - Take maintainership - Added one patch to fix build with CLANG Fix: Patch attached with submission follows:
Responsible Changed From-To: freebsd-ports-bugs->lippe I'll take it.
Author: lippe Date: Wed Mar 6 17:18:45 2013 New Revision: 313529 URL: http://svnweb.freebsd.org/changeset/ports/313529 Log: - Pass maintainership to submitter. - Added one patch to fix build with CLANG. PR: ports/176525 Submitted by: Danilo Egea Gondolfo <danilogondolfo@gmail.com> (maintainer) Added: head/mail/smtp-gated/files/patch-src__smtp-gated.c (contents, props changed) Modified: head/mail/smtp-gated/Makefile (contents, props changed) Modified: head/mail/smtp-gated/Makefile ============================================================================== --- head/mail/smtp-gated/Makefile Wed Mar 6 17:10:52 2013 (r313528) +++ head/mail/smtp-gated/Makefile Wed Mar 6 17:18:45 2013 (r313529) @@ -3,10 +3,11 @@ PORTNAME= smtp-gated PORTVERSION= 1.4.20.0 +PORTREVISION= 1 CATEGORIES= mail MASTER_SITES= http://software.klolik.org/smtp-gated/files/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= danilogondolfo@gmail.com COMMENT= Proxy for SMTP sessions with virus and spam scan LICENSE= GPLv2 Added: head/mail/smtp-gated/files/patch-src__smtp-gated.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/smtp-gated/files/patch-src__smtp-gated.c Wed Mar 6 17:18:45 2013 (r313529) @@ -0,0 +1,14 @@ +--- ../../smtp-gated-1.4.20.0/src/smtp-gated.c 2013-02-26 08:06:59.000000000 -0300 ++++ src/smtp-gated.c 2013-02-28 09:32:47.000000000 -0300 +@@ -820,7 +820,11 @@ + } + } /* cleanup() */ + ++#ifdef __clang__ ++static inline void cleanup_exit(int code) ++#else + inline void cleanup_exit(int code) ++#endif + { + cleanup(); + exit(code); _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
State Changed From-To: open->closed Committed. Thanks!