View | Details | Raw Unified | Return to bug 214317
Collapse All | Expand All

(-)py-milter/Makefile (-2 / +2 lines)
Lines 3-15 Link Here
3
3
4
PORTNAME=	milter
4
PORTNAME=	milter
5
PORTVERSION=	1.0
5
PORTVERSION=	1.0
6
PORTREVISION=	2
6
PORTREVISION=	3
7
CATEGORIES=	mail python
7
CATEGORIES=	mail python
8
MASTER_SITES=	SF/${PYPORTNAME}/${PYPORTNAME}/${DISTNAME}
8
MASTER_SITES=	SF/${PYPORTNAME}/${PYPORTNAME}/${DISTNAME}
9
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
9
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
10
DISTNAME=	${PYPORTNAME}-${PORTVERSION}
10
DISTNAME=	${PYPORTNAME}-${PORTVERSION}
11
11
12
MAINTAINER=	ports@FreeBSD.org
12
MAINTAINER=	estartu@augusta.de
13
COMMENT=	Python interface to Sendmail milter API
13
COMMENT=	Python interface to Sendmail milter API
14
14
15
LICENSE=	GPLv2+
15
LICENSE=	GPLv2+
(-)py-milter/files/patch-miltermodul.c (+11 lines)
Line 0 Link Here
1
--- miltermodule.c.orig	2016-11-08 13:07:16.471599000 +0100
2
+++ miltermodule.c	2016-11-08 13:07:36.931913000 +0100
3
@@ -285,7 +285,7 @@
4
  * published.  Unfortunately I know of no good way to do this
5
  * other than with OS-specific tests.
6
  */
7
-#if defined(__FreeBSD_kernel__) || defined(__linux__)
8
+#if defined(__FreeBSD__) || defined(__linux__)
9
 #define HAVE_IPV6_RFC2553
10
 #include <arpa/inet.h>
11
 #endif

Return to bug 214317