diff options
author | harti <harti@FreeBSD.org> | 2005-10-04 15:03:39 +0000 |
---|---|---|
committer | harti <harti@FreeBSD.org> | 2005-10-04 15:03:39 +0000 |
commit | 0b891ae48d7ae6ffe1eb8f128a7eba64b3a50d65 (patch) | |
tree | de41d8718ee034bd83af590875c2e1bd2ff8356d /usr.sbin | |
parent | c4dcdd04d2342ccaa20f466e1edede7e3008a09c (diff) | |
download | FreeBSD-src-0b891ae48d7ae6ffe1eb8f128a7eba64b3a50d65.zip FreeBSD-src-0b891ae48d7ae6ffe1eb8f128a7eba64b3a50d65.tar.gz |
Catch up with the import of bsnmp-1.11. Add a couple of new
configuration flags to CFLAGS.
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/bsnmpd/bsnmpd/Makefile | 3 | ||||
-rw-r--r-- | usr.sbin/bsnmpd/gensnmptree/Makefile | 2 | ||||
-rw-r--r-- | usr.sbin/bsnmpd/modules/Makefile.inc | 2 |
3 files changed, 6 insertions, 1 deletions
diff --git a/usr.sbin/bsnmpd/bsnmpd/Makefile b/usr.sbin/bsnmpd/bsnmpd/Makefile index 334d435..5362dc4 100644 --- a/usr.sbin/bsnmpd/bsnmpd/Makefile +++ b/usr.sbin/bsnmpd/bsnmpd/Makefile @@ -24,7 +24,8 @@ DEFS= tree.def DEFSDIR= ${SHAREDIR}/snmp/defs CFLAGS+= -I${CONTRIB}/lib -I${CONTRIB}/snmpd -I. -DUSE_LIBBEGEMOT -CFLAGS+= -DUSE_TCPWRAPPERS +CFLAGS+= -DUSE_TCPWRAPPERS -DQUADFMT='"llu"' -DQUADXFMT='"llx"' +CFLAGS+= -DHAVE_STDINT_H -DHAVE_INTTYPES_H DPADD= ${LIBBEGEMOT} ${LIBBSNMP} LDADD= -lbegemot -lbsnmp -lwrap diff --git a/usr.sbin/bsnmpd/gensnmptree/Makefile b/usr.sbin/bsnmpd/gensnmptree/Makefile index c97ee7d..11c6a3b 100644 --- a/usr.sbin/bsnmpd/gensnmptree/Makefile +++ b/usr.sbin/bsnmpd/gensnmptree/Makefile @@ -7,5 +7,7 @@ CONTRIB=${.CURDIR}/../../../contrib/bsnmp PROG= gensnmptree CFLAGS+= -I${CONTRIB}/lib +CFLAGS+= -DQUADFMT='"llu"' -DQUADXFMT='"llx"' -DHAVE_STDINT_H +CFLAGS+= -DHAVE_INTTYPES_H .include <bsd.prog.mk> diff --git a/usr.sbin/bsnmpd/modules/Makefile.inc b/usr.sbin/bsnmpd/modules/Makefile.inc index eb4a867..2ae5615 100644 --- a/usr.sbin/bsnmpd/modules/Makefile.inc +++ b/usr.sbin/bsnmpd/modules/Makefile.inc @@ -8,6 +8,8 @@ SHLIB_NAME= snmp_${MOD}.so.${SHLIB_MAJOR} SRCS+= ${MOD}_oid.h ${MOD}_tree.c ${MOD}_tree.h CLEANFILES+= ${MOD}_oid.h ${MOD}_tree.c ${MOD}_tree.h CFLAGS+= -I${CONTRIB}/lib -I${CONTRIB}/snmpd -I. +CFLAGS+= -DQUADFMT='"llu"' -DQUADXFMT='"llx"' -DHAVE_STDINT_H +CFLAGS+= -DHAVE_INTTYPES_H ${MOD}_oid.h: ${MOD}_tree.def ${EXTRAMIBDEFS} cat ${.ALLSRC} | gensnmptree -e ${XSYM} > ${.TARGET} |