1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-05 22:43:24 +00:00
freebsd-ports/misc/ytree/files/patch-aa

44 lines
1.1 KiB
Plaintext
Raw Normal View History

--- Makefile.orig Sun Jan 2 08:17:33 2000
+++ Makefile Thu Mar 30 20:28:01 2000
@@ -6,13 +6,13 @@
#
############################################################################
-CC = cc
+CC ?= cc
#
1998-12-09 10:46:59 +00:00
# ADD_CFLAGS: Add -DVI_KEYS if you want vi-cursor-keys
#
-ADD_CFLAGS = -O # -DVI_KEYS
+#ADD_CFLAGS = -O # -DVI_KEYS
LFLAGS =
1998-12-09 10:46:59 +00:00
BINDIR = /usr/bin
@@ -27,10 +27,10 @@
###########################
# If color doesn't work, comment out
1998-05-13 17:13:22 +00:00
# the following line and recompile
1998-12-09 10:46:59 +00:00
-COLOR = -DCOLOR_SUPPORT
+#COLOR = -DCOLOR_SUPPORT
1998-05-13 17:13:22 +00:00
#CLOCK = -DCLOCK_SUPPORT
-CFLAGS = $(ADD_CFLAGS) $(COLOR) $(CLOCK)
1998-12-09 10:46:59 +00:00
-LIBS = -lncurses
1998-05-13 17:13:22 +00:00
+#CFLAGS = $(ADD_CFLAGS) $(COLOR) $(CLOCK)
1998-12-09 10:46:59 +00:00
+#LIBS = -lncurses
1998-05-13 17:13:22 +00:00
###########################
1998-12-09 10:46:59 +00:00
# LINUX without ncurses
@@ -41,8 +41,8 @@
###########################
1998-12-09 10:46:59 +00:00
# FreeBSD (Thanks to Peter Brevik)
###########################
1998-12-09 10:46:59 +00:00
-#CFLAGS = -DCOLOR_SUPPORT -DNCURSES
-#LIBS = -lncurses -lmytinfo -lcompat
+CFLAGS += -DCOLOR_SUPPORT -DNCURSES
+LIBS = -lncurses -lmytinfo -lcompat
###########################
1998-12-09 10:46:59 +00:00
# DOS/Windows with DJGPP