$Id: all.diff.txt,v 1.1 2010-04-22 01:52:31 lindes Exp $ diff -ru src/port/irix/README src.modified/port/irix/README --- src/port/irix/README Thu Apr 24 14:48:06 1997 +++ src.modified/port/irix/README Mon Jul 21 19:13:50 1997 @@ -1,5 +1,15 @@ -IRIX port by David Lindes, based on the solaris port: +IRIX port by David Lindes, originally based on the solaris port: +NOTE: The latest information on the IRIX port of BIND can be +found on the web at: + +http://www.daveltd.com/bind-irix-port/ + +Please check there for relevant notes, but I'll try to duplicate +things here. (Just be warned that you may have an old copy of +this file.) + + Current status for various versions of IRIX: builds without any warnings on IRIX 5.3 @@ -6,6 +16,36 @@ builds with ld warnings only on IRIX 6.2 builds with numerous warnings on IRIX 6.4 + +Other known issues: + +- the 'install' command in IRIX is not compatible with + other 'install' programs. If you have the x_dev.sw.binaries + inst(1M) image (from the IDO) installed, there is a + 'bsdinst' command that is compatible, and which this + distribution will attempt to use. + + + Otherwise, you will need to get a version of 'install' + that is compatible, and update the file + port/irix/Makefile.set to point to the right place. + + (Install comes from the X11 distribution, and is also + available from the 'sh-utils' GNU package as install-sh, + among other places.) + +- After IRIX 6.3, the /bin/sh on IRIX is actually a korn + shell, so if you use any of the ksh special variables + (like CDPATH), you may encounter problems with make. + Try unsetting these variables (e.g. `make CDPATH=""`). + +- At least in IRIX 5.3 and 6.2, 'make' won't work with a + a shell that's not bourne-shell compatible as your + "SHELL" environment variable. Try running make with + SHELL set to /bin/sh (e.g. `make SHELL=/bin/sh`). + + If you find bugs with, or improvements that can be made to, this portion of the software, please copy bind-irix-port-bugs@daveltd.com on your mail to the standard address for reporting bugs in bind. + $Id: all.diff.txt,v 1.1 2010-04-22 01:52:31 lindes Exp $ diff -ru src/port/irix/Makefile.set src.modified/port/irix/Makefile.set --- src/port/irix/Makefile.set Thu Apr 24 14:48:05 1997 +++ src.modified/port/irix/Makefile.set Mon Jul 21 18:23:34 1997 @@ -9,7 +9,7 @@ 'LEX=lex' 'YACC=yacc' 'SYSLIBS=-ll' -'INSTALL=/sbin/install' +'INSTALL=bsdinst' 'PIDDIR=/etc' 'MANDIR=man' 'MANROFF=man' $Id: all.diff.txt,v 1.1 2010-04-22 01:52:31 lindes Exp $ diff -ru src/port/irix/probe src.modified/port/irix/probe --- src/port/irix/probe Thu Apr 24 14:48:06 1997 +++ src.modified/port/irix/probe Wed Jul 23 11:09:05 1997 @@ -4,7 +4,7 @@ if [ -f $uname ]; then case `$uname -s`-`$uname -r` in - IRIX-[56].*) exit 0 ;; + IRIX*-[56].*) exit 0 ;; esac fi $Id: all.diff.txt,v 1.1 2010-04-22 01:52:31 lindes Exp $ NOTE: the patch utility may not install this file in the correct place, since it did not exist previously. If it does not, please run the following commands: mkdir src/port/irix/bin mv mkdep src/port/irix/bin/. chmod 755 src/port/irix/bin/mkdep diff -ru src/port/irix/bin/mkdep src.modified/port/irix/bin/mkdep --- src/port/irix/bin/mkdep Mon Jul 21 19:07:23 1997 +++ src.modified/port/irix/bin/mkdep Mon Jul 21 18:23:34 1997 @@ -0,0 +1,134 @@ +#!/bin/sh - + +## ++Copyright++ 1987 +## - +## Copyright (c) 1987 Regents of the University of California. +## All rights reserved. +## +## Redistribution and use in source and binary forms, with or without +## modification, are permitted provided that the following conditions +## are met: +## 1. Redistributions of source code must retain the above copyright +## notice, this list of conditions and the following disclaimer. +## 2. Redistributions in binary form must reproduce the above copyright +## notice, this list of conditions and the following disclaimer in the +## documentation and/or other materials provided with the distribution. +## 3. All advertising materials mentioning features or use of this software +## must display the following acknowledgement: +## This product includes software developed by the University of +## California, Berkeley and its contributors. +## 4. Neither the name of the University nor the names of its contributors +## may be used to endorse or promote products derived from this software +## without specific prior written permission. +## THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND +## ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +## IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +## ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE +## FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +## DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS +## OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +## HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +## LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY +## OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF +## SUCH DAMAGE. +## - +## Portions Copyright (c) 1993 by Digital Equipment Corporation. +## +## Permission to use, copy, modify, and distribute this software for any +## purpose with or without fee is hereby granted, provided that the above +## copyright notice and this permission notice appear in all copies, and that +## the name of Digital Equipment Corporation not be used in advertising or +## publicity pertaining to distribution of the document or software without +## specific, written prior permission. +## +## THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL +## WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES +## OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL DIGITAL EQUIPMENT +## CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL +## DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR +## PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS +## ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS +## SOFTWARE. +## - +## --Copyright-- + +# +# @(#)mkdep.sh 5.18 (Berkeley) 3/5/89 +# +PATH=/bin:/usr/bin:/usr/ucb +export PATH + +CC=${CC:-cc} # use environment $CC, if available + +D=.depend # default dependency file is .depend +append=0 + +while : + do case "$1" in + # -a appends to the depend file + -a) + append=1 + shift ;; + + # -f allows you to select a makefile name + -f) + D=$2 + shift; shift ;; + + # the -p flag produces "program: program.c" style dependencies + # so .o's don't get produced + -p) + SED='s;\.o;;' + shift ;; + *) + break ;; + esac +done + +if [ $# = 0 ] ; then + echo 'usage: mkdep [-p] [-f depend_file] [cc_flags] file ...' + exit 1 +fi + +TMP=/tmp/mkdep$$ + +trap 'rm -f $TMP ; exit 1' 1 2 3 13 15 + +$CC -M $* | +sed " + s; \./; ;g + /\.c:$/d + $SED" | +awk '{ + if ($1 != prev) { + if (rec != "") + print rec; + rec = $0; + prev = $1; + } + else { + if (length(rec $2) > 78) { + print rec; + rec = $0; + } + else + rec = rec " " $2 + } +} +END { + print rec +}' > $TMP + +if [ $? != 0 ]; then + echo 'mkdep: compile failed.' + rm -f $TMP + exit 1 +fi + +if [ $append = 1 ]; then + cat $TMP >> $D + rm -f $TMP +else + mv $TMP $D +fi +exit 0