mirror of
git://git.sv.gnu.org/autoconf
synced 2024-11-21 01:01:48 +08:00
autoreconf: don’t error out when AM_GNU_GETTEXT is used alone.
Some projects intentionally don't call AM_GNU_GETTEXT_(REQUIRE_)VERSION because they have all of the gettext infrastructure checked into version control and they want autoreconf to _not_ run autopoint. Therefore, make the “AM_GNU_GETTEXT is used, but not AM_GNU_GETTEXT_(REQUIRE_)VERSION” and “AM_GNU_GETTEXT_(REQUIRE_)VERSION is used, but not AM_GNU_GETTEXT” diagnostics be warnings again, as they were in 2.69. (Technically these diagnostics were always errors, in the sense that they were reported with a call to Autom4te::Channels::error(), but prior to 2.70, error() calls made by autoreconf did not cause autoreconf to exit unsuccessfully, due to an unrelated bug. So people came to depend on these diagnostics not being fatal.)
This commit is contained in:
parent
fbcc365d41
commit
66fdaea3cf
@ -644,14 +644,18 @@ sub autoreconf_current_directory ($)
|
||||
}
|
||||
}
|
||||
|
||||
# Gettext consistency checks...
|
||||
error($configure_ac,
|
||||
"AM_GNU_GETTEXT is used, but not AM_GNU_GETTEXT_VERSION"
|
||||
. " or AM_GNU_GETTEXT_REQUIRE_VERSION")
|
||||
# Gettext consistency checks.
|
||||
# Some projects intentionally don't call AM_GNU_GETTEXT_(REQUIRE_)VERSION
|
||||
# because they have all of the gettext infrastructure checked into version
|
||||
# control and they want us to _not_ run autopoint. Therefore, these
|
||||
# diagnostics are only warnings.
|
||||
msg('syntax', $configure_ac,
|
||||
"AM_GNU_GETTEXT is used, but not AM_GNU_GETTEXT_VERSION"
|
||||
. " or AM_GNU_GETTEXT_REQUIRE_VERSION")
|
||||
if $uses_gettext_via_traces && ! $uses_gettext;
|
||||
error($configure_ac,
|
||||
"AM_GNU_GETTEXT_VERSION or AM_GNU_GETTEXT_REQUIRE_VERSION is used,"
|
||||
. " but not AM_GNU_GETTEXT")
|
||||
msg('syntax', $configure_ac,
|
||||
"AM_GNU_GETTEXT_VERSION or AM_GNU_GETTEXT_REQUIRE_VERSION is used,"
|
||||
. " but not AM_GNU_GETTEXT")
|
||||
if $uses_gettext && ! $uses_gettext_via_traces;
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user