Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 943671 - net-dns/dnsmasq-2.90 fails to compile: network.c:836:43: error: passing argument 3 of ‘iface_enumerate’ from incompatible pointer type [-Wincompatible-pointer-types]
Summary: net-dns/dnsmasq-2.90 fails to compile: network.c:836:43: error: passing argum...
Status: UNCONFIRMED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: Normal normal
Assignee: Patrick McLean
URL:
Whiteboard:
Keywords:
Depends on:
Blocks: c23-porting
  Show dependency tree
 
Reported: 2024-11-17 14:19 UTC by Kostadin Shishmanov
Modified: 2024-11-18 19:33 UTC (History)
0 users

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


Attachments
build log (build.log,14.47 KB, text/x-log)
2024-11-17 14:19 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 14:19:30 UTC
Created attachment 908854 [details]
build log

net-dns/dnsmasq-2.90 fails to compile with gcc 15-9999, adding -std=gnu17 to CFLAGS makes it build.


network.c: In function ‘enumerate_interfaces’:
network.c:836:43: error: passing argument 3 of ‘iface_enumerate’ from incompatible pointer type [-Wincompatible-pointer-types]
  836 |   ret = iface_enumerate(AF_INET6, &param, iface_allowed_v6);
      |                                           ^~~~~~~~~~~~~~~~
      |                                           |
      |                                           int (*)(struct in6_addr *, int,  int,  int,  int,  int,  int,  void *)
In file included from network.c:17:
dnsmasq.h:1662:50: note: expected ‘int (*)(void)’ but argument is of type ‘int (*)(struct in6_addr *, int,  int,  int,  int,  int,  int,  void *)’
 1662 | int iface_enumerate(int family, void *parm, int (callback)());
      |                                             ~~~~~^~~~~~~~~~~
network.c:841:46: error: passing argument 3 of ‘iface_enumerate’ from incompatible pointer type [-Wincompatible-pointer-types]
  841 |       ret = iface_enumerate(AF_INET, &param, iface_allowed_v4);
      |                                              ^~~~~~~~~~~~~~~~
      |                                              |
      |                                              int (*)(struct in_addr,  int,  char *, struct in_addr,  struct in_addr,  void *)
dnsmasq.h:1662:50: note: expected ‘int (*)(void)’ but argument is of type ‘int (*)(struct in_addr,  int,  char *, struct in_addr,  struct in_addr,  void *)’
 1662 | int iface_enumerate(int family, void *parm, int (callback)());
      |                                             ~~~~~^~~~~~~~~~~
make[1]: *** [/var/tmp/portage/net-dns/dnsmasq-2.90/work/dnsmasq-2.90/Makefile:169: network.o] Error 1
make[1]: *** Waiting for unfinished jobs....
lease.c: In function ‘lease_find_interfaces’:
lease.c:467:34: error: passing argument 3 of ‘iface_enumerate’ from incompatible pointer type [-Wincompatible-pointer-types]
  467 |   iface_enumerate(AF_INET, &now, find_interface_v4);
      |                                  ^~~~~~~~~~~~~~~~~
      |                                  |
      |                                  int (*)(struct in_addr,  int,  char *, struct in_addr,  struct in_addr,  void *)
In file included from lease.c:17:
dnsmasq.h:1662:50: note: expected ‘int (*)(void)’ but argument is of type ‘int (*)(struct in_addr,  int,  char *, struct in_addr,  struct in_addr,  void *)’
 1662 | int iface_enumerate(int family, void *parm, int (callback)());
      |                                             ~~~~~^~~~~~~~~~~
lease.c:469:35: error: passing argument 3 of ‘iface_enumerate’ from incompatible pointer type [-Wincompatible-pointer-types]
  469 |   iface_enumerate(AF_INET6, &now, find_interface_v6);
      |                                   ^~~~~~~~~~~~~~~~~
      |                                   |
      |                                   int (*)(struct in6_addr *, int,  int,  int,  int,  int,  int,  void *)
dnsmasq.h:1662:50: note: expected ‘int (*)(void)’ but argument is of type ‘int (*)(struct in6_addr *, int,  int,  int,  int,  int,  int,  void *)’
 1662 | int iface_enumerate(int family, void *parm, int (callback)());
      |                                             ~~~~~^~~~~~~~~~~
netlink.c: In function ‘iface_enumerate’:
netlink.c:250:30: error: too many arguments to function ‘callback’
  250 |                       if (!((*callback)(addr, ifa->ifa_index, label,  netmask, broadcast, parm)))
      |                             ~^~~~~~~~~~
netlink.c:291:30: error: too many arguments to function ‘callback’
  291 |                       if (!((*callback)(addrp, (int)(ifa->ifa_prefixlen), (int)(ifa->ifa_scope),
      |                             ~^~~~~~~~~~
netlink.c:321:22: error: too many arguments to function ‘callback’
  321 |               if (!((*callback)(neigh->ndm_family, inaddr, mac, maclen, parm)))
      |                     ~^~~~~~~~~~
netlink.c:345:20: error: too many arguments to function ‘callback’
  345 |                 !((*callback)((int)link->ifi_index, (unsigned int)link->ifi_type, mac, maclen, parm)))
      |                   ~^~~~~~~~~~
make[1]: *** [/var/tmp/portage/net-dns/dnsmasq-2.90/work/dnsmasq-2.90/Makefile:169: netlink.o] Error 1
make[1]: *** [/var/tmp/portage/net-dns/dnsmasq-2.90/work/dnsmasq-2.90/Makefile:169: lease.o] Error 1
dhcp.c: In function ‘dhcp_packet’:
dhcp.c:320:49: error: passing argument 3 of ‘iface_enumerate’ from incompatible pointer type [-Wincompatible-pointer-types]
  320 |               !iface_enumerate(AF_INET, &match, check_listen_addrs) ||
      |                                                 ^~~~~~~~~~~~~~~~~~
      |                                                 |
      |                                                 int (*)(struct in_addr,  int,  char *, struct in_addr,  struct in_addr,  void *)
In file included from dhcp.c:17:
dnsmasq.h:1662:50: note: expected ‘int (*)(void)’ but argument is of type ‘int (*)(struct in_addr,  int,  char *, struct in_addr,  struct in_addr,  void *)’
 1662 | int iface_enumerate(int family, void *parm, int (callback)());
      |                                             ~~~~~^~~~~~~~~~~
dhcp.c:333:44: error: passing argument 3 of ‘iface_enumerate’ from incompatible pointer type [-Wincompatible-pointer-types]
  333 |       if (!iface_enumerate(AF_INET, &parm, complete_context))
      |                                            ^~~~~~~~~~~~~~~~
      |                                            |
      |                                            int (*)(struct in_addr,  int,  char *, struct in_addr,  struct in_addr,  void *)
dnsmasq.h:1662:50: note: expected ‘int (*)(void)’ but argument is of type ‘int (*)(struct in_addr,  int,  char *, struct in_addr,  struct in_addr,  void *)’
 1662 | int iface_enumerate(int family, void *parm, int (callback)());
      |                                             ~~~~~^~~~~~~~~~~
Comment 1 Kostadin Shishmanov 2024-11-17 14:19:45 UTC
ortage 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,  11084688 free
KiB Swap:   31915004 total,  25723912 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 -fno-diagnostics-color -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 -fno-diagnostics-color -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 -fno-diagnostics-color -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 -fno-diagnostics-color -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