diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2003-05-09 00:07:10 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2003-05-09 00:07:10 +0000 |
commit | 9fdb7d5897cc8e842c7d04270630f6793754e300 (patch) | |
tree | 3be996517efbf0ccf9be1bc1d30c617fc3aa4299 /sbin/routed/Makefile | |
parent | 157df303eea89465576e23d6b7ee5150a6dc3b59 (diff) |
No longer need -lcompat
Diffstat (limited to 'sbin/routed/Makefile')
-rw-r--r-- | sbin/routed/Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sbin/routed/Makefile b/sbin/routed/Makefile index e1ed920c855..8f9d3eb1d56 100644 --- a/sbin/routed/Makefile +++ b/sbin/routed/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.11 2002/11/20 20:45:07 deraadt Exp $ +# $OpenBSD: Makefile,v 1.12 2003/05/09 00:07:09 millert Exp $ PROG= routed SRCS= if.c input.c main.c output.c parms.c radix.c rdisc.c table.c trace.c @@ -6,8 +6,6 @@ MAN= routed.8 CFLAGS+=-D_ROUTED -D'min(a,b)=(a < b ? a : b)' -D'log=syslog' CFLAGS+=-D'panic(s)={log(LOG_ERR, "%s", s); exit(1);}' SUBDIR= rtquery -DPADD= ${LIBCOMPAT} -LDADD= -lcompat # Do *NOT* turn this flag on unless you like security holes #CFLAGS+=-DPERMIT_TRACE |