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 (configure.ac) (INN Commit)
   2. INN commit: trunk (configure.ac) (INN Commit)
   3. INN commit: branches/2.5/innfeed (configfile.l) (INN Commit)


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

Message: 1
Date: Sat, 24 Aug 2013 13:07:44 -0700 (PDT)
From: INN Commit <r...@isc.org>
To: inn-committ...@isc.org
Subject: INN commit: trunk (configure.ac)
Message-ID: <20130824200744.e255467...@hope.eyrie.org>

    Date: Saturday, August 24, 2013 @ 13:07:44
  Author: iulius
Revision: 9528

fix the value of DBM_CPPFLAGS and DBM_LIBS

Typo in a test introduced by previous commit [9525].

Modified:
  trunk/configure.ac

--------------+
 configure.ac |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: configure.ac
===================================================================
--- configure.ac        2013-08-08 08:32:50 UTC (rev 9527)
+++ configure.ac        2013-08-24 20:07:44 UTC (rev 9528)
@@ -335,7 +335,7 @@
 if test x"$DB_LIBS" != x ; then
     INN_LIB_BERKELEYDB_NDBM
 fi
-if test x"$HAVE_BDB_NDBM" = x ; then
+if test x"$HAVE_BDB_NDBM" != x ; then
     INN_SEARCH_AUX_LIBS([dbm_open], [ndbm dbm gdbm "gdbm_compat -lgdbm"], 
[DBM_LIBS],
         [AC_DEFINE([HAVE_DBM], 1, [Define if you have a dbm library.])])
     DBM_CPPFLAGS=



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

Message: 2
Date: Sun, 25 Aug 2013 03:39:49 -0700 (PDT)
From: INN Commit <r...@isc.org>
To: inn-committ...@isc.org
Subject: INN commit: trunk (configure.ac)
Message-ID: <20130825103949.6210967...@hope.eyrie.org>

    Date: Sunday, August 25, 2013 @ 03:39:48
  Author: iulius
Revision: 9529

fix the value of DBM_CPPFLAGS and DBM_LIBS

It should now work (wrong fix in commit [9528]).

Modified:
  trunk/configure.ac

--------------+
 configure.ac |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: configure.ac
===================================================================
--- configure.ac        2013-08-24 20:07:44 UTC (rev 9528)
+++ configure.ac        2013-08-25 10:39:48 UTC (rev 9529)
@@ -335,7 +335,7 @@
 if test x"$DB_LIBS" != x ; then
     INN_LIB_BERKELEYDB_NDBM
 fi
-if test x"$HAVE_BDB_NDBM" != x ; then
+if test x"$inn_cv_lib_berkeleydb_ndbm_works" != xyes ; then
     INN_SEARCH_AUX_LIBS([dbm_open], [ndbm dbm gdbm "gdbm_compat -lgdbm"], 
[DBM_LIBS],
         [AC_DEFINE([HAVE_DBM], 1, [Define if you have a dbm library.])])
     DBM_CPPFLAGS=



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

Message: 3
Date: Sun, 25 Aug 2013 03:41:14 -0700 (PDT)
From: INN Commit <r...@isc.org>
To: inn-committ...@isc.org
Subject: INN commit: branches/2.5/innfeed (configfile.l)
Message-ID: <20130825104114.c695f67...@hope.eyrie.org>

    Date: Sunday, August 25, 2013 @ 03:41:14
  Author: iulius
Revision: 9530

do not use yyget_leng() function as it is not defined by old flex versions

Better keep using yyleng, still cast to size_t.

Modified:
  branches/2.5/innfeed/configfile.l

--------------+
 configfile.l |    8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

Modified: configfile.l
===================================================================
--- configfile.l        2013-08-25 10:39:48 UTC (rev 9529)
+++ configfile.l        2013-08-25 10:41:14 UTC (rev 9530)
@@ -151,9 +151,11 @@
 
        for (i = 1, strIdx = 0, sawBsl = 0 ; ; i++)
           {
-            /* Cast yyget_leng() to size_t because it used to be an int
-             * in flex versions anterior to 2.5.35 (not included). */
-            if (i < (size_t) yyget_leng())
+            /* Cast yyleng to size_t because it used to be an int
+             * in flex versions anterior or equal to 2.5.35.
+             * Do not use yyget_leng() here because old flex versions
+             * do not define it. */
+            if (i < (size_t) yyleng)
               current = yytext [i] ;
             else
               current = input() ;



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

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

End of inn-committers Digest, Vol 54, Issue 5
*********************************************

Reply via email to