From owner-svn-ports-head@FreeBSD.ORG Thu Oct 25 07:47:42 2012 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2AA481ED; Thu, 25 Oct 2012 07:47:42 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 125C98FC17; Thu, 25 Oct 2012 07:47:42 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q9P7lf4c004437; Thu, 25 Oct 2012 07:47:41 GMT (envelope-from cy@svn.freebsd.org) Received: (from cy@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9P7lfSq004434; Thu, 25 Oct 2012 07:47:41 GMT (envelope-from cy@svn.freebsd.org) Message-Id: <201210250747.q9P7lfSq004434@svn.freebsd.org> From: Cy Schubert Date: Thu, 25 Oct 2012 07:47:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r306372 - head/net/tcpillust X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 25 Oct 2012 07:47:42 -0000 Author: cy Date: Thu Oct 25 07:47:41 2012 New Revision: 306372 URL: http://svn.freebsd.org/changeset/ports/306372 Log: Fix build when net/libpcap is installed. PR: ports/172623 Approved by: Yoshifumi Nishida (maintainer) Feature safe: yes Modified: head/net/tcpillust/Makefile Modified: head/net/tcpillust/Makefile ============================================================================== --- head/net/tcpillust/Makefile Thu Oct 25 07:13:12 2012 (r306371) +++ head/net/tcpillust/Makefile Thu Oct 25 07:47:41 2012 (r306372) @@ -7,7 +7,7 @@ PORTNAME= tcpillust PORTVERSION= 2.01 -PORTREVISION= 1 +PORTREVISION= 2 PORTEPOCH= 1 CATEGORIES= net tcl tk MASTER_SITES= http://www.jp.nishida.org/tcpillust/ @@ -34,10 +34,10 @@ WRKSRC= ${WRKDIR}/${PORTNAME} do-build: .for file in binread.c button.c draw.c parser.c tcpillust.c tcpdump/print-tcp.c - ${CC} ${CFLAGS} -I${LOCALBASE}/include/ -I${TCL_INCLUDEDIR} -I${TK_INCLUDEDIR} \ + ${CC} ${CFLAGS} -I/usr/include -I/usr/include/pcap -I${LOCALBASE}/include/ -I${TCL_INCLUDEDIR} -I${TK_INCLUDEDIR} \ -I${LOCALBASE}/include -DILTDIR=\"${DATADIR}\" -c ${WRKSRC}/${file} -o ${WRKSRC}/${file:S/.c/.o/} .endfor - ${CC} ${CFLAGS} -L${TCL_LIBDIR} -L${TK_LIBDIR} -L${LOCALBASE}/lib \ + ${CC} ${CFLAGS} -L/lib -L/usr/lib -L${TCL_LIBDIR} -L${TK_LIBDIR} -L${LOCALBASE}/lib \ -lm -ltcl${TCL_VER:S/.//} -ltk${TK_VER:S/.//} ${WRKSRC}/*.o ${WRKSRC}/tcpdump/*.o -o ${WRKSRC}/tcpillust -lpcap do-install: