slackbuilds_ponce/multimedia/bombono-dvd/patches/bombono-dvd-1.2.0-cdrtools.patch

22 lines
864 B
Diff
Raw Normal View History

diff --git a/src/mgui/author/script.h b/src/mgui/author/script.h
index fe80307..a96fb54 100644
--- a/src/mgui/author/script.h
+++ b/src/mgui/author/script.h
@@ -115,9 +115,14 @@ ExitData AsyncOFCall(const std::string& cmd, const std::string& out_dir, OutputF
// POSIX-народ бесповоротно ушел на cdrkit (genisoimage), но с Win32
// у cdrkit хреново (только cygwin, нет собранного с growisofs с cdrkit под Win32) => потому - "вилка"
#ifdef _WIN32
-#define MK_ISO_CMD "mkisofs"
+ #define MK_ISO_CMD "mkisofs"
#else
-#define MK_ISO_CMD "genisoimage"
+ #define USE_CDRTOOLS
+ #ifdef USE_CDRTOOLS
+ #define MK_ISO_CMD "mkisofs"
+ #else // !USE_CDRTOOLS
+ #define MK_ISO_CMD "genisoimage"
+ #endif // !USE_CDRTOOLS
#endif
#endif // #ifndef __MGUI_AUTHOR_SCRIPT_H__