git: 8f48e9979da4 - main - net/gamenetworkingsockets: fix build on riscv64
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 04 Jan 2022 18:17:58 UTC
The branch main has been updated by pkubaj: URL: https://cgit.FreeBSD.org/ports/commit/?id=8f48e9979da4e1ec9e5840d835722241a9b722a7 commit 8f48e9979da4e1ec9e5840d835722241a9b722a7 Author: Piotr Kubaj <pkubaj@FreeBSD.org> AuthorDate: 2022-01-04 18:11:46 +0000 Commit: Piotr Kubaj <pkubaj@FreeBSD.org> CommitDate: 2022-01-04 18:11:46 +0000 net/gamenetworkingsockets: fix build on riscv64 Add riscv64 to the list of 64-bit architectures. --- net/gamenetworkingsockets/files/patch-include_steam_steamtypes.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/gamenetworkingsockets/files/patch-include_steam_steamtypes.h b/net/gamenetworkingsockets/files/patch-include_steam_steamtypes.h index db458a4b5c99..7c9276676d4b 100644 --- a/net/gamenetworkingsockets/files/patch-include_steam_steamtypes.h +++ b/net/gamenetworkingsockets/files/patch-include_steam_steamtypes.h @@ -5,7 +5,7 @@ #endif -#if defined(__x86_64__) || defined(_WIN64) || defined(__aarch64__) || defined(__s390x__) -+#if defined(__x86_64__) || defined(_WIN64) || defined(__aarch64__) || defined(__s390x__) || defined(__powerpc64__) ++#if defined(__x86_64__) || defined(_WIN64) || defined(__aarch64__) || defined(__s390x__) || defined(__powerpc64__) || defined(__riscv) #define X64BITS #endif