Re: [cdesktopenv-devel] Fedora build is utterly broken

2020-11-22 Thread Adam Sampson
ike nothing uses __SK__ anyway, so it could just be simplified to a definition of "struct sk".) -- Adam Sampson <http://offog.org/> ___ cdesktopenv-devel mailing list cdesktopenv-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/cdesktopenv-devel

[cdesktopenv-devel] [PATCH 1/1] libAButil: remove lt- prefix from program name

2021-07-04 Thread Adam Sampson
When building a program foo in-tree, libtool 2.4.6 generates an executable called lt-foo with a wrapper script called foo. This means that argv[0] inside the program is lt-foo rather than foo. This is a problem for dtcodegen, which uses the program name for various purposes including the "generate

[cdesktopenv-devel] [PATCH 1/2] DtSvc: add missing #include (for malloc)

2021-07-04 Thread Adam Sampson
--- cde/lib/DtSvc/DtUtil2/SunDtHelp.c | 1 + 1 file changed, 1 insertion(+) diff --git a/cde/lib/DtSvc/DtUtil2/SunDtHelp.c b/cde/lib/DtSvc/DtUtil2/SunDtHelp.c index aa7a15fc5..759a87554 100644 --- a/cde/lib/DtSvc/DtUtil2/SunDtHelp.c +++ b/cde/lib/DtSvc/DtUtil2/SunDtHelp.c @@ -49,6 +49,7 @@ *+E

[cdesktopenv-devel] [PATCH 2/2] DtSvc: fix error return from DtHelpReturnSelectedWidgetId

2021-07-04 Thread Adam Sampson
return(NULL) is correct for the other functions here but not for this one, since it's meant to return a DtHELP_ error code. The man page also says it should also set *widget to NULL on error. --- cde/lib/DtSvc/DtUtil2/SunDtHelp.c | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --