2
0
mirror of https://gitlab.isc.org/isc-projects/dhcp synced 2025-08-31 06:15:55 +00:00

Make a special case for NetBSD/arm32.

This commit is contained in:
Ted Lemon
2000-06-09 18:26:59 +00:00
parent e651f9b234
commit f0cf3e15d3
2 changed files with 20 additions and 1 deletions

View File

@@ -206,6 +206,21 @@ MINORVERSION=MinorVersion
#SCRIPT=netbsd
##--netbsd--
## NetBSD Arm32
## The arm32 gcc currently has a bug in the conversion warning code. :'(
## Don't consider this to be true when you read this - it's probably
## not permanent...
##--netbsd-arm32--
#CF = cf/netbsd.h
#COPTS = -Wall -Wstrict-prototypes -Wno-unused -Wno-comment \
# -Wno-uninitialized -Werror \
# -Wimplicit-function-declaration -Wpointer-arith -Wcast-qual \
# -Wwrite-strings -Wmissing-prototypes \
# -Wmissing-declarations -Wnested-externs \
# -pipe $(BINDDEF)
#SCRIPT=netbsd
##--netbsd-arm32--
## Ultrix
##--ultrix--
#BINDIR = /usr/etc

6
configure vendored
View File

@@ -59,7 +59,11 @@ if [ "$sysname" = "" ]; then
fi;;
esac;;
NetBSD)
sysname=netbsd;;
hw=`uname -m`
case $hw in
arm32) sysname=netbsd-arm32;;
*) sysname=netbsd;;
esac;;
OpenBSD)
sysname=openbsd;;
FreeBSD)