svn commit: r244829 - stable/7/contrib/sendmail/include/libmilter

Gregory Neil Shapiro gshapiro at FreeBSD.org
Sat Dec 29 19:13:17 UTC 2012


Author: gshapiro
Date: Sat Dec 29 19:13:16 2012
New Revision: 244829
URL: http://svnweb.freebsd.org/changeset/base/244829

Log:
  MFC: Properly define true/false when defining __bool_true_false_are_defined
       for filters which pull in mfapi.h before stdbool.h.  Issue reported by
       Petr Rehor, maintainer of amavisd-milter port.

Modified:
  stable/7/contrib/sendmail/include/libmilter/mfapi.h
Directory Properties:
  stable/7/contrib/sendmail/   (props changed)

Modified: stable/7/contrib/sendmail/include/libmilter/mfapi.h
==============================================================================
--- stable/7/contrib/sendmail/include/libmilter/mfapi.h	Sat Dec 29 19:12:38 2012	(r244828)
+++ stable/7/contrib/sendmail/include/libmilter/mfapi.h	Sat Dec 29 19:13:16 2012	(r244829)
@@ -96,6 +96,8 @@ typedef int	sfsistat;
 #  ifndef bool
 #   ifndef __bool_true_false_are_defined
 typedef int	bool;
+#    define false	0
+#    define true	1
 #    define __bool_true_false_are_defined	1
 #   endif /* ! __bool_true_false_are_defined */
 #  endif /* bool */


More information about the svn-src-stable mailing list