You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/media-video/bombono-dvd/files/bombono-dvd-1.2.0-cdrtools....

22 lines
864 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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__