Page MenuHomeFreeBSD

print/libraqm: fix build with GCC-based architectures
ClosedPublic

Authored by pkubaj on Jun 11 2019, 6:22 PM.
Tags
None
Referenced Files
Unknown Object (File)
Tue, Apr 23, 1:46 PM
Unknown Object (File)
Sat, Apr 20, 3:23 PM
Unknown Object (File)
Wed, Apr 17, 1:35 AM
Unknown Object (File)
Thu, Mar 28, 3:03 PM
Unknown Object (File)
Feb 23 2024, 9:33 AM
Unknown Object (File)
Dec 22 2023, 11:45 PM
Unknown Object (File)
Nov 26 2023, 8:51 PM
Unknown Object (File)
Nov 26 2023, 8:51 PM
Subscribers
None

Details

Summary

Don't shadow global variable index:
cc1: warnings being treated as errors
raqm.c: In function '_raqm_u32_to_u8_index':
raqm.c:1602: warning: declaration of 'index' shadows a global declaration
/usr/include/strings.h:62: warning: shadowed declaration is here
raqm.c: In function '_raqm_u8_to_u32_index':
raqm.c:1619: warning: declaration of 'index' shadows a global declaration
/usr/include/strings.h:62: warning: shadowed declaration is here
raqm.c: In function 'raqm_index_to_position':
raqm.c:1658: warning: declaration of 'index' shadows a global declaration
/usr/include/strings.h:62: warning: shadowed declaration is here
raqm.c: In function 'raqm_position_to_index':
raqm.c:1752: warning: declaration of 'index' shadows a global declaration
/usr/include/strings.h:62: warning: shadowed declaration is here

Fails to build with base GCC.

Diff Detail

Repository
rP FreeBSD ports repository
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

This revision is now accepted and ready to land.Jun 13 2019, 9:09 PM
This revision was automatically updated to reflect the committed changes.