Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 29 May 2023 15:03:00 GMT
From:      Cy Schubert <cy@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-branches@FreeBSD.org
Subject:   git: 6291f0c88d06 - 2023Q2 - x11/xkeywrap: Work around LLVM15 build errors
Message-ID:  <202305291503.34TF30sa038813@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch 2023Q2 has been updated by cy:

URL: https://cgit.FreeBSD.org/ports/commit/?id=6291f0c88d06d092d5f838db5df997e815369f60

commit 6291f0c88d06d092d5f838db5df997e815369f60
Author:     Cy Schubert <cy@FreeBSD.org>
AuthorDate: 2023-05-24 02:50:57 +0000
Commit:     Cy Schubert <cy@FreeBSD.org>
CommitDate: 2023-05-29 15:02:53 +0000

    x11/xkeywrap: Work around LLVM15 build errors
    
    Work around the following errors, for now:
    
    cc -c xkeywrap.c -I/usr/local/include  -O2 -pipe -pipe  -fstack-protector-strong -fno-strict-aliasing  -pipe  -DVERSION=\"XKeyWrap-1.1\"
    xkeywrap.c:45:15: error: incompatible pointer to integer conversion initializing 'Cursor' (aka 'unsigned long') with an expression of type 'void *' [-Wint-conversion]
    static Cursor select_cursor = NULL;      /* <BD><D0><CE><CF><C0>襦<A5><A4><A5><F3><A5>ɥ<A6><BB><D8><C4><EA><BB><FE><A4>Υ<AB><A1><BC><A5><BD><A5><EB> */
                  ^               ~~~~
    xkeywrap.c:422:31: warning: passing 'int *' to parameter of type 'unsigned int *' converts between pointers to integer types with different sign [-Wpointer-sign]
                 &r, &p, &children_list, &children_number);
                                         ^~~~~~~~~~~~~~~~
    /usr/local/include/X11/Xlib.h:3034:1: note: passing argument to parameter here
    );
    ^
    1 warning and 1 error generated.
    *** [xkeywrap.o] Error code 1
    
    make[2]: stopped in /export/wrkdir/amd64/export/freebsd/git/ports/x11/xkeywrap/work/xkeywrap-1.1
    --- xkeywrap.1.gz ---
    gzip -f xkeywrap.1
    1 error
    
    make[2]: stopped in /export/wrkdir/amd64/export/freebsd/git/ports/x11/xkeywrap/work/xkeywrap-1.1
    ===> Compilation failed unexpectedly.
    Try to set MAKE_JOBS_UNSAFE=yes and rebuild before reporting the failure to
    the maintainer.
    *** Error code 1
    
    Stop.
    make[1]: stopped in /export/freebsd/git/ports/x11/xkeywrap
    *** Error code 1
    
    Stop.
    make: stopped in /export/freebsd/git/ports/x11/xkeywrap
    
    While at it, assume maintainership.
    
    (cherry picked from commit 02e6b7b0d4c4f475af607cc07e3fa6b1b62af44c)
---
 x11/xkeywrap/Makefile | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/x11/xkeywrap/Makefile b/x11/xkeywrap/Makefile
index 6b4fa0487934..8b84e1103ff5 100644
--- a/x11/xkeywrap/Makefile
+++ b/x11/xkeywrap/Makefile
@@ -4,13 +4,14 @@ PORTREVISION=	3
 CATEGORIES=	x11
 MASTER_SITES=	http://ftp.vector.co.jp/18/98/1364/
 
-MAINTAINER=	ports@FreeBSD.org
+MAINTAINER=	cy@FreeBSD.org
 COMMENT=	Record, repeat, and play key sequence from keyboard
 WWW=		https://kozos.jp/myfreesoft/
 
 MAKE_ENV=	X11BASE="${LOCALBASE}"
 USES=		xorg
 USE_XORG=	x11 xt
+CFLAGS+=	-Wno-int-conversion -Wno-pointer-sign
 
 PORTDOCS=	README
 PORTEXAMPLES=	demo.dat xkeywrap_demo.c



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202305291503.34TF30sa038813>