diff options
author | Steve Price <steve@FreeBSD.org> | 2000-08-08 03:01:28 +0000 |
---|---|---|
committer | Steve Price <steve@FreeBSD.org> | 2000-08-08 03:01:28 +0000 |
commit | a4d704c094a5cb7adb7f89515173946252421767 (patch) | |
tree | d3640f830b47a287e150320fc735c129ab60b2db | |
parent | c39e236d5da03ccc2c48dad5d124592c2b8702d7 (diff) | |
download | ports-a4d704c094a5cb7adb7f89515173946252421767.tar.gz ports-a4d704c094a5cb7adb7f89515173946252421767.zip |
Notes
-rw-r--r-- | sysutils/heat/files/patch-aa | 23 |
1 files changed, 20 insertions, 3 deletions
diff --git a/sysutils/heat/files/patch-aa b/sysutils/heat/files/patch-aa index 75d2325a2ae2..6fd6e9544a24 100644 --- a/sysutils/heat/files/patch-aa +++ b/sysutils/heat/files/patch-aa @@ -1,6 +1,6 @@ ---- Makefile.orig Wed Jan 5 09:57:53 2000 -+++ Makefile Sun May 7 08:45:50 2000 -@@ -1,7 +1,7 @@ +--- Makefile.orig Wed Jan 5 08:57:53 2000 ++++ Makefile Sun Aug 6 20:47:07 2000 +@@ -1,12 +1,15 @@ # # Makefile # @@ -9,3 +9,20 @@ CFLAGS += -Wall -Wunused -Wstrict-prototypes # # __for debugging__ + # CFLAGS += -pipe -g -m486 -Wall -Werror -Wunused -Wstrict-prototypes + ++.if $(ARCH) == "alpha" ++LDFLAGS+= -lio ++.endif + + BIN = heat + +@@ -19,7 +22,7 @@ + $(CC) $(CFLAGS) -c main.c + + main: main.o winbond.o +- $(CC) main.o winbond.o -o $(BIN) ++ $(CC) main.o winbond.o -o $(BIN) $(LDFLAGS) + strip $(BIN) + + clean: |