buildbot success in ASF Buildbot on openoffice-fbsd-nightly

2015-12-10 Thread buildbot
The Buildbot has detected a passing build on builder openoffice-fbsd-nightly 
while building ASF Buildbot. Full details are available at:
http://ci.apache.org/builders/openoffice-fbsd-nightly/builds/158

Buildbot URL: http://ci.apache.org/

Buildslave for this Build: bb-fbsd2_64bit

Build Reason: The Nightly scheduler named 'openoffice-fbsd-nightly' triggered 
this build
Build Source Stamp: [branch openoffice/trunk] HEAD
Blamelist: 

Build succeeded!

Sincerely,
 -The Buildbot





buildbot success in ASF Buildbot on openoffice-linux64-nightly

2015-12-10 Thread buildbot
The Buildbot has detected a passing build on builder openoffice-linux64-nightly 
while building ASF Buildbot. Full details are available at:
http://ci.apache.org/builders/openoffice-linux64-nightly/builds/167

Buildbot URL: http://ci.apache.org/

Buildslave for this Build: tethys_ubuntu

Build Reason: The Nightly scheduler named 'openoffice-linux64-nightly' 
triggered this build
Build Source Stamp: [branch openoffice/trunk] HEAD
Blamelist: 

Build succeeded!

Sincerely,
 -The Buildbot





svn commit: r1719210 - /openoffice/trunk/main/bridges/source/cpp_uno/gcc3_freebsd_intel/except.cxx

2015-12-10 Thread pfg
Author: pfg
Date: Thu Dec 10 21:07:58 2015
New Revision: 1719210

URL: http://svn.apache.org/viewvc?rev=1719210=rev
Log:
FreeBSD: Drop support for old EOL'd versions,

While here update some casts.

Modified:
openoffice/trunk/main/bridges/source/cpp_uno/gcc3_freebsd_intel/except.cxx

Modified: 
openoffice/trunk/main/bridges/source/cpp_uno/gcc3_freebsd_intel/except.cxx
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/bridges/source/cpp_uno/gcc3_freebsd_intel/except.cxx?rev=1719210=1719209=1719210=diff
==
--- openoffice/trunk/main/bridges/source/cpp_uno/gcc3_freebsd_intel/except.cxx 
(original)
+++ openoffice/trunk/main/bridges/source/cpp_uno/gcc3_freebsd_intel/except.cxx 
Thu Dec 10 21:07:58 2015
@@ -33,6 +33,7 @@
 #include 
 #include 
 #include 
+
 #include 
 
 #include 
@@ -119,11 +120,7 @@ public:
 };
 
//__
 RTTI::RTTI() SAL_THROW( () )
-#if __FreeBSD_version < 602103
-: m_hApp( dlopen( 0, RTLD_NOW | RTLD_GLOBAL ) )
-#else
 : m_hApp( dlopen( 0, RTLD_LAZY ) )
-#endif
 {
 }
 
//__
@@ -158,11 +155,7 @@ type_info * RTTI::getRTTI( typelib_Compo
 buf.append( 'E' );
 
 OString symName( buf.makeStringAndClear() );
-#if __FreeBSD_version < 602103 /* #i22253# */
-rtti = (type_info *)dlsym( RTLD_DEFAULT, symName.getStr() );
-#else
-rtti = (type_info *)dlsym( m_hApp, symName.getStr() );
-#endif
+rtti = static_cast(dlsym( m_hApp, symName.getStr() ));
 
 if (rtti)
 {
@@ -194,7 +187,7 @@ type_info * RTTI::getRTTI( typelib_Compo
 type_info * base_rtti = getRTTI(
 (typelib_CompoundTypeDescription 
*)pTypeDescr->pBaseTypeDescription );
 rtti = new __si_class_type_info(
-strdup( rttiName ), (__class_type_info *)base_rtti );
+strdup( rttiName ), static_cast<__class_type_info 
*>(base_rtti) );
 }
 else
 {




buildbot failure in ASF Buildbot on openoffice-linux64-rat-aoo410

2015-12-10 Thread buildbot
The Buildbot has detected a failed build on builder 
openoffice-linux64-rat-aoo410 while building ASF Buildbot. Full details are 
available at:
http://ci.apache.org/builders/openoffice-linux64-rat-aoo410/builds/152

Buildbot URL: http://ci.apache.org/

Buildslave for this Build: tethys_ubuntu

Build Reason: The Nightly scheduler named 'openoffice-linux64-rat-aoo410' 
triggered this build
Build Source Stamp: [branch openoffice/branches/AOO410] HEAD
Blamelist: 

BUILD FAILED: failed

Sincerely,
 -The Buildbot





buildbot success in ASF Buildbot on openoffice-linux64-rat

2015-12-10 Thread buildbot
The Buildbot has detected a passing build on builder openoffice-linux64-rat 
while building ASF Buildbot. Full details are available at:
http://ci.apache.org/builders/openoffice-linux64-rat/builds/156

Buildbot URL: http://ci.apache.org/

Buildslave for this Build: tethys_ubuntu

Build Reason: The Nightly scheduler named 'openoffice-linux64-rat' triggered 
this build
Build Source Stamp: [branch openoffice/trunk] HEAD
Blamelist: 

Build succeeded!

Sincerely,
 -The Buildbot





buildbot failure in ASF Buildbot on aoo-win7

2015-12-10 Thread buildbot
The Buildbot has detected a failed build on builder aoo-win7 while building ASF 
Buildbot. Full details are available at:
http://ci.apache.org/builders/aoo-win7/builds/107

Buildbot URL: http://ci.apache.org/

Buildslave for this Build: bb-win7

Build Reason: The Nightly scheduler named 'aoo-win7-nightly' triggered this 
build
Build Source Stamp: [branch openoffice/trunk] HEAD
Blamelist: 

BUILD FAILED: failed svn info build.pl --all

Sincerely,
 -The Buildbot





svn commit: r1719244 - /openoffice/trunk/main/shell/source/unix/sysshell/recently_used_file_handler.cxx

2015-12-10 Thread pfg
Author: pfg
Date: Fri Dec 11 01:56:53 2015
New Revision: 1719244

URL: http://svn.apache.org/viewvc?rev=1719244=rev
Log:
Do not assume time_t is long.

time_t is long on some platforms but not on all.
This plagues a warning on FreeBSD.

Taken from: Jung-uk Kim

Modified:

openoffice/trunk/main/shell/source/unix/sysshell/recently_used_file_handler.cxx

Modified: 
openoffice/trunk/main/shell/source/unix/sysshell/recently_used_file_handler.cxx
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/shell/source/unix/sysshell/recently_used_file_handler.cxx?rev=1719244=1719243=1719244=diff
==
--- 
openoffice/trunk/main/shell/source/unix/sysshell/recently_used_file_handler.cxx 
(original)
+++ 
openoffice/trunk/main/shell/source/unix/sysshell/recently_used_file_handler.cxx 
Fri Dec 11 01:56:53 2015
@@ -94,11 +94,11 @@ namespace /* private */ {
 
 void set_timestamp(const string_t& character)
 { 
-time_t t;
+long t;
 if (sscanf(character.c_str(), "%ld", ) != 1)
 timestamp_ = -1; 
 else
-timestamp_ = t;
+timestamp_ = static_cast(t);
 }
 
 void set_is_private(const string_t& /*character*/)




svn commit: r1719249 - /openoffice/trunk/main/bridges/source/cpp_uno/gcc3_freebsd_x86-64/except.cxx

2015-12-10 Thread pfg
Author: pfg
Date: Fri Dec 11 03:44:52 2015
New Revision: 1719249

URL: http://svn.apache.org/viewvc?rev=1719249=rev
Log:
FreeBSD: Drop support for old EOL'd versions,

While here update some casts.

Modified:
openoffice/trunk/main/bridges/source/cpp_uno/gcc3_freebsd_x86-64/except.cxx

Modified: 
openoffice/trunk/main/bridges/source/cpp_uno/gcc3_freebsd_x86-64/except.cxx
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/bridges/source/cpp_uno/gcc3_freebsd_x86-64/except.cxx?rev=1719249=1719248=1719249=diff
==
--- openoffice/trunk/main/bridges/source/cpp_uno/gcc3_freebsd_x86-64/except.cxx 
(original)
+++ openoffice/trunk/main/bridges/source/cpp_uno/gcc3_freebsd_x86-64/except.cxx 
Fri Dec 11 03:44:52 2015
@@ -33,6 +33,7 @@
 #include 
 #include 
 #include 
+
 #include 
 
 #include 
@@ -119,11 +120,7 @@ public:
 };
 
//__
 RTTI::RTTI() SAL_THROW( () )
-#if __FreeBSD_version < 702104 /* #i22253# */
-: m_hApp( dlopen( 0, RTLD_NOW | RTLD_GLOBAL ) )
-#else
 : m_hApp( dlopen( 0, RTLD_LAZY ) )
-#endif
 {
 }
 
//__
@@ -158,11 +155,7 @@ type_info * RTTI::getRTTI( typelib_Compo
 buf.append( 'E' );
 
 OString symName( buf.makeStringAndClear() );
-#if __FreeBSD_version < 702104 /* #i22253# */
-rtti = (type_info *)dlsym( RTLD_DEFAULT, symName.getStr() );
-#else
-rtti = (type_info *)dlsym( m_hApp, symName.getStr() );
-#endif
+rtti = static_cast(dlsym( m_hApp, symName.getStr() ));
 
 if (rtti)
 {
@@ -194,7 +187,7 @@ type_info * RTTI::getRTTI( typelib_Compo
 type_info * base_rtti = getRTTI(
 (typelib_CompoundTypeDescription 
*)pTypeDescr->pBaseTypeDescription );
 rtti = new __si_class_type_info(
-strdup( rttiName ), (__class_type_info *)base_rtti );
+strdup( rttiName ), static_cast<__class_type_info 
*>(base_rtti) );
 }
 else
 {




buildbot failure in ASF Buildbot on openoffice-linux64-nightly

2015-12-10 Thread buildbot
The Buildbot has detected a failed build on builder openoffice-linux64-nightly 
while building ASF Buildbot. Full details are available at:
http://ci.apache.org/builders/openoffice-linux64-nightly/builds/168

Buildbot URL: http://ci.apache.org/

Buildslave for this Build: tethys_ubuntu

Build Reason: The Nightly scheduler named 'openoffice-linux64-nightly' 
triggered this build
Build Source Stamp: [branch openoffice/trunk] HEAD
Blamelist: 

BUILD FAILED: failed

Sincerely,
 -The Buildbot