From owner-freebsd-bugs Thu Jul 13 12:20: 9 2000 Delivered-To: freebsd-bugs@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 163AC37C606 for ; Thu, 13 Jul 2000 12:20:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id MAA62728; Thu, 13 Jul 2000 12:20:03 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from thehousleys.net (frenchknot.ne.mediaone.net [24.147.224.201]) by hub.freebsd.org (Postfix) with ESMTP id 35AE837C51E for ; Thu, 13 Jul 2000 12:11:42 -0700 (PDT) (envelope-from housley@thehousleys.net) Received: from baby.int.thehousleys.net (baby.int.thehousleys.net. [192.168.0.24]) by thehousleys.net (8.9.3/8.9.3) with ESMTP id PAA67830 for ; Thu, 13 Jul 2000 15:11:39 -0400 (EDT) (envelope-from housley@thehousleys.net) Received: (from housley@localhost) by baby.int.thehousleys.net (8.9.3/8.9.3) id PAA70731; Thu, 13 Jul 2000 15:11:39 -0400 (EDT) (envelope-from housley) Message-Id: <200007131911.PAA70731@baby.int.thehousleys.net> Date: Thu, 13 Jul 2000 15:11:39 -0400 (EDT) From: jim@thehousleys.net Reply-To: jim@thehousleys.net To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.2 Subject: bin/19897: Allow building more then 1 SENDMAIL_CF Sender: owner-freebsd-bugs@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org >Number: 19897 >Category: bin >Synopsis: Allow building more then 1 SENDMAIL_CF >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Thu Jul 13 12:20:02 PDT 2000 >Closed-Date: >Last-Modified: >Originator: James Housley >Release: FreeBSD 4.0-STABLE i386 >Organization: The Housleys dot Net >Environment: FreeBSD 4- and 5- >Description: Currently SENDMAIL_CF specified a single file to be compiled and installed as sendmail.cf. However if you do all building on a single machine for your network there might be a need for different sendmail.cf's. The attached patch adds ADDITIONAL_SENDMAIL_CF will multiple files maybe specified to be built. None are installed, only the file specified by SENDMAIL_CF is installed. >How-To-Repeat: >Fix: --- etc/sendmail/Makefile.orig Thu Jul 13 15:02:16 2000 +++ etc/sendmail/Makefile Thu Jul 13 15:01:46 2000 @@ -17,6 +17,12 @@ ALL= freebsd.cf +# Additional SENDMAIL_CF's to be built, but NOT installed. Only +# SENDMAIL_CF is installed. +.if defined(ADDITIONAL_SENDMAIL_CF) +ALL+= ${ADDITIONAL_SENDMAIL_CF} +.endif + # Local sendmail.cf, may be set in /etc/make.conf. Warning! If set, this # causes 'make install' to always copy it over /etc/mail/sendmail.cf!!! # Caveat emptor! Be sure you want this before you enable it. >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-bugs" in the body of the message