summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-10-08 16:48:44 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-10-08 18:49:46 +0900
commit0f72e47ca15d69c8349d3457895b7dd8df6f218c (patch)
treee2d17725f0d9726d5b114bf682523af7673cfec8
parent30779eb2298baa55e413f938396d4a74db25a73d (diff)
downloadarts-0f72e47ca15d69c8349d3457895b7dd8df6f218c.tar.gz
arts-0f72e47ca15d69c8349d3457895b7dd8df6f218c.zip
Improve fatal error messagesr14.1.3
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 8de97496a707943dc39b4ca625e475746b776ba9)
-rw-r--r--flow/gsl/ConfigureChecks.cmake6
1 files changed, 3 insertions, 3 deletions
diff --git a/flow/gsl/ConfigureChecks.cmake b/flow/gsl/ConfigureChecks.cmake
index 5e2c623..1bffd67 100644
--- a/flow/gsl/ConfigureChecks.cmake
+++ b/flow/gsl/ConfigureChecks.cmake
@@ -42,13 +42,13 @@ if( WITH_VORBIS )
else( VORBISFILE_FOUND )
- tde_message_fatal( "Ogg/Vorbis support are requested, but `libvorbisfile` not found" )
+ tde_message_fatal( "Ogg/Vorbis was requested but `libvorbisfile` was not found on your system." )
endif( VORBISFILE_FOUND )
else( VORBIS_FOUND )
- tde_message_fatal( "Ogg/Vorbis support are requested, but `libvorbis` but found" )
+ tde_message_fatal( "Ogg/Vorbis was requested but `libvorbis` was not found on your system." )
endif( VORBIS_FOUND )
@@ -74,7 +74,7 @@ if( WITH_MAD )
find_library( MAD_LIBRARIES NAMES mad )
find_path( MAD_INCLUDE_DIRS mad.h )
if( NOT MAD_LIBRARIES )
- tde_message_fatal( "MAD support is requested, but `libmad` not found" )
+ tde_message_fatal( "MAD support was requested but `libmad` was not found on your system." )
endif( NOT MAD_LIBRARIES )
endif( MAD_FOUND )