diff options
author | dmcmahill <dmcmahill@pkgsrc.org> | 2000-07-06 16:24:46 +0000 |
---|---|---|
committer | dmcmahill <dmcmahill@pkgsrc.org> | 2000-07-06 16:24:46 +0000 |
commit | 8465c5230fc1e4dc9d8a394289a52b028b71be5b (patch) | |
tree | 66c8cdfcec8b95d55b3d46d6deb83bd76835f4d0 /lang/STk/patches | |
parent | f047a3acc20ba97f85ddb0f27befa21b51ed4f0b (diff) | |
download | pkgsrc-8465c5230fc1e4dc9d8a394289a52b028b71be5b.tar.gz |
- make this work on arch's where 'uname -m' != 'uname -p', for example
the m68k and mipsel ports. This address PR 9781 filed by Michael Wolfson
and also fixes recently noted bulk pkgsrc build failures on pmax.
The os version/machine type specific string is now consistently
${OPSYS}-${OS_VERSION}-${MACHINE_ARCH}
Diffstat (limited to 'lang/STk/patches')
-rw-r--r-- | lang/STk/patches/patch-ac | 14 | ||||
-rw-r--r-- | lang/STk/patches/patch-ad | 14 |
2 files changed, 28 insertions, 0 deletions
diff --git a/lang/STk/patches/patch-ac b/lang/STk/patches/patch-ac new file mode 100644 index 00000000000..11f2a94e5ed --- /dev/null +++ b/lang/STk/patches/patch-ac @@ -0,0 +1,14 @@ +$NetBSD: patch-ac,v 1.1 2000/07/06 16:24:49 dmcmahill Exp $ + +allow sharing between different arch's which use the same processor +Ie, use 'm68k' instead of 'amiga', 'mac68k', 'hp300', etc. + +--- configure.in.orig Sat Jun 6 08:19:03 1998 ++++ configure.in Thu Jul 6 10:24:09 2000 +@@ -15,5 +15,5 @@ + os=`uname -s` + version=`uname -r` +-machine=`uname -m` ++machine=`uname -p` + + case $os in diff --git a/lang/STk/patches/patch-ad b/lang/STk/patches/patch-ad new file mode 100644 index 00000000000..221e2f2c2c5 --- /dev/null +++ b/lang/STk/patches/patch-ad @@ -0,0 +1,14 @@ +$NetBSD: patch-ad,v 1.1 2000/07/06 16:24:49 dmcmahill Exp $ + +allow sharing between different arch's which use the same processor +Ie, use 'm68k' instead of 'amiga', 'mac68k', 'hp300', etc. + +--- configure.orig Sat Jun 6 08:19:03 1998 ++++ configure Thu Jul 6 10:23:59 2000 +@@ -554,5 +554,5 @@ + os=`uname -s` + version=`uname -r` +-machine=`uname -m` ++machine=`uname -p` + + case $os in |