제가 사용하는 것은 Digital UNIX V4.0F 입니다. 이곳에.. 아파치와 php를 인스톨하려고 합니다.
근데.. autoconf와 automake가 없다는 메시지가 나와서.. 다음과 같은 화일을 받아서 인스톨하
려고 하는데.. 문제가.. 많습니다.. 먼저 autoconf를 configure할 때 나오는 메시지 입니다..
**********************************
loading cache ./config.cache
checking for gm4... (cached) /usr/bin/m4
checking for mawk... (cached) gawk
checking for perl... (cached) no
configure: warning: autoscan will not be built since perl is not found
checking for a BSD compatible install... ./install-sh -c
creating ./config.status
creating Makefile
creating testsuite/Makefile
이때 make를 하면 다음과 같습니다.. 인스톨은 더욱이 안 되구요..
rm -f autoconf autoconf.tmp
sed -e 's,@''datadir''@,/usr/local/share/autoconf,g' -e 's,@''M4''@,/usr/bin/m4
,g' -e 's,@''AWK''@,gawk,g' -e 's,@''SHELL''@,/bin/sh,g' autoconf.sh > autocon
f.tmp && chmod +x autoconf.tmp && mv autoconf.tmp autoconf
rm -f autoheader autoheader.tmp
sed -e 's,@''datadir''@,/usr/local/share/autoconf,g' -e 's,@''M4''@,/usr/bin/m4
,g' -e 's,@''AWK''@,gawk,g' -e 's,@''SHELL''@,/bin/sh,g' autoheader.sh > autoh
eader.tmp && chmod +x autoheader.tmp && mv autoheader.tmp autoheader
rm -f autoreconf autoreconf.tmp
sed -e 's,@''datadir''@,/usr/local/share/autoconf,g' -e 's,@''M4''@,/usr/bin/m4
,g' -e 's,@''AWK''@,gawk,g' -e 's,@''SHELL''@,/bin/sh,g' autoreconf.sh > autor
econf.tmp && chmod +x autoreconf.tmp && mv autoreconf.tmp autoreconf
rm -f autoupdate autoupdate.tmp
sed -e 's,@''datadir''@,/usr/local/share/autoconf,g' -e 's,@''M4''@,/usr/bin/m4
,g' -e 's,@''AWK''@,gawk,g' -e 's,@''SHELL''@,/bin/sh,g' autoupdate.sh > autou
pdate.tmp && chmod +x autoupdate.tmp && mv autoupdate.tmp autoupdate
rm -f ifnames ifnames.tmp
sed -e 's,@''datadir''@,/usr/local/share/autoconf,g' -e 's,@''M4''@,/usr/bin/m4
,g' -e 's,@''AWK''@,gawk,g' -e 's,@''SHELL''@,/bin/sh,g' ifnames.sh > ifnames.
tmp && chmod +x ifnames.tmp && mv ifnames.tmp ifnames
*** Exit 1
Stop.
다음은 automake를 configure 할 때 보여지는 메시지 입니다..
****************************************
loading cache ./config.cache
checking for a BSD compatible install... ./install-sh -c
checking whether build environment is sane... yes
checking whether make sets ${MAKE}... (cached) yes
checking for working aclocal... found
checking for working autoconf... missing
checking for working automake... found
checking for working autoheader... missing
checking for working makeinfo... missing
checking for gnutar... (cached) tar
checking for perl... (cached) /usr/bin/perl
creating ./config.status
creating Makefile
creating automake
creating aclocal
creating m4/Makefile
creating tests/Makefile
이때 make를 하면 다음과 같습니다.. 물론 인스톨은 더욱이 안 되구요..
Making all in .
Making all in m4
No suffix list.
Making all in tests
No suffix list.
어떻게.. 해야.. 하나요...