After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 784758 - shout2: fails to compile with gcc 7.1.0 on msys2
shout2: fails to compile with gcc 7.1.0 on msys2
Status: RESOLVED FIXED
Product: GStreamer
Classification: Platform
Component: gst-plugins-good
git master
Other Windows
: Normal major
: 1.13.1
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2017-07-10 17:04 UTC by Philippe Renon
Modified: 2017-07-11 06:28 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
fix compilation error with gcc 7.1.0 (msys2) (766 bytes, application/mbox)
2017-07-10 17:04 UTC, Philippe Renon
  Details
fix compilation error with gcc 7.1.0 (msys2) (766 bytes, patch)
2017-07-10 17:04 UTC, Philippe Renon
none Details | Review
fix compilation error with gcc 7.1.0 (msys2) (766 bytes, patch)
2017-07-10 17:06 UTC, Philippe Renon
committed Details | Review

Description Philippe Renon 2017-07-10 17:04:20 UTC
Created attachment 355283 [details]
fix compilation error with gcc 7.1.0 (msys2)

gstshout2.h declares a uint which is not defined when compiling with gcc 7.1.0 on msys2.

Proposed fix replaces that uint with a guint (and also replaces one stray int with gint).
Comment 1 Philippe Renon 2017-07-10 17:04:57 UTC
Created attachment 355284 [details] [review]
fix compilation error with gcc 7.1.0 (msys2)
Comment 2 Philippe Renon 2017-07-10 17:06:06 UTC
Created attachment 355285 [details] [review]
fix compilation error with gcc 7.1.0 (msys2)
Comment 3 Sebastian Dröge (slomo) 2017-07-11 06:26:57 UTC
commit c8204780b26207f0374fd2699d30435a0fe2b79d (HEAD -> master)
Author: Philippe Renon <philippe_renon@yahoo.fr>
Date:   Mon Jul 10 18:57:11 2017 +0200

    shout2: use gint and guint in place of int and uint
    
    this fixes a compilation error with gcc 7.1.0 on mys2 where uint is not defined
    
    https://bugzilla.gnome.org/show_bug.cgi?id=784758