diff options
author | ijliao <ijliao@FreeBSD.org> | 2003-05-12 16:30:33 +0800 |
---|---|---|
committer | ijliao <ijliao@FreeBSD.org> | 2003-05-12 16:30:33 +0800 |
commit | ae96c7789b51a968cd02eaeace3909362c334b2a (patch) | |
tree | 0ae83a5a7a2c9718166677e0fe3d64f55d7ae16a /security/botan | |
parent | 3805a95ebdcac3d5586c7ff5519ebd11d2883e34 (diff) | |
download | freebsd-ports-gnome-ae96c7789b51a968cd02eaeace3909362c334b2a.tar.gz freebsd-ports-gnome-ae96c7789b51a968cd02eaeace3909362c334b2a.tar.zst freebsd-ports-gnome-ae96c7789b51a968cd02eaeace3909362c334b2a.zip |
upgrade to 1.2.1
PR: 51903
Submitted by: Kirill Ponomarew <ponomarew@oberon.net>
Diffstat (limited to 'security/botan')
-rw-r--r-- | security/botan/Makefile | 2 | ||||
-rw-r--r-- | security/botan/distinfo | 2 | ||||
-rw-r--r-- | security/botan/files/patch-pipe_io.cpp | 34 | ||||
-rw-r--r-- | security/botan/pkg-plist | 2 |
4 files changed, 3 insertions, 37 deletions
diff --git a/security/botan/Makefile b/security/botan/Makefile index 7df7cbc0271c..faee1d090286 100644 --- a/security/botan/Makefile +++ b/security/botan/Makefile @@ -7,7 +7,7 @@ # PORTNAME= botan -PORTVERSION= 1.2.0 +PORTVERSION= 1.2.1 PORTREVISION= 0 CATEGORIES= security MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} diff --git a/security/botan/distinfo b/security/botan/distinfo index 88c945937ce4..eb0d9414ef84 100644 --- a/security/botan/distinfo +++ b/security/botan/distinfo @@ -1 +1 @@ -MD5 (Botan-1.2.0.tgz) = 0792fbd2d1927e7c167b65d9c30a9c9c +MD5 (Botan-1.2.1.tgz) = 719c8b28adecc1a042b767fbb72ae8fc diff --git a/security/botan/files/patch-pipe_io.cpp b/security/botan/files/patch-pipe_io.cpp deleted file mode 100644 index 25c4bd7ce15e..000000000000 --- a/security/botan/files/patch-pipe_io.cpp +++ /dev/null @@ -1,34 +0,0 @@ ---- src/pipe_io.cpp.orig Fri May 10 10:10:27 2002 -+++ src/pipe_io.cpp Fri May 10 10:10:57 2002 -@@ -33,12 +33,12 @@ - { - static const u32bit BUFFERSIZE = DEFAULT_BUFFERSIZE; - SecureBuffer<byte, BUFFERSIZE> buffer; -- while(!std::ferror(stream) && pipe.remaining()) -+ while(!ferror(stream) && pipe.remaining()) - { - u32bit got = pipe.read(buffer, BUFFERSIZE); -- std::fwrite(buffer, 1, got, stream); -+ fwrite(buffer, 1, got, stream); - } -- if(std::ferror(stream)) -+ if(ferror(stream)) - throw Stream_IO_Error("Pipe output operator (stdio) has failed"); - return stream; - } -@@ -67,12 +67,12 @@ - { - static const u32bit BUFFERSIZE = DEFAULT_BUFFERSIZE; - SecureBuffer<byte, BUFFERSIZE> buffer; -- while(!std::ferror(stream) && !std::feof(stream)) -+ while(!ferror(stream) && !feof(stream)) - { -- u32bit got = std::fread(buffer, 1, BUFFERSIZE, stream); -+ u32bit got = fread(buffer, 1, BUFFERSIZE, stream); - pipe.write(buffer, got); - } -- if(std::ferror(stream)) -+ if(ferror(stream)) - throw Stream_IO_Error("Pipe input operator (stdio) has failed"); - return stream; - } diff --git a/security/botan/pkg-plist b/security/botan/pkg-plist index 7d0f99ef6756..714956fe161c 100644 --- a/security/botan/pkg-plist +++ b/security/botan/pkg-plist @@ -151,7 +151,7 @@ include/botan/x917_rng.h include/botan/x919_mac.h include/botan/xtea.h lib/libbotan.a -lib/libbotan-1.2.0.so +lib/libbotan-1.2.1.so lib/libbotan-1.2.so lib/libbotan-1.so lib/libbotan.so |