mirror of
https://github.com/opnsense/src.git
synced 2026-02-12 23:36:07 -05:00
New features are: Automatic lookup using *.whois-servers.net Recursive lookup using Registrar's name Fallback to InterNIC for non-domains -m for RADB database -Q to turn recursion/fallback off Obtained from: OpenBSD
14 lines
293 B
Makefile
14 lines
293 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/6/93
|
|
# $FreeBSD$
|
|
|
|
PROG= whois
|
|
|
|
CFLAGS+=-Wall
|
|
.if defined(SOCKS)
|
|
CFLAGS+=-DSOCKS
|
|
CFLAGS+=-Dconnect=Rconnect -Dgetsockname=Rgetsockname -Dlisten=Rlisten \
|
|
-Daccept=Raccept -Drcmd=Rrcmd -Dbind=Rbind -Dselect=Rselect
|
|
LDADD+= -lsocks
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|