pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/mail/cyrus-imapd24 cyrus-imapd24: Compilation fixes



details:   https://anonhg.NetBSD.org/pkgsrc/rev/9406d7af0b08
branches:  trunk
changeset: 380157:9406d7af0b08
user:      gavan <gavan%pkgsrc.org@localhost>
date:      Sun May 29 19:44:05 2022 +0000

description:
cyrus-imapd24: Compilation fixes

diffstat:

 mail/cyrus-imapd24/distinfo                                 |  10 +++++++++-
 mail/cyrus-imapd24/patches/patch-imtest_Makefile.in         |  12 ++++++++++++
 mail/cyrus-imapd24/patches/patch-lib_Makefile.in            |  12 ++++++++++++
 mail/cyrus-imapd24/patches/patch-master_Makefile.in         |  12 ++++++++++++
 mail/cyrus-imapd24/patches/patch-notifyd_Makefile.in        |  13 +++++++++++++
 mail/cyrus-imapd24/patches/patch-perl_sieve_lib_Makefile.in |  12 ++++++++++++
 mail/cyrus-imapd24/patches/patch-sieve_Makefile.in          |  13 +++++++++++++
 mail/cyrus-imapd24/patches/patch-timsieved_Makefile.in      |  13 +++++++++++++
 8 files changed, 96 insertions(+), 1 deletions(-)

diffs (136 lines):

diff -r d34d8ff169e7 -r 9406d7af0b08 mail/cyrus-imapd24/distinfo
--- a/mail/cyrus-imapd24/distinfo       Sun May 29 19:21:46 2022 +0000
+++ b/mail/cyrus-imapd24/distinfo       Sun May 29 19:44:05 2022 +0000
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.26 2022/04/30 00:25:49 gutteridge Exp $
+$NetBSD: distinfo,v 1.27 2022/05/29 19:44:05 gavan Exp $
 
 BLAKE2s (cyrus-imapd-2.4.20.tar.gz) = fca8c0a2a00abc61bd61c0b563b36403c843fa0f25e35432692394531da8b158
 SHA512 (cyrus-imapd-2.4.20.tar.gz) = a1e7d8b4bc096c57ba36f74f2853eb520503b40beffc80912a0c081bce1df3fa8cd41b00c789d33097be6325563743c9540c11cc6137c51a747880749d2f5b4d
@@ -12,3 +12,11 @@
 SHA1 (patch-configure) = 2b4ea2203f446175fedfe2549534f382e4115579
 SHA1 (patch-imap_idlemsg.c) = 112e8077e1f820d526db342f425dab3ba15e71f2
 SHA1 (patch-imap_mailbox.c) = 9a000763a153863f6c40f8939fe19eab41973cea
+SHA1 (patch-imtest_Makefile.in) = c76d63144a30ea28af12474376451c9e3288be2b
+SHA1 (patch-lib_Makefile.in) = a337c7dc7c22a25d029c4b4d8c7c8b5650bff8f2
+SHA1 (patch-master_Makefile.in) = ec274fab36541e2c03572e72c6ff8e05f24756ef
+SHA1 (patch-notifyd_Makefile.in) = e66b93338f8fc1713be3ff14ba1edad005cb428b
+SHA1 (patch-perl_sieve_lib_Makefile.in) = a2b9ee49c0d01262d04175498122cbf14d92cc
+6f
+SHA1 (patch-sieve_Makefile.in) = 2f802fa3066c42235ff62fefb648c03dff0516b8
+SHA1 (patch-timsieved_Makefile.in) = 9d9717d2346517f3d89c24ef667bd8c650bf60a2
diff -r d34d8ff169e7 -r 9406d7af0b08 mail/cyrus-imapd24/patches/patch-imtest_Makefile.in
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/mail/cyrus-imapd24/patches/patch-imtest_Makefile.in       Sun May 29 19:44:05 2022 +0000
@@ -0,0 +1,12 @@
+$NetBSD: patch-imtest_Makefile.in,v 1.1 2022/05/29 19:44:05 gavan Exp $
+
+--- imtest/Makefile.in.orig    2017-08-18 00:29:14.000000000 +0000
++++ imtest/Makefile.in
+@@ -98,6 +98,6 @@ distclean: clean
+       rm -f Makefile
+ 
+ depend: 
+-      ${MAKEDEPEND} $(CPPFLAGS) $(DEFS) $(CFLAGS) *.c $(srcdir)/*.c 1> makedepend.log 2>&1
++      ${MAKEDEPEND} -- $(CPPFLAGS) $(DEFS) $(CFLAGS) -- *.c $(srcdir)/*.c 1> makedepend.log 2>&1
+ 
+ # DO NOT DELETE THIS LINE -- make depend depends on it.
diff -r d34d8ff169e7 -r 9406d7af0b08 mail/cyrus-imapd24/patches/patch-lib_Makefile.in
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/mail/cyrus-imapd24/patches/patch-lib_Makefile.in  Sun May 29 19:44:05 2022 +0000
@@ -0,0 +1,12 @@
+$NetBSD: patch-lib_Makefile.in,v 1.1 2022/05/29 19:44:05 gavan Exp $
+
+--- lib/Makefile.in.orig       2017-08-18 00:29:14.000000000 +0000
++++ lib/Makefile.in
+@@ -161,6 +161,6 @@ distclean: clean
+       rm -f Makefile
+ 
+ depend:
+-      ${MAKEDEPEND} $(CPPFLAGS) $(DEFS) -I$(srcdir) $(MAKEDEPEND_CFLAGS) *.c $(srcdir)/*.c 1>makedepend.log 2>&1
++      ${MAKEDEPEND} -- $(CPPFLAGS) $(DEFS) -I$(srcdir) $(MAKEDEPEND_CFLAGS) -- *.c $(srcdir)/*.c 1>makedepend.log 2>&1
+ 
+ # DO NOT DELETE THIS LINE -- make depend depends on it.
diff -r d34d8ff169e7 -r 9406d7af0b08 mail/cyrus-imapd24/patches/patch-master_Makefile.in
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/mail/cyrus-imapd24/patches/patch-master_Makefile.in       Sun May 29 19:44:05 2022 +0000
@@ -0,0 +1,12 @@
+$NetBSD: patch-master_Makefile.in,v 1.1 2022/05/29 19:44:05 gavan Exp $
+
+--- master/Makefile.in.orig    2017-08-18 00:29:14.000000000 +0000
++++ master/Makefile.in
+@@ -95,6 +95,6 @@ distclean: clean
+       rm -f Makefile
+ 
+ depend:
+-      ${MAKEDEPEND} $(CPPFLAGS) $(DEFS) $(CFLAGS) *.c $(srcdir)/*.c 1>makedepend.log 2>&1
++      ${MAKEDEPEND} -- $(CPPFLAGS) $(DEFS) $(CFLAGS) -- *.c $(srcdir)/*.c 1>makedepend.log 2>&1
+ 
+ # DO NOT DELETE THIS LINE -- make depend depends on it.
diff -r d34d8ff169e7 -r 9406d7af0b08 mail/cyrus-imapd24/patches/patch-notifyd_Makefile.in
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/mail/cyrus-imapd24/patches/patch-notifyd_Makefile.in      Sun May 29 19:44:05 2022 +0000
@@ -0,0 +1,13 @@
+$NetBSD: patch-notifyd_Makefile.in,v 1.1 2022/05/29 19:44:05 gavan Exp $
+
+--- notifyd/Makefile.in.orig   2017-08-18 00:29:14.000000000 +0000
++++ notifyd/Makefile.in
+@@ -107,7 +107,7 @@ distclean: clean
+       rm -f Makefile
+ 
+ depend:
+-      ${MAKEDEPEND} $(CPPFLAGS) $(DEFS) -I$(srcdir) $(CFLAGS) *.c $(srcdir)/*.c 1>makedepend.log 2>&1
++      ${MAKEDEPEND} -- $(CPPFLAGS) $(DEFS) -I$(srcdir) $(CFLAGS) -- *.c $(srcdir)/*.c 1>makedepend.log 2>&1
+ 
+ .c.o:
+       $(CC) -c $(CPPFLAGS) $(DEFS) $(CFLAGS) \
diff -r d34d8ff169e7 -r 9406d7af0b08 mail/cyrus-imapd24/patches/patch-perl_sieve_lib_Makefile.in
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/mail/cyrus-imapd24/patches/patch-perl_sieve_lib_Makefile.in       Sun May 29 19:44:05 2022 +0000
@@ -0,0 +1,12 @@
+$NetBSD: patch-perl_sieve_lib_Makefile.in,v 1.1 2022/05/29 19:44:05 gavan Exp $
+
+--- perl/sieve/lib/Makefile.in.orig    2017-08-18 00:29:14.000000000 +0000
++++ perl/sieve/lib/Makefile.in
+@@ -89,6 +89,6 @@ distclean: clean
+       rm -f Makefile
+ 
+ depend: 
+-      ${MAKEDEPEND} $(CPPFLAGS) $(DEFS) $(MAKEDEPEND_CFLAGS) *.c $(srcdir)/*.c 1> makedepend.log 2>&1
++      ${MAKEDEPEND} -- $(CPPFLAGS) $(DEFS) $(MAKEDEPEND_CFLAGS) -- *.c $(srcdir)/*.c 1> makedepend.log 2>&1
+ 
+ # DO NOT DELETE THIS LINE -- make depend depends on it.
diff -r d34d8ff169e7 -r 9406d7af0b08 mail/cyrus-imapd24/patches/patch-sieve_Makefile.in
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/mail/cyrus-imapd24/patches/patch-sieve_Makefile.in        Sun May 29 19:44:05 2022 +0000
@@ -0,0 +1,13 @@
+$NetBSD: patch-sieve_Makefile.in,v 1.1 2022/05/29 19:44:05 gavan Exp $
+
+--- sieve/Makefile.in.orig     2017-08-18 00:29:14.000000000 +0000
++++ sieve/Makefile.in
+@@ -146,7 +146,7 @@ clobber:
+       rm -f $(BUILT_SOURCES)
+ 
+ depend:
+-      ${MAKEDEPEND} $(CPPFLAGS) $(DEFS) -I$(srcdir) $(MAKEDEPEND_CFLAGS) *.c *.y $(srcdir)/*.y $(srcdir)/*.c 1>makedepend.log 2>&1
++      ${MAKEDEPEND} -- $(CPPFLAGS) $(DEFS) -I$(srcdir) $(MAKEDEPEND_CFLAGS) -- *.c *.y $(srcdir)/*.y $(srcdir)/*.c 1>makedepend.log 2>&1
+ 
+ .c.o:
+       $(CC) -c $(CPPFLAGS) $(DEFS) $(CFLAGS) \
diff -r d34d8ff169e7 -r 9406d7af0b08 mail/cyrus-imapd24/patches/patch-timsieved_Makefile.in
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/mail/cyrus-imapd24/patches/patch-timsieved_Makefile.in    Sun May 29 19:44:05 2022 +0000
@@ -0,0 +1,13 @@
+$NetBSD: patch-timsieved_Makefile.in,v 1.1 2022/05/29 19:44:05 gavan Exp $
+
+--- timsieved/Makefile.in.orig 2017-08-18 00:29:14.000000000 +0000
++++ timsieved/Makefile.in
+@@ -103,7 +103,7 @@ distclean: clean
+       rm -f Makefile
+ 
+ depend:
+-      ${MAKEDEPEND} $(CPPFLAGS) $(DEFS) -I$(srcdir) $(CFLAGS) *.c $(srcdir)/*.c 1>makedepend.log 2>&1
++      ${MAKEDEPEND} -- $(CPPFLAGS) $(DEFS) -I$(srcdir) $(CFLAGS) -- *.c $(srcdir)/*.c 1>makedepend.log 2>&1
+ 
+ .c.o:
+       $(CC) -c $(CPPFLAGS) $(DEFS) $(CFLAGS) \



Home | Main Index | Thread Index | Old Index