Send inn-committers mailing list submissions to
        inn-committers@lists.isc.org

To subscribe or unsubscribe via the World Wide Web, visit
        https://lists.isc.org/mailman/listinfo/inn-committers
or, via email, send a message with subject or body 'help' to
        inn-committers-requ...@lists.isc.org

You can reach the person managing the list at
        inn-committers-ow...@lists.isc.org

When replying, please edit your Subject line so it is more specific
than "Re: Contents of inn-committers digest..."


Today's Topics:

   1. INN commit: trunk (5 files) (INN Commit)
   2. INN commit: branches/2.5 (5 files) (INN Commit)
   3. INN commit: trunk/m4 (krb5.m4) (INN Commit)


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

Message: 1
Date: Sun, 17 Nov 2013 12:24:35 -0800 (PST)
From: INN Commit <r...@isc.org>
To: inn-committ...@isc.org
Subject: INN commit: trunk (5 files)
Message-ID: <20131117202436.0159f67...@hope.eyrie.org>

    Date: Sunday, November 17, 2013 @ 12:24:35
  Author: iulius
Revision: 9567

fix the path to simpleftp in innshellvars and INN::Config

When neither wget nor ncftpget nor ncftp was found at configure
time, the path to the simpleftp substitution program shipped with
INN was not proprely set in innshellvars, innshellvars.pl, and
the INN::Config Perl module.

Thanks to Christian Garbs for the bug report.

Modified:
  trunk/CONTRIBUTORS
  trunk/doc/pod/news.pod
  trunk/perl/INN/Config.pm.in
  trunk/scripts/innshellvars.in
  trunk/scripts/innshellvars.pl.in

----------------------------+
 CONTRIBUTORS               |    2 +-
 doc/pod/news.pod           |    8 ++++++++
 perl/INN/Config.pm.in      |    2 +-
 scripts/innshellvars.in    |    2 +-
 scripts/innshellvars.pl.in |    2 +-
 5 files changed, 12 insertions(+), 4 deletions(-)

Modified: CONTRIBUTORS
===================================================================
--- CONTRIBUTORS        2013-11-11 13:01:42 UTC (rev 9566)
+++ CONTRIBUTORS        2013-11-17 20:24:35 UTC (rev 9567)
@@ -275,4 +275,4 @@
 Lars Magne Ingebrigtsen, Sam Varshavchik, Matthew Vernon, Ian Jackson,
 Edmund H. Ramm, Raphael Barrois, Bo Lindbergh, Matthias Meyser,
 Dennis Preiser, Paolo Amoroso, Dennis Davis, River Tarnell, Jochen Schmitt,
-Tim Fardell, Remco Rijnders, David Binderman, Tony Evans
+Tim Fardell, Remco Rijnders, David Binderman, Tony Evans, Christian Garbs

Modified: doc/pod/news.pod
===================================================================
--- doc/pod/news.pod    2013-11-11 13:01:42 UTC (rev 9566)
+++ doc/pod/news.pod    2013-11-17 20:24:35 UTC (rev 9567)
@@ -213,6 +213,14 @@
 
 =item *
 
+When neither B<wget> nor B<ncftpget> nor B<ncftp> was found at configure
+time, the path to the B<simpleftp> substitution program shipped with
+INN was not proprely set in B<innshellvars>, B<innshellvars.pl>, and
+the C<INN::Config> Perl module.  Thanks to Christian Garbs for the
+bug report.
+
+=item *
+
 B<ckpasswd> no longer tries to use the ndbm compatibility layer provided
 by S<Berkeley DB> if S<Berkeley DB> has been built without ndbm support.
 Also add support for gdbm libraries in B<ckpasswd>.

Modified: perl/INN/Config.pm.in
===================================================================
--- perl/INN/Config.pm.in       2013-11-11 13:01:42 UTC (rev 9566)
+++ perl/INN/Config.pm.in       2013-11-17 20:24:35 UTC (rev 9567)
@@ -124,7 +124,7 @@
 our $pgp = '@PGP@';
 our $sed = '@SED@';
 our $sort = '@SORT@';
-our $getftp = '@PATH_GETFTP@';
+our $getftp = "@PATH_GETFTP@";
 our $uustat = '@UUSTAT@';
 our $uux = '@UUX@';
 

Modified: scripts/innshellvars.in
===================================================================
--- scripts/innshellvars.in     2013-11-11 13:01:42 UTC (rev 9566)
+++ scripts/innshellvars.in     2013-11-17 20:24:35 UTC (rev 9567)
@@ -81,7 +81,7 @@
 GPGV='@GPGV@'
 PGP='@PGP@'
 SORT='@SORT@'
-GETFTP='@PATH_GETFTP@'
+GETFTP="@PATH_GETFTP@"
 UUSTAT='@UUSTAT@'
 UUX='@UUX@'
 

Modified: scripts/innshellvars.pl.in
===================================================================
--- scripts/innshellvars.pl.in  2013-11-11 13:01:42 UTC (rev 9566)
+++ scripts/innshellvars.pl.in  2013-11-17 20:24:35 UTC (rev 9567)
@@ -93,7 +93,7 @@
 $gpgv = '@GPGV@' ;
 $pgp = '@PGP@' ;
 $sort = '@SORT@' ;
-$getftp = '@PATH_GETFTP@' ;
+$getftp = "@PATH_GETFTP@" ;
 $uustat = '@UUSTAT@' ;
 $uux = '@UUX@' ;
 



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

Message: 2
Date: Sun, 17 Nov 2013 12:25:20 -0800 (PST)
From: INN Commit <r...@isc.org>
To: inn-committ...@isc.org
Subject: INN commit: branches/2.5 (5 files)
Message-ID: <20131117202520.5e04c67...@hope.eyrie.org>

    Date: Sunday, November 17, 2013 @ 12:25:20
  Author: iulius
Revision: 9568

fix the path to simpleftp in innshellvars and INN::Config

When neither wget nor ncftpget nor ncftp was found at configure
time, the path to the simpleftp substitution program shipped with
INN was not proprely set in innshellvars, innshellvars.pl, and
the INN::Config Perl module.  
  
Thanks to Christian Garbs for the bug report.

Modified:
  branches/2.5/CONTRIBUTORS
  branches/2.5/doc/pod/news.pod
  branches/2.5/perl/INN/Config.pm.in
  branches/2.5/scripts/innshellvars.in
  branches/2.5/scripts/innshellvars.pl.in

----------------------------+
 CONTRIBUTORS               |    2 +-
 doc/pod/news.pod           |    8 ++++++++
 perl/INN/Config.pm.in      |    2 +-
 scripts/innshellvars.in    |    2 +-
 scripts/innshellvars.pl.in |    2 +-
 5 files changed, 12 insertions(+), 4 deletions(-)

Modified: CONTRIBUTORS
===================================================================
--- CONTRIBUTORS        2013-11-17 20:24:35 UTC (rev 9567)
+++ CONTRIBUTORS        2013-11-17 20:25:20 UTC (rev 9568)
@@ -275,4 +275,4 @@
 Lars Magne Ingebrigtsen, Sam Varshavchik, Matthew Vernon, Ian Jackson,
 Edmund H. Ramm, Raphael Barrois, Bo Lindbergh, Matthias Meyser,
 Dennis Preiser, Paolo Amoroso, Dennis Davis, River Tarnell, Jochen Schmitt,
-Tim Fardell, Remco Rijnders, David Binderman, Tony Evans
+Tim Fardell, Remco Rijnders, David Binderman, Tony Evans, Christian Garbs

Modified: doc/pod/news.pod
===================================================================
--- doc/pod/news.pod    2013-11-17 20:24:35 UTC (rev 9567)
+++ doc/pod/news.pod    2013-11-17 20:25:20 UTC (rev 9568)
@@ -52,6 +52,14 @@
 
 =item *
 
+When neither B<wget> nor B<ncftpget> nor B<ncftp> was found at configure
+time, the path to the B<simpleftp> substitution program shipped with
+INN was not proprely set in B<innshellvars>, B<innshellvars.pl>, and
+the C<INN::Config> Perl module.  Thanks to Christian Garbs for the
+bug report.
+
+=item *
+
 B<ckpasswd> no longer tries to use the ndbm compatibility layer provided
 by S<Berkeley DB> if S<Berkeley DB> has been built without ndbm support.
 Also add support for gdbm libraries in B<ckpasswd>.

Modified: perl/INN/Config.pm.in
===================================================================
--- perl/INN/Config.pm.in       2013-11-17 20:24:35 UTC (rev 9567)
+++ perl/INN/Config.pm.in       2013-11-17 20:25:20 UTC (rev 9568)
@@ -124,7 +124,7 @@
 our $pgp = '@PGP@';
 our $sed = '@SED@';
 our $sort = '@SORT@';
-our $getftp = '@PATH_GETFTP@';
+our $getftp = "@PATH_GETFTP@";
 our $uustat = '@UUSTAT@';
 our $uux = '@UUX@';
 

Modified: scripts/innshellvars.in
===================================================================
--- scripts/innshellvars.in     2013-11-17 20:24:35 UTC (rev 9567)
+++ scripts/innshellvars.in     2013-11-17 20:25:20 UTC (rev 9568)
@@ -81,7 +81,7 @@
 GPGV='@GPGV@'
 PGP='@PGP@'
 SORT='@SORT@'
-GETFTP='@PATH_GETFTP@'
+GETFTP="@PATH_GETFTP@"
 UUSTAT='@UUSTAT@'
 UUX='@UUX@'
 

Modified: scripts/innshellvars.pl.in
===================================================================
--- scripts/innshellvars.pl.in  2013-11-17 20:24:35 UTC (rev 9567)
+++ scripts/innshellvars.pl.in  2013-11-17 20:25:20 UTC (rev 9568)
@@ -93,7 +93,7 @@
 $gpgv = '@GPGV@' ;
 $pgp = '@PGP@' ;
 $sort = '@SORT@' ;
-$getftp = '@PATH_GETFTP@' ;
+$getftp = "@PATH_GETFTP@" ;
 $uustat = '@UUSTAT@' ;
 $uux = '@UUX@' ;
 



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

Message: 3
Date: Sun, 17 Nov 2013 12:32:28 -0800 (PST)
From: INN Commit <r...@isc.org>
To: inn-committ...@isc.org
Subject: INN commit: trunk/m4 (krb5.m4)
Message-ID: <20131117203228.1e93967...@hope.eyrie.org>

    Date: Sunday, November 17, 2013 @ 12:32:27
  Author: iulius
Revision: 9569

krb5.m4:  synchronize with latest rra-c-util 4.11 release

INN_LIB_KRB5_OPTIONAL now correctly configures the package to not use
Kerberos instead of failing if neither the new Kerberos error APIs nor
libcom_err could be found.

Also fix the AM_CONDITIONAL that determines whether Kerberos is linked
with libcom_err.

Modified:
  trunk/m4/krb5.m4

---------+
 krb5.m4 |    8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

Modified: krb5.m4
===================================================================
--- krb5.m4     2013-11-17 20:25:20 UTC (rev 9568)
+++ krb5.m4     2013-11-17 20:32:27 UTC (rev 9569)
@@ -45,7 +45,7 @@
 dnl package, available at <http://www.eyrie.org/~eagle/software/rra-c-util/>.
 dnl
 dnl Written by Russ Allbery <ea...@eyrie.org>
-dnl Copyright 2005, 2006, 2007, 2008, 2009, 2010, 2011
+dnl Copyright 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2013
 dnl     The Board of Trustees of the Leland Stanford Junior University
 dnl
 dnl This file is free software; the authors give unlimited permission to copy
@@ -132,7 +132,9 @@
                      [INN_INCLUDES_KRB5])],
                  [AC_CHECK_LIB([com_err], [com_err],
                      [KRB5_LIBS="$KRB5_LIBS -lcom_err"],
-                     [AC_MSG_ERROR([cannot find usable com_err library])])
+                     [AS_IF([test x"$1" = xtrue],
+                         [AC_MSG_ERROR([cannot find usable com_err library])],
+                         [KRB5_LIBS=""])])
                   AC_CHECK_HEADERS([et/com_err.h])])])])])
  INN_LIB_KRB5_RESTORE])
 
@@ -250,7 +252,7 @@
         [_INN_LIB_KRB5_PATHS
          _INN_LIB_KRB5_MANUAL([$1])])])
  inn_krb5_uses_com_err=false
- AS_CASE([$LIBS], [*-lcom_err*], [inn_krb5_uses_com_err=true])
+ AS_CASE([$KRB5_LIBS], [*-lcom_err*], [inn_krb5_uses_com_err=true])
  AM_CONDITIONAL([KRB5_USES_COM_ERR],
     [test x"$inn_krb5_uses_com_err" = xtrue])])
 



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

_______________________________________________
inn-committers mailing list
inn-committers@lists.isc.org
https://lists.isc.org/mailman/listinfo/inn-committers

End of inn-committers Digest, Vol 57, Issue 8
*********************************************

Reply via email to