including (from f2c/changes) = permit long names in #line lines = minor tweaks to make some (C++) compilers happier = some casts for systems with 64-bit longs. = some fixes to format strings -Add a -v (verbose) option to the f2c-f77 script. This is (unfortunately) used by some GNU configure scripts (octave for example) for examining the fortran compiler behaviour.
23 lines
504 B
Text
23 lines
504 B
Text
$NetBSD: patch-ab,v 1.4 1999/12/16 00:58:27 dmcmahill Exp $
|
|
|
|
Set optimisation level appropriately
|
|
|
|
Don't do additional checksums of the source (gets thrown
|
|
off by our patches, plus we already have files/md5)
|
|
|
|
--- ./src/makefile.orig Wed Feb 25 08:18:04 1998
|
|
+++ ./src/makefile Tue Dec 7 18:15:45 1999
|
|
@@ -3,5 +3,5 @@
|
|
.SUFFIXES: .c .o
|
|
CC = cc
|
|
-CFLAGS = -O
|
|
+CFLAGS = -O2
|
|
SHELL = /bin/sh
|
|
YACC = yacc
|
|
@@ -25,5 +25,5 @@
|
|
OBJECTS = $(OBJECTSd) $(MALLOC)
|
|
|
|
-all: xsum.out f2c
|
|
+all: f2c
|
|
|
|
f2c: $(OBJECTS)
|