diff options
author | Claudio Jeker <claudio@cvs.openbsd.org> | 2006-06-16 15:48:43 +0000 |
---|---|---|
committer | Claudio Jeker <claudio@cvs.openbsd.org> | 2006-06-16 15:48:43 +0000 |
commit | c291aae0928d26753a167e1edf899ebb77ae30be (patch) | |
tree | b99e6e442f01c8343430b6a175aa8cec3c79cf0b /sbin/routed/Makefile | |
parent | 83d159a033fd8c0eec3dc1805b6b1b5e17d1ec5e (diff) |
Make routed no longer use kernel API prototypes for own functions -- this is
totaly braindead and will break as soon as we change something in radix.h.
Instead pull in the needed defines and prototypes into defs.h.
OK henning@, hshoexer@
Diffstat (limited to 'sbin/routed/Makefile')
-rw-r--r-- | sbin/routed/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/routed/Makefile b/sbin/routed/Makefile index 943a8ec0733..864ff59f709 100644 --- a/sbin/routed/Makefile +++ b/sbin/routed/Makefile @@ -1,9 +1,9 @@ -# $OpenBSD: Makefile,v 1.16 2006/05/10 02:36:25 deraadt Exp $ +# $OpenBSD: Makefile,v 1.17 2006/06/16 15:48:42 claudio Exp $ PROG= routed SRCS= if.c input.c main.c output.c parms.c radix.c rdisc.c table.c trace.c MAN= routed.8 -CFLAGS+=-D_ROUTED -D'min(a,b)=((a) < (b) ? (a) : (b))' -D'log=syslog' +CFLAGS+=-D'min(a,b)=((a) < (b) ? (a) : (b))' -D'log=syslog' CFLAGS+=-D'panic(s)={log(LOG_ERR, "%s", s); exit(1);}' SUBDIR= rtquery |