From e17445523e254fd47578a86bd207947243d90f46 Mon Sep 17 00:00:00 2001 From: Nikita Ermakov Date: Sun, 28 Aug 2022 19:31:17 +0300 Subject: [PATCH] Add libgif-dev to Dockerfile and check for gif_lib.h in configure --- configure.ac | 2 +- travis/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 986c45e8..e51e87c1 100644 --- a/configure.ac +++ b/configure.ac @@ -129,7 +129,7 @@ AX_CHECK_BASH_COMPLETION AX_CHECK_ZSH_COMPLETION # Checks for header files. -AC_CHECK_HEADERS([fcntl.h float.h inttypes.h limits.h locale.h netinet/in.h paths.h stddef.h stdint.h stdlib.h string.h sys/param.h sys/socket.h sys/time.h unistd.h], , [AC_MSG_FAILURE([cannot find the $ac_header header, which i3lock requires])]) +AC_CHECK_HEADERS([fcntl.h float.h inttypes.h limits.h locale.h netinet/in.h paths.h stddef.h stdint.h stdlib.h string.h sys/param.h sys/socket.h sys/time.h unistd.h gif_lib.h], , [AC_MSG_FAILURE([cannot find the $ac_header header, which i3lock requires])]) AC_CONFIG_FILES([Makefile]) diff --git a/travis/Dockerfile b/travis/Dockerfile index cc2dd7d9..144aac8c 100644 --- a/travis/Dockerfile +++ b/travis/Dockerfile @@ -19,7 +19,7 @@ RUN apt-get update && \ build-essential clang git autoconf automake libxcb-randr0-dev pkg-config libpam0g-dev \ libcairo2-dev libxcb1-dev libxcb-dpms0-dev libxcb-image0-dev libxcb-util0-dev \ libxcb-xrm-dev libev-dev libxcb-xinerama0-dev libxcb-xkb-dev libxkbcommon-dev \ - libxkbcommon-x11-dev clang-format-9 && \ + libxkbcommon-x11-dev clang-format-9 libgif-dev && \ rm -rf /var/lib/apt/lists/* WORKDIR /usr/src