安装pcre-8.39和Lighttpd 在进行make的时候出现的问题

本文转自:http://blog.csdn.net/zhouxj0818/article/details/51837761

安装pcre-8.39和Lighttpd 在进行make的时候出现的问题_第1张图片


adminn@ubuntu:~/webserver/arm/pcre-8.39$ make
CDPATH="${ZSH_VERSION+.}:" && cd . && /bin/bash /home/adminn/webserver/arm/pcre-8.39/missing aclocal-1.15 -I m4
/home/adminn/webserver/arm/pcre-8.39/missing: line 81: aclocal-1.15: command not found
WARNING: 'aclocal-1.15' is missing on your system.
         You should only need it if you modified 'acinclude.m4' or
         'configure.ac' or m4 files included by 'configure.ac'.
         The 'aclocal' program is part of the GNU Automake package:
         
         It also requires GNU Autoconf, GNU m4 and Perl in order to run:
         
         
         

make: *** [aclocal.m4] Error 127



解决方法:当前目录运行adminn@ubuntu:~/webserver/arm/pcre-8.39$ autoreconf -ivf

执行成功后再make;


如下

adminn@ubuntu:~/webserver/arm/pcre-8.39$ autoreconf -ivf
autoreconf: Entering directory `.'
autoreconf: configure.ac: not using Gettext
autoreconf: running: aclocal --force -I m4
autoreconf: configure.ac: tracing
autoreconf: running: libtoolize --copy --force
libtoolize: putting auxiliary files in `.'.
libtoolize: copying file `./ltmain.sh'
libtoolize: putting macros in AC_CONFIG_MACRO_DIR, `m4'.
libtoolize: copying file `m4/libtool.m4'
libtoolize: copying file `m4/ltoptions.m4'
libtoolize: copying file `m4/ltsugar.m4'
libtoolize: copying file `m4/ltversion.m4'
libtoolize: copying file `m4/lt~obsolete.m4'
autoreconf: running: /usr/bin/autoconf --force
autoreconf: running: /usr/bin/autoheader --force
autoreconf: running: automake --add-missing --copy --force-missing
autoreconf: Leaving directory `.'
adminn@ubuntu:~/webserver/arm/pcre-8.39$ make
/bin/bash ./config.status --recheck
running CONFIG_SHELL=/bin/bash /bin/bash ./configure --no-create --no-recursion
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... no


你可能感兴趣的:(安装pcre-8.39和Lighttpd 在进行make的时候出现的问题)