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 */
_______________________________________________
[email protected] mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "[email protected]"