From nobody Wed Nov 10 10:58:41 2021 X-Original-To: dev-commits-ports-main@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 036CC1844B09; Wed, 10 Nov 2021 10:58:42 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Hq2016ZG8z3h3y; Wed, 10 Nov 2021 10:58:41 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C30B7178A8; Wed, 10 Nov 2021 10:58:41 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 1AAAwfOp046498; Wed, 10 Nov 2021 10:58:41 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 1AAAwfbg046497; Wed, 10 Nov 2021 10:58:41 GMT (envelope-from git) Date: Wed, 10 Nov 2021 10:58:41 GMT Message-Id: <202111101058.1AAAwfbg046497@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: Jan Beich Subject: git: 5bd415e39c2c - main - sysutils/g15daemon: unbreak build after 5d998836b36f List-Id: Commits to the main branch of the FreeBSD ports repository List-Archive: https://lists.freebsd.org/archives/dev-commits-ports-main List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-dev-commits-ports-main@freebsd.org X-BeenThere: dev-commits-ports-main@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: jbeich X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: 5bd415e39c2c1548c40f0357d4ba5e9446f3276e Auto-Submitted: auto-generated X-ThisMailContainsUnwantedMimeParts: N The branch main has been updated by jbeich: URL: https://cgit.FreeBSD.org/ports/commit/?id=5bd415e39c2c1548c40f0357d4ba5e9446f3276e commit 5bd415e39c2c1548c40f0357d4ba5e9446f3276e Author: Jan Beich AuthorDate: 2021-11-10 09:24:08 +0000 Commit: Jan Beich CommitDate: 2021-11-10 10:58:09 +0000 sysutils/g15daemon: unbreak build after 5d998836b36f checking for linux/input.h... no checking for linux/uinput.h... no [...] g15_plugin_uinput.c:157:20: error: use of undeclared identifier 'G15_KEY_G1' if((currentkeys & G15_KEY_G1) && !(lastkeys & G15_KEY_G1)) ^ g15_plugin_uinput.c:157:48: error: use of undeclared identifier 'G15_KEY_G1' if((currentkeys & G15_KEY_G1) && !(lastkeys & G15_KEY_G1)) ^ g15_plugin_uinput.c:158:11: error: use of undeclared identifier 'GKEY_OFFSET' keydown(GKEY_OFFSET); ^ g15_plugin_uinput.c:159:26: error: use of undeclared identifier 'G15_KEY_G1' else if(!(currentkeys & G15_KEY_G1) && (lastkeys & G15_KEY_G1)) ^ g15_plugin_uinput.c:159:53: error: use of undeclared identifier 'G15_KEY_G1' else if(!(currentkeys & G15_KEY_G1) && (lastkeys & G15_KEY_G1)) ^ g15_plugin_uinput.c:160:9: error: use of undeclared identifier 'GKEY_OFFSET' keyup(GKEY_OFFSET); ^ g15_plugin_uinput.c:161:20: error: use of undeclared identifier 'G15_KEY_G2' if((currentkeys & G15_KEY_G2) && !(lastkeys & G15_KEY_G2)) ^ g15_plugin_uinput.c:161:48: error: use of undeclared identifier 'G15_KEY_G2' if((currentkeys & G15_KEY_G2) && !(lastkeys & G15_KEY_G2)) ^ g15_plugin_uinput.c:162:11: error: use of undeclared identifier 'GKEY_OFFSET' keydown(GKEY_OFFSET+1); ^ g15_plugin_uinput.c:163:26: error: use of undeclared identifier 'G15_KEY_G2' else if(!(currentkeys & G15_KEY_G2) && (lastkeys & G15_KEY_G2)) ^ g15_plugin_uinput.c:163:53: error: use of undeclared identifier 'G15_KEY_G2' else if(!(currentkeys & G15_KEY_G2) && (lastkeys & G15_KEY_G2)) ^ g15_plugin_uinput.c:164:9: error: use of undeclared identifier 'GKEY_OFFSET' keyup(GKEY_OFFSET+1); ^ g15_plugin_uinput.c:165:20: error: use of undeclared identifier 'G15_KEY_G3' if((currentkeys & G15_KEY_G3) && !(lastkeys & G15_KEY_G3)) ^ g15_plugin_uinput.c:165:48: error: use of undeclared identifier 'G15_KEY_G3' if((currentkeys & G15_KEY_G3) && !(lastkeys & G15_KEY_G3)) ^ g15_plugin_uinput.c:166:11: error: use of undeclared identifier 'GKEY_OFFSET' keydown(GKEY_OFFSET+2); ^ g15_plugin_uinput.c:167:26: error: use of undeclared identifier 'G15_KEY_G3' else if(!(currentkeys & G15_KEY_G3) && (lastkeys & G15_KEY_G3)) ^ g15_plugin_uinput.c:167:53: error: use of undeclared identifier 'G15_KEY_G3' else if(!(currentkeys & G15_KEY_G3) && (lastkeys & G15_KEY_G3)) ^ g15_plugin_uinput.c:168:9: error: use of undeclared identifier 'GKEY_OFFSET' keyup(GKEY_OFFSET+2); ^ g15_plugin_uinput.c:169:20: error: use of undeclared identifier 'G15_KEY_G4' if((currentkeys & G15_KEY_G4) && !(lastkeys & G15_KEY_G4)) ^ fatal error: too many errors emitted, stopping now [-ferror-limit=] Pointy hat to: manu --- sysutils/g15daemon/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/sysutils/g15daemon/Makefile b/sysutils/g15daemon/Makefile index 4a98d71b92f8..592578bc8d74 100644 --- a/sysutils/g15daemon/Makefile +++ b/sysutils/g15daemon/Makefile @@ -9,6 +9,7 @@ COMMENT= Daemon for Logitech G15 Keyboards LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/LICENSE +BUILD_DEPENDS= evdev-proto>0:devel/evdev-proto LIB_DEPENDS+= libg15.so:sysutils/libg15 \ libg15render.so:sysutils/libg15render \ libinput.so:x11/libinput