- Pass maintainership to submitter.

- Added one patch to fix build with CLANG.

PR:		ports/176525
Submitted by:	Danilo Egea Gondolfo <danilogondolfo@gmail.com> (maintainer)
This commit is contained in:
Felippe de Meirelles Motta 2013-03-06 17:18:45 +00:00
parent da12e6723d
commit 4b92c0d68d
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=313529
2 changed files with 16 additions and 1 deletions

View file

@ -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

View file

@ -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);