From owner-cvs-all Mon Jun 1 13:19:24 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA23508 for cvs-all-outgoing; Mon, 1 Jun 1998 13:19:24 -0700 (PDT) (envelope-from owner-cvs-all@FreeBSD.ORG) Received: from spinner.netplex.com.au (spinner.netplex.com.au [202.12.86.3]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA23317; Mon, 1 Jun 1998 13:18:50 -0700 (PDT) (envelope-from peter@netplex.com.au) Received: from spinner.netplex.com.au (localhost [127.0.0.1]) by spinner.netplex.com.au (8.8.8/8.8.8/Spinner) with ESMTP id EAA11054; Tue, 2 Jun 1998 04:15:43 +0800 (WST) (envelope-from peter@spinner.netplex.com.au) Message-Id: <199806012015.EAA11054@spinner.netplex.com.au> X-Mailer: exmh version 2.0.2 2/24/98 To: Mark Murray cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-share@FreeBSD.ORG Subject: Re: cvs commit: src/share/mk bsd.libnames.mk In-reply-to: Your message of "Mon, 01 Jun 1998 21:53:20 +0200." <199806011953.VAA27255@greenpeace.grondar.za> Date: Tue, 02 Jun 1998 04:15:42 +0800 From: Peter Wemm Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk Mark Murray wrote: > Peter Wemm wrote: > > peter 1998/06/01 12:38:21 PDT > > > > Modified files: > > share/mk bsd.libnames.mk > > Log: > > add libcipher, and update comments about libdes, libkdb, libkrb etc > > which do exist but are in the secure dist rather than the base. > > > > Revision Changes Path > > 1.15 +5 -4 src/share/mk/bsd.libnames.mk > > Another problem: The kerberised apps (rlogin, etc) all have > > .if exists(${DESTDIR}/usr/lib/libkrb.a) && defined(MAKE_KERBEROS4) > : > .endif > > in their Makefiles. Spot the problem? The /usr/lib/ test will > fail in the Transitional Period (tm). Any clever ideas other than the > thoroughly horrible > > .if (exists(${DESTDIR}/usr/lib/libkrb.a) || exists(${DESTDIR}/usr/lib/aout/li bkrb.a)) && defined(MAKE_KERBEROS4) > : > .endif How about something really silly like: .if exists(${LIBKRB}) && defined(MAKE_KERBEROS4) : .endif After all: LIBKDB?= ${DESTDIR}${LIBDIR}/libkdb.a LIBKRB?= ${DESTDIR}${LIBDIR}/libkrb.a LIBDIR varies depending on the build environment, so it should work reasonably well... Cheers, -Peter -- Peter Wemm Netplex Consulting To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message