mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 17:59:20 -04:00
- 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:
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
|
@ -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
|
||||
|
|
14
mail/smtp-gated/files/patch-src__smtp-gated.c
Normal file
14
mail/smtp-gated/files/patch-src__smtp-gated.c
Normal 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);
|
Loading…
Add table
Reference in a new issue