mirror of
https://git.freebsd.org/ports.git
synced 2025-04-28 09:36:41 -04:00
Nothing has been released yet, but some interesting patches have been committed. See <https://github.com/nkhorman/panda-imap/commits/master>. Since I’m there, remove the option for better better interoperability with Netscape.
25 lines
608 B
Text
25 lines
608 B
Text
--- src/tmail/Makefile.orig 2022-04-17 00:12:02 UTC
|
|
+++ src/tmail/Makefile
|
|
@@ -31,19 +31,11 @@ SHELL = /bin/sh
|
|
|
|
# Get local definitions from c-client directory
|
|
|
|
-CC = `cat $C/CCTYPE`
|
|
-CFLAGS = -I$C `cat $C/CFLAGS`
|
|
-LDFLAGS = $(CCLIENTLIB) `cat $C/LDFLAGS`
|
|
+CFLAGS+= -DNFSKLUDGE -I$(LOCALBASE)/include/c-client
|
|
+LDFLAGS+= -L$(LOCALBASE)/lib -lc-client
|
|
|
|
-tmail: $(CCLIENTLIB) tmail.o tquota.o
|
|
+tmail: tmail.o tquota.o
|
|
$(CC) $(CFLAGS) -o tmail tmail.o tquota.o $(LDFLAGS)
|
|
-
|
|
-tmail.o: $C/mail.h $C/misc.h $C/osdep.h tquota.h
|
|
-
|
|
-tquota.o: tquota.h
|
|
-
|
|
-$(CCLIENTLIB):
|
|
- cd $C;make
|
|
|
|
clean:
|
|
rm -f *.o tmail
|