head 1.5; access; symbols pkgsrc-2013Q2:1.5.0.4 pkgsrc-2013Q2-base:1.5 pkgsrc-2012Q4:1.5.0.2 pkgsrc-2012Q4-base:1.5 pkgsrc-2012Q2:1.4.0.52 pkgsrc-2012Q2-base:1.4 pkgsrc-2012Q1:1.4.0.50 pkgsrc-2012Q1-base:1.4 pkgsrc-2011Q4:1.4.0.48 pkgsrc-2011Q4-base:1.4 pkgsrc-2011Q3:1.4.0.46 pkgsrc-2011Q3-base:1.4 pkgsrc-2011Q2:1.4.0.44 pkgsrc-2011Q2-base:1.4 pkgsrc-2011Q1:1.4.0.42 pkgsrc-2011Q1-base:1.4 pkgsrc-2010Q4:1.4.0.40 pkgsrc-2010Q4-base:1.4 pkgsrc-2010Q3:1.4.0.38 pkgsrc-2010Q3-base:1.4 pkgsrc-2010Q2:1.4.0.36 pkgsrc-2010Q2-base:1.4 pkgsrc-2010Q1:1.4.0.34 pkgsrc-2010Q1-base:1.4 pkgsrc-2009Q4:1.4.0.32 pkgsrc-2009Q4-base:1.4 pkgsrc-2009Q3:1.4.0.30 pkgsrc-2009Q3-base:1.4 pkgsrc-2009Q2:1.4.0.28 pkgsrc-2009Q2-base:1.4 pkgsrc-2009Q1:1.4.0.26 pkgsrc-2009Q1-base:1.4 pkgsrc-2008Q4:1.4.0.24 pkgsrc-2008Q4-base:1.4 pkgsrc-2008Q3:1.4.0.22 pkgsrc-2008Q3-base:1.4 cube-native-xorg:1.4.0.20 cube-native-xorg-base:1.4 pkgsrc-2008Q2:1.4.0.18 pkgsrc-2008Q2-base:1.4 cwrapper:1.4.0.16 pkgsrc-2008Q1:1.4.0.14 pkgsrc-2008Q1-base:1.4 pkgsrc-2007Q4:1.4.0.12 pkgsrc-2007Q4-base:1.4 pkgsrc-2007Q3:1.4.0.10 pkgsrc-2007Q3-base:1.4 pkgsrc-2007Q2:1.4.0.8 pkgsrc-2007Q2-base:1.4 pkgsrc-2007Q1:1.4.0.6 pkgsrc-2007Q1-base:1.4 pkgsrc-2006Q4:1.4.0.4 pkgsrc-2006Q4-base:1.4 pkgsrc-2006Q3:1.4.0.2 pkgsrc-2006Q3-base:1.4 pkgsrc-2006Q2:1.3.0.4 pkgsrc-2006Q2-base:1.3 pkgsrc-2006Q1:1.3.0.2 pkgsrc-2006Q1-base:1.3 pkgsrc-2005Q4:1.2.0.18 pkgsrc-2005Q4-base:1.2 pkgsrc-2005Q3:1.2.0.16 pkgsrc-2005Q3-base:1.2 pkgsrc-2005Q2:1.2.0.14 pkgsrc-2005Q2-base:1.2 pkgsrc-2005Q1:1.2.0.12 pkgsrc-2005Q1-base:1.2 pkgsrc-2004Q4:1.2.0.10 pkgsrc-2004Q4-base:1.2 pkgsrc-2004Q3:1.2.0.8 pkgsrc-2004Q3-base:1.2 pkgsrc-2004Q2:1.2.0.6 pkgsrc-2004Q2-base:1.2 pkgsrc-2004Q1:1.2.0.4 pkgsrc-2004Q1-base:1.2 pkgsrc-2003Q4:1.2.0.2 pkgsrc-2003Q4-base:1.2 buildlink2-base:1.2 comdex-fall-1999:1.1; locks; strict; comment @# @; 1.5 date 2012.09.26.16.52.38; author christos; state dead; branches; next 1.4; 1.4 date 2006.08.19.23.34.54; author abs; state Exp; branches; next 1.3; 1.3 date 2006.03.23.13.41.41; author joerg; state Exp; branches; next 1.2; 1.2 date 2000.01.15.18.09.32; author christos; state dead; branches; next 1.1; 1.1 date 99.08.29.12.26.23; author kim; state Exp; branches; next ; desc @@ 1.5 log @update to latest freerdist-0.94: * use intmax_t instead of long long * Don't limit the size of the environment * Don't leak a directory file descriptor * ansify * dynamically allocate EARGS * use getaddrinfo @ text @$NetBSD: patch-ag,v 1.4 2006/08/19 23:34:54 abs Exp $ --- config/os-type.orig 1999-08-04 16:57:30.000000000 +0100 +++ config/os-type @@@@ -75,7 +75,6 @@@@ fi if [ -z "${OS}" -a ! -z "${uname}" ]; then case "`$uname -a | tr '[A-Z]' '[a-z]'`" in "osf1"*) OS="osf1";; - *"4.0"*) OS=svr4;; # There has to be a better way *" dcosx "*) OS=dcosx;; *"cx/ux"*) OS=cxux;; *"hp-ux"*) OS=hpux;; # HP-UX 9.x @@@@ -102,6 +101,7 @@@@ if [ -z "${OS}" -a ! -z "${uname}" ]; th "linux"*) OS=linux;; "netbsd"*) OS="${osname}";; "freebsd"*) OS="${osname}${osmajver}";; + "dragonfly"*) OS="${osname}";; "openbsd"*) OS="${osname}";; "dgux"*) OS=dgux;; "unicos"*) OS=unicos;; @@@@ -109,6 +109,13 @@@@ if [ -z "${OS}" -a ! -z "${uname}" ]; th esac fi +# At least do this _after_ the above to avoid some false matches +if [ -z "${OS}" -a ! -z "${uname}" ]; then + case "`$uname -a | tr '[A-Z]' '[a-z]'`" in + *"4.0"*) OS=svr4;; # There has to be a better way + esac +fi + # # NeXTStep specific. # @ 1.4 log @If guessing OS type has to have a '*4.0*' entry to try to match svr4, at least have it after matching specific other OS versions, such as... 'netbsd' (netbsd 4.0 anyone?) @ text @d1 1 a1 1 $NetBSD: patch-ag,v 1.3 2006/03/23 13:41:41 joerg Exp $ @ 1.3 log @Add DragonFly support. @ text @d1 1 a1 1 $NetBSD$ d3 1 a3 1 --- config/os-type.orig 2006-03-23 13:11:00.000000000 +0000 d5 9 a13 1 @@@@ -102,6 +102,7 @@@@ if [ -z "${OS}" -a ! -z "${uname}" ]; th d21 14 @ 1.2 log @replace rdist-6.1.4 with freerdist-0.91. 6.1.4 is just too buggy. @ text @d1 1 a1 1 $NetBSD: patch-ag,v 1.1 1999/08/29 12:26:23 kim Exp $ d3 10 a12 18 --- mf/Makefile.var.orig Mon Mar 23 20:11:06 1998 +++ mf/Makefile.var Sun Aug 29 08:00:16 1999 @@@@ -172,6 +172,7 @@@@ config/mf.mipsos4 \ config/mf.mipsos5 \ config/mf.ncr \ + config/mf.netbsd \ config/mf.nextstep2 \ config/mf.nextstep3 \ config/mf.osf1 \ @@@@ -214,6 +215,7 @@@@ config/os-mipsos4.h \ config/os-mipsos5.h \ config/os-ncr.h \ + config/os-netbsd.h \ config/os-nextstep2.h \ config/os-nextstep3.h \ config/os-osf1.h \ @ 1.1 log @FIX: sendmail is /usr/sbin/sendmail on NetBSD (now notify works). While fixing that, I broke out the huge multi-file patch-aa into separate patch files for each patched file in the distribution, and moved new files into ${FILESDIR} for easier maintenance. @ text @d1 1 a1 1 $NetBSD$ @