Hello there, which year do you intend to maintain Shishi properly? You claimed version 1.0.*, so please accept the duty to maintain this source, in preference to developing other material from scratch. As long as you enforce
### configure.ac AM_INIT_AUTOMAKE([1.10 -Wall -Werror -Wno-override]) with "-Werror", you are responsible for being attentative enough to adapt to recent tool changes. automake-1.12 has made changes targetting AC_PROG_MKDIR_P over AM_PROG_MKDIR_P, and separately become dependent on AM_PROG_AR. The former issue needs updated source from GNUlib as long as "-Werror" is in use, and was attended to by GNUlib in December, 2012. Observe also that AM_PROG_MKDIR_P will be made obsolete in automake-1.14. The issue with AM_PROG_AR is resolved by the patch below. By the way, when do you intend to look into the issues with getsubopt() and res_query() needed for portability to non-Glibc, for which I have already submitted tried and tested patches? Regards, Mats Erik Andersson
>From 983bdf843b544159441afb9073d64d1b2f8546f1 Mon Sep 17 00:00:00 2001 From: Mats Erik Andersson <[email protected]> Date: Sat, 23 Mar 2013 13:55:40 +0100 Subject: [PATCH] Port to recent automake. --- configure.ac | 1 + doc/Makefile.am | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 7c38731..fc3f045 100644 --- a/configure.ac +++ b/configure.ac @@ -48,6 +48,7 @@ SOVERSION=`expr ${LT_CURRENT} - ${LT_AGE}` AC_SUBST(SOVERSION) # Checks for programs. +m4_ifdef([AM_PROG_AR], [AM_PROG_AR]) AC_LIBTOOL_WIN32_DLL AC_PROG_LIBTOOL AM_MISSING_PROG(PERL, perl, $missing_dir) diff --git a/doc/Makefile.am b/doc/Makefile.am index f89d82d..67132b9 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -834,7 +834,7 @@ update-makefile: mv Makefile.am.new Makefile.am doit: - @$(mkdir_p) man texi; \ + @$(MKDIR_P) man texi; \ echo -n "Creating function documentation" && \ for i in `$(srcdir)/gdoc -listfunc $(GDOC_SRC)`; do \ $(srcdir)/gdoc -man \ -- 1.8.1
_______________________________________________ Help-shishi mailing list [email protected] https://lists.gnu.org/mailman/listinfo/help-shishi
