mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-24 00:45:52 +00:00
a88be6b77c
- Install additional cclient header files - Move SSL dependency generation for cclient to post-build - Bump PORTEPOCH - Removed -drac PKGNAMESUFFIX,more confusion than extra info - Remove futile build of imapd/ipop3d/ipop2d in cclient, and libc-client4.a in the imap-uw port. - Respect CFLAGS and CC PR: 30954 Submitted by: maintainer
31 lines
681 B
Plaintext
31 lines
681 B
Plaintext
--- src/mtest/Makefile.orig Wed Oct 25 01:55:39 2000
|
|
+++ src/mtest/Makefile Mon Oct 1 03:42:11 2001
|
|
@@ -19,24 +19,17 @@
|
|
|
|
|
|
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-client4
|
|
|
|
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
|