summaryrefslogtreecommitdiff
path: root/mail/popd/files/patch-src::Makefile
diff options
context:
space:
mode:
authorSheldon Hearn <sheldonh@FreeBSD.org>2002-01-18 14:41:58 +0000
committerSheldon Hearn <sheldonh@FreeBSD.org>2002-01-18 14:41:58 +0000
commita75a8789a0ef241e64cc228aa597ef6cbafd39ad (patch)
treeb7e9505589c47fa4239ba037715a30212f7bf915 /mail/popd/files/patch-src::Makefile
parentadd c_parser 0.2.5 (diff)
Update to popd-2.0:
* SSL support * Wire-format option for mailboxes. * Mailbox support cleanup (esp. Maildir) Note that bulletins are non-functional in this release.
Diffstat (limited to 'mail/popd/files/patch-src::Makefile')
-rw-r--r--mail/popd/files/patch-src::Makefile27
1 files changed, 27 insertions, 0 deletions
diff --git a/mail/popd/files/patch-src::Makefile b/mail/popd/files/patch-src::Makefile
new file mode 100644
index 000000000000..0da20f3c36f4
--- /dev/null
+++ b/mail/popd/files/patch-src::Makefile
@@ -0,0 +1,27 @@
+--- src/Makefile.orig Thu Dec 27 12:13:00 2001
++++ src/Makefile Fri Jan 18 16:14:29 2002
+@@ -3,14 +3,19 @@
+ #
+
+ PROG= popd
+-CFLAGS+= -Wall -Werror -pedantic -I../lib -L../lib -L/usr/local/lib \
++CFLAGS+= -Wall -Werror -pedantic -I../lib -L../lib \
+ -DUSE_SSL -DUSE_IPV6
+ LDADD= -lcrypt -lmd -lradius -lpoputil -lssl -lcrypto
+-DPSDD= ${LIBCRYPT} ${LIBMD}
++DPADD= ${LIBCRYPT} ${LIBMD} ${LIBRADIUS} ${LIBSSL} ${LIBCRYPTO} \
++ ../lib/libpoputil.a
+ SRCS= popd.c authenticate.c transaction.c signals.c proxy.c
+ MAN8= popd.8
+-DESTDIR=/usr/local/
+-BINDIR=bin
+-MANDIR=share/man
++DESTDIR= ${PREFIX}/
++PREFIX?= /usr/local
++BINDIR=libexec
++MANDIR=man/man
++
++popd.8: popd.mdoc
++ sed -e "s,XX_PREFIX_XX,${PREFIX},g" < popd.mdoc > popd.8
+
+ .include <bsd.prog.mk>