Skip to content

Commit e254a14

Browse files
committed
Comment out downloading of wxWidgets source on MacOS and use local libraries only
1 parent 9334917 commit e254a14

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

.github/scripts/build-macos-wxwidgets.sh

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -24,21 +24,22 @@ set -e
2424

2525
export MAKEFLAGS=-j$(getconf _NPROCESSORS_ONLN)
2626

27-
if [ -z "$WXWIDGETS_VERSION" ]; then
28-
WXWIDGETS_VERSION=3.1.5
29-
fi
27+
# if [ -z "$WXWIDGETS_VERSION" ]; then
28+
# WXWIDGETS_VERSION=3.1.5
29+
# fi
3030

31-
vsn=$WXWIDGETS_VERSION
32-
curl --fail -LO https://github.com/wxWidgets/wxWidgets/releases/download/v$vsn/wxWidgets-$vsn.tar.bz2
33-
tar -xf wxWidgets-$vsn.tar.bz2
34-
mv wxWidgets-$vsn/ wxWidgets
31+
# vsn=$WXWIDGETS_VERSION
32+
# curl --fail -LO https://github.com/wxWidgets/wxWidgets/releases/download/v$vsn/wxWidgets-$vsn.tar.bz2
33+
# tar -xf wxWidgets-$vsn.tar.bz2
34+
# mv wxWidgets-$vsn/ wxWidgets
3535

3636
cd wxWidgets
3737
./configure \
3838
--disable-shared \
3939
--prefix=$PWD/release \
4040
--with-cocoa \
41-
--with-macosx-version-min=10.15 \
42-
--disable-sys-libs
41+
--with-macosx-version-min=10.15
42+
# --disable-sys-libs
43+
4344
make
4445
make install

0 commit comments

Comments
 (0)