diff options
author | 2003-01-24 16:36:17 +0000 | |
---|---|---|
committer | 2003-01-24 16:36:17 +0000 | |
commit | 3e9bfe625643973b3cd03c94e6fe1babd9086f96 (patch) | |
tree | 610d68d2000651f76932b4aacaaa4e7277ad7e9a | |
parent | ndc doesn't start named if named_flags=NO in /etc/rc.conf (diff) | |
download | wireguard-openbsd-3e9bfe625643973b3cd03c94e6fe1babd9086f96.tar.xz wireguard-openbsd-3e9bfe625643973b3cd03c94e6fe1babd9086f96.zip |
compile rdata.c using -O0 on sparc64 due to bug in propolice
-rw-r--r-- | usr.sbin/bind/lib/dns/Makefile.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/usr.sbin/bind/lib/dns/Makefile.in b/usr.sbin/bind/lib/dns/Makefile.in index 125df367fd5..0d1af4d714b 100644 --- a/usr.sbin/bind/lib/dns/Makefile.in +++ b/usr.sbin/bind/lib/dns/Makefile.in @@ -90,6 +90,11 @@ version.@O@: version.c -DLIBAGE=${LIBAGE} \ -c ${srcdir}/version.c +.if ${MACHINE_ARCH:Msparc64} +rdata.@O@: rdata.c + ${LIBTOOL} ${CC} ${ALL_CFLAGS} -O0 -c $< +.endif + libdns.@SA@: ${OBJS} ${AR} ${ARFLAGS} $@ ${OBJS} ${RANLIB} $@ |