games-puzzle/xtris: [QA] fix tc-get* quoting

This can cause build problems for e.g. 32-bit (gcc -m32 ...)

Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Sam James
2022-03-19 23:01:21 +00:00
parent 493d545eb7
commit 3f82cc0ac9
2 changed files with 30 additions and 3 deletions

View File

@@ -0,0 +1,23 @@
Fixes:
xtbot.c:211:23: warning: implicit declaration of function ‘time’; did you mean ‘utimes’? [-Wimplicit-function-declaration]
xtserv.c:386:23: warning: implicit declaration of function ‘time’; did you mean ‘utimes’? [-Wimplicit-function-declaration]
--- a/xtbot.c
+++ b/xtbot.c
@@ -23,6 +23,7 @@
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
+#include <time.h>
#include <sys/types.h>
#include <sys/time.h>
#include <sys/socket.h>
--- a/xtserv.c
+++ b/xtserv.c
@@ -15,6 +15,7 @@
#include <stdlib.h>
#include <unistd.h>
#include <fcntl.h>
+#include <time.h>
#include <sys/types.h>
#include <sys/time.h>
#include <signal.h>

View File

@@ -1,7 +1,7 @@
# Copyright 1999-2021 Gentoo Authors
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
EAPI=8
inherit desktop toolchain-funcs
@@ -17,9 +17,13 @@ KEYWORDS="~amd64 ~x86"
DEPEND="x11-libs/libX11"
RDEPEND="${DEPEND}"
PATCHES=(
"${FILESDIR}"/${PN}-1.15-implicit-function-decl-time.patch
)
src_compile() {
emake \
CC=$(tc-getCC) \
CC="$(tc-getCC)" \
BINDIR=/usr/bin \
MANDIR=/usr/share/man \
CFLAGS="${CFLAGS}" \