summaryrefslogtreecommitdiff
path: root/mail/imap-uw/files/patch-ag
diff options
context:
space:
mode:
authorKelly Yancey <kbyanc@FreeBSD.org>2000-07-17 08:47:13 +0000
committerKelly Yancey <kbyanc@FreeBSD.org>2000-07-17 08:47:13 +0000
commit4e4ffa22f24f4c58db3725bd16d78b03fd863b53 (patch)
treef10a7789bf0f2cf75e7a1125fd53e22b8fc0cd9d /mail/imap-uw/files/patch-ag
parentRemove extra whiteline. (diff)
Update imap-uw to depend on the cclient port.
The mail/imap-uw port used to build a shared library version of cclient of it's own (in fact, this is where much of the infrastructure for the cclient port came from). However, since more things depend on cclient then just UW's imap server, I broke them into separate ports. From now on, nothing should have to depend on imap-uw just to get c-client. PR: 19749 Submitted by: kbyanc@posi.net
Diffstat (limited to 'mail/imap-uw/files/patch-ag')
-rw-r--r--mail/imap-uw/files/patch-ag32
1 files changed, 32 insertions, 0 deletions
diff --git a/mail/imap-uw/files/patch-ag b/mail/imap-uw/files/patch-ag
new file mode 100644
index 000000000000..d21bfc9e34ee
--- /dev/null
+++ b/mail/imap-uw/files/patch-ag
@@ -0,0 +1,32 @@
+--- src/mtest/Makefile.orig Tue Apr 14 15:42:04 1998
++++ src/mtest/Makefile Fri Jul 7 00:28:59 2000
+@@ -32,24 +32,20 @@
+
+
+ C = ../c-client
+-CCLIENTLIB = $C/c-client.a
++#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 = `cat $C/CFLAGS`
++LDFLAGS = `cat $C/LDFLAGS`
++
+
+ all: mtest
+
+-mtest: $(CCLIENTLIB) mtest.o
++mtest: mtest.o
+ $(CC) $(CFLAGS) -o mtest mtest.o $(LDFLAGS)
+-
+-mtest.o: $C/mail.h $C/misc.h $C/osdep.h $C/rfc822.h $C/smtp.h $C/nntp.h
+-
+-$(CCLIENTLIB):
+- cd $C;make
+
+ clean:
+ rm -f *.o mtest || true