我正在尝试让 libtool 在我的 MacOS 10.8.3 机器上工作。因为 Apple 发布的所有内容都已过时,所以我使用的是 macports。我有最新版本:
libtool (GNU libtool) 2.4.2
automake (GNU automake) 1.13.1
autoconf (GNU Autoconf) 2.69
它全部安装在 /opt 中。
这是configure.ac:
AC_INIT([Hello], [0.1], [bug-report@hello.example.com], [hello], [http://hello.example.com/])
AC_PREREQ([2.59])
AM_INIT_AUTOMAKE([1.10 no-define])
LT_INIT
AC_CONFIG_HEADERS([config.h])
AC_PROG_CXX
AC_CONFIG_FILES([Makefile])
AC_OUTPUT
这是 Makefile.am:
lib_LTLIBRARIES = libsomething-1.0.la
libsomething_1_0_la_SOURCES = something.cc
bin_PROGRAMS = hello
hello_SOURCES = hello.h hello.cc main.cc
运行 glibtoolize 会产生此错误:
glibtoolize: Consider adding `AC_CONFIG_MACRO_DIR([m4])' to configure.ac and
glibtoolize: rerunning glibtoolize, to keep the correct libtool macros in-tree.
glibtoolize: Consider adding `-I m4' to ACLOCAL_AMFLAGS in Makefile.am.
当我将此行添加到 Makefile.am: ACLOCAL_AMFLAGS="-I m4" 我收到此错误;
glibtoolize: Consider adding `-I m4' to ACLOCAL_AMFLAGS in Makefile.am.
如果我将其更改为: ACLOCAL_AMFLAGS="-Im4"
我得到同样的错误:glibtoolize:考虑在 Makefile.am 中将 `-I m4' 添加到 ACLOCAL_AMFLAGS。
我得到的第二个错误是:
configure.ac:5: error: required file '../ltmain.sh' not found
如何让这些错误消失?