From 79038b12f8228cd2034d86055c09ca36585a2e91 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Wed, 29 Jan 2020 19:27:20 +0100 Subject: [PATCH] in configure.ac, used deflate instead of deflateInit (since deflateInit is a macro) --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 4c8e8b56..09f97a16 100644 --- a/configure.ac +++ b/configure.ac @@ -30,7 +30,7 @@ AC_SEARCH_LIBS([aacircleColor], [SDL_gfx], [], AC_MSG_RESULT([SDL_gfx library wa AC_SEARCH_LIBS([Mix_LoadMUS], [SDL_mixer], [], AC_MSG_ERROR([SDL_mixer library was not found])) AC_SEARCH_LIBS([TTF_OpenFont], [SDL_ttf], [], AC_MSG_RESULT([SDL_ttf library was not found])) AC_SEARCH_LIBS(pthread_create, [pthread], ,AC_MSG_ERROR([pthread library was not found])) -AC_SEARCH_LIBS(deflateInit, [z], ,AC_MSG_ERROR([zlib was not found])) +AC_SEARCH_LIBS(deflate, [z], ,AC_MSG_ERROR([zlib was not found])) AC_CONFIG_FILES([Makefile]) AC_OUTPUT