Update to version 1.1.3
- continue evolution of iostreams usage to keep up with changes to libstdc++-v3. Many thanks for reinstating a filebuf constructor that accepts an integer file descriptor. Hard to wrap them around sockets any other way. - fix problem with use of ACE on Darwin with gcc-3.3. - fix problem with lexical scanning introduced when "#" comment lines were first handled.
This commit is contained in:
parent
d04d69e6b5
commit
bce292dbc6
4 changed files with 26 additions and 23 deletions
|
@ -1,6 +1,6 @@
|
|||
# $NetBSD: Makefile,v 1.7 2004/01/20 12:18:16 agc Exp $
|
||||
# $NetBSD: Makefile,v 1.8 2004/05/29 13:06:29 markd Exp $
|
||||
|
||||
DISTNAME= ivtools-1.1.2
|
||||
DISTNAME= ivtools-1.1.3
|
||||
CATEGORIES= graphics
|
||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=ivtools/}
|
||||
EXTRACT_SUFX= .tgz
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
@comment $NetBSD: PLIST,v 1.3 2003/11/18 21:09:18 markd Exp $
|
||||
@comment $NetBSD: PLIST,v 1.4 2004/05/29 13:06:29 markd Exp $
|
||||
bin/comdraw
|
||||
bin/comterp
|
||||
bin/comtest
|
||||
|
@ -108,7 +108,10 @@ include/DrawServ/drawcatalog.h
|
|||
include/DrawServ/drawclasses.h
|
||||
include/DrawServ/drawcomps.h
|
||||
include/DrawServ/drawcreator.h
|
||||
include/DrawServ/draweditor.h
|
||||
include/DrawServ/drawfunc.h
|
||||
include/DrawServ/drawkit.h
|
||||
include/DrawServ/drawserv.h
|
||||
include/DrawServ/drawviews.h
|
||||
include/FrameUnidraw/framecatalog.h
|
||||
include/FrameUnidraw/frameclasses.h
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
$NetBSD: distinfo,v 1.4 2003/12/14 12:02:17 markd Exp $
|
||||
$NetBSD: distinfo,v 1.5 2004/05/29 13:06:29 markd Exp $
|
||||
|
||||
SHA1 (ivtools-1.1.2.tgz) = 806ef6c2e86e9e4ef786511154410488554657ae
|
||||
Size (ivtools-1.1.2.tgz) = 2159581 bytes
|
||||
SHA1 (ivtools-1.1.3.tgz) = 5aae7973be6e5b19df6c244ab91e87a9c20eb6a9
|
||||
Size (ivtools-1.1.3.tgz) = 2183696 bytes
|
||||
SHA1 (patch-aa) = 191619b7db43c47d7cc991bc33787434f0ef6948
|
||||
SHA1 (patch-ab) = d333341342e946e1bb44c332f35f1601dd29fce3
|
||||
SHA1 (patch-ab) = 538b98662592212b03afda8c82b53ec7c2bff094
|
||||
SHA1 (patch-ac) = bcda1a0b71b669ad6a4900077564c226af262708
|
||||
|
|
|
@ -1,22 +1,22 @@
|
|||
$NetBSD: patch-ab,v 1.1 2003/11/18 21:09:18 markd Exp $
|
||||
$NetBSD: patch-ab,v 1.2 2004/05/29 13:06:29 markd Exp $
|
||||
|
||||
--- configure.orig 2003-10-23 07:16:29.000000000 +1300
|
||||
--- configure.orig 2004-01-30 07:22:33.000000000 +1300
|
||||
+++ configure
|
||||
@@ -1643,7 +1643,7 @@ if eval "test \"`echo '$''{'ac_cv_lib_$a
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
@@ -3635,7 +3635,7 @@ if test "${ac_cv_lib_stdcpp_peek__7istre
|
||||
echo $ECHO_N "(cached) $ECHO_C" >&6
|
||||
else
|
||||
ac_save_LIBS="$LIBS"
|
||||
ac_check_lib_save_LIBS=$LIBS
|
||||
-LIBS="-lstdc++ $LIBS"
|
||||
+LIBS="-lstdc++ -lm $LIBS"
|
||||
cat > conftest.$ac_ext <<EOF
|
||||
#line 1649 "configure"
|
||||
#include "confdefs.h"
|
||||
@@ -1684,7 +1684,7 @@ if eval "test \"`echo '$''{'ac_cv_lib_$a
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
+LIBS="-lstdc++ -lm $LIBS"
|
||||
cat >conftest.$ac_ext <<_ACEOF
|
||||
#line $LINENO "configure"
|
||||
/* confdefs.h. */
|
||||
@@ -3695,7 +3695,7 @@ if test "${ac_cv_lib_stdcpp__ZNSi4peekEv
|
||||
echo $ECHO_N "(cached) $ECHO_C" >&6
|
||||
else
|
||||
ac_save_LIBS="$LIBS"
|
||||
ac_check_lib_save_LIBS=$LIBS
|
||||
-LIBS="-lstdc++ $LIBS"
|
||||
+LIBS="-lstdc++ -lm $LIBS"
|
||||
cat > conftest.$ac_ext <<EOF
|
||||
#line 1690 "configure"
|
||||
#include "confdefs.h"
|
||||
+LIBS="-lstdc++ -lm $LIBS"
|
||||
cat >conftest.$ac_ext <<_ACEOF
|
||||
#line $LINENO "configure"
|
||||
/* confdefs.h. */
|
||||
|
|
Loading…
Reference in a new issue