summaryrefslogtreecommitdiff
path: root/lang/icon/patches/patch-ap
diff options
context:
space:
mode:
authorjtb <jtb>2003-03-24 12:12:08 +0000
committerjtb <jtb>2003-03-24 12:12:08 +0000
commit5c27ff3f3dc8b9c043a0bcb5512069a9b9c0de96 (patch)
treeebba86dee82e98ee748e519e0f77ba508a0a4d9a /lang/icon/patches/patch-ap
parent56480d06f6071e8d2b01d7da13dd95927bc0fc1a (diff)
downloadpkgsrc-5c27ff3f3dc8b9c043a0bcb5512069a9b9c0de96.tar.gz
Update of icon to 9.4.1.
Changes: * Support for NetBSD on PowerPC based systems. * An Icon source file can be made executable under Unix by prefixing it with a comment line #!/usr/bin/env icon and setting its execute permission bit. This uses a new icon command, which in another form allows a small Icon program to be embedded within a shell script. See the new man page for details. The traditional icont command remains available for less specialized purposes. * The performance of large sets and tables has been improved. * Some minor bugs have been fixed.
Diffstat (limited to 'lang/icon/patches/patch-ap')
-rw-r--r--lang/icon/patches/patch-ap23
1 files changed, 0 insertions, 23 deletions
diff --git a/lang/icon/patches/patch-ap b/lang/icon/patches/patch-ap
deleted file mode 100644
index 6e818a06744..00000000000
--- a/lang/icon/patches/patch-ap
+++ /dev/null
@@ -1,23 +0,0 @@
-$NetBSD: patch-ap,v 1.4 2001/06/25 19:28:42 jtb Exp $
-
---- /dev/null Mon Jun 25 20:21:04 2001
-+++ config/unix/netbsd/custom.sh
-@@ -0,0 +1,18 @@
-+#!/bin/sh
-+#
-+# custom setup script for netbsd
-+
-+SRC=../../../src
-+ARCH=`uname -m`
-+
-+if [ -f rswitch.c.$ARCH ]; then
-+ cp -f rswitch.c.$ARCH $SRC/common/rswitch.c
-+elif [ -f rswitch.s.$ARCH ]; then
-+ cp -f rswitch.s.$ARCH $SRC/common/rswitch.s
-+else
-+ echo "#define NoCoexpr" >>$SRC/h/define.h
-+fi
-+
-+if [ -f define.h.$ARCH ]; then
-+ cat define.h.$ARCH >>$SRC/h/define.h
-+fi