From 709bf94d82ea183a44508d0bc12ba91876fd7e36 Mon Sep 17 00:00:00 2001 From: Daniel Kulp Date: Thu, 23 Jan 2025 08:37:25 -0500 Subject: [PATCH] Make sure egl is used --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 19c208f..0fd1a4f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,7 @@ RUN DEBIAN_FRONTEND=noninteractive TZ=Etc/UTC apt-get clean RUN cd / && \ git clone --depth=1 --shallow-submodules --recurse-submodules -b xlights_2024.20 https://github.com/xLightsSequencer/wxWidgets xlights_2024.20 && \ cd xlights_2024.20 && \ - ./configure --with-cxx=17 --enable-std_containers --enable-std_string_conv_in_wxstring --enable-backtrace --enable-exceptions --enable-mediactrl --enable-graphics_ctx --enable-shared --disable-sdltest --with-gtk=3 --disable-pcx --disable-iff --without-libtiff --prefix=/usr && \ + ./configure --with-cxx=17 --enable-std_containers --enable-std_string_conv_in_wxstring --enable-backtrace --enable-exceptions --enable-mediactrl --enable-graphics_ctx --enable-shared --disable-sdltest --with-gtk=3 --enable-glcanvasegl --disable-pcx --disable-iff --without-libtiff --prefix=/usr && \ make -j 4 && \ make install PREFIX=/usr && \ cd .. && \