diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2003-04-05 08:20:27 +0000 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2003-04-05 08:20:27 +0000 |
commit | 336ae31855b2c03f448d456e65294c4af46ec1b4 (patch) | |
tree | b882420483c1bbfe2bc0c2384c9cd94112f929f2 /net/netams/files/patch-Makefile | |
parent | - add empty directories (diff) |
NeTAMS - Network Traffic Accounting and Monitoring Software
NeTAMS is a Network Traffic Accounting and Monitoring Software.
It runs as a daemon under FreeBSD and Linux operating systems.
Collects an IP traffic information flowing via your PC/UNIX
or Cisco router, filters it, aggregates, stores onto HASH/SQL
database, and makes SMTP/HTML reports to site administrator.
Anoter features are flexible policy targets, firewalling,
access control, quotas, scheduler and much much more.
PR: ports/46777
Submitted by: Yuriy N. Shkandybin <jura@happychance.com>
Diffstat (limited to 'net/netams/files/patch-Makefile')
-rw-r--r-- | net/netams/files/patch-Makefile | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/net/netams/files/patch-Makefile b/net/netams/files/patch-Makefile new file mode 100644 index 000000000000..99461f5957e3 --- /dev/null +++ b/net/netams/files/patch-Makefile @@ -0,0 +1,20 @@ +--- Makefile.orig Sat Apr 5 00:17:21 2003 ++++ Makefile Sat Apr 5 00:17:52 2003 +@@ -3,7 +3,7 @@ + #*** (c) 1998-2001 Anton Vinokurov, anton@inorg.chem.msu.ru + #*** + #************************************************************************* +-LIB = -pthread -lutil -lpcap -lmysqlclient -L/usr/local/lib/mysql ++LIB = -pthread -lutil -lpcap -lmysqlclient -L${LOCALBASE}/lib/mysql + DEFINE += -DFREEBSD -DFREEBSD_VER=4 -DUSE_MYSQL + ########################################################################## + # for Linux, uncomment this +@@ -40,7 +40,7 @@ + + CC = g++ + FLAGS = -g -pthread -Wall +-INCLUDE=/usr/local/include ++INCLUDE=${LOCALBASE}/include + OBJ = $(SRC:.c=.o) + CFLAGS = $(FLAGS) -I$(INCLUDE) $(DEFINE) -Wall + |