Hey Charlie
>> 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.
>
> 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
> ;;
On further inspection I found the bootstrap-file, which I've missed on
my prior attempts. The file has been edited according to the wiki, and
didnt' need to be changed for the version-check, it's already
---
case $libtool_version in
1.4*|1.5*|2.0*|2.2*)
have_libtool=true
---
in a fresh checkout of panotools.
Now I'm able to build libpano (bootstrap, export, ./configure, make,
sudo make install).
I proceeded from there (including a fresh SVN-checkout of
hugin.svn4092, deleting hugin_build and re-cmaking it), but now the
resulting hugin.app (in /usr/local/Application) refuses to start. The
crash report is:
---
Process: Hugin [32344]
Path: /usr/local/Application/Hugin.app/Contents/MacOS/Hugin
Identifier: net.sourceforge.hugin
Version: ??? (???)
Code Type: X86 (Native)
Parent Process: launchd [197]
Interval Since Last Report: 975134 sec
Crashes Since Last Report: 95
Per-App Interval Since Last Report: 0 sec
Per-App Crashes Since Last Report: 5
Date/Time: 2009-07-23 19:35:10.475 +0200
OS Version: Mac OS X 10.5.7 (9J61)
Report Version: 6
Anonymous UUID: C6D2AC3B-0E87-4B9B-85CF-21A69B272281
Exception Type: EXC_BREAKPOINT (SIGTRAP)
Exception Codes: 0x0000000000000002, 0x0000000000000000
Crashed Thread: 0
Dyld Error Message:
Symbol not found: __ZTIN5boost6detail16thread_data_baseE
Referenced from: /Users/habi/Dev/hugin_build/src/hugin_base/
libhuginbase.0.0.dylib
Expected in: flat namespace
---
Any pointers?
Might this be related to the problems installing boost on Leopard
mentioned in the wiki?
Habi
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"hugin and other free panoramic software" group.
A list of frequently asked questions is available at:
http://wiki.panotools.org/Hugin_FAQ
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at http://groups.google.com/group/hugin-ptx
-~----------~----~----~----~------~----~------~--~---