bombono-dvd-1.2.0-cdrtools.patch 864 B

12345678910111213141516171819202122
  1. diff --git a/src/mgui/author/script.h b/src/mgui/author/script.h
  2. index fe80307..a96fb54 100644
  3. --- a/src/mgui/author/script.h
  4. +++ b/src/mgui/author/script.h
  5. @@ -115,9 +115,14 @@ ExitData AsyncOFCall(const std::string& cmd, const std::string& out_dir, OutputF
  6. // POSIX-народ бесповоротно ушел на cdrkit (genisoimage), но с Win32
  7. // у cdrkit хреново (только cygwin, нет собранного с growisofs с cdrkit под Win32) => потому - "вилка"
  8. #ifdef _WIN32
  9. -#define MK_ISO_CMD "mkisofs"
  10. + #define MK_ISO_CMD "mkisofs"
  11. #else
  12. -#define MK_ISO_CMD "genisoimage"
  13. + #define USE_CDRTOOLS
  14. + #ifdef USE_CDRTOOLS
  15. + #define MK_ISO_CMD "mkisofs"
  16. + #else // !USE_CDRTOOLS
  17. + #define MK_ISO_CMD "genisoimage"
  18. + #endif // !USE_CDRTOOLS
  19. #endif
  20. #endif // #ifndef __MGUI_AUTHOR_SCRIPT_H__