Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 13 Jul 2000 15:11:39 -0400 (EDT)
From:      jim@thehousleys.net
To:        FreeBSD-gnats-submit@freebsd.org
Subject:   bin/19897: Allow building more then 1 SENDMAIL_CF
Message-ID:  <200007131911.PAA70731@baby.int.thehousleys.net>

next in thread | raw e-mail | index | archive | help

>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




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200007131911.PAA70731>