[SCM] GNU Mailutils branch, patches-2.2, updated. release-2.2-12-g9988887

"Sergey Poznyakoff" <[email protected]>
Newsgroups gmane.comp.gnu.mailutils.cvs
Message-ID <[email protected]>
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 "GNU Mailutils".

http://git.savannah.gnu.org/cgit/mailutils.git/commit/?id=998888781247d0a60306cd2f6bd1a9ff7b60ee83

The branch, patches-2.2 has been updated
       via  998888781247d0a60306cd2f6bd1a9ff7b60ee83 (commit)
       via  f0fbffbabf159f45baae3561a65e006846e0d13a (commit)
      from  3edaa0f6738e29773cc4fa92dd96900c3e4f351e (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 -----------------------------------------------------------------
commit 998888781247d0a60306cd2f6bd1a9ff7b60ee83
Author: Sergey Poznyakoff <[email protected]>
Date:   Mon Oct 18 11:50:57 2010 +0300

    movemail: accept "smtp://" and "sendmail://" as a destination mailbox.
    (port cea1ebcb1e from master)
    
    * movemail/Makefile.am (movemail_LDADD): Add MU_LIB_MAILER.
    * movemail/movemail.c: Register *all* mailbox formats,
    including remote ones.

commit f0fbffbabf159f45baae3561a65e006846e0d13a
Author: Sergey Poznyakoff <[email protected]>
Date:   Fri Oct 15 12:06:50 2010 +0300

    Switch to new gnulib (port of 8672f9f048 and 52d2552d23).

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

Summary of changes:
 configure.ac             |    6 +++---
 examples/Makefile.am     |   14 +++++++-------
 examples/cpp/Makefile.am |    4 ++--
 imap4d/Makefile.am       |    2 +-
 lib/Makefile.am          |    2 +-
 mapi/Makefile.am         |    2 +-
 mh/Makefile.am           |    2 +-
 movemail/Makefile.am     |    1 +
 movemail/movemail.c      |    6 +++---
 pop3d/Makefile.am        |    2 +-
 10 files changed, 21 insertions(+), 20 deletions(-)

diff --git a/configure.ac b/configure.ac
index 7d9e218..cd13ead 100644
--- a/configure.ac
+++ b/configure.ac
@@ -58,7 +58,7 @@ AC_SUBST(mu_aux_dir,'$(top_srcdir)/mu-aux')
 AC_SUBST(MU_SIEVE_MODDIR,'$(libdir)/$(PACKAGE)')
 
 AC_SUBST(MU_COMMON_LIBRARIES,'$(LTLIBINTL) $(LTLIBICONV)')
-AC_SUBST(MU_APP_LIBRARIES,'../libmu_argp/libmu_argp.a ../libmu_cfg/libmu_cfg.la ../lib/libmuaux.la')
+AC_SUBST(MU_APP_LIBRARIES,'../libmu_argp/libmu_argp.a ../libmu_cfg/libmu_cfg.la ../lib/libmuaux.a')
 
 # There are two sets of include directories: MU_LIB_COMMON_INCLUDES, used
 # by the libraries, and MU_APP_COMMON_INCLUDES, which is used by applications.
@@ -98,7 +98,7 @@ status_tcpwrap=maybe
 
 dnl Internationalization macros.
 AM_GNU_GETTEXT([external], [need-ngettext])
-AM_GNU_GETTEXT_VERSION(0.17)
+AM_GNU_GETTEXT_VERSION(0.18)
 AM_ICONV
 AC_CHECK_HEADERS(iconv.h)
 AC_CHECK_TYPE(iconv_t,:,
@@ -1077,7 +1077,7 @@ GINT_INIT([gint],[1.8 with-guile],
            MU_GUILE_SIEVE_MOD_DIR='$(GUILE_SITE)/$(PACKAGE)/sieve-modules'
            MU_GUILE_SIEVE_MOD_DATA='$(MU_GUILE_SIEVE_MOD_DATA_X)'
            GINT_INCLUDES='${MU_APP_COMMON_INCLUDES}'
-           GINT_LDADD=../lib/libmuaux.la
+           GINT_LDADD=../lib/libmuaux.a
           ],[useguile=no])
 
 AM_CONDITIONAL([MU_COND_LIBMU_SCM],[test "$useguile" = "yes"])
diff --git a/examples/Makefile.am b/examples/Makefile.am
index cb2415b..63e9a9c 100644
--- a/examples/Makefile.am
+++ b/examples/Makefile.am
@@ -55,7 +55,7 @@ mod_LTLIBRARIES = numaddr.la
 INCLUDES = @MU_LIB_COMMON_INCLUDES@ 
 
 LDADD = \
- ../lib/libmuaux.la\
+ ../lib/libmuaux.a\
  ${MU_LIB_MAILUTILS}\
  @MU_COMMON_LIBRARIES@
 
@@ -64,7 +64,7 @@ numaddr_la_LIBADD = ${MU_LIB_SIEVE}
 numaddr_la_LDFLAGS = -module -avoid-version -no-undefined -rpath '$(moddir)'
 
 mimetest_LDADD =\
- ../lib/libmuaux.la\
+ ../lib/libmuaux.a\
  ${MU_LIB_MBOX}\
  ${MU_LIB_IMAP}\
  ${MU_LIB_POP}\
@@ -73,20 +73,20 @@ mimetest_LDADD =\
  ${MU_LIB_MAILUTILS}
 
 msg_send_LDADD =\
- ../lib/libmuaux.la\
+ ../lib/libmuaux.a\
  ${MU_LIB_MAILER}\
  @MU_AUTHLIBS@\
  ${MU_LIB_MAILUTILS}
 
 mta_CPPFLAGS=-I${top_srcdir}/lib -I${top_builddir}/lib
 mta_LDADD =\
- ../lib/libmuaux.la\
+ ../lib/libmuaux.a\
  ${MU_LIB_MBOX}\
  ${MU_LIB_MAILER}\
  ${MU_LIB_MAILUTILS}
 
 sfrom_LDADD =\
- ../lib/libmuaux.la\
+ ../lib/libmuaux.a\
  ${MU_LIB_MBOX}\
  ${MU_LIB_IMAP}\
  ${MU_LIB_POP}\
@@ -98,7 +98,7 @@ sfrom_LDADD =\
  ${MU_LIB_MAILUTILS}
 
 pop3client_LDADD = \
- ../lib/libmuaux.la\
+ ../lib/libmuaux.a\
  ${MU_LIB_POP}\
  ${MU_LIB_AUTH}\
  @MU_AUTHLIBS@\
@@ -106,7 +106,7 @@ pop3client_LDADD = \
  @READLINE_LIBS@
 
 nntpclient_LDADD = \
- ../lib/libmuaux.la\
+ ../lib/libmuaux.a\
  ${MU_LIB_NNTP}\
  ${MU_LIB_AUTH}\
  @MU_AUTHLIBS@\
diff --git a/examples/cpp/Makefile.am b/examples/cpp/Makefile.am
index 32da62f..8176c6c 100644
--- a/examples/cpp/Makefile.am
+++ b/examples/cpp/Makefile.am
@@ -37,7 +37,7 @@ noinst_PROGRAMS = @MU_CXX_EXAMPLES_BUILD@
 INCLUDES = @MU_LIB_COMMON_INCLUDES@ 
 
 AM_LDFLAGS = \
- ../../lib/libmuaux.la\
+ ../../lib/libmuaux.a\
  ../../libmu_cpp/libmu_cpp.la\
  ${MU_LIB_MAILUTILS}\
  @MU_COMMON_LIBRARIES@
@@ -55,7 +55,7 @@ sfrom_SOURCES = sfrom.cc
 url_parse_SOURCES = url-parse.cc
 
 LDADD =\
- ../../lib/libmuaux.la\
+ ../../lib/libmuaux.a\
  ../../libmu_cpp/libmu_cpp.la\
  ${MU_LIB_MBOX}\
  ${MU_LIB_IMAP}\
diff --git a/imap4d/Makefile.am b/imap4d/Makefile.am
index 0d55728..3223044 100644
--- a/imap4d/Makefile.am
+++ b/imap4d/Makefile.am
@@ -82,7 +82,7 @@ imap4d_LDADD = \
 imap4d_DEPENDENCIES = \
  @IMAP_AUTHOBJS@\
  @MU_AUTHLIBS_DEPENDENCY@\
- ../lib/libmuaux.la\
+ ../lib/libmuaux.a\
  ${MU_LIB_MBOX}\
  ${MU_LIB_MAILUTILS}
 
diff --git a/lib/Makefile.am b/lib/Makefile.am
index d4c3b3c..4f7ad17 100644
--- a/lib/Makefile.am
+++ b/lib/Makefile.am
@@ -22,7 +22,7 @@ include gnulib.mk
 
 INCLUDES = @MU_LIB_COMMON_INCLUDES@ 
 
-libmuaux_la_SOURCES += \
+libmuaux_a_SOURCES += \
  daemon.c\
  mailcap.c\
  mu_dbm.c\
diff --git a/mapi/Makefile.am b/mapi/Makefile.am
index 9682f7a..fddc3bf 100644
--- a/mapi/Makefile.am
+++ b/mapi/Makefile.am
@@ -26,7 +26,7 @@ lib_LTLIBRARIES = libmapi.la
 /* FIXME:  This should be part of the default includes.  */
 EXTRA_DIST = mapi.h
 
-libmapi_LDADD = ../lib/libmuaux.la ${MU_LIB_MAILUTILS} 
+libmapi_LDADD = ../lib/libmuaux.a ${MU_LIB_MAILUTILS} 
 
 libmapi_la_SOURCES = \
  MAPIAddress.c \
diff --git a/mh/Makefile.am b/mh/Makefile.am
index 2fdb487..8cb3f09 100644
--- a/mh/Makefile.am
+++ b/mh/Makefile.am
@@ -96,7 +96,7 @@ INCLUDES = @MU_APP_COMMON_INCLUDES@
 AM_CPPFLAGS = -D_GNU_SOURCE -DMHLIBDIR=\"$(mhlibdir)\" -DMHBINDIR=\"$(bindir)\"
 mh_LIBS = \
  ./libmh.a\
- ../lib/libmuaux.la\
+ ../lib/libmuaux.a\
  ${MU_LIB_MBOX}\
  ${MU_LIB_IMAP}\
  ${MU_LIB_POP}\
diff --git a/movemail/Makefile.am b/movemail/Makefile.am
index 7bc6228..9752905 100644
--- a/movemail/Makefile.am
+++ b/movemail/Makefile.am
@@ -30,6 +30,7 @@ movemail_LDADD = \
  ${MU_LIB_MH}\
  ${MU_LIB_MAILDIR}\
  ${MU_LIB_AUTH}\
+ ${MU_LIB_MAILER}\
  @MU_AUTHLIBS@\
  ${MU_LIB_MAILUTILS}\
  @MU_COMMON_LIBRARIES@
diff --git a/movemail/movemail.c b/movemail/movemail.c
index 4e7bdb9..3d3cf2a 100644
--- a/movemail/movemail.c
+++ b/movemail/movemail.c
@@ -738,8 +738,8 @@ main (int argc, char **argv)
   MU_APP_INIT_NLS ();
   MU_AUTH_REGISTER_ALL_MODULES ();
   
-  /* Register the desired mailbox formats.  */
-  mu_register_all_mbox_formats ();
+  /* Register the desired "mailbox" formats.  */
+  mu_register_all_formats ();
 
   /* argument parsing */
   
@@ -763,7 +763,7 @@ main (int argc, char **argv)
   if (emacs_mode)
     {
       /* Undo the effect of configuration options that may affect
-	 the interaction with Emacs. */
+	 interaction with Emacs. */
       mu_registrar_set_default_record (mu_mbox_record);
       mu_debug_default_printer = mu_debug_stderr_printer;
     }
diff --git a/pop3d/Makefile.am b/pop3d/Makefile.am
index 8a73ede..171733f 100644
--- a/pop3d/Makefile.am
+++ b/pop3d/Makefile.am
@@ -64,7 +64,7 @@ popauth_SOURCES = popauth.c
 popauth_LDADD = ${MU_APP_LIBRARIES} ${MU_LIB_MAILUTILS} @MU_COMMON_LIBRARIES@
 pop3d_DEPENDENCIES = \
  @MU_AUTHLIBS_DEPENDENCY@ \
- ../lib/libmuaux.la \
+ ../lib/libmuaux.a \
  ${MU_LIB_MBOX}\
  ${MU_LIB_MH}\
  ${MU_LIB_MAILDIR}\


hooks/post-receive
-- 
GNU Mailutils
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.