5e289f9eb6
Makes it possible to have multiple packet aliasing instances in a single process by moving all static and global variables into an instance structure called "struct libalias". Redefine a new API based on s/PacketAlias/LibAlias/g Add new "instance" argument to all functions in the new API. Implement old API in terms of the new API.
13 lines
273 B
Makefile
13 lines
273 B
Makefile
# $FreeBSD$
|
|
|
|
LIB= alias
|
|
SHLIBDIR?= /lib
|
|
SHLIB_MAJOR= 4
|
|
MAN= libalias.3
|
|
SRCS= alias.c alias_cuseeme.c alias_db.c alias_ftp.c alias_irc.c \
|
|
alias_nbt.c alias_pptp.c alias_proxy.c alias_skinny.c alias_smedia.c \
|
|
alias_util.c alias_old.c
|
|
INCS= alias.h
|
|
|
|
.include <bsd.lib.mk>
|