From owner-cvs-etc Mon Mar 20 21:23:32 1995 Return-Path: cvs-etc-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id VAA08076 for cvs-etc-outgoing; Mon, 20 Mar 1995 21:23:32 -0800 Received: from time.cdrom.com (time.cdrom.com [192.216.223.46]) by freefall.cdrom.com (8.6.10/8.6.6) with ESMTP id VAA08067; Mon, 20 Mar 1995 21:23:22 -0800 Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.34]) by time.cdrom.com (8.6.11/8.6.9) with ESMTP id VAA15740; Mon, 20 Mar 1995 21:22:55 -0800 Received: (from bde@localhost) by godzilla.zeta.org.au (8.6.9/8.6.9) id PAA04689; Tue, 21 Mar 1995 15:19:37 +1000 Date: Tue, 21 Mar 1995 15:19:37 +1000 From: Bruce Evans Message-Id: <199503210519.PAA04689@godzilla.zeta.org.au> To: phk@ref.tfs.com, rgrimes@gndrsh.aac.dev.com Subject: Re: cvs commit: src/etc make.conf Cc: CVS-commiters@time.cdrom.com, cvs-etc@time.cdrom.com, jkh@freebsd.org Sender: cvs-etc-owner@freebsd.org Precedence: bulk >> I see one more buglet in this file: >> # >> # To compile and install the Sun libm instead of the default use: >> # >> WANT_MSUN= yes >> # >> # >> >> It was agreed long ago that NOTHING, NOTA, ZIPO should be effected >> by the contents of /etc/make.conf as shipped. Now it has WANT_MSUN >> turned on. >> >Right. Who changes&commits ? It's hardly worth the trouble of fixing this. msun should become libm. If you want to support the old library then everything should be renamed: msun -> libm libm -> libmould (sic) We also need dynamic support for the i387 functions. -DHAVE_FPU is no good because it can't be used for the distribution libraries. Something like if (_have_i387) result = _i387_pow(x, y); else result = __ieee754_pow(x, y); would add less time overhead than shared linkage. Bruce