Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 6 Mar 2013 17:18:46 +0000 (UTC)
From:      Felippe de Meirelles Motta <lippe@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r313529 - in head/mail/smtp-gated: . files
Message-ID:  <201303061718.r26HIkVn001356@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201303061718.r26HIkVn001356>