summaryrefslogtreecommitdiff
path: root/devel/libslang
diff options
context:
space:
mode:
authormjl <mjl@pkgsrc.org>2000-02-25 01:27:15 +0000
committermjl <mjl@pkgsrc.org>2000-02-25 01:27:15 +0000
commit03bdba39c325bfc9569367bcdb94ee8f2b38a99a (patch)
tree43fa3f261052b2d3963a62e50d43f1fc1763291e /devel/libslang
parentdd4eb2478fea1a0c157e2ab8280bc26aaa0c7e16 (diff)
downloadpkgsrc-03bdba39c325bfc9569367bcdb94ee8f2b38a99a.tar.gz
Update to 1.4.0.
Changes since 1.3.10 1. If a floating point exception occurs and the OS allows the library to handle it without forcing a longjmp, then SL_FLOATING_EXCEPTION will get generated instead of SL_INTRINSIC_ERROR. Note: Linux provides no way to handle floating point exceptions without forcing a longjmp. In my opinion, this is a flaw. 2. SLang_pop_double was returning the wrong value for short and character types. 3. New intrinsic: is_struct_type(X) ==> non-zero is X is a struct. 4. typecast operation from user defined type to Struct_Type added. 5. slkeypad.c: DOS/Windows DELETE_KEY definition added (Doug Kaufman <dkaufman@rahul.net>) 6. slposdir.c: Do not depend upon the existence of rmdir on VMS systems. 7. slang.c: abs, sign, mul2, chs, sqr were not being treated as function calls. 8. sldisply.c:SLtt_cls: If the terminal is a color terminal but being used as a black and white terminal, then reset colors before clearing. 9. path_sans_extname intrinsic added. 10. slimport.c: If module defines deinit_NAME, will be be called prior to unloading the module. (Ulrich Dessauer <des@gmx.de>)
Diffstat (limited to 'devel/libslang')
-rw-r--r--devel/libslang/Makefile8
-rw-r--r--devel/libslang/files/md54
-rw-r--r--devel/libslang/files/patch-sum4
-rw-r--r--devel/libslang/patches/patch-aa4
-rw-r--r--devel/libslang/pkg/PLIST4
5 files changed, 12 insertions, 12 deletions
diff --git a/devel/libslang/Makefile b/devel/libslang/Makefile
index f196a3729ce..292cea62f0e 100644
--- a/devel/libslang/Makefile
+++ b/devel/libslang/Makefile
@@ -1,12 +1,12 @@
-# $NetBSD: Makefile,v 1.17 2000/01/03 15:58:11 abs Exp $
+# $NetBSD: Makefile,v 1.18 2000/02/25 01:27:15 mjl Exp $
# FreeBSD Id: Makefile,v 1.10 1997/07/17 15:12:41 max Exp
#
-DISTNAME= slang-1.3.10
+DISTNAME= slang-1.4.0
PKGNAME= lib${DISTNAME}
CATEGORIES= devel
-MASTER_SITES= ftp://space.mit.edu/pub/davis/slang/v1.3/ \
- http://gd.tuwien.ac.at/editors/davis/slang/v1.3/
+MASTER_SITES= ftp://space.mit.edu/pub/davis/slang/v1.4/ \
+ http://gd.tuwien.ac.at/editors/davis/slang/v1.4/
MAINTAINER= packages@netbsd.org
HOMEPAGE= http://space.mit.edu/~davis/slang.html
diff --git a/devel/libslang/files/md5 b/devel/libslang/files/md5
index 5659e45a37d..dc73be1b668 100644
--- a/devel/libslang/files/md5
+++ b/devel/libslang/files/md5
@@ -1,3 +1,3 @@
-$NetBSD: md5,v 1.7 2000/01/01 17:17:57 mjl Exp $
+$NetBSD: md5,v 1.8 2000/02/25 01:27:15 mjl Exp $
-MD5 (slang-1.3.10.tar.gz) = 3157a9496f21b169c1b3d8f25bcd51b8
+MD5 (slang-1.4.0.tar.gz) = dcb64b71838015a4c5bf457f8aaf8855
diff --git a/devel/libslang/files/patch-sum b/devel/libslang/files/patch-sum
index f07711523af..b77e03ad4da 100644
--- a/devel/libslang/files/patch-sum
+++ b/devel/libslang/files/patch-sum
@@ -1,4 +1,4 @@
-$NetBSD: patch-sum,v 1.6 2000/01/09 02:28:53 mjl Exp $
+$NetBSD: patch-sum,v 1.7 2000/02/25 01:27:15 mjl Exp $
-MD5 (patch-aa) = fb262e1c9439388047b5bb7854912c4a
+MD5 (patch-aa) = f9e60e3fd73c99759c782e7e54154ef1
MD5 (patch-ac) = 4c081308e73f2d4375206d113626acb8
diff --git a/devel/libslang/patches/patch-aa b/devel/libslang/patches/patch-aa
index ad7bb56ceab..0739a0c532b 100644
--- a/devel/libslang/patches/patch-aa
+++ b/devel/libslang/patches/patch-aa
@@ -1,4 +1,4 @@
-$NetBSD: patch-aa,v 1.10 2000/01/01 17:17:57 mjl Exp $
+$NetBSD: patch-aa,v 1.11 2000/02/25 01:27:16 mjl Exp $
--- src/Makefile.in.orig Sun Nov 14 07:21:11 1999
+++ src/Makefile.in Sat Jan 1 17:53:05 2000
@@ -63,7 +63,7 @@ $NetBSD: patch-aa,v 1.10 2000/01/01 17:17:57 mjl Exp $
- cd $(OBJDIR); $(AR_CR) $(NORMAL_LIB) $(OFILES)
- $(RANLIB) $(OBJDIR_NORMAL_LIB)
+ cd $(OBJDIR); $(LIBTOOL) --mode=link cc -o $(NORMAL_LIB) $(OFILES:.o=.lo) \
-+ -rpath $(PREFIX)/lib -version-info 1:3
++ -rpath $(PREFIX)/lib -version-info 1:4
@echo ""
@echo $(NORMAL_LIB) created in $(OBJDIR)
diff --git a/devel/libslang/pkg/PLIST b/devel/libslang/pkg/PLIST
index d4a3bb3f7c1..27ed2e99c5d 100644
--- a/devel/libslang/pkg/PLIST
+++ b/devel/libslang/pkg/PLIST
@@ -1,6 +1,6 @@
-@comment $NetBSD: PLIST,v 1.10 1999/09/20 18:44:00 tron Exp $
+@comment $NetBSD: PLIST,v 1.11 2000/02/25 01:27:16 mjl Exp $
lib/libslang.a
-lib/libslang.so.1.3
+lib/libslang.so.1.4
include/slcurses.h
include/slang.h
share/doc/slang/COPYING