diff options
author | Peter Pentchev <roam@FreeBSD.org> | 2005-12-15 12:54:25 +0000 |
---|---|---|
committer | Peter Pentchev <roam@FreeBSD.org> | 2005-12-15 12:54:25 +0000 |
commit | 6e7d9074cf50542e7fffb2dfde6d19b19266f4e1 (patch) | |
tree | 57493f5037fbb61e88a7bed2edd33bddaf290505 /misc/display/files/patch-ab | |
parent | Update to version 1.0-8174, the latest from nVidia. Release highlights: (diff) |
Update to display-1.2a, which incorporates our 8-bit character patch and
also unconditionally uses libncurses now.
Honor ${STRIP}.
Notes
Notes:
svn path=/head/; revision=151239
Diffstat (limited to 'misc/display/files/patch-ab')
-rw-r--r-- | misc/display/files/patch-ab | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/misc/display/files/patch-ab b/misc/display/files/patch-ab index 4f1a91044405..4888b3600a14 100644 --- a/misc/display/files/patch-ab +++ b/misc/display/files/patch-ab @@ -1,29 +1,30 @@ ---- Makefile.in.orig Tue Nov 28 13:17:40 2000 -+++ Makefile.in Fri Mar 8 01:17:24 2002 -@@ -2,10 +2,13 @@ +--- Makefile.in.orig Wed Dec 14 05:50:47 2005 ++++ Makefile.in Thu Dec 15 14:49:37 2005 +@@ -2,10 +2,14 @@ # vix 15dec86 [stolen from 'which'] # start changing -CFLAGS = -O -DEST_DIR = /usr/local/bin --CURSES_LIBS = -lcurses -ltermcap --MAN_DIR = /usr/local/man/man1 +prefix = @prefix@ +exec_prefix = @exec_prefix@ +CFLAGS = @CFLAGS@ ++LDFLAGS = @LDFLAGS@ +CC = @CC@ +DEST_DIR = @bindir@ -+CURSES_LIBS = -lncurses + CURSES_LIBS = -lncurses +-MAN_DIR = /usr/local/man/man1 +MAN_DIR = @mandir@/man1 MAN_SUFFIX = 1 SHAR_ARGS = -b -c -v # stop changing -@@ -16,7 +19,7 @@ +@@ -16,8 +20,7 @@ all : display display : display.c - cc $(CFLAGS) -o $@ display.c $(CURSES_LIBS) -+ $(CC) $(CFLAGS) -o $@ display.c $(CURSES_LIBS) - strip display +- strip display ++ $(CC) $(CFLAGS) $(LDFLAGS) -o $@ display.c $(CURSES_LIBS) install : all + mv display $(DEST_DIR) |