Autorreconf and "error: possibly undefined macro: AM_NLS"



我正在尝试为 systemd 生成一个configure脚本。

$ git clone https://github.com/systemd/systemd.git
$ cd systemd
$ autoreconf -i
configure.ac:74: warning: macro 'AM_NLS' not found in library
configure.ac:74: error: possibly undefined macro: AM_NLS
If this token and others are legitimate, please use m4_pattern_allow.
See the Autoconf documentation.
autoreconf: /usr/bin/autoconf failed with exit status: 1

我在一台相当现代的机器上,完全打了补丁。它的Fedora 25,x86_64:

$ lsb_release -a
LSB Version:    :core-4.1-amd64:core-4.1-noarch
Distributor ID: Fedora
Description:    Fedora release 25 (Twenty Five)
Release:        25
Codename:       TwentyFive

我不是Autotools专家,搜索"错误:可能未定义的宏:AM_NLS">不会为我返回有用的命中。我发现 Linphone 配置会导致多个未定义的 Autotools 宏,但并不完全清楚我应该做什么。Unix和Linux Stack Exchange有一些M4宏似乎没有定义,但仍然不清楚我应该为这个问题做些什么。

问题是什么,我该如何解决?

问题是什么,我该如何解决?

问题是它期待GNU gettext,特别是在Fedora 25 gettext-devel上。 它包含在该包中包含的/usr/share/aclocal/nls.m4中。 您应该能够安装该包并生成。

相关内容

  • 没有找到相关文章

最新更新