Author: bdrewery Date: Tue Nov 24 04:19:55 2015 New Revision: 291235 URL: https://svnweb.freebsd.org/changeset/base/291235
Log: Remove unneeded libutil dependency for sendmail. It included libutil.h for setproctitle(3), which was moved from libutil to libc in r65353 in 2000. Reviewed by: gshapiro [sendmail change] Sponsored by: EMC / Isilon Storage Division Differential Revision: https://reviews.freebsd.org/D4261 Modified: head/bin/rmail/Makefile.depend head/contrib/sendmail/include/sm/conf.h head/lib/libmilter/Makefile.depend head/lib/libsm/Makefile.depend head/lib/libsmdb/Makefile.depend head/lib/libsmutil/Makefile.depend head/libexec/mail.local/Makefile.depend head/libexec/smrsh/Makefile.depend head/usr.bin/vacation/Makefile.depend head/usr.sbin/editmap/Makefile.depend head/usr.sbin/mailstats/Makefile.depend head/usr.sbin/makemap/Makefile.depend head/usr.sbin/praliases/Makefile.depend Modified: head/bin/rmail/Makefile.depend ============================================================================== --- head/bin/rmail/Makefile.depend Tue Nov 24 04:15:13 2015 (r291234) +++ head/bin/rmail/Makefile.depend Tue Nov 24 04:19:55 2015 (r291235) @@ -10,7 +10,6 @@ DIRDEPS = \ lib/libc \ lib/libcompiler_rt \ lib/libsm \ - lib/libutil \ .include <dirdeps.mk> Modified: head/contrib/sendmail/include/sm/conf.h ============================================================================== --- head/contrib/sendmail/include/sm/conf.h Tue Nov 24 04:15:13 2015 (r291234) +++ head/contrib/sendmail/include/sm/conf.h Tue Nov 24 04:19:55 2015 (r291235) @@ -1019,7 +1019,9 @@ extern unsigned int sleepX __P((unsigned # if __FreeBSD__ >= 2 # include <osreldate.h> # if __FreeBSD_version >= 199512 /* 2.2-current when it appeared */ +# if __FreeBSD_version < 500012 # include <libutil.h> +# endif # define SPT_TYPE SPT_BUILTIN # endif /* __FreeBSD_version >= 199512 */ # if __FreeBSD_version >= 222000 /* 2.2.2-release and later */ Modified: head/lib/libmilter/Makefile.depend ============================================================================== --- head/lib/libmilter/Makefile.depend Tue Nov 24 04:15:13 2015 (r291234) +++ head/lib/libmilter/Makefile.depend Tue Nov 24 04:19:55 2015 (r291235) @@ -10,7 +10,6 @@ DIRDEPS = \ lib/${CSU_DIR} \ lib/libc \ lib/libcompiler_rt \ - lib/libutil \ usr.bin/xinstall.host \ Modified: head/lib/libsm/Makefile.depend ============================================================================== --- head/lib/libsm/Makefile.depend Tue Nov 24 04:15:13 2015 (r291234) +++ head/lib/libsm/Makefile.depend Tue Nov 24 04:19:55 2015 (r291235) @@ -4,7 +4,6 @@ DIRDEPS = \ include \ include/xlocale \ - lib/libutil \ .include <dirdeps.mk> Modified: head/lib/libsmdb/Makefile.depend ============================================================================== --- head/lib/libsmdb/Makefile.depend Tue Nov 24 04:15:13 2015 (r291234) +++ head/lib/libsmdb/Makefile.depend Tue Nov 24 04:19:55 2015 (r291235) @@ -4,7 +4,6 @@ DIRDEPS = \ include \ include/xlocale \ - lib/libutil \ .include <dirdeps.mk> Modified: head/lib/libsmutil/Makefile.depend ============================================================================== --- head/lib/libsmutil/Makefile.depend Tue Nov 24 04:15:13 2015 (r291234) +++ head/lib/libsmutil/Makefile.depend Tue Nov 24 04:19:55 2015 (r291235) @@ -5,7 +5,6 @@ DIRDEPS = \ include \ include/arpa \ include/xlocale \ - lib/libutil \ .include <dirdeps.mk> Modified: head/libexec/mail.local/Makefile.depend ============================================================================== --- head/libexec/mail.local/Makefile.depend Tue Nov 24 04:15:13 2015 (r291234) +++ head/libexec/mail.local/Makefile.depend Tue Nov 24 04:19:55 2015 (r291235) @@ -11,7 +11,6 @@ DIRDEPS = \ lib/libc \ lib/libcompiler_rt \ lib/libsm \ - lib/libutil \ .include <dirdeps.mk> Modified: head/libexec/smrsh/Makefile.depend ============================================================================== --- head/libexec/smrsh/Makefile.depend Tue Nov 24 04:15:13 2015 (r291234) +++ head/libexec/smrsh/Makefile.depend Tue Nov 24 04:19:55 2015 (r291235) @@ -10,7 +10,6 @@ DIRDEPS = \ lib/libc \ lib/libcompiler_rt \ lib/libsm \ - lib/libutil \ .include <dirdeps.mk> Modified: head/usr.bin/vacation/Makefile.depend ============================================================================== --- head/usr.bin/vacation/Makefile.depend Tue Nov 24 04:15:13 2015 (r291234) +++ head/usr.bin/vacation/Makefile.depend Tue Nov 24 04:19:55 2015 (r291235) @@ -12,7 +12,6 @@ DIRDEPS = \ lib/libsm \ lib/libsmdb \ lib/libsmutil \ - lib/libutil \ .include <dirdeps.mk> Modified: head/usr.sbin/editmap/Makefile.depend ============================================================================== --- head/usr.sbin/editmap/Makefile.depend Tue Nov 24 04:15:13 2015 (r291234) +++ head/usr.sbin/editmap/Makefile.depend Tue Nov 24 04:19:55 2015 (r291235) @@ -12,7 +12,6 @@ DIRDEPS = \ lib/libsm \ lib/libsmdb \ lib/libsmutil \ - lib/libutil \ .include <dirdeps.mk> Modified: head/usr.sbin/mailstats/Makefile.depend ============================================================================== --- head/usr.sbin/mailstats/Makefile.depend Tue Nov 24 04:15:13 2015 (r291234) +++ head/usr.sbin/mailstats/Makefile.depend Tue Nov 24 04:19:55 2015 (r291235) @@ -11,7 +11,6 @@ DIRDEPS = \ lib/libcompiler_rt \ lib/libsm \ lib/libsmutil \ - lib/libutil \ .include <dirdeps.mk> Modified: head/usr.sbin/makemap/Makefile.depend ============================================================================== --- head/usr.sbin/makemap/Makefile.depend Tue Nov 24 04:15:13 2015 (r291234) +++ head/usr.sbin/makemap/Makefile.depend Tue Nov 24 04:19:55 2015 (r291235) @@ -12,7 +12,6 @@ DIRDEPS = \ lib/libsm \ lib/libsmdb \ lib/libsmutil \ - lib/libutil \ .include <dirdeps.mk> Modified: head/usr.sbin/praliases/Makefile.depend ============================================================================== --- head/usr.sbin/praliases/Makefile.depend Tue Nov 24 04:15:13 2015 (r291234) +++ head/usr.sbin/praliases/Makefile.depend Tue Nov 24 04:19:55 2015 (r291235) @@ -12,7 +12,6 @@ DIRDEPS = \ lib/libsm \ lib/libsmdb \ lib/libsmutil \ - lib/libutil \ .include <dirdeps.mk> _______________________________________________ svn-src-all@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"