1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-26 05:02:18 +00:00

Upgrade to 3.4.0.

Approved by:	maintainer
This commit is contained in:
Vanilla I. Shu 2007-10-02 03:55:56 +00:00
parent 70d2d90c73
commit 69ba9744f2
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=200587
4 changed files with 26 additions and 4 deletions

View File

@ -6,7 +6,7 @@
#
PORTNAME= stringencoders
PORTVERSION= 3.3.0
PORTVERSION= 3.4.0
CATEGORIES= devel
MASTER_SITES= http://stringencoders.googlecode.com/files/
DISTNAME= ${PORTNAME}-v${PORTVERSION}

View File

@ -1,3 +1,3 @@
MD5 (stringencoders-v3.3.0.tar.gz) = 8ba9e6ee3478cb57a26c1cf6ff8c336b
SHA256 (stringencoders-v3.3.0.tar.gz) = af10b06e6306cb1eec8ad0fc70d78319a8fcdfc938142d7b7c427c9869876637
SIZE (stringencoders-v3.3.0.tar.gz) = 314437
MD5 (stringencoders-v3.4.0.tar.gz) = 8ce2dd4e2bff112681e11853767e1347
SHA256 (stringencoders-v3.4.0.tar.gz) = 46e7215430726aba6ff4822ce99d2fa5e1c45683f598d0d898aff61f8bb34b5c
SIZE (stringencoders-v3.4.0.tar.gz) = 315436

View File

@ -0,0 +1,11 @@
--- src/modp_b64.h.orig Tue Sep 25 22:39:43 2007
+++ src/modp_b64.h Tue Sep 25 22:40:03 2007
@@ -166,7 +166,7 @@
* \param[in] s the input string to encode
* \return a newly allocated b64 string. Empty if failed.
*/
- inline std::string b64_encode(const string& s)
+ inline std::string b64_encode(const std::string& s)
{
return b64_encode(s.data(), s.size());
}

View File

@ -0,0 +1,11 @@
--- src/modp_b64w.h.orig Tue Sep 25 22:39:48 2007
+++ src/modp_b64w.h Tue Sep 25 22:40:18 2007
@@ -173,7 +173,7 @@
* \param[in] s the input string to encode
* \return a newly allocated b64w string. Empty if failed.
*/
- inline std::string b64w_encode(const string& s)
+ inline std::string b64w_encode(const std::string& s)
{
return b64w_encode(s.data(), s.size());
}