mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-07 22:58:11 +00:00
9bc44cdb64
"My Mailer" is an incarnation of a UNIX text-based mailer designed to be an intermediate step between mail and pine. PR: ports/4831 Submitted by: andy@icc.surw.chel.su
22 lines
688 B
Plaintext
22 lines
688 B
Plaintext
--- Makefile.orig Mon Sep 22 16:20:20 1997
|
|
+++ Makefile Sat Nov 1 08:55:42 1997
|
|
@@ -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\"
|
|
|
|
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 = -lncurses
|
|
+LIBS = -lncurses -lcompat
|
|
CXX = g++
|
|
INCDIRS = -Imd5 -I/usr/include/ncurses
|
|
-CXXFLAGS = $(DEFS) $(INCDIRS) -g
|
|
+CXXFLAGS = $(DEFS) $(INCDIRS) $(CFLAGS)
|
|
|
|
# Remind 'make' how to make C++ files.. *sigh*
|
|
include .c++howto
|