Your message dated Tue, 12 Nov 2019 01:04:28 +0000
with message-id <[email protected]>
and subject line Bug#925863: fixed in xcalib 0.8.dfsg1-2.1
has caused the Debian Bug report #925863,
regarding xcalib: ftbfs with GCC-9
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 [email protected]
immediately.)


-- 
925863: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=925863
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: src:xcalib
Version: 0.8.dfsg1-2
Severity: normal
Tags: sid bullseye
User: [email protected]
Usertags: ftbfs-gcc-9

Please keep this issue open in the bug tracker for the package it
was filed for.  If a fix in another package is required, please
file a bug for the other package (or clone), and add a block in this
package. Please keep the issue open until the package can be built in
a follow-up test rebuild.

The package fails to build in a test rebuild on at least amd64 with
gcc-9/g++-9, but succeeds to build with gcc-8/g++-8. The
severity of this report will be raised before the bullseye release,
so nothing has to be done for the buster release.

The full build log can be found at:
http://people.debian.org/~doko/logs/gcc9-20190321/xcalib_0.8.dfsg1-2_unstable_gcc9.log
The last lines of the build log are at the end of this report.

To build with GCC 9, either set CC=gcc-9 CXX=g++-9 explicitly,
or install the gcc, g++, gfortran, ... packages from experimental.

  apt-get -t=experimental install g++ 

Common build failures are new warnings resulting in build failures with
-Werror turned on, or new/dropped symbols in Debian symbols files.
For other C/C++ related build failures see the porting guide at
http://gcc.gnu.org/gcc-9/porting_to.html

GCC 9 also passes the linker option --as-needed by default; typical
build issues are passing libraries before object files to the linker,
or underlinking of convenience libraries built from the same source.

[...]
xcalib.c: In function 'main':
xcalib.c:590:7: warning: this 'if' clause does not guard... 
[-Wmisleading-indentation]
  590 |       if (++i >= argc)
      |       ^~
xcalib.c:592:9: note: ...this statement, but the latter is misleadingly 
indented as if it were guarded by the 'if'
  592 |         displayname = argv[i];
      |         ^~~~~~~~~~~
xcalib.c:866:52: warning: pointer targets in passing argument 3 of 
'XF86VidModeGetGammaRampSize' differ in signedness [-Wpointer-sign]
  866 |     if (!XF86VidModeGetGammaRampSize (dpy, screen, &ramp_size)) {
      |                                                    ^~~~~~~~~~
      |                                                    |
      |                                                    unsigned int *
In file included from xcalib.c:55:
/usr/include/X11/extensions/xf86vmode.h:285:5: note: expected 'int *' but 
argument is of type 'unsigned int *'
  285 |     int*                        /* size */
      |     ^~~~
xcalib.c:921:10: warning: suggest parentheses around assignment used as truth 
value [-Wparentheses]
  921 |       if(i=0)
      |          ^
xcalib.c:949:11: warning: unused variable 'redGamma' [-Wunused-variable]
  949 |     float redGamma = 1.0;
      |           ^~~~~~~~
xcalib.c:963:11: warning: unused variable 'greenGamma' [-Wunused-variable]
  963 |     float greenGamma = 1.0;
      |           ^~~~~~~~~~
xcalib.c:977:11: warning: unused variable 'blueGamma' [-Wunused-variable]
  977 |     float blueGamma = 1.0;
      |           ^~~~~~~~~
xcalib.c:530:16: warning: unused variable 'ramp_scaling' [-Wunused-variable]
  530 |   unsigned int ramp_scaling;
      |                ^~~~~~~~~~~~
xcalib.c:515:7: warning: unused variable 'rv' [-Wunused-variable]
  515 |   int rv = 0;
      |       ^~
xcalib.c:514:7: warning: unused variable 'found' [-Wunused-variable]
  514 |   int found;
      |       ^~~~~
xcalib.c:513:7: warning: unused variable 'offset' [-Wunused-variable]
  513 |   int offset = 0;  /* Offset to read profile from */
      |       ^~~~~~
xcalib.c:512:7: warning: unused variable 'ecount' [-Wunused-variable]
  512 |   int ecount = 1;  /* Embedded count */
      |       ^~~~~~
xcalib.c:511:7: warning: unused variable 'search' [-Wunused-variable]
  511 |   int search = 0;
      |       ^~~~~~
xcalib.c:510:7: warning: unused variable 'verb' [-Wunused-variable]
  510 |   int verb = 2;
      |       ^~~~
xcalib.c:509:8: warning: unused variable 'tag_name' [-Wunused-variable]
  509 |   char tag_name[40] = { '\000' };
      |        ^~~~~~~~
xcalib.c:507:11: warning: unused variable 'nfa' [-Wunused-variable]
  507 |   int fa, nfa;   /* argument we're looking at */
      |           ^~~
xcalib.c:507:7: warning: unused variable 'fa' [-Wunused-variable]
  507 |   int fa, nfa;   /* argument we're looking at */
      |       ^~
cc -Wall -g -O2 -lm -o xcalib xcalib.o -lX11 -lXxf86vm -lXext
/usr/bin/ld: xcalib.o: in function `read_vcgt_internal':
/<<PKGBUILDDIR>>/xcalib.c:379: undefined reference to `pow'
/usr/bin/ld: /<<PKGBUILDDIR>>/xcalib.c:383: undefined reference to `pow'
/usr/bin/ld: /<<PKGBUILDDIR>>/xcalib.c:387: undefined reference to `pow'
/usr/bin/ld: xcalib.o: in function `main':
/<<PKGBUILDDIR>>/xcalib.c:990: undefined reference to `pow'
/usr/bin/ld: /<<PKGBUILDDIR>>/xcalib.c:993: undefined reference to `pow'
/usr/bin/ld: xcalib.o:/<<PKGBUILDDIR>>/xcalib.c:996: more undefined references 
to `pow' follow
collect2: error: ld returned 1 exit status
make: *** [debian/rules:29: build-stamp] Error 1
dpkg-buildpackage: error: debian/rules build subprocess returned exit status 2

--- End Message ---
--- Begin Message ---
Source: xcalib
Source-Version: 0.8.dfsg1-2.1

We believe that the bug you reported is fixed in the latest version of
xcalib, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Boyuan Yang <[email protected]> (supplier of updated xcalib package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

Format: 1.8
Date: Mon, 11 Nov 2019 19:42:44 -0500
Source: xcalib
Architecture: source
Version: 0.8.dfsg1-2.1
Distribution: unstable
Urgency: medium
Maintainer: Jorge Salamero Sanz <[email protected]>
Changed-By: Boyuan Yang <[email protected]>
Closes: 900143 925863
Changes:
 xcalib (0.8.dfsg1-2.1) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * debian/rules:
     + Fix FTCBFS: Let dpkg's buildtools.mk set a sane $(CC).
       (Closes: #900143)
     + Fix FTBFS with gcc 9. (Closes: #925863)
   * debian/control: Replace obsolete Priority: extra with
     Priority: optional.
Checksums-Sha1:
 d76861d41d1a5ff884d6404007557b253139a312 1725 xcalib_0.8.dfsg1-2.1.dsc
 1ecefea63988ed6271293616451e64d455e879eb 3055 xcalib_0.8.dfsg1-2.1.diff.gz
 22f29957d8b4b0d22234eaaf196f3a6a12a4da4d 6233 
xcalib_0.8.dfsg1-2.1_amd64.buildinfo
Checksums-Sha256:
 82ba1baf7c1d535660eff80ae402d06f50fdf29dc159a540140f067bc97c2bb3 1725 
xcalib_0.8.dfsg1-2.1.dsc
 8810be51693869480e70d82d0f8da5903db85860bbebbe93b0317420922a9267 3055 
xcalib_0.8.dfsg1-2.1.diff.gz
 fd292b62a13208b01068a7f81633ec826b0158cbcb4e1ce26194f5c570305410 6233 
xcalib_0.8.dfsg1-2.1_amd64.buildinfo
Files:
 72d76c891364602886f05094ff938d89 1725 x11 optional xcalib_0.8.dfsg1-2.1.dsc
 b8e8045652b7cff2af1cf07e60655fc1 3055 x11 optional xcalib_0.8.dfsg1-2.1.diff.gz
 06d61a479639e6044aa8d2bc4c2d4848 6233 x11 optional 
xcalib_0.8.dfsg1-2.1_amd64.buildinfo

-----BEGIN PGP SIGNATURE-----

iQIzBAEBCgAdFiEEfncpR22H1vEdkazLwpPntGGCWs4FAl3KAKIACgkQwpPntGGC
Ws435Q//U2mgcOuVji/RMUgtl7C2VA+ZMQlLyPOobu3jw/CfNVJZkX266L8Nr+1J
ndQgNyP/M988jbFzTojldysb4zAHsicYlUUIX6dkFXl2ubRtcI1O/js2nal3Ovkk
QA3+jdvA67wQppR7ah/oniAZ1ZO3bbfkHjSgTAjPL3ZjeZvvHA4xG8wbX3hX5Xzo
zVVgRuTs1KtXBHKiWHdEZxVKSvmbaToZflOW9ZGoUA/Z+hsD1Jpao0MBdEzaSDm3
Hh30DNLduljaCr5up2V8Gn916DaiFIO1WzyyhYTBfES6E1tD1rwYgWI8xC6PLyR6
e+OODkuW+bj495WXnrTZShplNgEazjyfXj2K/n5JdMpmnd4RvBV7eJ72OM99wQFJ
CiaWF49s+oY5ma3dFhh6SircgfgzO3pneyqZ7IyfOTwiN03Gx/L3wHHbhn5wG4Jv
CmIRSEHoGjuE5mDxsGEtfrkiLLMNvWgvlviz7yMycn2CdFOgUXHiZmf4VeJQpZoy
B7iyFWwdIatCl8+LvXFuldhE4ArGTxvIWdc+S12BgdkR9DRKcU6D839YREBdKYQ2
B5AYLtozKMtBYajgvaixOdo7dNaz1wOMJAFVDb6TR3rgrlfnzjBSP0KA1px0PIzb
mJ2IlSZ4kGYMC5j7PLYOmP1GVKQLBcw8+zwSSrD5eQqZDPSYdSQ=
=rnyt
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to