nmh-commits
[Top][All Lists]
Advanced

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

[Nmh-commits] [SCM] The nmh Mail Handling System branch, master, updated


From: David Levine
Subject: [Nmh-commits] [SCM] The nmh Mail Handling System branch, master, updated. 4eaf25e2a1d634b6f7bfa01a96e6e86768837e9b
Date: Fri, 17 Feb 2012 04:56:13 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "The nmh Mail Handling System".

The branch, master has been updated
       via  4eaf25e2a1d634b6f7bfa01a96e6e86768837e9b (commit)
       via  d28ce569fe233141f86fe516878361da01c9f9cb (commit)
      from  f0bcd0b87a07dbe86db190f554a77fd89f4823d8 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.savannah.gnu.org/cgit/nmh.git/commit/?id=4eaf25e2a1d634b6f7bfa01a96e6e86768837e9b


commit 4eaf25e2a1d634b6f7bfa01a96e6e86768837e9b
Author: David Levine <address@hidden>
Date:   Thu Feb 16 22:56:02 2012 -0600

    Added a couple of NMH_UNUSED's to suppress warnings when building without 
Cyrus SASL.

diff --git a/uip/popsbr.c b/uip/popsbr.c
index fcdbd75..feb7aa0 100644
--- a/uip/popsbr.c
+++ b/uip/popsbr.c
@@ -418,6 +418,11 @@ int
 pop_init (char *host, char *port, char *user, char *pass, char *proxy,
          int snoop, int sasl, char *mech)
 {
+#ifndef CYRUS_SASL
+    NMH_UNUSED (sasl);
+    NMH_UNUSED (mech);
+#endif /* ! CYRUS_SASL */
+
     int fd1, fd2;
     char buffer[BUFSIZ];
 

http://git.savannah.gnu.org/cgit/nmh.git/commit/?id=d28ce569fe233141f86fe516878361da01c9f9cb


commit d28ce569fe233141f86fe516878361da01c9f9cb
Author: David Levine <address@hidden>
Date:   Thu Feb 16 22:49:03 2012 -0600

    Hacked to work with make distcheck.  Maybe not the best way but it works 
for now.

diff --git a/Makefile.am b/Makefile.am
index 2a986b0..6417e11 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -33,9 +33,8 @@ auxexecdir = @libdir@
 ##
 ## nmh _does_ have a test suite!
 ##
-
-TESTS_ENVIRONMENT = address@hidden@ \
-                   address@hidden@/test/testdir \
+TESTS_ENVIRONMENT = address@hidden@ \
+                   address@hidden@/test/testdir \
                    auxexecdir=$(auxexecdir) bindir=$(bindir) \
                    mandir=$(mandir) sysconfdir=$(sysconfdir)
 ##
diff --git a/test/inc/test-deb359167 b/test/inc/test-deb359167
index d2b2302..6b43358 100755
--- a/test/inc/test-deb359167
+++ b/test/inc/test-deb359167
@@ -11,10 +11,9 @@ fi
 
 setup_test
 
-THISDIR="${MH_OBJ_DIR}/test/inc"
-
 require_prog valgrind
 
+THISDIR="`dirname $0`"
 TESTMBOX="$THISDIR/deb359167.mbox"
 
 if [ "$(output_md5 "$TESTMBOX" | cut -d ' ' -f 1)" != 
"e6ac458b8cccba2b2fd866fb505aeb5e" ]; then 
diff --git a/test/inc/test-eom-align b/test/inc/test-eom-align
index 06c972b..0be4969 100755
--- a/test/inc/test-eom-align
+++ b/test/inc/test-eom-align
@@ -13,7 +13,7 @@ fi
 
 setup_test
 
-THISDIR="${MH_OBJ_DIR}/test/inc"
+THISDIR="`dirname $0`"
 
 if [ ! -z "$VALGRIND_ME" ]; then
     require_prog valgrind

-----------------------------------------------------------------------

Summary of changes:
 Makefile.am             |    5 ++---
 test/inc/test-deb359167 |    3 +--
 test/inc/test-eom-align |    2 +-
 uip/popsbr.c            |    5 +++++
 4 files changed, 9 insertions(+), 6 deletions(-)


hooks/post-receive
-- 
The nmh Mail Handling System



reply via email to

[Prev in Thread] Current Thread [Next in Thread]