]> git.ipfire.org Git - thirdparty/dhcp.git/commitdiff
Make a special case for NetBSD/arm32.
authorTed Lemon <source@isc.org>
Fri, 9 Jun 2000 18:26:59 +0000 (18:26 +0000)
committerTed Lemon <source@isc.org>
Fri, 9 Jun 2000 18:26:59 +0000 (18:26 +0000)
Makefile.conf
configure

index dc6b71bb0ed004582aaa2816bfef7b4091cceaaf..838b0317bb4e2791b06d73dd9f6b9b97cc282376 100644 (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
index 81276a95c306a45aeaa6683bff7847aed65ed0e8..ce2efce57b681de86b49a5c878c7e15a1e3c756c 100755 (executable)
--- a/configure
+++ b/configure
@@ -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)