1
0
Fork 0

Adding upstream version 1.34.4.

Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
Daniel Baumann 2025-05-24 07:26:29 +02:00
parent e393c3af3f
commit 4978089aab
Signed by: daniel
GPG key ID: FBB4F0E80A80222F
4963 changed files with 677545 additions and 0 deletions

19
scripts/windows-gen-syso.sh Executable file
View file

@ -0,0 +1,19 @@
#!/bin/bash
# Run goversioninfo to generate the resource.syso to embed version info.
set -eux
NAME="Telegraf"
VERSION=$(cd ../../ && make version)
FLAGS=()
# If building for arm64, then include the extra flags required.
if [ -n "${1+x}" ] && [ "$1" = "arm64" ]; then
FLAGS=(-arm -64)
fi
goversioninfo "${FLAGS[@]}" \
-product-name "$NAME" \
-product-version "$VERSION" \
-skip-versioninfo \
-icon=../../assets/windows/tiger.ico \
-o resource.syso