From ab48cbc37a2828c6bbdef4a2dde7fdb4d50718e8 Mon Sep 17 00:00:00 2001 From: Daniel Kulp Date: Wed, 6 Mar 2024 11:13:17 -0500 Subject: [PATCH] Update version of wxwidgets --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 948e78a..8c5451d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,13 +7,13 @@ RUN DEBIAN_FRONTEND=noninteractive TZ=Etc/UTC apt-get clean # Build wxwidgets RUN cd / && \ - git clone --depth=1 --shallow-submodules --recurse-submodules -b xlights_2024.01 https://github.com/xLightsSequencer/wxWidgets xlights_2024.01 && \ - cd xlights_2024.01 && \ + git clone --depth=1 --shallow-submodules --recurse-submodules -b xlights_2024.05 https://github.com/xLightsSequencer/wxWidgets xlights_2024.05 && \ + cd xlights_2024.05 && \ ./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 && \ make -j 4 && \ make install PREFIX=/usr && \ cd .. && \ - rm -rf xlights_2024.01 + rm -rf xlights_2024.05 # Build log4cpp RUN cd / && \