From owner-freebsd-arch Thu Jun 21 10:21:27 2001 Delivered-To: freebsd-arch@freebsd.org Received: from ringworld.nanolink.com (ringworld.nanolink.com [195.24.48.13]) by hub.freebsd.org (Postfix) with SMTP id 9079737B401 for ; Thu, 21 Jun 2001 10:21:18 -0700 (PDT) (envelope-from roam@orbitel.bg) Received: (qmail 22358 invoked by uid 1000); 21 Jun 2001 17:19:45 -0000 Date: Thu, 21 Jun 2001 20:19:45 +0300 From: Peter Pentchev To: Jordan Hubbard Cc: arch@FreeBSD.org Subject: src/release/Makefile NO_SENDMAIL fix Message-ID: <20010621201945.A22338@ringworld.oblivion.bg> Mail-Followup-To: Jordan Hubbard , arch@FreeBSD.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-freebsd-arch@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, Is there an overwhelming reason this should not go into the tree, thus enabling custom NO_SENDMAIL release builds? G'luck, Peter -- If I were you, who would be reading this sentence? Index: src/release/Makefile =================================================================== RCS file: /home/ncvs/src/release/Makefile,v retrieving revision 1.624 diff -u -r1.624 Makefile --- src/release/Makefile 2001/06/14 23:48:13 1.624 +++ src/release/Makefile 2001/06/21 17:20:01 @@ -184,6 +184,12 @@ CD_DISC1= ${CD}/disc1 CD_DISC2= ${CD}/disc2 +# Things that need to be compiled without crypto support in releases +FIXCRYPTO= bin/ed usr.sbin/ppp usr.sbin/pppd usr.sbin/tcpdump/tcpdump +.if !defined(NO_SENDMAIL) +FIXCRYPTO+= usr.sbin/sendmail +.endif + # Where the bootstrap ports (see DOCPORTS) get installed. LOCALDIR= /usr/local/bin @@ -466,7 +472,7 @@ # release.5: # Handle some grief caused by the munition braindeadness. - for i in bin/ed usr.sbin/ppp usr.sbin/pppd usr.sbin/sendmail usr.sbin/tcpdump/tcpdump ; do \ + for i in ${FIXCRYPTO}; do \ ( cd ${.CURDIR}/../$$i; \ make -DNOCRYPT clean all distribute DISTDIR=${RD}/trees ) ; \ done To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-arch" in the body of the message