diff options
author | jtb <jtb@pkgsrc.org> | 2001-02-02 00:23:49 +0000 |
---|---|---|
committer | jtb <jtb@pkgsrc.org> | 2001-02-02 00:23:49 +0000 |
commit | fc38234e923144ddd81187c10365843d248f9497 (patch) | |
tree | 1a25f8f6c5a3cdb8eedc545afafe16f4f48795a4 /math/slatec | |
parent | afc80f1b2d11aa4eed9e764da1f3122077d25dcb (diff) | |
download | pkgsrc-fc38234e923144ddd81187c10365843d248f9497.tar.gz |
Don't build shared Fortran libraries. They're too problematic.
Strictly numerical libraries, like fftpack, work fine, but some
which make use of Fortran I/O have problems resolving symbols.
This is a known problem with g77/f2c.
Diffstat (limited to 'math/slatec')
-rw-r--r-- | math/slatec/files/Makefile | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/math/slatec/files/Makefile b/math/slatec/files/Makefile index 2371fa4345c..ac6b4602b0a 100644 --- a/math/slatec/files/Makefile +++ b/math/slatec/files/Makefile @@ -2,12 +2,6 @@ LIB = slatec LIBDIR = ${PREFIX}/lib -.if ${FC}=="f77" || ${FC}=="g77" -FOPTS=-funroll-loops -O2 -.else -FOPTS=-O2 -.endif - all: lib$(LIB).a OBJS = aaaaaa.o acosh.o ai.o aie.o albeta.o algams.o ali.o alngam.o \ @@ -220,9 +214,6 @@ i1mach.o: r1mach.o: $(FC) -c $< -.f.o: - $(FC) $(FFLAGS) $(FOPTS) -c $< - install: lib$(LIB).a $(BSD_INSTALL_DATA) $? $(LIBDIR) |