Following http://wiki.panotools.org/Hugin_Compiling_OSX I managed to
get a hugin.app inside "/Users/habi/Dev/hugin_build/src/hugin1/
hugin" (and also inside "/usr/localApplication"), and when I start
this bundle, I'm greeted with a splash-screen mentioning version
0000.00.0.4062. The GUI works fine, fast preview and optimizer do what
I'd expect them to do.
But when I want to stitch a project I'm instantly getting the Error
that nona cannot be found:
---
Checking nona...Checking enblend...Checking enfuse...Checking
hugin_hdrmerge...Checking exiftool...[FAIL]
nona -r ldr -m TIFF_m -o DSC_2740-DSC_2748-planet -i 0 /var/folders/
Vs/Vsei-0ttElKNQ2xgoCYYfU+++TI/-Tmp-/huginpto_BNw6rh
make: [test] Error 127 (ignored)
make: [test] Error 127 (ignored)
make: [test] Error 127 (ignored)
make: [test] Error 127 (ignored)
make: nona: Command not found
make: *** [DSC_2740-DSC_2748-planet0000.tif] Error 127
---
In my "/usr/local/bin" I've got a nona executable which was created on
the correct date. I'm a bit at loss what might cause that problem.
The only problem that I've had while compiling was that I wasn't able
to build libpano13 as described in http://wiki.panotools.org/Hugin_Compiling_OSX#Install_necessary_libraries
I wasn't able to build libpano from SVN, since I couldn't execute the
necessary commands as stated below:
---
$ ./bootstrap --with-jpeg=/opt/local/ --with-tiff=/opt/local/ --with-
png=/opt/local/
$ export CFLAGS="-I/opt/local/include -L/opt/local/lib"
$ ./configure
$ make
$ sudo make install
---
My Terminal was complaining that It couldn't do any bootstrapping. I
thus - as a desperate measure - tried to install libpano13 using
macports ("sudo port install libpano13"), which seemed to work
flawlessly.
I suppose these errors/problems are the cause that my built hugin
cannot find nona. Is somebody out there that could help me getting a
self-buildt working copy of hugin?
Cheers
Habi
PS: While working on the compilation I did some minor tweaks to the
wiki-page (http://wiki.panotools.org/wiki/index.php?title=Hugin_Compiling_OSX&diff=11639&oldid=11485
), so it might be a non-functional description at the moment!!!
On Thu, Jul 23, 2009 at 7:54 AM, David
Haberthür<david.ha...@gmail.com> wrote:
...
Doh. I mailed too soon. There are two problems but only one is noted
in the wiki. You need to change the libtoolize to glibtoolize (as
noted) and you have to change the version check on glibtoolize to
allow for the version that comes with macports (2.2.6). So in
bootstrap near the libtoolize version check, change this:
case $libtool_version in
1.4*|1.5*)
have_libtool=true
;;
to this:
case $libtool_version in
1.4*|1.5*|2.*)
have_libtool=true
;;
My Terminal was complaining that It couldn't do any bootstrapping. Ithus - as a desperate measure - tried to install libpano13 usingmacports ("sudo port install libpano13"), which seemed to workflawlessly.
Doh. I mailed too soon. There are two problems but only one is noted
in the wiki. You need to change the libtoolize to glibtoolize (as
noted) and you have to change the version check on glibtoolize to
allow for the version that comes with macports (2.2.6). So in
bootstrap near the libtoolize version check, change this:
case $libtool_version in
1.4*|1.5*)
have_libtool=true
;;
to this:
case $libtool_version in
1.4*|1.5*|2.*)
have_libtool=true
;;
Glad to hear they fixed the bootstrap script. It was one of the many
problems I encountered while trying to build a mac version. The
problem you are seeing is probably do to the libboost problem, as
documented in the wiki. I wish I could help more but it has been quite
a while since I tried this build.