Your message dated Sat, 24 Aug 2024 22:19:09 +0000
with message-id <e1shz6d-00enzw...@fasolo.debian.org>
and subject line Bug#1079297: Removed package(s) from unstable
has caused the Debian Bug report #1026439,
regarding xtide: FTBFS (invalid conversion from ‘char**’ to ‘const char**’)
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
1026439: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1026439
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: xtide
Version: 2.15.2-1.1
Severity: important
Tags: ftbfs patch
Justification: fails to build from source (but built successfully in the past)
X-Debbugs-Cc: i...@hack3r.moe

Dear maintainer(s),

xtide failed to build on riscv64 due to invalid conversion:

```
xxLocationList.cc: In member function ‘void xxLocationList::listChanged()’:
xxLocationList.cc:90:34: error: invalid conversion from ‘char**’ to ‘const 
char**’ [-fpermissive]
   90 |   XawListChange (list->widget(), stringList, 0, 0, 1);
      |                                  ^~~~~~~~~~
      |                                  |
      |                                  char**
In file included from xtide.hh:45,
                 from xxLocationList.cc:21:
/usr/include/X11/Xaw/List.h:170:27: note:   initializing argument 2 of ‘void 
XawListChange(Widget, const char**, int, int, Boolean)’
  170 |  _Xconst char           **list,
      |                           ^
make[2]: *** [Makefile:1136: xxLocationList.o] Error 1
```

Full buildd log: 
https://buildd.debian.org/status/fetch.php?pkg=xtide&arch=riscv64&ver=2.15.2-1.1%2Bb1&stamp=1671253782&raw=0

This can be fixed by explicitly converting types on riscv64, for which I've
included a patch. If more help is needed, please let me know.

Cheers,
Eric
--- a/xxLocationList.cc
+++ b/xxLocationList.cc
@@ -87,7 +87,11 @@
 
 
 void xxLocationList::listChanged() {
+#ifdef __riscv
+  XawListChange (list->widget(), (const char**)stringList, 0, 0, 1);
+#else
   XawListChange (list->widget(), stringList, 0, 0, 1);
+#endif
 }
 
 

--- End Message ---
--- Begin Message ---
Version: 2.15.2-1.1+rm

Dear submitter,

as the package xtide has just been removed from the Debian archive
unstable we hereby close the associated bug reports.  We are sorry
that we couldn't deal with your issue properly.

For details on the removal, please see https://bugs.debian.org/1079297

The version of this package that was in Debian prior to this removal
can still be found using https://snapshot.debian.org/.

Please note that the changes have been done on the master archive and
will not propagate to any mirrors until the next dinstall run at the
earliest.

This message was generated automatically; if you believe that there is
a problem with it please contact the archive administrators by mailing
ftpmas...@ftp-master.debian.org.

Debian distribution maintenance software
pp.
Scott Kitterman (the ftpmaster behind the curtain)

--- End Message ---

Reply via email to