mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-07 22:58:11 +00:00
47fb359e91
cc -O2 -DHAVE_FCNTL_H=1 -DHAVE_NET_SLIP_H=1 -DTIME_WITH_SYS_TIME=1 -DHAVE_ETHER_NTOA=1 -DHAVE_SETLINEBUF=1 -DSTDC_HEADERS=1 -DRETSIGTYPE=void -DRETSIGVAL= -DHAVE_SOCKADDR_SA_LEN=1 -DHAVE_TM_GMTOFF=1 -DLBL_ALIGN=1 -DPPP -DHAVE_FDDI -I. -c print-domain.c print-domain.c:219: `T_UINFO' undeclared here (not in a function) print-domain.c:219: initializer element for `type2str[29].v' is not constant print-domain.c:220: `T_UID' undeclared here (not in a function) print-domain.c:220: initializer element for `type2str[30].v' is not constant print-domain.c:221: `T_GID' undeclared here (not in a function) print-domain.c:221: initializer element for `type2str[31].v' is not constant *** Error code 1
35 lines
811 B
Makefile
35 lines
811 B
Makefile
# ex:ts=8
|
|
# New ports collection makefile for: samba
|
|
# Version required: 1.9.18
|
|
# Date created: 11th Feb 1995
|
|
# Whom: gpalmer
|
|
#
|
|
# $Id: Makefile,v 1.1.1.1 1998/06/02 18:30:18 obrien Exp $
|
|
#
|
|
|
|
DISTNAME= tcpdump-3.2.1
|
|
PKGNAME= smbtcpdump-3.2.1
|
|
CATEGORIES= net security
|
|
MASTER_SITES= ftp://ftp.ee.lbl.gov/old/
|
|
EXTRACT_SUFX= .tar.Z
|
|
|
|
PATCH_SITES= ftp://samba.anu.edu.au/pub/samba/tcpdump-smb/
|
|
PATCHFILES= tcpdump-3.2.1-smb-diffs.gz
|
|
|
|
MAINTAINER= obrien@FreeBSD.org
|
|
|
|
OSVERSION!= sysctl -n kern.osreldate
|
|
.if ${OSVERSION} >= 300000
|
|
BROKEN= T_GID undeclared
|
|
.endif
|
|
|
|
GNU_CONFIGURE= yes
|
|
ALL_TARGET= depend tcpdump
|
|
MAN1= smbtcpdump.1
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/tcpdump ${PREFIX}/sbin/smbtcpdump
|
|
${INSTALL_MAN} ${WRKSRC}/tcpdump.1 ${PREFIX}/man/man1/smbtcpdump.1
|
|
|
|
.include <bsd.port.mk>
|