Am Montag, 25. April 2016 17:44:32 UTC+2 schrieb Niklas Mischkulnig:
>
> Compiling works(see attached errors and patch) 
>
Thanks, applied the patch (but the patch was backwards)

But the problems in PTBatcherGUI remain, although enblend and ExifTool are 
> bundled inside the .app (see screenshots)
>
> Blender: Unknown blender (enblend —version failed)
>
> ExifTool: FAILED
>

Could you apply the attached patch and try again? It will print the used 
path additionally, so maybe this helps us a bit further.

Thomas

-- 
A list of frequently asked questions is available at: 
http://wiki.panotools.org/Hugin_FAQ
--- 
You received this message because you are subscribed to the Google Groups 
"hugin and other free panoramic software" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/hugin-ptx/431bde46-63c8-46c2-9194-85c79fed9e34%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
diff --git a/src/hugin1/base_wx/StitchingExecutor.cpp b/src/hugin1/base_wx/StitchingExecutor.cpp
--- a/src/hugin1/base_wx/StitchingExecutor.cpp
+++ b/src/hugin1/base_wx/StitchingExecutor.cpp
@@ -227,6 +227,7 @@
                     case HuginBase::PanoramaOptions::ENBLEND_BLEND:
                         {
                             wxArrayString version;
+                            output << wxT("enblend: ") << GetExternalProgram(config, bindir, wxT("enblend")) << wxEndl;
                             if (wxExecute(wxEscapeFilename(GetExternalProgram(config, bindir, wxT("enblend"))) + wxT(" --version"), version, wxEXEC_SYNC) == 0l)
                             {
                                 output << _("Blender:") << wxT(" ") << version[0] << wxEndl;
@@ -246,6 +247,7 @@
             if (opts.outputLDRExposureBlended || opts.outputLDRExposureLayersFused || opts.outputLDRStacks )
             {
                 wxArrayString version;
+                output << wxT("enfuse: ") << GetExternalProgram(config, bindir, wxT("enfuse")) << wxEndl;
                 if (wxExecute(wxEscapeFilename(GetExternalProgram(config, bindir, wxT("enfuse"))) + wxT(" --version"), version, wxEXEC_SYNC) == 0l)
                 {
                     output << _("Exposure fusion:") << wxT(" ") << version[0] << wxEndl;
@@ -258,6 +260,7 @@
             if (config->Read(wxT("/output/useExiftool"), HUGIN_USE_EXIFTOOL) == 1l)
             {
                 wxArrayString version;
+                output << wxT("exiftool: ") << GetExternalProgram(config, bindir, wxT("exiftool")) << wxEndl;
                 if (wxExecute(wxEscapeFilename(GetExternalProgram(config, bindir, wxT("exiftool"))) + wxT(" -ver"), version, wxEXEC_SYNC) == 0l)
                 {
                     output << _("ExifTool version:") << wxT(" ") << version[0] << wxEndl;

Reply via email to