Autopano-sift-C Compiling OSX

From PanoTools.org Wiki
Revision as of 17:54, 8 February 2008 by ArAgost (talk | contribs)
Jump to navigation Jump to search

Building environment

Important note: before you begin, a little note of warning. Be advised that even if the procedures described here are all (somehow) verified, nobody can assure you that everything will go fine, especially that the compiled software will behave perfectly, since it's an in-development version.

The very first thing you'll have to do is to set up the environment. Please follow the order in which items are presented:

  1. Download and install the XCode Tools version for the operating system on the machine that you will use for the building job. A free registration is required. Be warned that the download is huge (>1 GB)
  2. Download and install subversion (latest stable). This is only needed if you don't use Mac OS X 10.5 Leopard.
  3. Download and install MacPorts from the appropriate .dmg from those listed at the top.

Getting the dependencies

Open a terminal window (you can find terminal.app inside Applications/utilities)

  1. First we'll update the ports (you will be asked for your password)
sudo port -d sync
  1. Then we make macports fetch, compile and install all the necessary stuff for libpano/autopano.
sudo port install cmake libtool jpeg tiff libpng

This is gonna take a while, so grab a book and wait for macports to finish.

Building libpano

If you did everything right, the following should go smoothly:

cd /usr/
mkdir src
cd src
svn co https://panotools.svn.sourceforge.net/svnroot/panotools/trunk/libpano libpano13
cd libpano13
./bootstrap
./configure
make
sudo make install

Building autopano-sift-c

Now we can finally build autopano

cd /usr/src/
svn co https://hugin.svn.sourceforge.net/svnroot/hugin/autopano-sift-C/trunk/ autopano-sift-C
cd autopano-sift-C
cmake -DCMAKE_INSTALL_PREFIX=/usr/local
make
sudo make install