xiph / vorbis-tools

Command-line tools for creating and playing Ogg Vorbis files.
GNU General Public License v2.0
73 stars 28 forks source link

fix build with gcc >= 14 #48

Open ffontaine opened 1 month ago

ffontaine commented 1 month ago

Add missing includes to avoid the following build failure with gcc >= 14:

codec_skeleton.c: In function 'skeleton_process_fisbone_message_header': codec_skeleton.c:119:9: error: implicit declaration of function 'utf8_decode' [-Wimplicit-function-declaration]
  119 |     if (utf8_decode(header, &decoded) < 0) {
      |         ^~~~~~~~~~~

Fixes:

Eonfge commented 6 days ago

Necessary for Flatpak support. With the release of FreeDesktop SDK 24.08, these kinds of issues are no longer permitted. I would recommend you to merge this