mirror of
git://git.sv.gnu.org/autoconf
synced 2024-12-03 02:00:36 +08:00
* lib/autoconf/autoconf.m4 (AC_CONFIG_COMMANDS)
(AC_CONFIG_COMMANDS_POST, AC_CONFIG_COMMANDS_PRE, AC_CONFIG_FILES) (AC_CONFIG_HEADER, AC_CONFIG_HEADERS, AC_CONFIG_IF_MEMBER) (AC_CONFIG_LINKS, AC_CONFIG_SUBDIRS, AC_FILE_DEPENDENCY_TRACE) (AC_LINK_FILES, AC_LIST_COMMANDS, AC_LIST_COMMANDS_COMMANDS) (AC_LIST_FILES, AC_LIST_FILES_COMMANDS, AC_LIST_HEADERS) (AC_LIST_HEADERS_COMMANDS, AC_LIST_LINKS, AC_LIST_LINKS_COMMANDS) (AC_OUTPUT, AC_OUTPUT_COMMANDS, AC_OUTPUT_COMMANDS_POST) (AC_OUTPUT_COMMANDS_PRE, AC_OUTPUT_MAKE_DEFS) (_AC_CONFIG_COMMANDS_INIT, _AC_CONFIG_DEPENDENCIES) (_AC_CONFIG_DEPENDENCY, _AC_CONFIG_UNIQUE, _AC_LINK_FILES_CNT) (_AC_LIST_SUBDIRS, _AC_OUTPUT_COMMANDS, _AC_OUTPUT_COMMANDS_CNT) (_AC_OUTPUT_COMMANDS_INIT, _AC_OUTPUT_CONFIG_STATUS) (_AC_OUTPUT_FILES, _AC_OUTPUT_HEADERS, _AC_OUTPUT_LINKS) (_AC_OUTPUT_SUBDIRS): Move to... * lib/autoconf/status.m4: this new file. * lib/autoconf/general.m4, lib/autoconf/Makefile.am: Adjust. * tests/Makefile.am, tests/suite.at: Adjust.
This commit is contained in:
parent
ba3b08af20
commit
41c5f49c1f
21
ChangeLog
21
ChangeLog
@ -1,3 +1,24 @@
|
||||
2001-08-27 Akim Demaille <akim@epita.fr>
|
||||
|
||||
* lib/autoconf/autoconf.m4 (AC_CONFIG_COMMANDS)
|
||||
(AC_CONFIG_COMMANDS_POST, AC_CONFIG_COMMANDS_PRE, AC_CONFIG_FILES)
|
||||
(AC_CONFIG_HEADER, AC_CONFIG_HEADERS, AC_CONFIG_IF_MEMBER)
|
||||
(AC_CONFIG_LINKS, AC_CONFIG_SUBDIRS, AC_FILE_DEPENDENCY_TRACE)
|
||||
(AC_LINK_FILES, AC_LIST_COMMANDS, AC_LIST_COMMANDS_COMMANDS)
|
||||
(AC_LIST_FILES, AC_LIST_FILES_COMMANDS, AC_LIST_HEADERS)
|
||||
(AC_LIST_HEADERS_COMMANDS, AC_LIST_LINKS, AC_LIST_LINKS_COMMANDS)
|
||||
(AC_OUTPUT, AC_OUTPUT_COMMANDS, AC_OUTPUT_COMMANDS_POST)
|
||||
(AC_OUTPUT_COMMANDS_PRE, AC_OUTPUT_MAKE_DEFS)
|
||||
(_AC_CONFIG_COMMANDS_INIT, _AC_CONFIG_DEPENDENCIES)
|
||||
(_AC_CONFIG_DEPENDENCY, _AC_CONFIG_UNIQUE, _AC_LINK_FILES_CNT)
|
||||
(_AC_LIST_SUBDIRS, _AC_OUTPUT_COMMANDS, _AC_OUTPUT_COMMANDS_CNT)
|
||||
(_AC_OUTPUT_COMMANDS_INIT, _AC_OUTPUT_CONFIG_STATUS)
|
||||
(_AC_OUTPUT_FILES, _AC_OUTPUT_HEADERS, _AC_OUTPUT_LINKS)
|
||||
(_AC_OUTPUT_SUBDIRS): Move to...
|
||||
* lib/autoconf/status.m4: this new file.
|
||||
* lib/autoconf/general.m4, lib/autoconf/Makefile.am: Adjust.
|
||||
* tests/Makefile.am, tests/suite.at: Adjust.
|
||||
|
||||
2001-08-27 Akim Demaille <akim@epita.fr>
|
||||
|
||||
Automake 1.5.
|
||||
|
@ -19,7 +19,7 @@
|
||||
|
||||
autoconflibdir = $(pkgdatadir)/autoconf
|
||||
dist_autoconflib_DATA = autoconf.m4 \
|
||||
general.m4 oldnames.m4 specific.m4 \
|
||||
general.m4 status.m4 oldnames.m4 specific.m4 \
|
||||
lang.m4 c.m4 fortran.m4 \
|
||||
functions.m4 headers.m4 types.m4 libs.m4 programs.m4
|
||||
nodist_autoconflib_DATA = autoconf.m4f
|
||||
@ -109,6 +109,7 @@ autoconf.m4f: $(srclibdir)/m4sugar/m4sugar.m4 \
|
||||
$(srclibdir)/m4sugar/m4sh.m4 \
|
||||
$(srclibdir)/autoconf/autoconf.m4 \
|
||||
$(srclibdir)/autoconf/general.m4 \
|
||||
$(srclibdir)/autoconf/status.m4 \
|
||||
$(srclibdir)/autoconf/oldnames.m4 \
|
||||
$(srclibdir)/autoconf/specific.m4 \
|
||||
$(srclibdir)/autoconf/lang.m4 \
|
||||
|
@ -66,7 +66,7 @@ VERSION = @VERSION@
|
||||
|
||||
autoconflibdir = $(pkgdatadir)/autoconf
|
||||
dist_autoconflib_DATA = autoconf.m4 \
|
||||
general.m4 oldnames.m4 specific.m4 \
|
||||
general.m4 status.m4 oldnames.m4 specific.m4 \
|
||||
lang.m4 c.m4 fortran.m4 \
|
||||
functions.m4 headers.m4 types.m4 libs.m4 programs.m4
|
||||
|
||||
@ -330,6 +330,7 @@ autoconf.m4f: $(srclibdir)/m4sugar/m4sugar.m4 \
|
||||
$(srclibdir)/m4sugar/m4sh.m4 \
|
||||
$(srclibdir)/autoconf/autoconf.m4 \
|
||||
$(srclibdir)/autoconf/general.m4 \
|
||||
$(srclibdir)/autoconf/status.m4 \
|
||||
$(srclibdir)/autoconf/oldnames.m4 \
|
||||
$(srclibdir)/autoconf/specific.m4 \
|
||||
$(srclibdir)/autoconf/lang.m4 \
|
||||
|
@ -55,6 +55,7 @@ changequote()
|
||||
changequote([, ])
|
||||
include([m4sugar/m4sh.m4])
|
||||
m4_include([autoconf/general.m4])
|
||||
m4_include([autoconf/status.m4])
|
||||
m4_include([autoconf/programs.m4])
|
||||
m4_include([autoconf/lang.m4])
|
||||
m4_include([autoconf/c.m4])
|
||||
|
File diff suppressed because it is too large
Load Diff
1500
lib/autoconf/status.m4
Normal file
1500
lib/autoconf/status.m4
Normal file
File diff suppressed because it is too large
Load Diff
@ -22,7 +22,8 @@ AUTOMAKE_OPTIONS = gnits
|
||||
|
||||
SUITE_GENERATED = \
|
||||
aclang.at acc.at acfortran.at \
|
||||
acgeneral.at acspecific.at acfunctions.at acheaders.at actypes.at \
|
||||
acgeneral.at acstatus.at \
|
||||
acspecific.at acfunctions.at acheaders.at actypes.at \
|
||||
aclibs.at acprograms.at
|
||||
|
||||
SUITE = suite.at \
|
||||
@ -60,6 +61,7 @@ testsuite: $(top_srcdir)/lib/m4sugar/m4sugar.m4 \
|
||||
# here since below we explicitly `cd' to $srcdir. As for the dependencies,
|
||||
# thanks God for VPATH. Hm...
|
||||
MACRO_FILES = $(top_srcdir)/lib/autoconf/general.m4 \
|
||||
$(top_srcdir)/lib/autoconf/status.m4 \
|
||||
$(top_srcdir)/lib/autoconf/specific.m4 \
|
||||
$(top_srcdir)/lib/autoconf/functions.m4 \
|
||||
$(top_srcdir)/lib/autoconf/lang.m4 \
|
||||
|
@ -68,7 +68,8 @@ AUTOMAKE_OPTIONS = gnits
|
||||
|
||||
SUITE_GENERATED = \
|
||||
aclang.at acc.at acfortran.at \
|
||||
acgeneral.at acspecific.at acfunctions.at acheaders.at actypes.at \
|
||||
acgeneral.at acstatus.at \
|
||||
acspecific.at acfunctions.at acheaders.at actypes.at \
|
||||
aclibs.at acprograms.at
|
||||
|
||||
|
||||
@ -95,6 +96,7 @@ AUTOM4TE = autom4te_perllibdir='$(top_srcdir)/lib' ../bin/autom4te
|
||||
# here since below we explicitly `cd' to $srcdir. As for the dependencies,
|
||||
# thanks God for VPATH. Hm...
|
||||
MACRO_FILES = $(top_srcdir)/lib/autoconf/general.m4 \
|
||||
$(top_srcdir)/lib/autoconf/status.m4 \
|
||||
$(top_srcdir)/lib/autoconf/specific.m4 \
|
||||
$(top_srcdir)/lib/autoconf/functions.m4 \
|
||||
$(top_srcdir)/lib/autoconf/lang.m4 \
|
||||
|
@ -73,6 +73,7 @@ m4_include([semantics.at])
|
||||
# Include them as is suggested for a `configure.ac', as looking for
|
||||
# for types requires looking for headers etc.
|
||||
m4_include([acgeneral.at])
|
||||
m4_include([acstatus.at])
|
||||
m4_include([acspecific.at])
|
||||
m4_include([acprograms.at])
|
||||
m4_include([acheaders.at])
|
||||
|
Loading…
Reference in New Issue
Block a user