Yeah, that makes sense. Thanks.
It looks like the following line doesn't do anything, and it's causing compilation to fail (Line 237 on src/hugin1/ptbatcher/ChangeUserDefinedDialog.cpp). m_utilsBinDir = exePath.GetPath(wxPATH_GET_VOLUME | wxPATH_GET_SEPARATOR); I think it's best to just delete the line or else adding const wxString before the m_utilsBinDir like so: const wxString m_utilsBinDir = exePath.GetPath(wxPATH_GET_VOLUME | wxPATH_GET_SEPARATOR);
Unix compilation fix
Fix Unix compilation