简体   繁体   English

“autoreconf”:未找到 include/Makefile.in

[英]"autoreconf": include/Makefile.in not found

I'm have download this tarball that I want to compile.我已经下载了我要编译的tarball So I have written this:所以我写了这个:

/tmp/libtheoraplayer/trunk/$ autoreconf --force --install

but I'm gettin this:但我得到了这个:

libtoolize: Consider adding `AC_CONFIG_MACRO_DIR([m4])' to configure.ac and libtoolize: rerunning libtoolize, to keep the correct libtool macros in-tree. libtoolize: Consider adding `-I m4' to ACLOCAL_AMFLAGS in Makefile.am. configure.ac:54: required file **`include/Makefile.in'** not found autoreconf: automake failed with exit status: 1

But the file Makefile.in is in the src/ folder..但是文件 Makefile.in 位于src/文件夹中。

Any idea?任何的想法?

Javier哈维尔

To my knowledge, end users who install programs need not do autoreconf.据我所知,安装程序的最终用户不需要执行 autoreconf。 It is for developers.它适用于开发人员。 When you have code from a repository, and try to build it (even if you are not a developer), you need to autoreconf.当您从存储库中获得代码并尝试构建它时(即使您不是开发人员),您需要 autoreconf。 If this is not the case, you only try to install and use the software, try creating a fresh copy, and如果不是这种情况,您只能尝试安装和使用该软件,尝试创建一个新副本,然后

./configure
make
make install

HTH HTH

Alright, If at all you need autoreconf, install it好吧,如果你需要 autoreconf,安装它

yum install automake autoconf

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM