From owner-freebsd-hackers Mon Sep 15 09:55:14 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id JAA08951 for hackers-outgoing; Mon, 15 Sep 1997 09:55:14 -0700 (PDT) Received: from mexico.brainstorm.eu.org (root@mexico.brainstorm.fr [193.56.58.253]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id JAA08943 for ; Mon, 15 Sep 1997 09:55:08 -0700 (PDT) Received: from brasil.brainstorm.eu.org (brasil.brainstorm.fr [193.56.58.33]) by mexico.brainstorm.eu.org (8.8.4/8.8.4) with ESMTP id SAA00291 for ; Mon, 15 Sep 1997 18:55:01 +0200 Received: (from uucp@localhost) by brasil.brainstorm.eu.org (8.8.6/brasil-1.2) with UUCP id SAA00858 for freebsd-hackers@FreeBSD.ORG; Mon, 15 Sep 1997 18:54:48 +0200 Received: (from roberto@localhost) by keltia.freenix.fr (8.8.7/keltia-uucp-2.10/nospam) id IAA17113; Mon, 15 Sep 1997 08:00:13 +0200 (CEST) Message-ID: <19970915080012.46448@keltia.freenix.fr> Date: Mon, 15 Sep 1997 08:00:12 +0200 From: Ollivier Robert To: freebsd-hackers@FreeBSD.ORG Subject: Re: lib/libF77 and lib/libI77 References: <199709142347.TAA17189@ccomp.inode.com> <6806.874285868@time.cdrom.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.76 In-Reply-To: <6806.874285868@time.cdrom.com>; from Jordan K. Hubbard on Sun, Sep 14, 1997 at 06:11:08PM -0700 X-Operating-System: FreeBSD 3.0-CURRENT ctm#3649 AMD-K6 MMX @ 208 MHz Sender: owner-freebsd-hackers@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk According to Jordan K. Hubbard: > Yeah, but they're not and that means that they haven't been part of > the binary distributions, either. So that begs the question: What has They _are_ part of the binary distribution... in libf2c.a ! 248 [7:56] root@keltia:/usr/src# ll /usr/lib/libf2c* -r--r--r-- 1 root wheel 107298 Sep 15 01:23 /usr/lib/libf2c.a -r--r--r-- 1 root wheel 79744 May 24 12:04 /usr/lib/libf2c.so.2.0 (I use -C for install for the date on the .so file is still May). What am I missing ? src/lib/libf2c/Makefile ------------------------------------------------------------ .PATH: ${.CURDIR}/../libF77 ${.CURDIR}/../libI77 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ LIB=f2c CFLAGS+= -DIEEE_drem -DNON_ANSI_RW_MODES -DNON_UNIX_STDIO -DPedantic -I${.CURDIR}/../../usr.bin/f2c MISC = Version.c main.c s_rnge.c abort_.c getarg_.c iargc_.c getenv_.c\ signal_.c s_stop.c s_paus.c system_.c cabs.c\ derf_.c derfc_.c erf_.c erfc_.c sig_die.c F77_aloc.c POW = pow_ci.c pow_dd.c pow_di.c pow_hh.c pow_ii.c pow_ri.c pow_zi.c pow_zz.c CX = c_abs.c c_cos.c c_div.c c_exp.c c_log.c c_sin.c c_sqrt.c DCX = z_cos.c z_div.c z_exp.c z_log.c z_sin.c z_sqrt.c REAL = r_abs.c r_acos.c r_asin.c r_atan.c r_atn2.c r_cnjg.c r_cos.c\ r_cosh.c r_dim.c r_exp.c r_imag.c r_int.c\ r_lg10.c r_log.c r_mod.c r_nint.c r_sign.c\ r_sin.c r_sinh.c r_sqrt.c r_tan.c r_tanh.c DBL = d_abs.c d_acos.c d_asin.c d_atan.c d_atn2.c\ d_cnjg.c d_cos.c d_cosh.c d_dim.c d_exp.c\ d_imag.c d_int.c d_lg10.c d_log.c d_mod.c\ d_nint.c d_prod.c d_sign.c d_sin.c d_sinh.c\ d_sqrt.c d_tan.c d_tanh.c INT = i_abs.c i_dim.c i_dnnt.c i_indx.c i_len.c i_mod.c i_nint.c i_sign.c HALF = h_abs.c h_dim.c h_dnnt.c h_indx.c h_len.c h_mod.c h_nint.c h_sign.c CMP = l_ge.c l_gt.c l_le.c l_lt.c hl_ge.c hl_gt.c hl_le.c hl_lt.c EFL = ef1asc_.c ef1cmc_.c CHAR = s_cat.c s_cmp.c s_copy.c F90BIT = lbitbits.c lbitshft.c F77SRCS= $(MISC) $(POW) $(CX) $(DCX) $(REAL) $(DBL) $(INT) \ $(HALF) $(CMP) $(EFL) $(CHAR) $(F90BIT) I77SRCS = Version.c backspace.c close.c dfe.c dolio.c due.c endfile.c err.c \ fmt.c fmtlib.c iio.c ilnw.c inquire.c lread.c lwrite.c open.c \ rdfmt.c rewind.c rsfe.c rsli.c rsne.c sfe.c sue.c typesize.c uio.c \ util.c wref.c wrtfmt.c wsfe.c wsle.c wsne.c xwsne.c SRCS= ${F77SRCS} ${I77SRCS} .include ------------------------------------------------------------ -- Ollivier ROBERT -=- FreeBSD: There are no limits -=- roberto@keltia.freenix.fr FreeBSD keltia.freenix.fr 3.0-CURRENT #34: Sun Sep 14 16:30:44 CEST 1997