Skip to content
This repository was archived by the owner on Aug 30, 2025. It is now read-only.

Commit d43e8b9

Browse files
That last one was more like version 6.6.6. Try again.
1 parent aa56275 commit d43e8b9

File tree

4 files changed

+9
-2
lines changed

4 files changed

+9
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@
99
- `naev-steamruntime` (Used for linux steam builds in the steamruntime (soldier) environment)
1010
- `naev-windows` (Used to cross compile for Windows.)
1111

12+
### v1.6.7
13+
That last one was more like version 6.6.6. Try again.
14+
1215
### v1.6.6
1316
Clean up macOS Meson tweaks; fill gaps in enet packages. Give up on naev-macos unless macports gets v1.3.x.
1417

naev-linux-lts/Dockerfile.amd64

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ includedir=/usr/include
4848
Name: libenet
4949
Description: Low-latency UDP networking library supporting optional reliability
5050
Version: 1.3.11
51-
Cflags: -I${includedir}
52-
Libs: -L${libdir} -lenet
51+
Cflags: -I\${includedir}
52+
Libs: -L\${libdir} -lenet
5353
EOF
5454

5555
# Force appimages to run in extract mode since FUSE is not available

naev-macos/Dockerfile.aarch64

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,8 @@ ENV APPIMAGE_EXTRACT_AND_RUN 1
8585
# Install build tools.
8686
RUN microdnf --nodocs --setopt=install_weak_deps=0 -y install clang cmake gettext genisoimage git llvm meson ninja-build python3-pip python3-pyyaml unzip tar texinfo xz zlib zip && \
8787
microdnf clean all && \
88+
# Need Meson >=0.63.1 to avoid passing linker args which don't work.
89+
python3 -m pip install meson --upgrade && \
8890
# Verify tool version.
8991
echo "Verifying meson install" && \
9092
command -v meson && \

naev-macos/Dockerfile.amd64

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,8 @@ ENV APPIMAGE_EXTRACT_AND_RUN 1
8484
# Install build tools.
8585
RUN microdnf --nodocs --setopt=install_weak_deps=0 -y install clang cmake gettext genisoimage git llvm meson ninja-build python3-pip python3-pyyaml unzip tar texinfo xz zlib zip && \
8686
microdnf clean all && \
87+
# Need Meson >=0.63.1 to avoid passing linker args which don't work.
88+
python3 -m pip install meson --upgrade && \
8789
# Verify tool version.
8890
echo "Verifying meson install" && \
8991
command -v meson && \

0 commit comments

Comments
 (0)