mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
c242b7b04a
PR: 11352 Submitted by: maintainer
24 lines
775 B
Plaintext
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
|