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

2015-09-28 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/79

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 failure in ASF Buildbot on openoffice-linux32-snapshot

2015-09-28 Thread buildbot
The Buildbot has detected a failed build on builder openoffice-linux32-snapshot 
while building ASF Buildbot. Full details are available at:
http://ci.apache.org/builders/openoffice-linux32-snapshot/builds/18

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

Buildslave for this Build: bb-vm3_ubuntu_32bit

Build Reason: The Nightly scheduler named 'openoffice-linux32-snapshot' 
triggered this build
Build Source Stamp: [branch openoffice/tags/SNAPSHOT] HEAD
Blamelist: 

BUILD FAILED: failed bootstrap

Sincerely,
 -The Buildbot





buildbot failure in ASF Buildbot on aoo-win7

2015-09-28 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/96

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





buildbot success in ASF Buildbot on openoffice-linux64-rat

2015-09-28 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/83

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 success in ASF Buildbot on openoffice-linux64-nightly

2015-09-28 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/93

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: r1705622 - /openoffice/trunk/ext_libraries/coinmp/coinmp-1.7.6-clang.patch

2015-09-28 Thread jsc
Author: jsc
Date: Mon Sep 28 08:59:45 2015
New Revision: 1705622

URL: http://svn.apache.org/viewvc?rev=1705622=rev
Log:
#124158# rework clang patch to work on MacOS

Modified:
openoffice/trunk/ext_libraries/coinmp/coinmp-1.7.6-clang.patch

Modified: openoffice/trunk/ext_libraries/coinmp/coinmp-1.7.6-clang.patch
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/ext_libraries/coinmp/coinmp-1.7.6-clang.patch?rev=1705622=1705621=1705622=diff
==
--- openoffice/trunk/ext_libraries/coinmp/coinmp-1.7.6-clang.patch (original)
+++ openoffice/trunk/ext_libraries/coinmp/coinmp-1.7.6-clang.patch Mon Sep 28 
08:59:45 2015
@@ -1,5 +1,5 @@
 misc/CoinMP-1.7.6/CoinUtils/src/CoinSignal.hpp 2011-01-03 
23:31:00.0 +
-+++ misc/build/CoinMP-1.7.6/CoinUtils/src/CoinSignal.hpp   2015-08-04 
23:25:43.46841 +
+--- misc/CoinMP-1.7.6/CoinUtils/src/CoinSignal.hpp 2011-01-04 
00:31:00.0 +0100
 misc/build/CoinMP-1.7.6/CoinUtils/src/CoinSignal.hpp   2015-09-28 
10:45:02.0 +0200
 @@ -44,7 +44,11 @@
  
//-
  
@@ -13,3 +13,15 @@
  #  define CoinSighandler_t_defined
  #endif
  
+@@ -95,7 +99,10 @@
+ 
+ 
//-
+ 
+-#if defined(__MACH__) && defined(__GNUC__)
++#if defined(__clang__) && !defined(CoinSighandler_t_defined)
++   typedef void(*CoinSighandler_t)(int);
++#  define CoinSighandler_t_defined
++#elif defined(__MACH__) && defined(__GNUC__)
+typedef typeof(SIG_DFL) CoinSighandler_t;
+ #  define CoinSighandler_t_defined
+ #endif




svn commit: r1705625 - /openoffice/branches/AOO410/ext_libraries/coinmp/coinmp-1.7.6-clang.patch

2015-09-28 Thread jsc
Author: jsc
Date: Mon Sep 28 09:13:20 2015
New Revision: 1705625

URL: http://svn.apache.org/viewvc?rev=1705625=rev
Log:
#124158# merge fix from trunk

Modified:
openoffice/branches/AOO410/ext_libraries/coinmp/coinmp-1.7.6-clang.patch

Modified: 
openoffice/branches/AOO410/ext_libraries/coinmp/coinmp-1.7.6-clang.patch
URL: 
http://svn.apache.org/viewvc/openoffice/branches/AOO410/ext_libraries/coinmp/coinmp-1.7.6-clang.patch?rev=1705625=1705624=1705625=diff
==
--- openoffice/branches/AOO410/ext_libraries/coinmp/coinmp-1.7.6-clang.patch 
(original)
+++ openoffice/branches/AOO410/ext_libraries/coinmp/coinmp-1.7.6-clang.patch 
Mon Sep 28 09:13:20 2015
@@ -1,5 +1,5 @@
 misc/CoinMP-1.7.6/CoinUtils/src/CoinSignal.hpp 2011-01-03 
23:31:00.0 +
-+++ misc/build/CoinMP-1.7.6/CoinUtils/src/CoinSignal.hpp   2015-08-04 
23:25:43.46841 +
+--- misc/CoinMP-1.7.6/CoinUtils/src/CoinSignal.hpp 2011-01-04 
00:31:00.0 +0100
 misc/build/CoinMP-1.7.6/CoinUtils/src/CoinSignal.hpp   2015-09-28 
10:45:02.0 +0200
 @@ -44,7 +44,11 @@
  
//-
  
@@ -13,3 +13,15 @@
  #  define CoinSighandler_t_defined
  #endif
  
+@@ -95,7 +99,10 @@
+ 
+ 
//-
+ 
+-#if defined(__MACH__) && defined(__GNUC__)
++#if defined(__clang__) && !defined(CoinSighandler_t_defined)
++   typedef void(*CoinSighandler_t)(int);
++#  define CoinSighandler_t_defined
++#elif defined(__MACH__) && defined(__GNUC__)
+typedef typeof(SIG_DFL) CoinSighandler_t;
+ #  define CoinSighandler_t_defined
+ #endif




buildbot failure in ASF Buildbot on aoo-w7snap

2015-09-28 Thread buildbot
The Buildbot has detected a failed build on builder aoo-w7snap while building 
ASF Buildbot. Full details are available at:
http://ci.apache.org/builders/aoo-w7snap/builds/16

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

Buildslave for this Build: bb-win7

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

BUILD FAILED: failed svn info build.pl --all move the split install bits back

Sincerely,
 -The Buildbot





svn commit: r1705793 - /openoffice/trunk/main/formula/source/ui/dlg/funcpage.cxx

2015-09-28 Thread kschenk
Author: kschenk
Date: Tue Sep 29 01:23:47 2015
New Revision: 1705793

URL: http://svn.apache.org/viewvc?rev=1705793=rev
Log:
#i126557# Patch by: hanya


Modified:
openoffice/trunk/main/formula/source/ui/dlg/funcpage.cxx

Modified: openoffice/trunk/main/formula/source/ui/dlg/funcpage.cxx
URL: 
http://svn.apache.org/viewvc/openoffice/trunk/main/formula/source/ui/dlg/funcpage.cxx?rev=1705793=1705792=1705793=diff
==
--- openoffice/trunk/main/formula/source/ui/dlg/funcpage.cxx (original)
+++ openoffice/trunk/main/formula/source/ui/dlg/funcpage.cxx Tue Sep 29 
01:23:47 2015
@@ -110,6 +110,7 @@ FuncPage::FuncPage(Window* pParent,const
 
aLbCategory.SetEntryData(aLbCategory.InsertEntry(pCategory->getName()),(void*)pCategory);
 }
 
+aLbCategory.SetDropDownLineCount( aLbCategory.GetEntryCount() );
aLbCategory.SelectEntryPos(1);
UpdateFunctionList();
aLbCategory.SetSelectHdl( LINK( this, FuncPage, SelHdl ) );




buildbot success in ASF Buildbot on openoffice-linux32-nightly

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

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

Buildslave for this Build: bb-vm2_ubuntu_32bit

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

Build succeeded!

Sincerely,
 -The Buildbot