Update to 1.0.1

PR:		ports/77883
Submitted by:	maintainer
This commit is contained in:
Volker Stolz 2005-02-23 13:30:21 +00:00
parent 94d24a2042
commit 26bf37672b
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=129598
4 changed files with 30 additions and 13 deletions

View File

@ -7,7 +7,7 @@
#
PORTNAME= afnix
PORTVERSION= 1.0.0
PORTVERSION= 1.0.1
CATEGORIES= lang
MASTER_SITES= http://www.afnix.org/ftp/%SUBDIR%/
MASTER_SITE_SUBDIR= ${PORTNAME}-${PORTVERSION:S,.,-,g}
@ -28,7 +28,6 @@ MAN1= afnix.1 axc.1 axd.1 axl.1
do-configure:
@${WRKSRC}/cnf/bin/${PORTNAME}-setup -o
@rm ${WRKSRC}/src/lib/txt/lib/Digest.[ch]pp
post-install:
@${STRIP_CMD} ${PREFIX}/bin/${PORTNAME}

View File

@ -1,2 +1,2 @@
MD5 (afnix-src-1-0-0.tgz) = 57260a0d02f64da0d3c6e23e041dcbbf
SIZE (afnix-src-1-0-0.tgz) = 524526
MD5 (afnix-src-1-0-1.tgz) = aeb777afcb065bf5a73d5a73ec10a9b4
SIZE (afnix-src-1-0-1.tgz) = 521037

View File

@ -1,16 +1,14 @@
--- cnf/mak/afnix-defs.mak.orig Wed Feb 16 19:35:18 2005
+++ cnf/mak/afnix-defs.mak Wed Feb 16 19:37:55 2005
@@ -58,10 +58,10 @@
@@ -58,9 +58,9 @@
BINDIR = $(PREFIX)/bin
LIBDIR = $(PREFIX)/lib
SHARED = $(PREFIX)/share
-HDRDIR = $(SHARED)/include/afnix
+HDRDIR = $(PREFIX)/include/afnix
DOCDIR = $(SHARED)/doc/afnix
-MANDIR = $(SHARED)/man
-ETCDIR = $(SHARED)/etc/afnix
+MANDIR = $(PREFIX)/man
+ETCDIR = $(SHARED)/doc/afnix
HDRDIR = $(SHRDIR)/include/afnix
-DOCDIR = $(SHRDIR)/doc/afnix
+DOCDIR = $(SHRDIR)/share/doc/afnix
MANDIR = $(SHRDIR)/man
-ETCDIR = $(SHRDIR)/etc/afnix
+ETCDIR = $(SHRDIR)/share/doc/afnix
# ----------------------------------------------------------------------------
# - other shared commands and scripts -

View File

@ -0,0 +1,20 @@
--- src/std/lib/Cons.cpp.orig Thu Feb 17 05:58:04 2005
+++ src/std/lib/Cons.cpp Mon Feb 21 21:39:54 2005
@@ -153,7 +153,7 @@
}
// try to serialize the car
if (p_car == nilp) {
- os.write (Serial::SERIAL_NILP_ID);
+ os.write ((char)Serial::SERIAL_NILP_ID);
} else {
Serial* sobj = dynamic_cast <Serial*> (p_car);
if (sobj == nilp) {
@@ -165,7 +165,7 @@
}
// try to serialize the cdr
if (p_cdr == nilp) {
- os.write (Serial::SERIAL_NILP_ID);
+ os.write ((char)Serial::SERIAL_NILP_ID);
} else {
Serial* sobj = dynamic_cast <Serial*> (p_cdr);
if (sobj == nilp) {