1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-01 22:05:08 +00:00
freebsd-ports/mail/mmr/files/patch-aa
Steve Price c242b7b04a Update to version 1.5.2.
PR:		11352
Submitted by:	maintainer
1999-05-01 02:47:40 +00:00

24 lines
775 B
Plaintext

--- Makefile Thu Dec 24 23:32:56 1998
+++ /home/andy/tmp/wrk/Makefile Tue Apr 27 18:06:19 1999
@@ -7,15 +7,15 @@
# (Toggled at runtime with ^T)
# -DMAILPATH=\"/some/path\"
# Set the default mail spool directory
-DEFS = -DTHREADMAIL
+DEFS = -DTHREADMAIL -DMAILPATH=\"/var/mail\" -DMAILER=\"/usr/sbin/sendmail\ -t\"
OBJS = main.o rcfile.o listing.o handlemail.o commands.o terminal.o mailmsg.o \
mime.o mimetype.o base64.o filemap.o iobottle.o my_regex.o outgoing.o \
md5/libmd5.a
-LIBS = -lcurses -ltermcap -lnsl
-CXX = g++ -g
-INCDIRS = -Imd5 -I/usr/include/ncurses
-CXXFLAGS = $(DEFS) $(INCDIRS) $(CFLAGS)
+LIBS = -lncurses
+CXX?= g++ -g
+INCDIRS = -Imd5
+CXXFLAGS+= $(DEFS) $(INCDIRS)
# Remind 'make' how to make C++ files.. *sigh*
include .c++howto