Hi!

src/hugin1/hugin/config_defaults.h contains the following code:
  #endif

  #elif defined unix

  #define HUGIN_PT_SCRIPTFILE                   "PT_script.txt"

On NetBSD, we want to fall into this case "#elif defined unix" case,
otherwise the build fails with undefined symbols, but the system
compiler (gcc 4.1.3 20080704 prerelease) doesn't define "unix".

Please change it to
#elif defined(unix) || defined(__NetBSD__)
or just
#else
(what operating systems do you want to keep out here?)


Fixed in repository.

Thomas

--
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

Reply via email to