Index: head/devel/rudeconfig/Makefile =================================================================== --- head/devel/rudeconfig/Makefile (revision 479276) +++ head/devel/rudeconfig/Makefile (revision 479277) @@ -1,23 +1,24 @@ # Created by: Hardy Schumacher # $FreeBSD$ PORTNAME= rudeconfig PORTVERSION= 5.0.5 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel MASTER_SITES= http://www.rudeserver.com/config/download/ MAINTAINER= lowmaster@web.de COMMENT= Library for handling configuration files, written in C++ -USES= libtool +USES= dos2unix libtool +DOS2UNIX_GLOB= * GNU_CONFIGURE= yes USE_LDCONFIG= yes pre-install: ${CHMOD} 744 ${WRKSRC}/install-sh post-install: @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/librudeconfig.so .include Index: head/devel/rudeconfig/files/patch-src_Base64Encoder.cpp =================================================================== --- head/devel/rudeconfig/files/patch-src_Base64Encoder.cpp (nonexistent) +++ head/devel/rudeconfig/files/patch-src_Base64Encoder.cpp (revision 479277) @@ -0,0 +1,15 @@ +src/Base64Encoder.cpp:170:25: error: cast from pointer to smaller type 'char' loses information + retval[outlength]=(char) NULL; + ^~~~~~~~~~~ + +--- src/Base64Encoder.cpp.orig 2018-08-26 19:38:04 UTC ++++ src/Base64Encoder.cpp +@@ -167,7 +167,7 @@ char * Base64Encoder::encode(const char *data, int dat + linelength=0; + } + }; +- retval[outlength]=(char) NULL; ++ retval[outlength]='\0'; + return retval; + } + Property changes on: head/devel/rudeconfig/files/patch-src_Base64Encoder.cpp ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property