From 14a6e82cc82e8c1802c0d468c6b32553d56099a6 Mon Sep 17 00:00:00 2001 From: Louie S Date: Tue, 9 May 2023 17:20:31 -0700 Subject: Don't check for windres on unix builds --- configure.ac | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 78ee96c..bb8e8e8 100644 --- a/configure.ac +++ b/configure.ac @@ -59,10 +59,14 @@ AC_ARG_ENABLE([embed_icon], [embed icon in windows executable (default is yes)])], [embed_icon=no]) if test "x$embed_icon" = "xyes"; then - AC_CHECK_TOOL([WINDRES], [windres]) - AS_VAR_IF([WINDRES], [], - [AC_MSG_WARN([Cannot embed icon]) - embed_icon=no]) + if test "x$build_windows" = "xyes"; then + AC_CHECK_TOOL([WINDRES], [windres]) + AS_VAR_IF([WINDRES], [], + [AC_MSG_WARN([Cannot embed icon]) + embed_icon=no]) + else + embed_icon=no + fi fi AM_CONDITIONAL([EMBED_ICON], [test "$embed_icon" = "yes"]) -- cgit