f22c17f195
SPF sender authentication systems. Sender-ID and SPF have both been published by the IETF (RFC4406 and RFC4408, respectively) as experimental proposals. This package consists of a library that implements the record parsers needed to provide the authentication service, and a milter-based filter application that can plug in to the sendmail MTA to provide that service to sufficiently recent sendmail and postfix MTAs. An optional asynchronous resolver library is also provided to work around limitations of the basic BIND resolver which comes installed on most systems.
27 lines
671 B
Text
27 lines
671 B
Text
$NetBSD: patch-ab,v 1.1.1.1 2010/03/12 22:42:55 pettai Exp $
|
|
--- /dev/null 2008-10-16 17:49:30.000000000 +1300
|
|
+++ include/sm/os/sm_os_netbsd.h
|
|
@@ -0,0 +1,23 @@
|
|
+/*
|
|
+ */
|
|
+
|
|
+/*
|
|
+** sm_os_netbsd.h -- platform definitions for NetBSD
|
|
+*/
|
|
+
|
|
+#define SM_OS_NAME "netbsd"
|
|
+
|
|
+#define SM_CONF_SYS_CDEFS_H 1
|
|
+
|
|
+#if defined(__NetBSD__)
|
|
+# include <sys/param.h> /* defines __NetBSD_Version__ */
|
|
+# if __NetBSD_Version__ >= 104030000
|
|
+ /* 1.4.3 and later have strlcpy()/strlcat() */
|
|
+# ifndef SM_CONF_STRL
|
|
+# define SM_CONF_STRL 1
|
|
+# endif
|
|
+# endif
|
|
+# if __NetBSD_Version__ >= 499006500
|
|
+# define SM_CONF_STDBOOL_H 1
|
|
+# endif
|
|
+#endif
|