From 856b55d83ab0b5bd71f00161c9683d60e9f135e7 Mon Sep 17 00:00:00 2001 From: Daniel Kulp Date: Wed, 17 Jan 2024 11:12:20 -0500 Subject: [PATCH] Another attempt to update wxwidgets --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c035500..948e78a 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.01 https://github.com/xLightsSequencer/wxWidgets xlights_2024.01 && \ cd xlights_2024.01 && \ - ./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-gtktest --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 --disable-pcx --disable-iff --without-libtiff --prefix=/usr && \ make -j 4 && \ make install PREFIX=/usr && \ cd .. && \