Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 01 Jun 1998 21:53:20 +0200
From:      Mark Murray <mark@grondar.za>
To:        Peter Wemm <peter@FreeBSD.ORG>
Cc:        cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-share@FreeBSD.ORG
Subject:   Re: cvs commit: src/share/mk bsd.libnames.mk 
Message-ID:  <199806011953.VAA27255@greenpeace.grondar.za>

next in thread | raw e-mail | index | archive | help
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/<libname> 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/libkrb.a)) && defined(MAKE_KERBEROS4)
:
.endif

??

M
--
Mark Murray
Join the anti-SPAM movement: http://www.cauce.org



To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe cvs-all" in the body of the message



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