mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
19a336cf01
PR: 17718 Submitted by: KATO Tsuguru <tkato@prontomail.ne.jp>
24 lines
758 B
Plaintext
24 lines
758 B
Plaintext
--- Makefile.orig Fri Mar 31 03:26:17 2000
|
|
+++ Makefile Fri Mar 31 03:27:50 2000
|
|
@@ -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) -O2
|
|
+LIBS = -lncurses
|
|
+CXX ?= g++ -g
|
|
+INCDIRS = -Imd5
|
|
+CXXFLAGS += $(DEFS) $(INCDIRS)
|
|
|
|
# Remind 'make' how to make C++ files.. *sigh*
|
|
include .c++howto
|