Summary: | www-apache/mod_rpaf-0.8.4 - mod_rpaf.c: error: call to undeclared function apr_inet_addr; ISO C99 | ||
---|---|---|---|
Product: | Gentoo Linux | Reporter: | Toralf Förster <toralf> |
Component: | Current packages | Assignee: | No maintainer - Look at https://wiki.gentoo.org/wiki/Project:Proxy_Maintainers if you want to take care of it <maintainer-needed> |
Status: | RESOLVED FIXED | ||
Severity: | normal | CC: | ionen, sam |
Priority: | Normal | ||
Version: | unspecified | ||
Hardware: | All | ||
OS: | Linux | ||
See Also: | https://bugs.gentoo.org/show_bug.cgi?id=870004 | ||
Whiteboard: | |||
Package list: | Runtime testing required: | --- | |
Bug Depends on: | |||
Bug Blocks: | 870412 | ||
Attachments: |
emerge-info.txt
emerge-history.txt environment etc.portage.tar.bz2 temp.tar.bz2 www-apache:mod_rpaf-0.8.4:20221002-225822.log |
Description
Toralf Förster
![]() Created attachment 816436 [details]
emerge-info.txt
Created attachment 816439 [details]
emerge-history.txt
Created attachment 816442 [details]
environment
Created attachment 816445 [details]
etc.portage.tar.bz2
Created attachment 816448 [details]
temp.tar.bz2
Created attachment 816451 [details]
www-apache:mod_rpaf-0.8.4:20221002-225822.log
Haven't dug further into reproducing but think(?) the problem is in dev-libs/apr? The header should always be included that I can see (through httpd.h), and for this to be missing would need both APR_HAVE_INET_ADDR and APR_HAVE_INET_NETWORK to be unset (likely failed tests). (reminder need to build apache with clang to use it here, it saves the CC value then) (In reply to Ionen Wolkens from comment #7) > Haven't dug further into reproducing but think(?) the problem is in > dev-libs/apr? > > The header should always be included that I can see (through httpd.h), and > for this to be missing would need both APR_HAVE_INET_ADDR and > APR_HAVE_INET_NETWORK to be unset (likely failed tests). > Yep, both those tests were broken as they were: 1. missing includes; 2. called before the check for arpa/net.h Fixed now. |