Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 943665 - dev-libs/oniguruma-6.9.9 fails to compile: onig-6.9.9/src/regparse.c:811:24: error: passing argument 2 of 'onig_st_foreach' from incompatible pointer type [-Wincompatible-pointer-types]
Summary: dev-libs/oniguruma-6.9.9 fails to compile: onig-6.9.9/src/regparse.c:811:24: ...
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: Normal normal
Assignee: CJK Team
URL:
Whiteboard:
Keywords:
: 944012 (view as bug list)
Depends on:
Blocks: c23-porting
  Show dependency tree
 
Reported: 2024-11-17 13:20 UTC by Kostadin Shishmanov
Modified: 2024-11-22 01:52 UTC (History)
1 user (show)

See Also:
Package list:
Runtime testing required: ---


Attachments
build log (build.log,32.64 KB, text/x-log)
2024-11-17 13:20 UTC, Kostadin Shishmanov
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Kostadin Shishmanov 2024-11-17 13:20:13 UTC
Created attachment 908841 [details]
build log

dev-libs/oniguruma-6.9.9 fails to compile with gcc 15-9999, adding -std=gnu17 to CFLAGS makes it build.



/var/tmp/portage/dev-libs/oniguruma-6.9.9/work/onig-6.9.9/src/regparse.c: In function 'names_clear':
/var/tmp/portage/dev-libs/oniguruma-6.9.9/work/onig-6.9.9/src/regparse.c:811:24: error: passing argument 2 of 'onig_st_foreach' from incompatible pointer type [-Wincompatible-pointer-types]
  811 |     onig_st_foreach(t, i_free_name_entry, 0);
      |                        ^~~~~~~~~~~~~~~~~
      |                        |
      |                        int (*)(OnigUChar *, NameEntry *, void *) {aka int (*)(unsigned char *, NameEntry *, void *)}
In file included from /var/tmp/portage/dev-libs/oniguruma-6.9.9/work/onig-6.9.9/src/regparse.c:37:
/var/tmp/portage/dev-libs/oniguruma-6.9.9/work/onig-6.9.9/src/st.h:55:31: note: expected 'int (*)(void)' but argument is of type 'int (*)(OnigUChar *, NameEntry *, void *)' {aka 'int (*)(unsigned char *, NameEntry *, void *)'}
   55 | int st_foreach _((st_table *, int (*)(ANYARGS), st_data_t));
      |                               ^~~~~~~~~~~~~~~~
/var/tmp/portage/dev-libs/oniguruma-6.9.9/work/onig-6.9.9/src/st.h:35:18: note: in definition of macro '_'
   35 | # define _(args) args
      |                  ^~~~
/var/tmp/portage/dev-libs/oniguruma-6.9.9/work/onig-6.9.9/src/regparse.c: In function 'onig_foreach_name':
/var/tmp/portage/dev-libs/oniguruma-6.9.9/work/onig-6.9.9/src/regparse.c:880:24: error: passing argument 2 of 'onig_st_foreach' from incompatible pointer type [-Wincompatible-pointer-types]
  880 |     onig_st_foreach(t, i_names, (HashDataType )&narg);
      |                        ^~~~~~~
      |                        |
      |                        int (*)(OnigUChar *, NameEntry *, INamesArg *) {aka int (*)(unsigned char *, NameEntry *, INamesArg *)}
/var/tmp/portage/dev-libs/oniguruma-6.9.9/work/onig-6.9.9/src/st.h:55:31: note: expected 'int (*)(void)' but argument is of type 'int (*)(OnigUChar *, NameEntry *, INamesArg *)' {aka 'int (*)(unsigned char *, NameEntry *, INamesArg *)'}
   55 | int st_foreach _((st_table *, int (*)(ANYARGS), st_data_t));
      |                               ^~~~~~~~~~~~~~~~
/var/tmp/portage/dev-libs/oniguruma-6.9.9/work/onig-6.9.9/src/st.h:35:18: note: in definition of macro '_'
   35 | # define _(args) args
      |                  ^~~~
/var/tmp/portage/dev-libs/oniguruma-6.9.9/work/onig-6.9.9/src/regparse.c: In function 'onig_renumber_name_table':
/var/tmp/portage/dev-libs/oniguruma-6.9.9/work/onig-6.9.9/src/regparse.c:908:24: error: passing argument 2 of 'onig_st_foreach' from incompatible pointer type [-Wincompatible-pointer-types]
  908 |     onig_st_foreach(t, i_renumber_name, (HashDataType )map);
      |                        ^~~~~~~~~~~~~~~
      |                        |
      |                        int (*)(OnigUChar *, NameEntry *, GroupNumMap *) {aka int (*)(unsigned char *, NameEntry *, GroupNumMap *)}
/var/tmp/portage/dev-libs/oniguruma-6.9.9/work/onig-6.9.9/src/st.h:55:31: note: expected 'int (*)(void)' but argument is of type 'int (*)(OnigUChar *, NameEntry *, GroupNumMap *)' {aka 'int (*)(unsigned char *, NameEntry *, GroupNumMap *)'}
   55 | int st_foreach _((st_table *, int (*)(ANYARGS), st_data_t));
      |                               ^~~~~~~~~~~~~~~~
/var/tmp/portage/dev-libs/oniguruma-6.9.9/work/onig-6.9.9/src/st.h:35:18: note: in definition of macro '_'
   35 | # define _(args) args
      |                  ^~~~
/var/tmp/portage/dev-libs/oniguruma-6.9.9/work/onig-6.9.9/src/regparse.c: In function 'callout_name_table_clear':
/var/tmp/portage/dev-libs/oniguruma-6.9.9/work/onig-6.9.9/src/regparse.c:1393:24: error: passing argument 2 of 'onig_st_foreach' from incompatible pointer type [-Wincompatible-pointer-types]
 1393 |     onig_st_foreach(t, i_free_callout_name_entry, 0);
      |                        ^~~~~~~~~~~~~~~~~~~~~~~~~
      |                        |
      |                        int (*)(st_callout_name_key *, CalloutNameEntry *, void *)
/var/tmp/portage/dev-libs/oniguruma-6.9.9/work/onig-6.9.9/src/st.h:55:31: note: expected 'int (*)(void)' but argument is of type 'int (*)(st_callout_name_key *, CalloutNameEntry *, void *)'
   55 | int st_foreach _((st_table *, int (*)(ANYARGS), st_data_t));
      |                               ^~~~~~~~~~~~~~~~
/var/tmp/portage/dev-libs/oniguruma-6.9.9/work/onig-6.9.9/src/st.h:35:18: note: in definition of macro '_'
   35 | # define _(args) args
      |                  ^~~~
/bin/sh ../libtool  --tag=CC   --mode=compile x86_64-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I/var/tmp/portage/dev-libs/oniguruma-6.9.9/work/onig-6.9.9/src  -I/var/tmp/portage/dev-libs/oniguruma-6.9.9/work/onig-6.9.9  -Wall -DUSE_POSIX_API  -march=native -O2 -pipe -flto=auto -Werror=odr -Werror=lto-type-mismatch -Werror=strict-aliasing -c -o unicode_fold2_key.lo /var/tmp/portage/dev-libs/oniguruma-6.9.9/work/onig-6.9.9/src/unicode_fold2_key.c
/var/tmp/portage/dev-libs/oniguruma-6.9.9/work/onig-6.9.9/src/st.c: In function 'onig_st_cleanup_safe':
/var/tmp/portage/dev-libs/oniguruma-6.9.9/work/onig-6.9.9/src/st.c:454:21: error: passing argument 2 of 'onig_st_foreach' from incompatible pointer type [-Wincompatible-pointer-types]
  454 |   st_foreach(table, delete_never, never);
      |                     ^~~~~~~~~~~~
      |                     |
      |                     int (*)(st_data_t,  st_data_t,  st_data_t) {aka int (*)(long unsigned int,  long unsigned int,  long unsigned int)}
In file included from /var/tmp/portage/dev-libs/oniguruma-6.9.9/work/onig-6.9.9/src/st.c:10:
/var/tmp/portage/dev-libs/oniguruma-6.9.9/work/onig-6.9.9/src/st.h:55:31: note: expected 'int (*)(void)' but argument is of type 'int (*)(st_data_t,  st_data_t,  st_data_t)' {aka 'int (*)(long unsigned int,  long unsigned int,  long unsigned int)'}
   55 | int st_foreach _((st_table *, int (*)(ANYARGS), st_data_t));
      |                               ^~~~~~~~~~~~~~~~
/var/tmp/portage/dev-libs/oniguruma-6.9.9/work/onig-6.9.9/src/st.h:35:18: note: in definition of macro '_'
   35 | # define _(args) args
      |                  ^~~~
/var/tmp/portage/dev-libs/oniguruma-6.9.9/work/onig-6.9.9/src/regparse.c: In function 'setup_ext_callout_list_values':
In file included from /var/tmp/portage/dev-libs/oniguruma-6.9.9/work/onig-6.9.9/src/st.c:9:
/var/tmp/portage/dev-libs/oniguruma-6.9.9/work/onig-6.9.9/src/st.c: At top level:
/var/tmp/portage/dev-libs/oniguruma-6.9.9/work/onig-6.9.9/src/regint.h:229:37: error: conflicting types for 'onig_st_foreach'; have 'int(st_table *, int (*)(st_data_t,  st_data_t,  st_data_t), st_data_t)' {aka 'int(st_table *, int (*)(long unsigned int,  long unsigned int,  long unsigned int), long unsigned int)'}
  229 | #define st_foreach                  onig_st_foreach
      |                                     ^~~~~~~~~~~~~~~
/var/tmp/portage/dev-libs/oniguruma-6.9.9/work/onig-6.9.9/src/st.c:459:1: note: in expansion of macro 'st_foreach'
  459 | st_foreach(st_table* table, int (*func)(st_data_t, st_data_t, st_data_t), st_data_t arg)
      | ^~~~~~~~~~
/var/tmp/portage/dev-libs/oniguruma-6.9.9/work/onig-6.9.9/src/regint.h:229:37: note: previous declaration of 'onig_st_foreach' with type 'int(st_table *, int (*)(void), st_data_t)' {aka 'int(st_table *, int (*)(void), long unsigned int)'}
  229 | #define st_foreach                  onig_st_foreach
      |                                     ^~~~~~~~~~~~~~~
/var/tmp/portage/dev-libs/oniguruma-6.9.9/work/onig-6.9.9/src/st.h:55:5: note: in expansion of macro 'st_foreach'
   55 | int st_foreach _((st_table *, int (*)(ANYARGS), st_data_t));
      |     ^~~~~~~~~~
/var/tmp/portage/dev-libs/oniguruma-6.9.9/work/onig-6.9.9/src/regparse.c:1891:56: error: passing argument 2 of 'onig_st_foreach' from incompatible pointer type [-Wincompatible-pointer-types]
 1891 |     onig_st_foreach((CalloutTagTable *)ext->tag_table, i_callout_callout_list_set,
      |                                                        ^~~~~~~~~~~~~~~~~~~~~~~~~~
      |                                                        |
      |                                                        int (*)(OnigUChar *, CalloutTagVal,  void *) {aka int (*)(unsigned char *, long int,  void *)}
/var/tmp/portage/dev-libs/oniguruma-6.9.9/work/onig-6.9.9/src/st.h:55:31: note: expected 'int (*)(void)' but argument is of type 'int (*)(OnigUChar *, CalloutTagVal,  void *)' {aka 'int (*)(unsigned char *, long int,  void *)'}
   55 | int st_foreach _((st_table *, int (*)(ANYARGS), st_data_t));
      |                               ^~~~~~~~~~~~~~~~
/var/tmp/portage/dev-libs/oniguruma-6.9.9/work/onig-6.9.9/src/st.h:35:18: note: in definition of macro '_'
   35 | # define _(args) args
      |                  ^~~~
/var/tmp/portage/dev-libs/oniguruma-6.9.9/work/onig-6.9.9/src/regparse.c: In function 'callout_tag_table_clear':
/bin/sh ../libtool  --tag=CC   --mode=compile x86_64-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I/var/tmp/portage/dev-libs/oniguruma-6.9.9/work/onig-6.9.9/src  -I/var/tmp/portage/dev-libs/oniguruma-6.9.9/work/onig-6.9.9  -Wall -DUSE_POSIX_API  -march=native -O2 -pipe -flto=auto -Werror=odr -Werror=lto-type-mismatch -Werror=strict-aliasing -c -o unicode_fold3_key.lo /var/tmp/portage/dev-libs/oniguruma-6.9.9/work/onig-6.9.9/src/unicode_fold3_key.c
/var/tmp/portage/dev-libs/oniguruma-6.9.9/work/onig-6.9.9/src/regparse.c:1939:24: error: passing argument 2 of 'onig_st_foreach' from incompatible pointer type [-Wincompatible-pointer-types]
 1939 |     onig_st_foreach(t, i_free_callout_tag_entry, 0);
      |                        ^~~~~~~~~~~~~~~~~~~~~~~~
      |                        |
      |                        int (*)(OnigUChar *, CalloutTagVal,  void *) {aka int (*)(unsigned char *, long int,  void *)}
/var/tmp/portage/dev-libs/oniguruma-6.9.9/work/onig-6.9.9/src/st.h:55:31: note: expected 'int (*)(void)' but argument is of type 'int (*)(OnigUChar *, CalloutTagVal,  void *)' {aka 'int (*)(unsigned char *, long int,  void *)'}
   55 | int st_foreach _((st_table *, int (*)(ANYARGS), st_data_t));
      |                               ^~~~~~~~~~~~~~~~
/var/tmp/portage/dev-libs/oniguruma-6.9.9/work/onig-6.9.9/src/st.h:35:18: note: in definition of macro '_'
   35 | # define _(args) args
      |                  ^~~~
Comment 1 Kostadin Shishmanov 2024-11-17 13:20:49 UTC
Portage 3.0.66.1 (python 3.12.7-final-0, default/linux/amd64/23.0/desktop/plasma/systemd, gcc-15, glibc-2.40-r5, 6.12.0-rc7 x86_64)
=================================================================
System uname: Linux-6.12.0-rc7-x86_64-AMD_Ryzen_7_7800X3D_8-Core_Processor-with-glibc2.40
KiB Mem:    31915660 total,  13315696 free
KiB Swap:   31915004 total,  25604360 free
Timestamp of repository gentoo: Sat, 16 Nov 2024 16:18:26 +0000
Head commit of repository gentoo: efc76c676103edb9ee69364e92804cebe47848c8

Timestamp of repository guru: Sat, 16 Nov 2024 15:33:15 +0000
Head commit of repository guru: 1a26250d677a1cc2f3a820a41bddfdfdb7c3e9cc

Timestamp of repository kde: Sat, 16 Nov 2024 08:34:07 +0000
Head commit of repository kde: 09b13b62e51765ef5f293d19e9a2f6dcfe54c2ed

Timestamp of repository steam-overlay: Wed, 13 Nov 2024 06:33:27 +0000
Head commit of repository steam-overlay: 5de41dfd111d52752fbc6f83a2a4be9ad3e6ed0c

sh bash 5.2_p37
ld GNU ld (Gentoo 2.43 p2) 2.43.1
ccache version 4.10.2 [disabled]
app-misc/pax-utils:        1.3.7::gentoo
app-shells/bash:           5.2_p37::gentoo
dev-build/autoconf:        2.13-r8::gentoo, 2.72-r1::gentoo
dev-build/automake:        1.16.5-r2::gentoo
dev-build/cmake:           3.30.5::gentoo
dev-build/libtool:         2.4.7-r4::gentoo
dev-build/make:            4.4.1-r100::gentoo
dev-build/meson:           1.5.2::gentoo
dev-java/java-config:      2.3.4::gentoo
dev-lang/perl:             5.40.0::gentoo
dev-lang/python:           3.10.15_p1::gentoo, 3.12.7_p1::gentoo, 3.13.0::gentoo
dev-lang/rust-bin:         1.81.0-r100::gentoo
dev-util/ccache:           4.10.2-r1::gentoo
sys-apps/baselayout:       2.17::gentoo
sys-apps/sandbox:          2.39::gentoo
sys-apps/systemd:          256.7::gentoo
sys-devel/binutils:        2.43-r1::gentoo
sys-devel/binutils-config: 5.5.2::gentoo
sys-devel/clang:           18.1.8-r6::gentoo
sys-devel/gcc:             14.3.9999::gentoo, 15.0.9999::gentoo
sys-devel/gcc-config:      2.11::gentoo
sys-devel/lld:             18.1.8::gentoo
sys-devel/llvm:            18.1.8-r6::gentoo
sys-kernel/linux-headers:  6.11::gentoo (virtual/os-headers)
sys-libs/glibc:            2.40-r5::gentoo
Repositories:

gentoo
    location: /var/db/repos/gentoo
    sync-type: git
    sync-uri: https://github.com/gentoo-mirror/gentoo.git
    priority: -1000
    eclass-overrides: local
    volatile: False

guru
    location: /var/db/repos/guru
    sync-type: git
    sync-uri: https://github.com/gentoo-mirror/guru.git
    masters: gentoo
    eclass-overrides: local
    volatile: False

kde
    location: /var/db/repos/kde
    sync-type: git
    sync-uri: https://github.com/gentoo-mirror/kde.git
    masters: gentoo
    eclass-overrides: local
    volatile: False

local
    location: /var/db/repos/local
    masters: gentoo
    eclass-overrides: local
    volatile: False

steam-overlay
    location: /var/db/repos/steam-overlay
    sync-type: git
    sync-uri: https://github.com/gentoo-mirror/steam-overlay.git
    masters: gentoo
    eclass-overrides: local
    volatile: False

Binary Repositories:

gentoobinhost
    priority: 9999
    sync-uri: https://distfiles.gentoo.org/releases/amd64/binpackages/23.0/x86-64-v3

ACCEPT_KEYWORDS="amd64"
ACCEPT_LICENSE="*"
CBUILD="x86_64-pc-linux-gnu"
CFLAGS="-march=native -O2 -pipe -flto=auto -Werror=odr -Werror=lto-type-mismatch -Werror=strict-aliasing"
CHOST="x86_64-pc-linux-gnu"
CONFIG_PROTECT="/etc /usr/share/config /usr/share/gnupg/qualified.txt"
CONFIG_PROTECT_MASK="/etc/ca-certificates.conf /etc/dconf /etc/env.d /etc/fonts/fonts.conf /etc/gconf /etc/gentoo-release /etc/revdep-rebuild /etc/sandbox.d"
CXXFLAGS="-march=native -O2 -pipe -flto=auto -Werror=odr -Werror=lto-type-mismatch -Werror=strict-aliasing"
DISTDIR="/var/cache/distfiles"
ENV_UNSET="CARGO_HOME DBUS_SESSION_BUS_ADDRESS DISPLAY GDK_PIXBUF_MODULE_FILE GOBIN GOPATH PERL5LIB PERL5OPT PERLPREFIX PERL_CORE PERL_MB_OPT PERL_MM_OPT XAUTHORITY XDG_CACHE_HOME XDG_CONFIG_HOME XDG_DATA_HOME XDG_RUNTIME_DIR XDG_STATE_HOME"
FCFLAGS="-march=native -O2 -pipe -flto=auto -Werror=odr -Werror=lto-type-mismatch -Werror=strict-aliasing"
FEATURES="assume-digests binpkg-docompress binpkg-dostrip binpkg-logs binpkg-multi-instance buildpkg-live config-protect-if-modified distlocks ebuild-locks fixlafiles ipc-sandbox merge-sync merge-wait multilib-strict network-sandbox news parallel-fetch pid-sandbox pkgdir-index-trusted preserve-libs protect-owned qa-unresolved-soname-deps sandbox sfperms strict unknown-features-warn unmerge-logs unmerge-orphans userfetch userpriv usersandbox usersync xattr"
FFLAGS="-march=native -O2 -pipe -flto=auto -Werror=odr -Werror=lto-type-mismatch -Werror=strict-aliasing"
GENTOO_MIRRORS="     https://mirror.telepoint.bg/gentoo      http://tux.rainside.sk/gentoo/     http://gentoo.mirror.root.lu/     ftp://tux.rainside.sk/gentoo/     http://ftp.vectranet.pl/gentoo/ "
LANG="en_GB.UTF-8"
LDFLAGS="-Wl,-O1 -Wl,--as-needed -Wl,-z,pack-relative-relocs -Werror=odr -Werror=lto-type-mismatch -Werror=strict-aliasing"
LEX="flex"
MAKEOPTS="-j16"
PKGDIR="/var/cache/binpkgs"
PORTAGE_COMPRESS="zstd"
PORTAGE_CONFIGROOT="/"
PORTAGE_RSYNC_OPTS="--recursive --links --safe-links --perms --times --omit-dir-times --compress --force --whole-file --delete --stats --human-readable --timeout=180 --exclude=/distfiles --exclude=/local --exclude=/packages --exclude=/.git"
PORTAGE_TMPDIR="/var/tmp"
RUSTFLAGS="-C target-cpu=native -C opt-level=2 -Ccodegen-units=1"
SHELL="/bin/bash"
USE="X aac acl acpi activities amd64 branding bzip2 cairo cdr crypt cups dbus declarative dri dvdr encode exif flac gdbm gif gtk gui iconv icu jpeg kde kf6compat kwallet lcms libnotify libtirpc mad mng mp3 mp4 mpeg multilib ncurses networkmanager nls ogg opengl openmp pam pango pcre pdf pipewire plasma png policykit ppds pulseaudio qml qt5 qt6 readline screencast sdl seccomp sound ssl startup-notification svg systemd test-rust tiff truetype udev udisks unicode upower usb vaapi vulkan wayland widgets wxwidgets x264 xattr xcb xft xml xv zlib zstd" ABI_X86="64" ADA_TARGET="gcc_12" APACHE2_MODULES="authn_core authz_core socache_shmcb unixd actions alias auth_basic authn_anon authn_dbm authn_file authz_dbm authz_groupfile authz_host authz_owner authz_user autoindex cache cgi cgid dav dav_fs dav_lock deflate dir env expires ext_filter file_cache filter headers include info log_config logio mime mime_magic negotiation rewrite setenvif speling status unique_id userdir usertrack vhost_alias" CALLIGRA_FEATURES="karbon sheets words" COLLECTD_PLUGINS="df interface irq load memory rrdtool swap syslog" CPU_FLAGS_X86="mmx mmxext sse sse2 aes avx avx2 avx512_bf16 avx512_bitalg avx512_vbmi2 avx512_vnni avx512_vpopcntdq avx512bw avx512cd avx512dq avx512f avx512ifma avx512vbmi avx512vl f16c fma3 pclmul popcnt rdrand sha sse3 sse4_1 sse4_2 sse4a ssse3 vpclmulqdq" ELIBC="glibc" GPSD_PROTOCOLS="ashtech aivdm earthmate evermore fv18 garmin garmintxt gpsclock greis isync itrax navcom oceanserver oncore rtcm104v2 rtcm104v3 sirf skytraq superstar2 tsip tripmate tnt ublox" GRUB_PLATFORMS="efi-64" GUILE_SINGLE_TARGET="3-0" GUILE_TARGETS="3-0" INPUT_DEVICES="libinput" KERNEL="linux" LCD_DEVICES="bayrad cfontz glk hd44780 lb216 lcdm001 mtxorb text" LUA_SINGLE_TARGET="lua5-1" LUA_TARGETS="lua5-1" OFFICE_IMPLEMENTATION="libreoffice" PHP_TARGETS="php8-2" POSTGRES_TARGETS="postgres16" PYTHON_SINGLE_TARGET="python3_12" PYTHON_TARGETS="python3_12" RUBY_TARGETS="ruby32" XTABLES_ADDONS="quota2 psd pknock lscan length2 ipv4options ipp2p iface geoip fuzzy condition tarpit sysrq proto logmark ipmark dhcpmac delude chaos account"
Unset:  ADDR2LINE, AR, ARFLAGS, AS, ASFLAGS, CC, CCLD, CONFIG_SHELL, CPP, CPPFLAGS, CTARGET, CXX, CXXFILT, ELFEDIT, EMERGE_DEFAULT_OPTS, EXTRA_ECONF, F77FLAGS, FC, GCOV, GPROF, INSTALL_MASK, LC_ALL, LD, LFLAGS, LIBTOOL, LINGUAS, MAKE, MAKEFLAGS, NM, OBJCOPY, OBJDUMP, PORTAGE_BINHOST, PORTAGE_BUNZIP2_COMMAND, PORTAGE_COMPRESS_FLAGS, PORTAGE_RSYNC_EXTRA_OPTS, PYTHONPATH, RANLIB, READELF, SIZE, STRINGS, STRIP, YACC, YFLAGS
Comment 2 Sam James archtester Gentoo Infrastructure gentoo-dev Security 2024-11-17 13:25:44 UTC
Thanks. Not required but if you're willing, please file upstream bugs for these too. You can use https://lore.kernel.org/git/87ed3apy2u.fsf@gentoo.org/ as a template if going to.
Comment 3 Sam James archtester Gentoo Infrastructure gentoo-dev Security 2024-11-17 13:27:46 UTC
Also, for such bugs, it's ok to add -std=gnu17 in the ebuild with a comment as long as there's an upstream bug to link to.
Comment 4 immolo 2024-11-20 04:20:17 UTC
*** Bug 944012 has been marked as a duplicate of this bug. ***
Comment 5 Kostadin Shishmanov 2024-11-20 19:28:54 UTC
Bug is fixed upstream. This can be closed when v6.9.10 is added to the tree.
Comment 6 Larry the Git Cow gentoo-dev 2024-11-22 01:52:08 UTC
The bug has been closed via the following commit(s):

https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d698238def02f756ddd7b8e5b369bd2542f79a75

commit d698238def02f756ddd7b8e5b369bd2542f79a75
Author:     Sam James <sam@gentoo.org>
AuthorDate: 2024-11-22 01:51:00 +0000
Commit:     Sam James <sam@gentoo.org>
CommitDate: 2024-11-22 01:51:00 +0000

    dev-libs/oniguruma: fix C23 compat
    
    Closes: https://bugs.gentoo.org/943665
    Signed-off-by: Sam James <sam@gentoo.org>

 dev-libs/oniguruma/files/oniguruma-6.9.9-c23.patch | 170 +++++++++++++++++++++
 dev-libs/oniguruma/oniguruma-6.9.9-r1.ebuild       |  59 +++++++
 2 files changed, 229 insertions(+)