diff options
author | will <will@FreeBSD.org> | 2000-04-16 04:30:28 +0000 |
---|---|---|
committer | will <will@FreeBSD.org> | 2000-04-16 04:30:28 +0000 |
commit | 79c7aefb71a6d10666b75ac41983833013714ad4 (patch) | |
tree | 9d1906bb3fe129eb8aee0401854b0403385a36a2 /net/mudix/files | |
parent | 1d36a791692f727a9dc0a6c3ca0a4649f7d7b055 (diff) | |
download | FreeBSD-ports-79c7aefb71a6d10666b75ac41983833013714ad4.zip FreeBSD-ports-79c7aefb71a6d10666b75ac41983833013714ad4.tar.gz |
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)
Diffstat (limited to 'net/mudix/files')
-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 0000000..b74c064 --- /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 |