WIP MachO binutils port assisted by AI I may consider upstreaming this in the future.
0

Configure Feed

Select the types of activity you want to include in your feed.

Minor updates to readline configury

Christian's recent patches to gnulib made me realize that readline
should be changed to use AC_CONFIG_MACRO_DIRS (ACLOCAL_AMFLAGS is
deprecated) and that it can put the automake options into
configure.ac. I also added no-define to the automake options. This
doesn't matter much (we don't generate a config.h here), but gnulib
does it, and it does make configure slightly smaller.

readline/ChangeLog
2019-11-15 Tom Tromey <tromey@adacore.com>

* configure, Makefile.in: Rebuild.
* configure.ac: Use AC_CONFIG_MACRO_DIRS. Pass options to
AM_INIT_AUTOMAKE.
* Makefile.am (AUTOMAKE_OPTIONS, ACLOCAL_AMFLAGS): Remove.

Change-Id: If421599cc9dd9c4c3c37b9b439ab2c22c01742ed

Tom Tromey (Nov 15, 2019, 1:46 PM -0700) bb69c501 53fea9c7

+10 -14
+7
readline/ChangeLog
··· 1 + 2019-11-15 Tom Tromey <tromey@adacore.com> 2 + 3 + * configure, Makefile.in: Rebuild. 4 + * configure.ac: Use AC_CONFIG_MACRO_DIRS. Pass options to 5 + AM_INIT_AUTOMAKE. 6 + * Makefile.am (AUTOMAKE_OPTIONS, ACLOCAL_AMFLAGS): Remove. 7 + 1 8 2019-10-23 Tom Tromey <tom@tromey.com> 2 9 3 10 Move old contents to readline/ subdirectory.
-2
readline/Makefile.am
··· 15 15 # You should have received a copy of the GNU General Public License 16 16 # along with this program. If not, see <http://www.gnu.org/licenses/>. 17 17 18 - AUTOMAKE_OPTIONS = no-dist foreign 19 18 SUBDIRS = readline 20 - ACLOCAL_AMFLAGS = -I . -I ../config
-2
readline/Makefile.in
··· 245 245 top_build_prefix = @top_build_prefix@ 246 246 top_builddir = @top_builddir@ 247 247 top_srcdir = @top_srcdir@ 248 - AUTOMAKE_OPTIONS = no-dist foreign 249 248 SUBDIRS = readline 250 - ACLOCAL_AMFLAGS = -I . -I ../config 251 249 all: all-recursive 252 250 253 251 .SUFFIXES:
+1 -9
readline/configure
··· 1744 1744 ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. 1745 1745 1746 1746 1747 + 1747 1748 am__api_version='1.15' 1748 1749 1749 1750 # Find a good install program. We prefer a C program (faster), ··· 2232 2233 PACKAGE='readline' 2233 2234 VERSION='UNUSED-VERSION' 2234 2235 2235 - 2236 - cat >>confdefs.h <<_ACEOF 2237 - #define PACKAGE "$PACKAGE" 2238 - _ACEOF 2239 - 2240 - 2241 - cat >>confdefs.h <<_ACEOF 2242 - #define VERSION "$VERSION" 2243 - _ACEOF 2244 2236 2245 2237 # Some tools Automake needs. 2246 2238
+2 -1
readline/configure.ac
··· 21 21 AC_INIT([readline], [UNUSED-VERSION]) 22 22 AC_CONFIG_SRCDIR([readline/readline.c]) 23 23 AC_CONFIG_AUX_DIR(..) 24 - AM_INIT_AUTOMAKE 24 + AC_CONFIG_MACRO_DIRS([../config]) 25 + AM_INIT_AUTOMAKE([no-define no-dist foreign]) 25 26 AM_MAINTAINER_MODE 26 27 27 28 AC_CONFIG_SUBDIRS([readline])