mirror of
https://git.freebsd.org/ports.git
synced 2025-04-29 01:56:37 -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.
28 lines
630 B
Text
28 lines
630 B
Text
--- src/mailutil/Makefile.orig 2022-04-17 00:12:02 UTC
|
|
+++ src/mailutil/Makefile
|
|
@@ -26,22 +26,15 @@
|
|
|
|
|
|
C = ../c-client
|
|
-CCLIENTLIB = $C/c-client.a
|
|
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
|
|
|
|
-mailutil: $(CCLIENTLIB) mailutil.o
|
|
+mailutil: mailutil.o
|
|
$(CC) $(CFLAGS) -o mailutil mailutil.o $(LDFLAGS)
|
|
-
|
|
-mailutil.o: $C/mail.h $C/misc.h $C/osdep.h
|
|
-
|
|
-$(CCLIENTLIB):
|
|
- cd $C;make
|
|
|
|
clean:
|
|
rm -f *.o mailutil
|