Package Details: rwhoisd 1.5.9.6-4

Git Clone URL: https://aur.archlinux.org/rwhoisd.git (read-only, click to copy)
Package Base: rwhoisd
Description: RWhois (Referral Whois) is a Directory Services protocol which extends and enhances the Whois concept in a hierarchical and scalable fashion.
Upstream URL: http://projects.arin.net/rwhois/
Licenses: GPL2
Submitter: lty1993
Maintainer: mrxx
Last Packager: mrxx
Votes: 1
Popularity: 0.000000
First Submitted: 2015-06-25 03:47 (UTC)
Last Updated: 2024-07-18 08:16 (UTC)

Latest Comments

1 2 Next › Last »

micwoj92 commented on 2024-09-03 18:42 (UTC)

What is your build environment? This WILL fail with gcc14, unless you have specified custom flags in your makepkg.conf.

mrxx commented on 2024-09-03 11:44 (UTC)

Builds fine for me.

Anybody else experiencing these compilation errors?

3xploiton3 commented on 2024-08-12 19:00 (UTC) (edited on 2024-08-12 19:02 (UTC) by 3xploiton3)

failed

hosts_access.c: In function ‘host_match’:
hosts_access.c:316:24: error: implicit declaration of function ‘atoi’ [-Wimplicit-function-declaration]
  316 |                 mask = atoi(slash+1);
      |                        ^~~~
make[1]: *** [Makefile:682: hosts_access.o] Error 1
make[1]: Leaving directory '/home/user/.cache/yay/rwhoisd/src/rwhoisd-1.5.9.6/rwhoisd/tools/tcpd_wrapper'
make: *** [Makefile:38: libwrap] Error 2
==> ERROR: A failure occurred in build().
    Aborting...
 -> error making: rwhoisd-exit status 4
 -> Failed to install the following packages. Manual intervention is required:
rwhoisd - exit status 4

micwoj92 commented on 2024-07-18 22:21 (UTC)

Still fails, with different error now:

gcc -O -DFACILITY=LOG_MAIL       -DHOSTS_ACCESS -DPARANOID  -DGETPEERNAME_BUG -DBROKEN_FGETS -DLIBC_CALLS_STRTOK   -DDAEMON_UMASK=022 -DREAL_DAEMON_DIR=\"/\"   -DSEVERITY=LOG_INFO      -DRFC931_TIMEOUT=10  -DHOSTS_DENY=\"/etc/hosts.deny\" -DHOSTS_ALLOW=\"/etc/hosts.allow\"   -DUSE_STRERROR  -Dvsyslog=myvsyslog -DALWAYS_HOSTNAME -DHAVE_IPV6 -c hosts_access.c
hosts_access.c: In function ‘host_match’:
hosts_access.c:316:24: error: implicit declaration of function ‘atoi’ [-Wimplicit-function-declaration]
  316 |                 mask = atoi(slash+1);
      |                        ^~~~
make[1]: *** [Makefile:682: hosts_access.o] Error 1
make[1]: Leaving directory '/build/rwhoisd/src/rwhoisd-1.5.9.6/rwhoisd/tools/tcpd_wrapper'
make: *** [Makefile:38: libwrap] Error 2
==> ERROR: A failure occurred in build().
    Aborting...

mrxx commented on 2024-07-18 08:17 (UTC)

Thank you, micwoj92. Fixed.

micwoj92 commented on 2024-07-07 21:13 (UTC)

Fails to build now due to changes in gcc14:

/usr/local/share/bison.simple: In function ‘yyparse’:
/usr/local/share/bison.simple:327:4: error: implicit declaration of function ‘yyerror’; did you mean ‘yyerrok’? [-Wimplicit-function-declaration]
/usr/local/share/bison.simple:93:16: error: implicit declaration of function ‘yylex’ [-Wimplicit-function-declaration]
/usr/local/share/bison.simple:387:16: note: in expansion of macro ‘YYLEX’
make[1]: *** [Makefile:60: y.tab.o] Error 1
make[1]: Leaving directory '/build/rwhoisd/src/rwhoisd-1.5.9.6/rwhoisd/mkdb'
make: *** [Makefile:31: libraries] Error 1
==> ERROR: A failure occurred in build().
    Aborting...

mrxx commented on 2023-10-08 19:08 (UTC)

Ok, I've updated the PKGBUILD.

micwoj92 commented on 2023-10-08 18:59 (UTC)

This only fails (for me) when running make with multiple jobs, so a fix is

--- a/PKGBUILD
+++ b/PKGBUILD
@@ -23,7 +23,7 @@ build() {
   sed -i 's/\/usr\/local\/bin\/rwhois/\/usr\/bin\/rwhois/' common/conf.h 

   ./configure --prefix=/usr --sysconfdir=/var/lib --sbindir=/usr/bin
-  make
+  make -j1
 }

 package() {

mrxx commented on 2023-10-08 18:50 (UTC)

Anyone else experiencing a failing build?

micwoj92 commented on 2023-09-29 02:56 (UTC)

Builds fails, here log: https://gist.github.com/micwoj92/4e0448866bc8b1334c629d7b86b832b6