2000b. Pkgsrc changes include: - Reduce the number of patches. - Install full set of headers for c-client. - Install library as libc-client.* and make compatibility links from libc-client.* to libimapuw.*. Other software that use the c-client library seem to look for libc-client.*; no software looks for libimapuw.*. - Install the IMAP RFCs along with the rest of the UW-IMAP documentation. - Introduce a new compile-time knob, CCLIENT_MBOX_FMT, that controls the default format for new mailboxes created by c-client programs.
16 lines
374 B
Text
16 lines
374 B
Text
$NetBSD: patch-ai,v 1.3 2001/02/08 19:11:38 jlam Exp $
|
|
|
|
--- src/mtest/mtest.c.orig Tue Oct 24 19:16:33 2000
|
|
+++ src/mtest/mtest.c
|
|
@@ -36,6 +36,11 @@
|
|
|
|
/* Excellent reasons to hate ifdefs, and why my real code never uses them */
|
|
|
|
+#if defined(__NetBSD__) /* NetBSD no longer defines unix. */
|
|
+# undef unix
|
|
+# define unix 1
|
|
+#endif
|
|
+
|
|
#ifndef unix
|
|
# define unix 0
|
|
#endif
|