Difference between revisions of "Development:Building:Building Dependencies from Source"
(→<code>autoconf-2.1.3</code>: i need to check that) |
(→<code>autoconf-2.1.3</code>: fix typo, and switch to --program suffix) |
||
Line 19: | Line 19: | ||
# Download the <code>[ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.13.tar.gz autoconf-2.13]</code> tarball and unpack. | # Download the <code>[ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.13.tar.gz autoconf-2.13]</code> tarball and unpack. | ||
# <code>cd</code> to the unpacked directory. | # <code>cd</code> to the unpacked directory. | ||
− | # <code>./configure -- | + | # <code>./configure --program-suffix=213<!-- --prefix=/opt/autoconf213--></code> |
# <code>make clean all; sudo make install</code> | # <code>make clean all; sudo make install</code> | ||
Revision as of 21:43, 18 May 2009
Some people prefer to build their dependencies (glib2
, libIDL-0.8
, autoconf-2.1.3
) from source instead of using Fink or MacPorts and the megabytes of extra software those port systems install by default. Fortunately, it is rather trivial to build the required dependencies from source.
Contents
Dependency Tree
Building the Packages
You can install all these packages except autoconf-2.1.3
in /usr/local
(where they should be picked up by your $PATH
automatically). You should probably install autoconf-2.1.3
in a location outside your path to prevent accidental usage when scripts want the version of autoconf
installed with Xcode.
autoconf-2.1.3
autoconf-2.1.3
has no dependencies aside from software installed with Xcode.
- Download the
autoconf-2.13
tarball and unpack. cd
to the unpacked directory../configure --program-suffix=213
make clean all; sudo make install
libIDL-0.8
libIDL-0.8
ends up having three dependencies beyond software installed by Xcode, so we will build and install from the dependencies upward.
pkg-config
pkg-config
has no external dependencies.
- Download the latest... and unpack.