autoconf 2.60, will probably be needed sooner or later for other

software.
This commit is contained in:
espie 2006-07-10 00:39:49 +00:00
parent 336fddee48
commit a017ff3be1
17 changed files with 424 additions and 0 deletions

View File

@ -0,0 +1,34 @@
# $OpenBSD: Makefile,v 1.1.1.1 2006/07/10 00:39:49 espie Exp $
COMMENT= "automatically configure source code on many Un*x platforms"
DISTNAME= autoconf-2.60
CATEGORIES= devel
MASTER_SITES= ${MASTER_SITE_GNU:=autoconf/}
HOMEPAGE= http://www.gnu.org/software/autoconf/
MAINTAINER= Marc Espie <espie@openbsd.org>
# GPL
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
BUILD_DEPENDS= :help2man-*:devel/help2man
SUFFIX= -2.60
CONFIGURE_STYLE= gnu
CONFIGURE_ARGS+= --program-suffix=${SUFFIX} \
--without-lispdir \
--mandir=${PREFIX}/man \
--infodir=${PREFIX}/info
CONFIGURE_ENV+= M4="/usr/bin/m4"
CONFIGURE_ENV+= AWK="${AWK}" ac_cv_sh_n_works=yes
MODGNU_CONFIG_GUESS_DIRS=${WRKSRC}/config
MAKE_FLAGS= pkgdatadir=${PREFIX}/share/autoconf${SUFFIX} EMACS=no
FAKE_FLAGS= ${MAKE_FLAGS} DESTDIR=${WRKINST} lispdir= EMACS=no
#USE_GMAKE= Yes
SUBST_VARS= SUFFIX
.include <bsd.port.mk>

View File

@ -0,0 +1,4 @@
MD5 (autoconf-2.60.tar.gz) = 3c444970912129e04680166bf55e386c
RMD160 (autoconf-2.60.tar.gz) = 0245d3a347b6be4f87f9f820f2dc43664327ec43
SHA1 (autoconf-2.60.tar.gz) = 4286f873d04ba0d06fd9439fee9a1a8bd7bda91d
SIZE (autoconf-2.60.tar.gz) = 1366620

View File

@ -0,0 +1,11 @@
$OpenBSD: patch-Makefile_in,v 1.1.1.1 2006/07/10 00:39:49 espie Exp $
--- Makefile.in.orig Fri Jun 23 18:04:53 2006
+++ Makefile.in Sat Jul 8 17:12:30 2006
@@ -216,6 +216,7 @@ install-pkgdataDATA: $(pkgdata_DATA)
@$(NORMAL_INSTALL)
test -z "$(pkgdatadir)" || $(mkdir_p) "$(DESTDIR)$(pkgdatadir)"
@list='$(pkgdata_DATA)'; for p in $$list; do \
+ p=`basename $$p`; \
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
f=$(am__strip_dir) \
echo " $(pkgdataDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(pkgdatadir)/$$f'"; \

View File

@ -0,0 +1,58 @@
$OpenBSD: patch-bin_autom4te_in,v 1.1.1.1 2006/07/10 00:39:49 espie Exp $
--- bin/autom4te.in.orig Fri Jun 23 17:14:13 2006
+++ bin/autom4te.in Sat Jul 8 17:15:03 2006
@@ -88,16 +88,9 @@ my $freeze = 0;
# $M4.
my $m4 = $ENV{"M4"} || '@M4@';
-# Some non-GNU m4's don't reject the --help option, so give them /dev/null.
-fatal "need GNU m4 1.4 or later: $m4"
- if system "$m4 --help </dev/null 2>&1 | grep reload-state >/dev/null";
-# Set some high recursion limit as the default limit, 250, has already
-# been hit with AC_OUTPUT. Don't override the user's choice.
-$m4 .= ' --nesting-limit=1024'
- if " $m4 " !~ / (--nesting-limit(=[0-9]+)?|-L[0-9]*) /;
+$m4 .= " -g -D__gnu__";
-
# @M4_BUILTIN -- M4 builtins and a useful comment.
my @m4_builtin = `echo dumpdef | $m4 2>&1 >/dev/null`;
map { s/:.*//;s/\W// } @m4_builtin;
@@ -458,11 +451,11 @@ sub handle_m4 ($@)
# We don't output directly to the cache files, to avoid problems
# when we are interrupted (that leaves corrupted files).
xsystem ("$m4"
- . join (' --include=', '', @include)
- . ' --debug=aflq'
- . (!exists $ENV{'AUTOM4TE_NO_FATAL'} ? ' --fatal-warning' : '')
- . " --error-output=$tcache" . $req->id . "t"
- . join (' --trace=', '', sort @macro)
+ . join (' -I ', '', @include)
+ . ' -daflq'
+# . (!exists $ENV{'AUTOM4TE_NO_FATAL'} ? ' --fatal-warning' : '')
+ . " -o$tcache" . $req->id . "t"
+ . join (' -t', '', sort @macro)
. " " . files_to_options (@ARGV)
. ' </dev/null'
. " >$ocache" . $req->id . "t");
@@ -914,8 +907,7 @@ sub freeze ($)
# When processing the file with diversion disabled, there must be no
# output but comments and empty lines.
my $result = xqx ("$m4"
- . ' --fatal-warning'
- . join (' --include=', '', @include)
+ . join (' -I ', '', @include)
. ' --define=divert'
. " " . files_to_options (@ARGV)
. ' </dev/null');
@@ -928,8 +920,7 @@ sub freeze ($)
# If freezing produces output, something went wrong: a bad `divert',
# or an improper paren etc.
xsystem ("$m4"
- . ' --fatal-warning'
- . join (' --include=', '', @include)
+ . join (' -I ', '', @include)
. " --freeze-state=$output"
. " " . files_to_options (@ARGV)
. ' </dev/null');

View File

@ -0,0 +1,24 @@
$OpenBSD: patch-bin_autoupdate_in,v 1.1.1.1 2006/07/10 00:39:49 espie Exp $
--- bin/autoupdate.in.orig Mon Apr 10 20:27:21 2006
+++ bin/autoupdate.in Sat Jul 8 17:12:30 2006
@@ -57,6 +57,7 @@ my @include = ('@datadir@');
my $force = 0;
# m4.
my $m4 = $ENV{"M4"} || '@M4@';
+$m4.=" -g -D__gnu__";
# $HELP
@@ -393,9 +394,9 @@ EOF
or error "cannot close $tmp/input.m4: $!";
# Now ask m4 to perform the update.
- xsystem ("$m4 --include=$tmp"
- . join (' --include=', '', reverse (@prepend_include))
- . join (' --include=', '', @include)
+ xsystem ("$m4 -I$tmp"
+ . join (' -I', '', reverse (@prepend_include))
+ . join (' -I', '', @include)
. " $tmp/input.m4 >$tmp/updated");
update_file ("$tmp/updated",
"$file" eq "$tmp/stdin" ? '-' : "$file");

View File

@ -0,0 +1,30 @@
$OpenBSD: patch-configure,v 1.1.1.1 2006/07/10 00:39:49 espie Exp $
--- configure.orig Sat Jul 8 17:20:14 2006
+++ configure Sat Jul 8 17:20:26 2006
@@ -2272,26 +2272,6 @@ fi
done
test -n "$M4" || M4="m4"
-{ echo "$as_me:$LINENO: checking whether m4 supports frozen files" >&5
-echo $ECHO_N "checking whether m4 supports frozen files... $ECHO_C" >&6; }
-if test "${ac_cv_prog_gnu_m4+set}" = set; then
- echo $ECHO_N "(cached) $ECHO_C" >&6
-else
- ac_cv_prog_gnu_m4=no
-if test x"$M4" != x; then
- case `$M4 --help < /dev/null 2>&1` in
- *reload-state*) ac_cv_prog_gnu_m4=yes ;;
- esac
-fi
-fi
-{ echo "$as_me:$LINENO: result: $ac_cv_prog_gnu_m4" >&5
-echo "${ECHO_T}$ac_cv_prog_gnu_m4" >&6; }
-if test x"$ac_cv_prog_gnu_m4" != xyes; then
- { { echo "$as_me:$LINENO: error: GNU M4 1.4 is required" >&5
-echo "$as_me: error: GNU M4 1.4 is required" >&2;}
- { (exit 1); exit 1; }; }
-fi
-
## ----------- ##
## Man pages. ##
## ----------- ##

View File

@ -0,0 +1,45 @@
$OpenBSD: patch-doc_Makefile_in,v 1.1.1.1 2006/07/10 00:39:49 espie Exp $
--- doc/Makefile.in.orig Fri Jun 23 18:04:53 2006
+++ doc/Makefile.in Sat Jul 8 17:26:07 2006
@@ -226,7 +226,7 @@ $(ACLOCAL_M4): $(am__aclocal_m4_deps)
rm -rf $(@:.html=); else rm -Rf $(@:.html=.htp) $@; fi; \
exit 1; \
fi
-$(srcdir)/autoconf.info: autoconf.texi $(srcdir)/version.texi $(autoconf_TEXINFOS)
+$(srcdir)/autoconf.info: #autoconf.texi $(srcdir)/version.texi $(autoconf_TEXINFOS)
autoconf.dvi: autoconf.texi $(srcdir)/version.texi $(autoconf_TEXINFOS)
autoconf.pdf: autoconf.texi $(srcdir)/version.texi $(autoconf_TEXINFOS)
autoconf.html: autoconf.texi $(srcdir)/version.texi $(autoconf_TEXINFOS)
@@ -289,6 +289,10 @@ dist-info: $(INFO_DEPS)
if test -f $$base; then d=.; else d=$(srcdir); fi; \
for file in $$d/$$base*; do \
relfile=`expr "$$file" : "$$d/\(.*\)"`; \
+ ext=`echo $$relfile | sed -e 's/^.*\\.//'`; \
+ relfile=`echo $$relfile | sed -e 's/\\.[0-9a-z]*$$//'`; \
+ relfile=`echo $$relfile | sed -e 's/^.*\///'`; \
+ relfile=`echo $$relfile | sed '$(transform)'`.$$ext; \
test -f $(distdir)/$$relfile || \
cp -p $$file $(distdir)/$$relfile; \
done; \
@@ -423,6 +427,10 @@ install-info-am: $(INFO_DEPS)
$$d/$$file_i[0-9] $$d/$$file_i[0-9][0-9] ; do \
if test -f $$ifile; then \
relfile=`echo "$$ifile" | sed 's|^.*/||'`; \
+ ext=`echo $$relfile | sed -e 's/^.*\\.//'`; \
+ relfile=`echo $$relfile | sed -e 's/\\.[0-9a-z]*$$//'`; \
+ relfile=`echo $$relfile | sed -e 's/^.*\///'`; \
+ relfile=`echo $$relfile | sed '$(transform)'`.$$ext; \
echo " $(INSTALL_DATA) '$$ifile' '$(DESTDIR)$(infodir)/$$relfile'"; \
$(INSTALL_DATA) "$$ifile" "$(DESTDIR)$(infodir)/$$relfile"; \
else : ; fi; \
@@ -434,6 +442,10 @@ install-info-am: $(INFO_DEPS)
list='$(INFO_DEPS)'; \
for file in $$list; do \
relfile=`echo "$$file" | sed 's|^.*/||'`; \
+ ext=`echo $$relfile | sed -e 's/^.*\\.//'`; \
+ relfile=`echo $$relfile | sed -e 's/\\.[0-9a-z]*$$//'`; \
+ relfile=`echo $$relfile | sed -e 's/^.*\///'`; \
+ relfile=`echo $$relfile | sed '$(transform)'`.$$ext; \
echo " install-info --info-dir='$(DESTDIR)$(infodir)' '$(DESTDIR)$(infodir)/$$relfile'";\
install-info --info-dir="$(DESTDIR)$(infodir)" "$(DESTDIR)$(infodir)/$$relfile" || :;\
done; \

View File

@ -0,0 +1,42 @@
$OpenBSD: patch-doc_autoconf_info,v 1.1.1.1 2006/07/10 00:39:49 espie Exp $
--- doc/autoconf.info.orig Sat Jul 8 17:23:55 2006
+++ doc/autoconf.info Sat Jul 8 17:24:47 2006
@@ -22,27 +22,27 @@ templates and an M4 macro package.
INFO-DIR-SECTION Software development
START-INFO-DIR-ENTRY
-* Autoconf: (autoconf). Create source code configuration scripts.
+* Autoconf-2.60: (autoconf-2.60). Create source code configuration scripts.
END-INFO-DIR-ENTRY
INFO-DIR-SECTION Individual utilities
START-INFO-DIR-ENTRY
-* autoscan: (autoconf)autoscan Invocation.
+* autoscan-2.60: (autoconf-2.60)autoscan Invocation.
Semi-automatic `configure.ac' writing
-* ifnames: (autoconf)ifnames Invocation. Listing conditionals in source.
-* autoconf: (autoconf)autoconf Invocation.
+* ifnames-2.60: (autoconf-2.60)ifnames Invocation. Listing conditionals in source.
+* autoconf-2.60: (autoconf-2.60)autoconf Invocation.
How to create configuration scripts
-* autoreconf: (autoconf)autoreconf Invocation.
+* autoreconf-2.60: (autoconf-2.60)autoreconf Invocation.
Remaking multiple `configure' scripts
-* autoheader: (autoconf)autoheader Invocation.
+* autoheader-2.60: (autoconf-2.60)autoheader Invocation.
How to create configuration templates
-* autom4te: (autoconf)autom4te Invocation.
+* autom4te-2.60: (autoconf-2.60)autom4te Invocation.
The Autoconf executables backbone
-* configure: (autoconf)configure Invocation. Configuring a package.
-* autoupdate: (autoconf)autoupdate Invocation.
+* configure: (autoconf-2.60)configure Invocation. Configuring a package.
+* autoupdate-2.60: (autoconf-2.60)autoupdate Invocation.
Automatic update of `configure.ac'
-* config.status: (autoconf)config.status Invocation. Recreating configurations.
-* testsuite: (autoconf)testsuite Invocation. Running an Autotest test suite.
+* config.status: (autoconf-2.60)config.status Invocation. Recreating configurations.
+* testsuite: (autoconf-2.60)testsuite Invocation. Running an Autotest test suite.
END-INFO-DIR-ENTRY


View File

@ -0,0 +1,12 @@
$OpenBSD: patch-lib_autoconf_Makefile_in,v 1.1.1.1 2006/07/10 00:39:49 espie Exp $
--- lib/autoconf/Makefile.in.orig Fri Jun 23 18:04:54 2006
+++ lib/autoconf/Makefile.in Sat Jul 8 17:12:31 2006
@@ -140,7 +140,7 @@ dist_autoconflib_DATA = \
lang.m4 c.m4 erlang.m4 fortran.m4 \
functions.m4 headers.m4 types.m4 libs.m4 programs.m4
-nodist_autoconflib_DATA = autoconf.m4f
+nodist_autoconflib_DATA = # autoconf.m4f
CLEANFILES = $(nodist_autoconflib_DATA)
TAGS_FILES = $(dist_autoconflib_DATA)
ETAGS_ARGS = $(ETAGS_FOR_AUTOCONF)

View File

@ -0,0 +1,12 @@
$OpenBSD: patch-lib_autotest_Makefile_in,v 1.1.1.1 2006/07/10 00:39:49 espie Exp $
--- lib/autotest/Makefile.in.orig Fri Jun 23 18:04:54 2006
+++ lib/autotest/Makefile.in Sat Jul 8 17:12:31 2006
@@ -134,7 +134,7 @@ sysconfdir = @sysconfdir@
target_alias = @target_alias@
autotestlibdir = $(pkgdatadir)/autotest
dist_autotestlib_DATA = autotest.m4 general.m4
-nodist_autotestlib_DATA = autotest.m4f
+nodist_autotestlib_DATA = # autotest.m4f
CLEANFILES = $(nodist_autotestlib_DATA)
TAGS_FILES = $(dist_autotestlib_DATA)
ETAGS_ARGS = $(ETAGS_FOR_AUTOCONF)

View File

@ -0,0 +1,12 @@
$OpenBSD: patch-lib_autotest_general_m4,v 1.1.1.1 2006/07/10 00:39:49 espie Exp $
--- lib/autotest/general.m4.orig Sun Jul 9 11:44:04 2006
+++ lib/autotest/general.m4 Sun Jul 9 11:44:11 2006
@@ -1177,7 +1177,7 @@ m4_divert_push([TESTS])dnl
AT_ordinal ) @%:@ AT_ordinal. m4_defn([AT_line]): $1
at_setup_line='m4_defn([AT_line])'
at_desc='$1'
- $at_quiet $ECHO_N "m4_format([%3d: %-]m4_eval(47 - m4_qdelta([$1]))[s],
+ $at_quiet $ECHO_N "m4_format([%3s: %-]m4_eval(47 - m4_qdelta([$1]))[s],
AT_ordinal, [[$1]])[]$ECHO_C"
m4_divert_push([TEST_SCRIPT])dnl
])

View File

@ -0,0 +1,12 @@
$OpenBSD: patch-lib_m4sugar_Makefile_in,v 1.1.1.1 2006/07/10 00:39:49 espie Exp $
--- lib/m4sugar/Makefile.in.orig Fri Jun 23 18:04:54 2006
+++ lib/m4sugar/Makefile.in Sat Jul 8 17:12:31 2006
@@ -134,7 +134,7 @@ sysconfdir = @sysconfdir@
target_alias = @target_alias@
m4sugarlibdir = $(pkgdatadir)/m4sugar
dist_m4sugarlib_DATA = m4sugar.m4 m4sh.m4
-nodist_m4sugarlib_DATA = version.m4 m4sugar.m4f m4sh.m4f
+nodist_m4sugarlib_DATA = version.m4 # m4sugar.m4f m4sh.m4f
CLEANFILES = $(nodist_m4sugarlib_DATA)
TAGS_FILES = $(dist_m4sugarlib_DATA)
ETAGS_ARGS = $(ETAGS_FOR_AUTOCONF)

View File

@ -0,0 +1,14 @@
$OpenBSD: patch-tests_Makefile_in,v 1.1.1.1 2006/07/10 00:39:49 espie Exp $
--- tests/Makefile.in.orig Fri Jun 23 18:04:54 2006
+++ tests/Makefile.in Sun Jul 9 11:43:54 2006
@@ -471,9 +471,7 @@ $(wrappers): wrapper.in
mv -f $@.tmp $@
$(TESTSUITE): $(srcdir)/package.m4 \
local.at \
- $(TESTSUITE_AT) \
- $(autotest_m4f_dependencies)
- cd $(top_builddir)/lib/autotest && $(MAKE) $(AM_MAKEFLAGS) autotest.m4f
+ $(TESTSUITE_AT)
$(AUTOTEST) -I $(srcdir) suite.at -o $@.tmp
mv $@.tmp $@

View File

@ -0,0 +1,30 @@
$OpenBSD: patch-tests_c_at,v 1.1.1.1 2006/07/10 00:39:49 espie Exp $
--- tests/c.at.orig Wed Mar 8 21:47:02 2006
+++ tests/c.at Sat Jul 8 17:18:23 2006
@@ -141,13 +141,13 @@ AT_CLEANUP
AT_SETUP([AC_PROG_CPP without warnings])
# Ignore if /lib/cpp doesn't work
-AT_CHECK([echo '#include <stdio.h>' | /lib/cpp || exit 77],
+AT_CHECK([echo '#include <stdio.h>' | /usr/bin/cpp || exit 77],
[], [ignore], [ignore])
# A cpp which exit status is meaningless.
AT_DATA([mycpp],
[[#! /bin/sh
-/lib/cpp "$@"
+/usr/bin/cpp "$@"
exit 0
]])
@@ -178,8 +178,8 @@ AT_CLEANUP
AT_SETUP([AC_PROG_CPP via CC])
-# Ignore if /lib/cpp doesn't work
-AT_CHECK([echo '#include <stdio.h>' | /lib/cpp || exit 77],
+# Ignore if /usr/bin/cpp doesn't work
+AT_CHECK([echo '#include <stdio.h>' | /usr/bin/cpp || exit 77],
[], [ignore], [ignore])
AT_DATA([mycc],

View File

@ -0,0 +1,11 @@
$OpenBSD: patch-tests_local_at,v 1.1.1.1 2006/07/10 00:39:49 espie Exp $
--- tests/local.at.orig Sun Jul 9 23:35:17 2006
+++ tests/local.at Sun Jul 9 23:51:49 2006
@@ -97,6 +97,7 @@ m4_ifval([$4],
-e 's/^autom4te: [^ ]*m4 /autom4te: m4 /' \
-e 's/^autom4te: [^ ]*m4\.exe /autom4te: m4 /' \
-e 's/ (E[A-Z]*)$//' \
+ -e 's/ at line \([0-9]*\): include(\(.*\)):/: \1: Cannot open \2:/' \
stderr]], [0],[$4])])
])

View File

@ -0,0 +1,12 @@
Autoconf is an extensible package of m4 macros that produce shell
scripts to automatically configure software source code packages.
These scripts allegedly can adapt the packages to many kinds of UNIX-like
systems without manual user intervention. Autoconf creates a
configuration script for a package from a template file that lists the
operating system features that the package can use, in the form of m4
macro calls.
This is autoconf${SUFFIX}.
The actual autoconf drivers for selecting autoconf version are in
the metaauto package.

View File

@ -0,0 +1,61 @@
@comment $OpenBSD: PLIST,v 1.1.1.1 2006/07/10 00:39:49 espie Exp $
@option no-default-conflict
bin/autoconf${SUFFIX}
bin/autoheader${SUFFIX}
bin/autom4te${SUFFIX}
bin/autoreconf${SUFFIX}
bin/autoscan${SUFFIX}
bin/autoupdate${SUFFIX}
bin/ifnames${SUFFIX}
@info info/autoconf${SUFFIX}.info
@comment @info info/standards${SUFFIX}.info
@man man/man1/autoconf${SUFFIX}.1
@man man/man1/autoheader${SUFFIX}.1
@man man/man1/autom4te${SUFFIX}.1
@man man/man1/autoreconf${SUFFIX}.1
@man man/man1/autoscan${SUFFIX}.1
@man man/man1/autoupdate${SUFFIX}.1
@man man/man1/config.guess${SUFFIX}.1
@man man/man1/config.sub${SUFFIX}.1
@man man/man1/ifnames${SUFFIX}.1
share/autoconf${SUFFIX}/
share/autoconf${SUFFIX}/Autom4te/
share/autoconf${SUFFIX}/Autom4te/C4che.pm
share/autoconf${SUFFIX}/Autom4te/ChannelDefs.pm
share/autoconf${SUFFIX}/Autom4te/Channels.pm
share/autoconf${SUFFIX}/Autom4te/Configure_ac.pm
share/autoconf${SUFFIX}/Autom4te/FileUtils.pm
share/autoconf${SUFFIX}/Autom4te/General.pm
share/autoconf${SUFFIX}/Autom4te/Request.pm
share/autoconf${SUFFIX}/Autom4te/Struct.pm
share/autoconf${SUFFIX}/Autom4te/XFile.pm
share/autoconf${SUFFIX}/INSTALL
share/autoconf${SUFFIX}/autoconf/
share/autoconf${SUFFIX}/autoconf/autoconf.m4
share/autoconf${SUFFIX}/autoconf/autoheader.m4
share/autoconf${SUFFIX}/autoconf/autoscan.m4
share/autoconf${SUFFIX}/autoconf/autotest.m4
share/autoconf${SUFFIX}/autoconf/autoupdate.m4
share/autoconf${SUFFIX}/autoconf/c.m4
share/autoconf${SUFFIX}/autoconf/erlang.m4
share/autoconf${SUFFIX}/autoconf/fortran.m4
share/autoconf${SUFFIX}/autoconf/functions.m4
share/autoconf${SUFFIX}/autoconf/general.m4
share/autoconf${SUFFIX}/autoconf/headers.m4
share/autoconf${SUFFIX}/autoconf/lang.m4
share/autoconf${SUFFIX}/autoconf/libs.m4
share/autoconf${SUFFIX}/autoconf/oldnames.m4
share/autoconf${SUFFIX}/autoconf/programs.m4
share/autoconf${SUFFIX}/autoconf/specific.m4
share/autoconf${SUFFIX}/autoconf/status.m4
share/autoconf${SUFFIX}/autoconf/types.m4
share/autoconf${SUFFIX}/autom4te.cfg
share/autoconf${SUFFIX}/autoscan/
share/autoconf${SUFFIX}/autoscan/autoscan.list
share/autoconf${SUFFIX}/autotest/
share/autoconf${SUFFIX}/autotest/autotest.m4
share/autoconf${SUFFIX}/autotest/general.m4
share/autoconf${SUFFIX}/m4sugar/
share/autoconf${SUFFIX}/m4sugar/m4sh.m4
share/autoconf${SUFFIX}/m4sugar/m4sugar.m4
share/autoconf${SUFFIX}/m4sugar/version.m4