comparison doc/index.html @ 772:22f329019c0f

improved installation instructions for Solaris
author Volker Grabsch <vog@notjusthosting.com>
date Sat, 20 Feb 2010 13:26:19 +0100
parents 0899a4e002d2
children 45e25b2bc393
comparison
equal deleted inserted replaced
771:0899a4e002d2 772:22f329019c0f
644 It should work if you 644 It should work if you
645 downgrade mingw-cross-env's Binutils to 2.19 by hand. 645 downgrade mingw-cross-env's Binutils to 2.19 by hand.
646 A good solution needs yet to be found. 646 A good solution needs yet to be found.
647 </p> 647 </p>
648 648
649 <h3>Solaris</h3>
650
651 <p> 649 <p>
652 First, install all requirements 650 First, install all requirements
653 that already ship with Solaris: 651 that already ship with Solaris:
654 </p> 652 </p>
655 <!-- http://pkg.opensolaris.org/release/en/search.shtml --> 653 <!-- http://pkg.opensolaris.org/release/en/search.shtml -->
656 <pre>pfexec pkg install SUNWaconf SUNWgnu-automake-110 \ 654 <pre>pfexec pkg install SUNWgnu-automake-110 SUNWbison \
657 SUNWbison SUNWcmake SUNWflexlex \ 655 SUNWcmake SUNWflexlex SUNWgcc \
658 SUNWgcc SUNWgmake SUNWgsed SUNWgzip \ 656 SUNWgmake SUNWgsed SUNWgzip \
659 SUNWlibtool SUNWlibm SUNWopenssl \ 657 SUNWlibtool SUNWlibm SUNWopenssl \
660 SUNWgpch SUNWgnome-common-devel \ 658 SUNWgpch SUNWgnome-common-devel \
661 SUNWunzip SUNWwget</pre> 659 SUNWunzip SUNWwget</pre>
662 660
663 <p> 661 <p>
664 Then make Automake available: 662 and make Automake available:
665 </p> 663 </p>
666 <pre>pfexec ln -s aclocal-1.10 /usr/bin/aclocal 664 <pre>pfexec ln -s aclocal-1.10 /usr/bin/aclocal
667 pfexec ln -s automake-1.10 /usr/bin/automake</pre> 665 pfexec ln -s automake-1.10 /usr/bin/automake</pre>
668 <p> 666
669 and download and install SCons by hand: 667 <p>
670 </p> 668 Then download and install M4, Autoconf and SCons by hand:
671 <pre>wget http://prdownloads.sourceforge.net/scons/scons-1.2.0.tar.gz 669 </p>
670 <pre>export PATH=/usr/local/bin:$PATH
671
672 wget http://ftp.gnu.org/gnu/m4/m4-1.4.5.tar.gz
673 tar -xzf m4-1.4.5.tar.gz
674 cd m4-1.4.5
675 ./configure
676 make
677 pfexec make install
678 cd ..
679
680 wget http://ftp.gnu.org/gnu/autoconf/autoconf-2.62.tar.gz
681 tar -xzf autoconf-2.62.tar.gz
682 cd autoconf-2.62
683 ./configure
684 make
685 pfexec make install
686 cd ..
687
688 wget http://downloads.sourceforge.net/project/scons/scons/1.2.0/scons-1.2.0.tar.gz
672 tar -xzf scons-1.2.0.tar.gz 689 tar -xzf scons-1.2.0.tar.gz
673 cd scons-1.2.0 690 cd scons-1.2.0
674 pfexec python setup.py install</pre> 691 python setup.py build
692 pfexec python setup.py install
693 cd ..</pre>
675 </div> 694 </div>
676 695
677 <div class="section"> 696 <div class="section">
678 <h2 id="usage">Usage</h2> 697 <h2 id="usage">Usage</h2>
679 698