Skip to content

Instantly share code, notes, and snippets.

@xk
Created April 20, 2011 17:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xk/931981 to your computer and use it in GitHub Desktop.
Save xk/931981 to your computer and use it in GitHub Desktop.
installing v8monkey
curl -O http://ftp.gnu.org/gnu/autoconf/autoconf-2.13.tar.gz
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 433k 100 433k 0 0 91366 0 0:00:04 0:00:04 --:--:-- 101k
MacBookUniBody:JAVASCRIPT jorge$ tar xzf autoconf-2.13.tar.gz
MacBookUniBody:JAVASCRIPT jorge$ cd autoconf-2.13
MacBookUniBody:autoconf-2.13 jorge$ ./configure --prefix=/usr/local --program-suffix=213
creating cache ./config.cache
checking for gm4... /usr/bin/gm4
checking for mawk... no
checking for gawk... no
checking for nawk... no
checking for awk... awk
checking for perl... /usr/bin/perl
checking for a BSD compatible install... /usr/bin/install -c
updating cache ./config.cache
creating ./config.status
creating Makefile
creating testsuite/Makefile
MacBookUniBody:autoconf-2.13 jorge$ make
rm -f autoconf autoconf.tmp
sed -e 's,@''datadir''@,/usr/local/share/autoconf,g' -e 's,@''M4''@,/usr/bin/gm4,g' -e 's,@''AWK''@,awk,g' -e 's,@''SHELL''@,/bin/sh,g' autoconf.sh > autoconf.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/gm4,g' -e 's,@''AWK''@,awk,g' -e 's,@''SHELL''@,/bin/sh,g' autoheader.sh > autoheader.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/gm4,g' -e 's,@''AWK''@,awk,g' -e 's,@''SHELL''@,/bin/sh,g' autoreconf.sh > autoreconf.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/gm4,g' -e 's,@''AWK''@,awk,g' -e 's,@''SHELL''@,/bin/sh,g' autoupdate.sh > autoupdate.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/gm4,g' -e 's,@''AWK''@,awk,g' -e 's,@''SHELL''@,/bin/sh,g' ifnames.sh > ifnames.tmp && chmod +x ifnames.tmp && mv ifnames.tmp ifnames
rm -f autoscan autoscan.tmp
sed -e 's,@''datadir''@,/usr/local/share/autoconf,g' -e 's,@''PERL''@,/usr/bin/perl,g' autoscan.pl > autoscan.tmp && chmod +x autoscan.tmp && mv autoscan.tmp autoscan
freezing autoconf.m4
freezing autoheader.m4
MacBookUniBody:autoconf-2.13 jorge$ sudo make install
Password:
/bin/sh ./mkinstalldirs /usr/local/bin /usr/local/info /usr/local/share/autoconf
mkdir /usr/local/info
mkdir /usr/local/share/autoconf
if test -f autoconf.info; then \
for i in *.info*; do \
/usr/bin/install -c -m 644 $i /usr/local/info/$i; \
done; \
else \
for i in ./*.info*; do \
/usr/bin/install -c -m 644 $i /usr/local/info/`echo $i | sed 's|^./||'`; \
done; \
fi
for p in autoconf autoheader autoreconf autoupdate ifnames ; do \
/usr/bin/install -c $p /usr/local/bin/`echo $p|sed 's,$,213,; '`; \
done
for i in autoconf.m4f autoheader.m4f; do \
/usr/bin/install -c -m 644 $i /usr/local/share/autoconf/$i; \
done
for i in autoconf.m4 acgeneral.m4 acoldnames.m4 acspecific.m4 autoheader.m4 acconfig.h; do \
/usr/bin/install -c -m 644 ./$i /usr/local/share/autoconf/$i; \
done
if test -f autoscan; then \
/usr/bin/install -c autoscan /usr/local/bin/`echo autoscan|sed 's,$,213,; '`; \
for i in acfunctions acheaders acidentifiers acprograms \
acmakevars; do \
/usr/bin/install -c -m 644 ./$i /usr/local/share/autoconf/$i; \
done; \
else :; fi
MacBookUniBody:autoconf-2.13 jorge$ cd ..
MacBookUniBody:JAVASCRIPT jorge$ cd v8monkey/js/src/
MacBookUniBody:src jorge$ autoconf-2.13
-bash: autoconf-2.13: command not found
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment