diff options
author | Will Andrews <will@FreeBSD.org> | 2000-04-16 04:30:28 +0000 |
---|---|---|
committer | Will Andrews <will@FreeBSD.org> | 2000-04-16 04:30:28 +0000 |
commit | 8a5f39c62162866e0c0bebb3c268b0d34e41abe1 (patch) | |
tree | 4135516246792feff600da429749a5fd4f463e97 /net/mudix/files/patch-aa | |
parent | Start move of mudix from games to net category. mudix will be fixed for (diff) |
Add mudix to net category, moved from games. Also upgrade to version 3.2.
And fix building on 4.0+, which have ncurses in the base, but unfortunately
base ncurses is useless.
Noted by; "Oleg V. Volkov" <rover@lglobus.ru>
Submitted by: KATO Tsuguru <tkato@prontomail.ne.jp> (fix for -current)
Approved by: asami (in regards to no repo-copy)
Notes
Notes:
svn path=/head/; revision=27636
Diffstat (limited to 'net/mudix/files/patch-aa')
-rw-r--r-- | net/mudix/files/patch-aa | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/net/mudix/files/patch-aa b/net/mudix/files/patch-aa new file mode 100644 index 000000000000..b74c0643b789 --- /dev/null +++ b/net/mudix/files/patch-aa @@ -0,0 +1,18 @@ +--- Makefile Sun Mar 26 13:02:11 2000 ++++ Makefile.new Sun Mar 26 13:41:34 2000 +@@ -1,10 +1,11 @@ +-CC = gcc ++LOCALBASE ?= /usr/local ++CC ?= gcc + PROF = + DEBUG = + NOCRYPT = +-O_FLAGS = -O -g +-C_FLAGS = $(O_FLAGS) -DPOLLING -Wall $(DEBUG) $(PROF) $(NOCRYPT) +-L_FLAGS = $(O_FLAGS) -lpanel -lncurses $(DEBUG) $(PROF) ++O_FLAGS = ${CFLAGS} ++C_FLAGS = $(O_FLAGS) -DPOLLING -Wall $(DEBUG) $(PROF) $(NOCRYPT) -I$(LOCALBASE)/include/ncurses -I$(LOCALBASE)/include ++L_FLAGS = $(O_FLAGS) -lpanel -lncurses $(DEBUG) $(PROF) -L$(LOCALBASE)/lib + + O_FILES = alias.o commands.o file.o input.o log.o mudix.o output.o parse.o \ + path.o settings.o tabs.o telnet.o trigger.o |