svn commit: r357832 - in head/security/tripwire: . files

Cy Schubert cy at FreeBSD.org
Sun Jun 15 07:12:29 UTC 2014


Author: cy
Date: Sun Jun 15 07:12:26 2014
New Revision: 357832
URL: http://svnweb.freebsd.org/changeset/ports/357832
QAT: https://qat.redports.org/buildarchive/r357832/

Log:
  Fix build under clang and gcc 4.8.
  
  Submitted by:	dim

Added:
  head/security/tripwire/files/patch-src-core-archive.cpp   (contents, props changed)
  head/security/tripwire/files/patch-src-core-archive.h   (contents, props changed)
  head/security/tripwire/files/patch-src-core-displayencoder.cpp   (contents, props changed)
  head/security/tripwire/files/patch-src-core-fsservices.h   (contents, props changed)
  head/security/tripwire/files/patch-src-core-tw_signal.cpp   (contents, props changed)
  head/security/tripwire/files/patch-src-core-twlocale.h   (contents, props changed)
  head/security/tripwire/files/patch-src-core-unixfsservices.cpp   (contents, props changed)
  head/security/tripwire/files/patch-src-core-unixfsservices.h   (contents, props changed)
  head/security/tripwire/files/patch-src-cryptlib-algebra.h   (contents, props changed)
  head/security/tripwire/files/patch-src-cryptlib-cryptlib.cpp   (contents, props changed)
  head/security/tripwire/files/patch-src-fco-fcospec.cpp   (contents, props changed)
  head/security/tripwire/files/patch-src-fco-parsergenreutil.h   (contents, props changed)
  head/security/tripwire/files/patch-src-tripwire-mailmessage.cpp   (contents, props changed)
Modified:
  head/security/tripwire/Makefile

Modified: head/security/tripwire/Makefile
==============================================================================
--- head/security/tripwire/Makefile	Sun Jun 15 06:56:46 2014	(r357831)
+++ head/security/tripwire/Makefile	Sun Jun 15 07:12:26 2014	(r357832)
@@ -18,7 +18,6 @@ WRKSRC=		${WRKDIR}/${PORTNAME}-${PORTVER
 MAKE_JOBS_UNSAFE=	yes
 USES=		gmake tar:bzip2
 GNU_CONFIGURE=	yes
-USE_GCC=	4.6
 MAKE_ARGS=	SYSPRE=${ARCH}-unknown-freebsd \
 		DESTDIR=${STAGEDIR}
 IS_INTERACTIVE=	yes

Added: head/security/tripwire/files/patch-src-core-archive.cpp
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/tripwire/files/patch-src-core-archive.cpp	Sun Jun 15 07:12:26 2014	(r357832)
@@ -0,0 +1,13 @@
+--- src/core/archive.cpp.orig	2011-11-21 17:06:56.000000000 +0100
++++ src/core/archive.cpp	2014-06-15 01:45:01.000000000 +0200
+@@ -886,8 +886,8 @@ void cLockedTemporaryFileArchive::OpenRe
+         catch( eFSServices& e)
+           {
+             TSTRING errStr = TSS_GetString( cCore, core::STR_BAD_TEMPDIRECTORY );
+-            eArchiveOpen e(strTempFile, errStr);
+-            throw e;
++            eArchiveOpen e2(strTempFile, errStr);
++            throw e2;
+           }
+       }
+     ///////////////////////////////////////////////////////////////////////////////

Added: head/security/tripwire/files/patch-src-core-archive.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/tripwire/files/patch-src-core-archive.h	Sun Jun 15 07:12:26 2014	(r357832)
@@ -0,0 +1,11 @@
+--- src/core/archive.h.orig	2011-11-21 17:06:56.000000000 +0100
++++ src/core/archive.h	2014-06-15 01:51:40.000000000 +0200
+@@ -85,6 +85,8 @@ TSS_EXCEPTION( eArchiveStringTooLong, eA
+ class cArchive
+ {
+ public:
++    virtual ~cArchive() {}
++
+ 	// convenience methods
+     //
+     // Specific Read functions throw(eArchive) if EOF is reached because

Added: head/security/tripwire/files/patch-src-core-displayencoder.cpp
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/tripwire/files/patch-src-core-displayencoder.cpp	Sun Jun 15 07:12:26 2014	(r357832)
@@ -0,0 +1,16 @@
+--- src/core/displayencoder.cpp.orig	2011-11-21 17:06:56.000000000 +0100
++++ src/core/displayencoder.cpp	2014-06-15 01:46:55.000000000 +0200
+@@ -825,11 +825,10 @@ bool cEncoder::OnlyOneCatagoryPerChar() 
+         {
+             bool fFailedATest = false;
+ 
+-            ach[0] = ch;
++            TSTRING ach(1, ch);
+             for( sack_type::const_iterator atE = m_encodings.begin(); atE != m_encodings.end(); atE++ )
+             {
+-		TSTRING::const_iterator first(&ach[0]), last(&ach[1]);
+-                if( (*atE)->NeedsEncoding( first, last ) )
++                if( (*atE)->NeedsEncoding( ach.begin(), ach.end() ) )
+                 {
+                     if( fFailedATest )
+                         return false; // each char can only fail one test

Added: head/security/tripwire/files/patch-src-core-fsservices.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/tripwire/files/patch-src-core-fsservices.h	Sun Jun 15 07:12:26 2014	(r357832)
@@ -0,0 +1,19 @@
+--- src/core/fsservices.h.orig	2011-11-21 17:06:56.000000000 +0100
++++ src/core/fsservices.h	2014-06-15 01:54:49.000000000 +0200
+@@ -177,6 +177,7 @@ TSS_FILE_EXCEPTION( eFSServicesGeneric, 
+ class iFSServices 
+ {
+  public:
++  virtual ~iFSServices() {}
+     
+   ///////////////////////////////////////////////////////////////
+   // ENUMS
+@@ -219,7 +220,7 @@ class iFSServices 
+   // returns true if the file system is case sensitive
+   virtual TCHAR       GetPathSeperator() const = 0;
+   // returns "/" for unix and "\\" for win32
+-  virtual TCHAR*      GetStandardBackupExtension() const = 0;
++  virtual const TCHAR* GetStandardBackupExtension() const = 0;
+   // returns normal string to append to backup files for this os.
+     
+   ////////////////////////////////////////

Added: head/security/tripwire/files/patch-src-core-tw_signal.cpp
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/tripwire/files/patch-src-core-tw_signal.cpp	Sun Jun 15 07:12:26 2014	(r357832)
@@ -0,0 +1,11 @@
+--- src/core/tw_signal.cpp.orig	2011-11-21 17:06:56.000000000 +0100
++++ src/core/tw_signal.cpp	2014-06-15 01:48:28.000000000 +0200
+@@ -79,7 +79,7 @@ void util_SignalHandler( int sig )
+ #if IS_UNIX
+ void tw_psignal(int sig, const TCHAR *str)
+ {
+-    TCHAR *siglist[NSIG] = {
++    const TCHAR *siglist[NSIG] = {
+         _T("Unknown Signal"),
+         _T("Hangup"),
+         _T("Interrupt"),

Added: head/security/tripwire/files/patch-src-core-twlocale.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/tripwire/files/patch-src-core-twlocale.h	Sun Jun 15 07:12:26 2014	(r357832)
@@ -0,0 +1,11 @@
+--- src/core/twlocale.h.orig	2011-11-21 17:06:56.000000000 +0100
++++ src/core/twlocale.h	2014-06-15 01:48:46.000000000 +0200
+@@ -110,7 +110,7 @@ namespace tss
+ #if USE_STD_CPP_LOCALE_WORKAROUND
+             return std::use_facet( l, pf );
+ #else
+-            return std::use_facet< FacetT >( l ); pf;  // This is C++ standard
++            return std::use_facet< FacetT >( l ); (void)pf;  // This is C++ standard
+ #endif
+     }
+ }

Added: head/security/tripwire/files/patch-src-core-unixfsservices.cpp
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/tripwire/files/patch-src-core-unixfsservices.cpp	Sun Jun 15 07:12:26 2014	(r357832)
@@ -0,0 +1,11 @@
+--- src/core/unixfsservices.cpp.orig	2011-11-21 17:06:56.000000000 +0100
++++ src/core/unixfsservices.cpp	2014-06-15 01:44:45.000000000 +0200
+@@ -792,7 +792,7 @@ bool cUnixFSServices::FullPath( TSTRING&
+ // Returns normal string to append to backup files for this os.
+ // (e.g. "~" for unix and ".bak" for winos)
+ ///////////////////////////////////////////////////////////////////////////////
+-TCHAR* cUnixFSServices::GetStandardBackupExtension() const
++const TCHAR* cUnixFSServices::GetStandardBackupExtension() const
+ {
+     return _T(".bak");
+ }

Added: head/security/tripwire/files/patch-src-core-unixfsservices.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/tripwire/files/patch-src-core-unixfsservices.h	Sun Jun 15 07:12:26 2014	(r357832)
@@ -0,0 +1,11 @@
+--- src/core/unixfsservices.h.orig	2011-11-21 17:06:56.000000000 +0100
++++ src/core/unixfsservices.h	2014-06-15 01:44:45.000000000 +0200
+@@ -99,7 +99,7 @@ class cUnixFSServices : public iFSServic
+   ////////////////////////////////////////
+   virtual bool    IsCaseSensitive() const;
+   // returns true if the file system is case sensitive
+-  virtual TCHAR*      GetStandardBackupExtension() const;
++  virtual const TCHAR* GetStandardBackupExtension() const;
+   // returns normal string to append to backup files for this os.
+   // (e.g. "~" for unix and ".bak" for winos)
+   virtual TCHAR       GetPathSeperator() const;

Added: head/security/tripwire/files/patch-src-cryptlib-algebra.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/tripwire/files/patch-src-cryptlib-algebra.h	Sun Jun 15 07:12:26 2014	(r357832)
@@ -0,0 +1,11 @@
+--- src/cryptlib/algebra.h.orig	2011-11-21 17:06:56.000000000 +0100
++++ src/cryptlib/algebra.h	2014-06-15 01:42:42.000000000 +0200
+@@ -273,7 +273,7 @@ template <class T> T AbstractEuclideanDo
+ 	Element g[3]={b, a};
+ 	unsigned int i0=0, i1=1, i2=2;
+ 
+-	while (!Equal(g[i1], this->Zero()))
++	while (!this->Equal(g[i1], this->Zero()))
+ 	{
+ 		g[i2] = Mod(g[i0], g[i1]);
+ 		unsigned int t = i0; i0 = i1; i1 = i2; i2 = t;

Added: head/security/tripwire/files/patch-src-cryptlib-cryptlib.cpp
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/tripwire/files/patch-src-cryptlib-cryptlib.cpp	Sun Jun 15 07:12:26 2014	(r357832)
@@ -0,0 +1,13 @@
+--- src/cryptlib/cryptlib.cpp.orig	2011-11-21 17:06:56.000000000 +0100
++++ src/cryptlib/cryptlib.cpp	2014-06-15 01:42:35.000000000 +0200
+@@ -43,8 +43,8 @@ void StreamCipher::ProcessString(byte *o
+ 
+ void StreamCipher::ProcessString(byte *inoutString, unsigned int length)
+ {
+-	while(length--)
+-		*inoutString++ = ProcessByte(*inoutString);
++	for(;length--; inoutString++)
++		*inoutString = ProcessByte(*inoutString);
+ }
+ 
+ bool MessageAuthenticationCode::Verify(const byte *macIn)

Added: head/security/tripwire/files/patch-src-fco-fcospec.cpp
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/tripwire/files/patch-src-fco-fcospec.cpp	Sun Jun 15 07:12:26 2014	(r357832)
@@ -0,0 +1,10 @@
+--- src/fco/fcospec.cpp.orig	2011-11-21 17:06:56.000000000 +0100
++++ src/fco/fcospec.cpp	2014-06-15 01:50:46.000000000 +0200
+@@ -51,6 +51,7 @@
+ class cDefaultSpecMask : public iFCOSpecMask
+ {
+ public:
++	cDefaultSpecMask() {}
+ 	virtual const TSTRING& GetName() const;
+ 	virtual bool Accept(const iFCO* pFCO) const;
+ private:

Added: head/security/tripwire/files/patch-src-fco-parsergenreutil.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/tripwire/files/patch-src-fco-parsergenreutil.h	Sun Jun 15 07:12:26 2014	(r357832)
@@ -0,0 +1,10 @@
+--- src/fco/parsergenreutil.h.orig	2011-11-21 17:06:56.000000000 +0100
++++ src/fco/parsergenreutil.h	2014-06-15 01:55:46.000000000 +0200
+@@ -53,6 +53,7 @@ class cFCOName;
+ class iParserGenreUtil
+ {
+ public:
++    virtual ~iParserGenreUtil() {}
+     virtual bool MapStringToProperty( const TSTRING& str, int& propIndex ) const = 0;
+         // maps the given string  to an index into a property vector for the genre
+     virtual void AddSubTypeProps( cFCOPropVector& v ) const = 0;

Added: head/security/tripwire/files/patch-src-tripwire-mailmessage.cpp
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/tripwire/files/patch-src-tripwire-mailmessage.cpp	Sun Jun 15 07:12:26 2014	(r357832)
@@ -0,0 +1,11 @@
+--- src/tripwire/mailmessage.cpp.orig	2011-11-21 17:06:56.000000000 +0100
++++ src/tripwire/mailmessage.cpp	2014-06-15 01:56:20.000000000 +0200
+@@ -258,7 +258,7 @@ bool cMailMessageUtil::ReadDate( TSTRING
+ }
+ 
+ 
+-static char* util_Get_IANA_CharSet()
++static const char* util_Get_IANA_CharSet()
+ {
+     const char* pCP = setlocale( LC_CTYPE, NULL );
+ 


More information about the svn-ports-head mailing list