svn commit: r363226 - vendor/sendmail/dist/libsm
Gregory Neil Shapiro
gshapiro at FreeBSD.org
Wed Jul 15 15:40:48 UTC 2020
Author: gshapiro
Date: Wed Jul 15 15:40:46 2020
New Revision: 363226
URL: https://svnweb.freebsd.org/changeset/base/363226
Log:
Bring in fix from upstream that allows libsm to compile against FreeBSD 13
Modified:
vendor/sendmail/dist/libsm/notify.c
Modified: vendor/sendmail/dist/libsm/notify.c
==============================================================================
--- vendor/sendmail/dist/libsm/notify.c Wed Jul 15 15:35:26 2020 (r363225)
+++ vendor/sendmail/dist/libsm/notify.c Wed Jul 15 15:40:46 2020 (r363226)
@@ -10,11 +10,6 @@
#include <sm/gen.h>
-#include <sm/conf.h> /* FDSET_CAST */
-#include <sm/fdset.h>
-#include <sm/assert.h>
-#include <sm/notify.h>
-
#include <sys/types.h>
#include <signal.h>
#include <stdio.h>
@@ -24,6 +19,11 @@
#include <errno.h>
#include <fcntl.h>
#include <string.h> /* for memset() */
+
+#include <sm/conf.h> /* FDSET_CAST */
+#include <sm/fdset.h>
+#include <sm/assert.h>
+#include <sm/notify.h>
#if SM_NOTIFY_DEBUG
#define SM_DBG(p) fprintf p
More information about the svn-src-vendor
mailing list