You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by mi...@apache.org on 2021/08/11 10:52:26 UTC

svn commit: r1892209 - in /apr/apr-util/branches/1.6.x: CHANGES Makefile.in test/Makefile.in

Author: michaelo
Date: Wed Aug 11 10:52:26 2021
New Revision: 1892209

URL: http://svn.apache.org/viewvc?rev=1892209&view=rev
Log:
Backport 1865343

Add --tag=CC to libtool invocations. PR 62640. [Michael Osipov]

Modified:
    apr/apr-util/branches/1.6.x/CHANGES
    apr/apr-util/branches/1.6.x/Makefile.in
    apr/apr-util/branches/1.6.x/test/Makefile.in

Modified: apr/apr-util/branches/1.6.x/CHANGES
URL: http://svn.apache.org/viewvc/apr/apr-util/branches/1.6.x/CHANGES?rev=1892209&r1=1892208&r2=1892209&view=diff
==============================================================================
--- apr/apr-util/branches/1.6.x/CHANGES [utf-8] (original)
+++ apr/apr-util/branches/1.6.x/CHANGES [utf-8] Wed Aug 11 10:52:26 2021
@@ -1,6 +1,8 @@
                                                      -*- coding: utf-8 -*-
 Changes with APR-util 1.6.2
 
+  *) Add --tag=CC to libtool invocations. PR 62640. [Michael Osipov]
+
   *) apr_dbm_gdbm: Fix handling of error codes. This makes gdbm 1.14 work.
      apr_dbm_gdbm will now also return error codes starting with
      APR_OS_START_USEERR, as apr_dbm_berkleydb does, instead of always

Modified: apr/apr-util/branches/1.6.x/Makefile.in
URL: http://svn.apache.org/viewvc/apr/apr-util/branches/1.6.x/Makefile.in?rev=1892209&r1=1892208&r2=1892209&view=diff
==============================================================================
--- apr/apr-util/branches/1.6.x/Makefile.in (original)
+++ apr/apr-util/branches/1.6.x/Makefile.in Wed Aug 11 10:52:26 2021
@@ -23,7 +23,7 @@ INSTALL = @INSTALL@
 INSTALL_DATA = @INSTALL_DATA@
 
 APU_MODULES = @APU_MODULES@
-LINK_MODULE = $(LIBTOOL) $(LTFLAGS) --mode=link $(CC) $(LT_LDFLAGS) $(ALL_CFLAGS) $(ALL_LDFLAGS) $(APRUTIL_LDFLAGS) -release $(APRUTIL_MAJOR_VERSION) -module -rpath $(APU_DSO_LIBDIR)
+LINK_MODULE = $(LIBTOOL) $(LTFLAGS) --mode=link --tag=CC $(CC) $(LT_LDFLAGS) $(ALL_CFLAGS) $(ALL_LDFLAGS) $(APRUTIL_LDFLAGS) -release $(APRUTIL_MAJOR_VERSION) -module -rpath $(APU_DSO_LIBDIR)
 APU_DSO_LIBDIR = @APU_DSO_LIBDIR@
 
 LT_VERSION = @APU_LTVERSION@

Modified: apr/apr-util/branches/1.6.x/test/Makefile.in
URL: http://svn.apache.org/viewvc/apr/apr-util/branches/1.6.x/test/Makefile.in?rev=1892209&r1=1892208&r2=1892209&view=diff
==============================================================================
--- apr/apr-util/branches/1.6.x/test/Makefile.in (original)
+++ apr/apr-util/branches/1.6.x/test/Makefile.in Wed Aug 11 10:52:26 2021
@@ -34,7 +34,7 @@ APRUTIL_LDFLAGS = $(ALL_LDFLAGS) @LT_NO_
 
 # link programs using -no-install to get real executables not
 # libtool wrapper scripts which link an executable when first run.
-LINK_PROG = $(LIBTOOL) $(LTFLAGS) --mode=link $(COMPILE) $(LT_LDFLAGS) \
+LINK_PROG = $(LIBTOOL) $(LTFLAGS) --mode=link --tag=CC $(COMPILE) $(LT_LDFLAGS) \
 	    $(APRUTIL_LDFLAGS) -o $@
 
 # STDTEST_PORTABLE;