[Bug 296473] devel/qt6-base: does not compile on recent CURRENT (1600019)

[email protected] Tue, 14 Jul 2026 11:44:22 +0000
Newsgroups gmane.comp.kde.freebsd
Message-ID <[email protected]/bugzilla/>
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D296473

--- Comment #10 from Trond Endrest=C3=B8l <[email protected]> ---
(In reply to Trond Endrest=C3=B8l from comment #9)
A small test program reveals that __ISO_C_VISIBLE is always set to 2023 for
-std=3Dc99, -std=3Dc11, -std=3Dc17, and -std=3Dc23.

#include <stdio.h>

int main(void)
{
#ifndef __ISO_C_VISIBLE
  puts("__ISO_C_VISIBLE is not defined.");
#else
  printf("__ISO_C_VISIBLE is %d.\n", __ISO_C_VISIBLE);
#endif

  return 0;
}

--=20
You are receiving this mail because:
You are the assignee for the bug.=