You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by jo...@apache.org on 2023/01/03 09:07:14 UTC

svn commit: r1906350 - in /apr/apr-util/branches/1.7.x: ./ CHANGES build/dbm.m4

Author: jorton
Date: Tue Jan  3 09:07:14 2023
New Revision: 1906350

URL: http://svn.apache.org/viewvc?rev=1906350&view=rev
Log:
Merge r1906347 from trunk:

Fix configure for compilers which don't accept implicit
int (no longer part of C since C99).

Submitted by: Florian Weimer <fweimer redhat.com>
PR: 66396

Modified:
    apr/apr-util/branches/1.7.x/   (props changed)
    apr/apr-util/branches/1.7.x/CHANGES
    apr/apr-util/branches/1.7.x/build/dbm.m4

Propchange: apr/apr-util/branches/1.7.x/
------------------------------------------------------------------------------
  Merged /apr/apr/trunk:r1906347

Modified: apr/apr-util/branches/1.7.x/CHANGES
URL: http://svn.apache.org/viewvc/apr/apr-util/branches/1.7.x/CHANGES?rev=1906350&r1=1906349&r2=1906350&view=diff
==============================================================================
--- apr/apr-util/branches/1.7.x/CHANGES [utf-8] (original)
+++ apr/apr-util/branches/1.7.x/CHANGES [utf-8] Tue Jan  3 09:07:14 2023
@@ -1,6 +1,9 @@
                                                      -*- coding: utf-8 -*-
 Changes with APR-util 1.7.0
 
+  *) configure: Fix configure for compilers which don't accept implicit
+     "int".  PR 66396.  [Florian Weimer <fweimer redhat.com>]
+
   *) apr_brigades: Add apr_brigade_split_boundary(), allowing us to split
      brigades on boundaries of arbitrary length. [Graham Leggett]
 

Modified: apr/apr-util/branches/1.7.x/build/dbm.m4
URL: http://svn.apache.org/viewvc/apr/apr-util/branches/1.7.x/build/dbm.m4?rev=1906350&r1=1906349&r2=1906350&view=diff
==============================================================================
--- apr/apr-util/branches/1.7.x/build/dbm.m4 (original)
+++ apr/apr-util/branches/1.7.x/build/dbm.m4 Tue Jan  3 09:07:14 2023
@@ -235,7 +235,7 @@ AC_DEFUN([APU_TRY_BERKELEY_DB],
 #include <stdlib.h>
 #include <stdio.h>
 #include <$apu_try_berkeley_db_header>
-main ()
+int main (void)
 {
   int major, minor, patch;