diff --git a/src/import/Import.cpp b/src/import/Import.cpp index f7988e643..43eebb1a4 100644 --- a/src/import/Import.cpp +++ b/src/import/Import.cpp @@ -803,9 +803,11 @@ bool Importer::Import( AudacityProject &project, /* i18n-hint: %s will be the filename */ "Audacity did not recognize the type of the file '%s'.\n\n%sFor uncompressed files, also try File > Import > Raw Data.") .Format( fName, +#if defined(USE_FFMPEG) !FFmpegLibsInst() - ? XO("Try installing FFmpeg.\n\n") - : Verbatim("") ); + ? XO("Try installing FFmpeg.\n\n") : +#endif + Verbatim("") ); } else { diff --git a/src/widgets/FileConfig.cpp b/src/widgets/FileConfig.cpp index 2848d6c62..51e383bd6 100644 --- a/src/widgets/FileConfig.cpp +++ b/src/widgets/FileConfig.cpp @@ -10,6 +10,8 @@ #include "../Audacity.h" +#include + #include #include #include