From owner-svn-src-all@freebsd.org Tue Nov 24 04:19:58 2015 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6001AA35B56; Tue, 24 Nov 2015 04:19:58 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 34F5C1CC2; Tue, 24 Nov 2015 04:19:58 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tAO4JvYq045628; Tue, 24 Nov 2015 04:19:57 GMT (envelope-from bdrewery@FreeBSD.org) Received: (from bdrewery@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tAO4JuBs045614; Tue, 24 Nov 2015 04:19:56 GMT (envelope-from bdrewery@FreeBSD.org) Message-Id: <201511240419.tAO4JuBs045614@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bdrewery set sender to bdrewery@FreeBSD.org using -f From: Bryan Drewery Date: Tue, 24 Nov 2015 04:19:56 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r291235 - in head: bin/rmail contrib/sendmail/include/sm lib/libmilter lib/libsm lib/libsmdb lib/libsmutil libexec/mail.local libexec/smrsh usr.bin/vacation usr.sbin/editmap usr.sbin/ma... X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Nov 2015 04:19:58 -0000 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 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 # if __FreeBSD_version >= 199512 /* 2.2-current when it appeared */ +# if __FreeBSD_version < 500012 # include +# 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 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 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 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 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 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 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 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 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 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