Re: OO 3.3.0 fails to build connectivity module on amd64 9-STABLE

2012-02-14 Thread Don Lewis
On 14 Feb, Maho NAKATA wrote:
 Hi
 
 Looks good. Please commit following patch! thank you!

Committed!

___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to freebsd-ports-unsubscr...@freebsd.org


Re: OO 3.3.0 fails to build connectivity module on amd64 9-STABLE

2012-02-14 Thread Maho NAKATA
From: Don Lewis truck...@freebsd.org
Subject: Re: OO 3.3.0 fails to build connectivity module on amd64 9-STABLE
Date: Tue, 14 Feb 2012 00:21:00 -0800 (PST)

 On 14 Feb, Maho NAKATA wrote:
 Hi
 
 Looks good. Please commit following patch! thank you!
 
 Committed!
 
thank you!
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to freebsd-ports-unsubscr...@freebsd.org


Re: OO 3.3.0 fails to build connectivity module on amd64 9-STABLE

2012-02-13 Thread Don Lewis
On 10 Feb, Maho NAKATA wrote:
 Hi
 
 I also reproduced, and pointy hat, either.
 It looks like ooo port is broken again...
 
 Thanks
  Nakata Maho
 
 From: Lawrence Stewart lstew...@freebsd.org
 Subject: OO 3.3.0 fails to build connectivity module on amd64 9-STABLE
 Date: Thu, 09 Feb 2012 16:42:30 +1100
 
 Hi,
 
 The OO 3.3.0 build fails in the connectivity module with the
 following error:
 
 Compiling: connectivity/source/parse/wrap_sqlbison.cxx
 c++ -fmessage-length=0 -c -O2 -fno-strict-aliasing -DENABLE_LAYOUT=0
 -DENABLE_LAYOUT_EXPERIMENTAL=0 -fvisibility=hidden
 -I. -I../../unxfbsdx.pro/misc -I../../unxfbsdx.pro/inc/sql -I../inc
 -I../../inc/pch -I../../inc -I../../unx/inc -I../../unxfbsdx.pro/inc
 -I. 
 -I/usr/ports/editors/openoffice.org-3/work/OOO330_m20/solver/330/unxfbsdx.pro/inc/stl
 -I/usr/ports/editors/openoffice.org-3/work/OOO330_m20/solver/330/unxfbsdx.pro/inc/external
 -I/usr/ports/editors/openoffice.org-3/work/OOO330_m20/solver/330/unxfbsdx.pro/inc
 -I/usr/ports/editors/openoffice.org-3/work/OOO330_m20/solenv/unxfbsdx/inc
 -I/usr/ports/editors/openoffice.org-3/work/OOO330_m20/solenv/inc
 -I/usr/ports/editors/openoffice.org-3/work/OOO330_m20/res
 -I/usr/ports/editors/openoffice.org-3/work/OOO330_m20/solver/330/unxfbsdx.pro/inc/stl
 -I/usr/ports/editors/openoffice.org-3/work/OOO330_m20/solenv/inc/Xp31
 -I/usr/local/diablo-jdk1.6.0/include
 -I/usr/local/diablo-jdk1.6.0/include/freebsd
 -I/usr/local/diablo-jdk1.6.0/i
 nclude/bs
 d -I/usr/local/diablo-jdk1.6.0/include/linux
 -I/usr/local/diablo-jdk1.6.0/include/native_threads/include
 -I/usr/local/include
 -I/usr/ports/editors/openoffice.org-3/work/OOO330_m20/solver/330/unxfbsdx.pro/inc/offuh
 -I. -I../../res -I. -pipe -fvisibility-inlines-hidden -g1 -Wall
 -Wextra -Wendif-labels -Wshadow -Wno-ctor-dtor-privacy
 -Wno-non-virtual-dtor -fpic -DFREEBSD -DUNX -DVCL -DGCC -DC341
 -DX86_64 -D_PTHREADS -D_REENTRANT -DNEW_SOLAR -D_USE_NAMESPACE=1
 -DSTLPORT_VERSION=400 -DHAVE_GCC_VISIBILITY_FEATURE -DX86_64 -D__DMAKE
 -DUNIX -DCPPU_ENV=gcc3 -DGXX_INCLUDE_PATH=/usr/include/c++/4.2
 -DSUPD=330 -DPRODUCT -DNDEBUG -DOSL_DEBUG_LEVEL=0 -DOPTIMIZE -DCUI
 -DSOLAR_JAVA -DOOO_DLLIMPLEMENTATION_DBTOOLS -DSHAREDLIB -D_DLL_
 -fexceptions -fno-enforce-eh-specs -DEXCEPTIONS_ON -o
 ../../unxfbsdx.pro/slo/wrap_sqlbison.o
 /usr/ports/editors/openoffice.org-3/work/OOO330_m20/connectivity/source/parse/wrap_sqlbison.cxx
 In file included from
 /usr/ports/editors/openoffice.org-3/work/OOO330_m20/connectivity/source/parse/wrap_sqlbison.cxx:31:
 ../../unxfbsdx.pro/misc/sqlbison.cxx: In function 'int SQLyyparse()':
 ../../unxfbsdx.pro/misc/sqlbison.cxx:7813: error: invalid conversion
 from 'const char*' to 'sal_Char*'
 ../../unxfbsdx.pro/misc/sqlbison.cxx:7813: error: initializing
 argument 1 of 'void connectivity::OSQLParser::error(sal_Char*)'
 dmake: Error code 1, while making
 '../../unxfbsdx.pro/slo/wrap_sqlbison.obj'
 

 Any thoughts on how to fix?


This patch worked for me.  Put it under editors/openoffice.org-3/files.

--- connectivity/source/parse/sqlbison.y.orig   2011-01-18 05:32:30.0 
-0800
+++ connectivity/source/parse/sqlbison.y2012-02-13 14:03:12.0 
-0800
@@ -4334,7 +4334,7 @@
 }
 
 // -
-void OSQLParser::error(sal_Char *fmt)
+void OSQLParser::error(const sal_Char *fmt)
 {
if(!m_sErrorMessage.getLength())
{
--- connectivity/inc/connectivity/sqlparse.hxx.orig 2011-01-18 
05:32:29.0 -0800
+++ connectivity/inc/connectivity/sqlparse.hxx  2012-02-13 17:06:06.0 
-0800
@@ -232,7 +232,7 @@
 // returns the type for a parameter in a given function name
 static sal_Int32 getFunctionParameterType(sal_uInt32 
_nTokenId,sal_uInt32 _nPos);
 
-   void error(sal_Char *fmt);
+   void error(const sal_Char *fmt);
int SQLlex();
 #ifdef YYBISON
void setParseTree(OSQLParseNode * pNewParseTree);

___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to freebsd-ports-unsubscr...@freebsd.org


Re: OO 3.3.0 fails to build connectivity module on amd64 9-STABLE

2012-02-13 Thread Maho NAKATA
Hi

Looks good. Please commit following patch! thank you!

Best,
 Nakata Maho

From: Don Lewis truck...@freebsd.org
Subject: Re: OO 3.3.0 fails to build connectivity module on amd64 9-STABLE
Date: Mon, 13 Feb 2012 22:32:42 -0800 (PST)

 On 10 Feb, Maho NAKATA wrote:
 Hi
 
 I also reproduced, and pointy hat, either.
 It looks like ooo port is broken again...
 
 Thanks
  Nakata Maho
 
 From: Lawrence Stewart lstew...@freebsd.org
 Subject: OO 3.3.0 fails to build connectivity module on amd64 9-STABLE
 Date: Thu, 09 Feb 2012 16:42:30 +1100
 
 Hi,
 
 The OO 3.3.0 build fails in the connectivity module with the
 following error:
 
 Compiling: connectivity/source/parse/wrap_sqlbison.cxx
 c++ -fmessage-length=0 -c -O2 -fno-strict-aliasing -DENABLE_LAYOUT=0
 -DENABLE_LAYOUT_EXPERIMENTAL=0 -fvisibility=hidden
 -I. -I../../unxfbsdx.pro/misc -I../../unxfbsdx.pro/inc/sql -I../inc
 -I../../inc/pch -I../../inc -I../../unx/inc -I../../unxfbsdx.pro/inc
 -I. 
 -I/usr/ports/editors/openoffice.org-3/work/OOO330_m20/solver/330/unxfbsdx.pro/inc/stl
 -I/usr/ports/editors/openoffice.org-3/work/OOO330_m20/solver/330/unxfbsdx.pro/inc/external
 -I/usr/ports/editors/openoffice.org-3/work/OOO330_m20/solver/330/unxfbsdx.pro/inc
 -I/usr/ports/editors/openoffice.org-3/work/OOO330_m20/solenv/unxfbsdx/inc
 -I/usr/ports/editors/openoffice.org-3/work/OOO330_m20/solenv/inc
 -I/usr/ports/editors/openoffice.org-3/work/OOO330_m20/res
 -I/usr/ports/editors/openoffice.org-3/work/OOO330_m20/solver/330/unxfbsdx.pro/inc/stl
 -I/usr/ports/editors/openoffice.org-3/work/OOO330_m20/solenv/inc/Xp31
 -I/usr/local/diablo-jdk1.6.0/include
 -I/usr/local/diablo-jdk1.6.0/include/freebsd
 -I/usr/local/diablo-jdk1.6.0/i
 nclude/bs
 d -I/usr/local/diablo-jdk1.6.0/include/linux
 -I/usr/local/diablo-jdk1.6.0/include/native_threads/include
 -I/usr/local/include
 -I/usr/ports/editors/openoffice.org-3/work/OOO330_m20/solver/330/unxfbsdx.pro/inc/offuh
 -I. -I../../res -I. -pipe -fvisibility-inlines-hidden -g1 -Wall
 -Wextra -Wendif-labels -Wshadow -Wno-ctor-dtor-privacy
 -Wno-non-virtual-dtor -fpic -DFREEBSD -DUNX -DVCL -DGCC -DC341
 -DX86_64 -D_PTHREADS -D_REENTRANT -DNEW_SOLAR -D_USE_NAMESPACE=1
 -DSTLPORT_VERSION=400 -DHAVE_GCC_VISIBILITY_FEATURE -DX86_64 -D__DMAKE
 -DUNIX -DCPPU_ENV=gcc3 -DGXX_INCLUDE_PATH=/usr/include/c++/4.2
 -DSUPD=330 -DPRODUCT -DNDEBUG -DOSL_DEBUG_LEVEL=0 -DOPTIMIZE -DCUI
 -DSOLAR_JAVA -DOOO_DLLIMPLEMENTATION_DBTOOLS -DSHAREDLIB -D_DLL_
 -fexceptions -fno-enforce-eh-specs -DEXCEPTIONS_ON -o
 ../../unxfbsdx.pro/slo/wrap_sqlbison.o
 /usr/ports/editors/openoffice.org-3/work/OOO330_m20/connectivity/source/parse/wrap_sqlbison.cxx
 In file included from
 /usr/ports/editors/openoffice.org-3/work/OOO330_m20/connectivity/source/parse/wrap_sqlbison.cxx:31:
 ../../unxfbsdx.pro/misc/sqlbison.cxx: In function 'int SQLyyparse()':
 ../../unxfbsdx.pro/misc/sqlbison.cxx:7813: error: invalid conversion
 from 'const char*' to 'sal_Char*'
 ../../unxfbsdx.pro/misc/sqlbison.cxx:7813: error: initializing
 argument 1 of 'void connectivity::OSQLParser::error(sal_Char*)'
 dmake: Error code 1, while making
 '../../unxfbsdx.pro/slo/wrap_sqlbison.obj'
 
 
 Any thoughts on how to fix?
 
 
 This patch worked for me.  Put it under editors/openoffice.org-3/files.
 
 --- connectivity/source/parse/sqlbison.y.orig 2011-01-18 05:32:30.0 
 -0800
 +++ connectivity/source/parse/sqlbison.y  2012-02-13 14:03:12.0 
 -0800
 @@ -4334,7 +4334,7 @@
  }
  
  // -
 -void OSQLParser::error(sal_Char *fmt)
 +void OSQLParser::error(const sal_Char *fmt)
  {
   if(!m_sErrorMessage.getLength())
   {
 --- connectivity/inc/connectivity/sqlparse.hxx.orig   2011-01-18 
 05:32:29.0 -0800
 +++ connectivity/inc/connectivity/sqlparse.hxx2012-02-13 
 17:06:06.0 -0800
 @@ -232,7 +232,7 @@
  // returns the type for a parameter in a given function name
  static sal_Int32 getFunctionParameterType(sal_uInt32 
 _nTokenId,sal_uInt32 _nPos);
  
 - void error(sal_Char *fmt);
 + void error(const sal_Char *fmt);
   int SQLlex();
  #ifdef YYBISON
   void setParseTree(OSQLParseNode * pNewParseTree);
 
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to freebsd-ports-unsubscr...@freebsd.org


Re: OO 3.3.0 fails to build connectivity module on amd64 9-STABLE

2012-02-13 Thread Lawrence Stewart

On 02/14/12 17:32, Don Lewis wrote:

On 10 Feb, Maho NAKATA wrote:

Hi

I also reproduced, and pointy hat, either.
It looks like ooo port is broken again...

Thanks
  Nakata Maho

From: Lawrence Stewartlstew...@freebsd.org
Subject: OO 3.3.0 fails to build connectivity module on amd64 9-STABLE
Date: Thu, 09 Feb 2012 16:42:30 +1100


Hi,

The OO 3.3.0 build fails in the connectivity module with the
following error:


Compiling: connectivity/source/parse/wrap_sqlbison.cxx
c++ -fmessage-length=0 -c -O2 -fno-strict-aliasing -DENABLE_LAYOUT=0
-DENABLE_LAYOUT_EXPERIMENTAL=0 -fvisibility=hidden
-I. -I../../unxfbsdx.pro/misc -I../../unxfbsdx.pro/inc/sql -I../inc
-I../../inc/pch -I../../inc -I../../unx/inc -I../../unxfbsdx.pro/inc
-I. 
-I/usr/ports/editors/openoffice.org-3/work/OOO330_m20/solver/330/unxfbsdx.pro/inc/stl
-I/usr/ports/editors/openoffice.org-3/work/OOO330_m20/solver/330/unxfbsdx.pro/inc/external
-I/usr/ports/editors/openoffice.org-3/work/OOO330_m20/solver/330/unxfbsdx.pro/inc
-I/usr/ports/editors/openoffice.org-3/work/OOO330_m20/solenv/unxfbsdx/inc
-I/usr/ports/editors/openoffice.org-3/work/OOO330_m20/solenv/inc
-I/usr/ports/editors/openoffice.org-3/work/OOO330_m20/res
-I/usr/ports/editors/openoffice.org-3/work/OOO330_m20/solver/330/unxfbsdx.pro/inc/stl
-I/usr/ports/editors/openoffice.org-3/work/OOO330_m20/solenv/inc/Xp31
-I/usr/local/diablo-jdk1.6.0/include
-I/usr/local/diablo-jdk1.6.0/include/freebsd
-I/usr/local/diablo-jdk1.6.0/i

nclude/bs
d -I/usr/local/diablo-jdk1.6.0/include/linux
-I/usr/local/diablo-jdk1.6.0/include/native_threads/include
-I/usr/local/include
-I/usr/ports/editors/openoffice.org-3/work/OOO330_m20/solver/330/unxfbsdx.pro/inc/offuh
-I. -I../../res -I. -pipe -fvisibility-inlines-hidden -g1 -Wall
-Wextra -Wendif-labels -Wshadow -Wno-ctor-dtor-privacy
-Wno-non-virtual-dtor -fpic -DFREEBSD -DUNX -DVCL -DGCC -DC341
-DX86_64 -D_PTHREADS -D_REENTRANT -DNEW_SOLAR -D_USE_NAMESPACE=1
-DSTLPORT_VERSION=400 -DHAVE_GCC_VISIBILITY_FEATURE -DX86_64 -D__DMAKE
-DUNIX -DCPPU_ENV=gcc3 -DGXX_INCLUDE_PATH=/usr/include/c++/4.2
-DSUPD=330 -DPRODUCT -DNDEBUG -DOSL_DEBUG_LEVEL=0 -DOPTIMIZE -DCUI
-DSOLAR_JAVA -DOOO_DLLIMPLEMENTATION_DBTOOLS -DSHAREDLIB -D_DLL_
-fexceptions -fno-enforce-eh-specs -DEXCEPTIONS_ON -o
../../unxfbsdx.pro/slo/wrap_sqlbison.o
/usr/ports/editors/openoffice.org-3/work/OOO330_m20/connectivity/source/parse/wrap_sqlbison.cxx

In file included from
/usr/ports/editors/openoffice.org-3/work/OOO330_m20/connectivity/source/parse/wrap_sqlbison.cxx:31:
../../unxfbsdx.pro/misc/sqlbison.cxx: In function 'int SQLyyparse()':
../../unxfbsdx.pro/misc/sqlbison.cxx:7813: error: invalid conversion
from 'const char*' to 'sal_Char*'
../../unxfbsdx.pro/misc/sqlbison.cxx:7813: error: initializing
argument 1 of 'void connectivity::OSQLParser::error(sal_Char*)'
dmake: Error code 1, while making
'../../unxfbsdx.pro/slo/wrap_sqlbison.obj'





Any thoughts on how to fix?



This patch worked for me.  Put it under editors/openoffice.org-3/files.


Works for me, thanks Don.

Cheers,
Lawrence
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to freebsd-ports-unsubscr...@freebsd.org


Re: OO 3.3.0 fails to build connectivity module on amd64 9-STABLE

2012-02-12 Thread Don Lewis
On 10 Feb, Maho NAKATA wrote:
 Hi
 
 I also reproduced, and pointy hat, either.
 It looks like ooo port is broken again...

On 10-CURRENT I needed the following patch to even make it to the
connectivity problem.  The problem is that defining POSIX_SOURCE now
hides the locale_t definition.

--- /dev/null   2012-02-11 16:33:00.0 -0800
+++ libxslt/libxslt-libexslt-date_c.patch   2012-02-11 16:40:50.0 
-0800
@@ -0,0 +1,11 @@
+--- misc/build/libxslt-1.1.26/libexslt/date.c.orig 2009-09-17 
07:51:10.0 -0700
 misc/build/libxslt-1.1.26/libexslt/date.c  2012-02-11 16:40:48.0 
-0800
+@@ -29,7 +29,7 @@
+ #endif
+ 
+ #if HAVE_LOCALTIME_R  /* _POSIX_SOURCE required by gnu libc */
+-#ifndef _AIX51/* but on AIX we're not using gnu libc */
++#if !defined(_AIX51)  !defined(__FreeBSD__) /* but on AIX or FreeBSD we're 
not using gnu libc */
+ #define _POSIX_SOURCE
+ #endif
+ #endif
--- libxslt/makefile.mk.orig2011-01-18 05:34:25.0 -0800
+++ libxslt/makefile.mk 2012-02-11 22:25:14.0 -0800
@@ -55,6 +55,7 @@
 PATCH_FILES=libxslt-configure.patch \
 libxslt-win_manifest.patch \
 libxslt-mingw.patch \
+libxslt-libexslt-date_c.patch \
 libxslt-internal-symbols.patch
 
 

___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to freebsd-ports-unsubscr...@freebsd.org


Re: OO 3.3.0 fails to build connectivity module on amd64 9-STABLE

2012-02-12 Thread Maho NAKATA
Hi Don

committed.
thank you very much.
Regards,
 Nakata Maho

From: Don Lewis truck...@freebsd.org
Subject: Re: OO 3.3.0 fails to build connectivity module on amd64 9-STABLE
Date: Sun, 12 Feb 2012 13:31:55 -0800 (PST)

 On 10 Feb, Maho NAKATA wrote:
 Hi
 
 I also reproduced, and pointy hat, either.
 It looks like ooo port is broken again...
 
 On 10-CURRENT I needed the following patch to even make it to the
 connectivity problem.  The problem is that defining POSIX_SOURCE now
 hides the locale_t definition.
 
 --- /dev/null 2012-02-11 16:33:00.0 -0800
 +++ libxslt/libxslt-libexslt-date_c.patch 2012-02-11 16:40:50.0 
 -0800
 @@ -0,0 +1,11 @@
 +--- misc/build/libxslt-1.1.26/libexslt/date.c.orig   2009-09-17 
 07:51:10.0 -0700
  misc/build/libxslt-1.1.26/libexslt/date.c2012-02-11 
 16:40:48.0 -0800
 +@@ -29,7 +29,7 @@
 + #endif
 + 
 + #if HAVE_LOCALTIME_R/* _POSIX_SOURCE required by gnu libc */
 +-#ifndef _AIX51  /* but on AIX we're not using gnu libc */
 ++#if !defined(_AIX51)  !defined(__FreeBSD__) /* but on AIX or FreeBSD 
 we're not using gnu libc */
 + #define _POSIX_SOURCE
 + #endif
 + #endif
 --- libxslt/makefile.mk.orig  2011-01-18 05:34:25.0 -0800
 +++ libxslt/makefile.mk   2012-02-11 22:25:14.0 -0800
 @@ -55,6 +55,7 @@
  PATCH_FILES=libxslt-configure.patch \
  libxslt-win_manifest.patch \
  libxslt-mingw.patch \
 +libxslt-libexslt-date_c.patch \
  libxslt-internal-symbols.patch
  
  
 
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to freebsd-ports-unsubscr...@freebsd.org


Re: OO 3.3.0 fails to build connectivity module on amd64 9-STABLE

2012-02-10 Thread Maho NAKATA
Hi

I also reproduced, and pointy hat, either.
It looks like ooo port is broken again...

Thanks
 Nakata Maho

From: Lawrence Stewart lstew...@freebsd.org
Subject: OO 3.3.0 fails to build connectivity module on amd64 9-STABLE
Date: Thu, 09 Feb 2012 16:42:30 +1100

 Hi,
 
 The OO 3.3.0 build fails in the connectivity module with the
 following error:
 
 Compiling: connectivity/source/parse/wrap_sqlbison.cxx
 c++ -fmessage-length=0 -c -O2 -fno-strict-aliasing -DENABLE_LAYOUT=0
 -DENABLE_LAYOUT_EXPERIMENTAL=0 -fvisibility=hidden
 -I. -I../../unxfbsdx.pro/misc -I../../unxfbsdx.pro/inc/sql -I../inc
 -I../../inc/pch -I../../inc -I../../unx/inc -I../../unxfbsdx.pro/inc
 -I. 
 -I/usr/ports/editors/openoffice.org-3/work/OOO330_m20/solver/330/unxfbsdx.pro/inc/stl
 -I/usr/ports/editors/openoffice.org-3/work/OOO330_m20/solver/330/unxfbsdx.pro/inc/external
 -I/usr/ports/editors/openoffice.org-3/work/OOO330_m20/solver/330/unxfbsdx.pro/inc
 -I/usr/ports/editors/openoffice.org-3/work/OOO330_m20/solenv/unxfbsdx/inc
 -I/usr/ports/editors/openoffice.org-3/work/OOO330_m20/solenv/inc
 -I/usr/ports/editors/openoffice.org-3/work/OOO330_m20/res
 -I/usr/ports/editors/openoffice.org-3/work/OOO330_m20/solver/330/unxfbsdx.pro/inc/stl
 -I/usr/ports/editors/openoffice.org-3/work/OOO330_m20/solenv/inc/Xp31
 -I/usr/local/diablo-jdk1.6.0/include
 -I/usr/local/diablo-jdk1.6.0/include/freebsd
 -I/usr/local/diablo-jdk1.6.0/i
 nclude/bs
 d -I/usr/local/diablo-jdk1.6.0/include/linux
 -I/usr/local/diablo-jdk1.6.0/include/native_threads/include
 -I/usr/local/include
 -I/usr/ports/editors/openoffice.org-3/work/OOO330_m20/solver/330/unxfbsdx.pro/inc/offuh
 -I. -I../../res -I. -pipe -fvisibility-inlines-hidden -g1 -Wall
 -Wextra -Wendif-labels -Wshadow -Wno-ctor-dtor-privacy
 -Wno-non-virtual-dtor -fpic -DFREEBSD -DUNX -DVCL -DGCC -DC341
 -DX86_64 -D_PTHREADS -D_REENTRANT -DNEW_SOLAR -D_USE_NAMESPACE=1
 -DSTLPORT_VERSION=400 -DHAVE_GCC_VISIBILITY_FEATURE -DX86_64 -D__DMAKE
 -DUNIX -DCPPU_ENV=gcc3 -DGXX_INCLUDE_PATH=/usr/include/c++/4.2
 -DSUPD=330 -DPRODUCT -DNDEBUG -DOSL_DEBUG_LEVEL=0 -DOPTIMIZE -DCUI
 -DSOLAR_JAVA -DOOO_DLLIMPLEMENTATION_DBTOOLS -DSHAREDLIB -D_DLL_
 -fexceptions -fno-enforce-eh-specs -DEXCEPTIONS_ON -o
 ../../unxfbsdx.pro/slo/wrap_sqlbison.o
 /usr/ports/editors/openoffice.org-3/work/OOO330_m20/connectivity/source/parse/wrap_sqlbison.cxx
 In file included from
 /usr/ports/editors/openoffice.org-3/work/OOO330_m20/connectivity/source/parse/wrap_sqlbison.cxx:31:
 ../../unxfbsdx.pro/misc/sqlbison.cxx: In function 'int SQLyyparse()':
 ../../unxfbsdx.pro/misc/sqlbison.cxx:7813: error: invalid conversion
 from 'const char*' to 'sal_Char*'
 ../../unxfbsdx.pro/misc/sqlbison.cxx:7813: error: initializing
 argument 1 of 'void connectivity::OSQLParser::error(sal_Char*)'
 dmake: Error code 1, while making
 '../../unxfbsdx.pro/slo/wrap_sqlbison.obj'
 
 Ports tree was csuped yesterday and all installed ports are up to
 date.
 
 System info that might be useful...
 
 lstewart@lstewart uname -a
 FreeBSD lstewart 9.0-STABLE FreeBSD 9.0-STABLE #1 r231173M: Wed Feb 8
 16:14:51 EST 2012 lstewart@lstewart:/usr/obj/usr/src/sys/DESKTOP amd64
 
 
 lstewart@lstewart pkg_info -x bison
 Information for bison-2.5,1:
 
 
 Relevant lines from /etc/make.conf:
 .if ${.CURDIR:M*/editors/openoffice.org-3}
 WITH_KDE4=1
 LOCALIZED_LANG=en-GB
 .endif
 
 
 I'm running KDE 4.7.4.
 
 
 Any thoughts on how to fix?
 
 Cheers,
 Lawrence
 ___
 freebsd-openoff...@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-openoffice
 To unsubscribe, send any mail to
 freebsd-openoffice-unsubscr...@freebsd.org
 
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to freebsd-ports-unsubscr...@freebsd.org


OO 3.3.0 fails to build connectivity module on amd64 9-STABLE

2012-02-08 Thread Lawrence Stewart

Hi,

The OO 3.3.0 build fails in the connectivity module with the following 
error:



Compiling: connectivity/source/parse/wrap_sqlbison.cxx
c++  -fmessage-length=0 -c -O2 -fno-strict-aliasing -DENABLE_LAYOUT=0 
-DENABLE_LAYOUT_EXPERIMENTAL=0   -fvisibility=hidden -I. 
-I../../unxfbsdx.pro/misc -I../../unxfbsdx.pro/inc/sql -I../inc -I../../inc/pch 
-I../../inc -I../../unx/inc -I../../unxfbsdx.pro/inc -I. 
-I/usr/ports/editors/openoffice.org-3/work/OOO330_m20/solver/330/unxfbsdx.pro/inc/stl
 
-I/usr/ports/editors/openoffice.org-3/work/OOO330_m20/solver/330/unxfbsdx.pro/inc/external
 
-I/usr/ports/editors/openoffice.org-3/work/OOO330_m20/solver/330/unxfbsdx.pro/inc
 -I/usr/ports/editors/openoffice.org-3/work/OOO330_m20/solenv/unxfbsdx/inc 
-I/usr/ports/editors/openoffice.org-3/work/OOO330_m20/solenv/inc 
-I/usr/ports/editors/openoffice.org-3/work/OOO330_m20/res 
-I/usr/ports/editors/openoffice.org-3/work/OOO330_m20/solver/330/unxfbsdx.pro/inc/stl
 -I/usr/ports/editors/openoffice.org-3/work/OOO330_m20/solenv/inc/Xp31 
-I/usr/local/diablo-jdk1.6.0/include 
-I/usr/local/diablo-jdk1.6.0/include/freebsd -I/usr/local/diablo-jdk1.6.0/i

nclude/bs
d -I/usr/local/diablo-jdk1.6.0/include/linux 
-I/usr/local/diablo-jdk1.6.0/include/native_threads/include 
-I/usr/local/include  
-I/usr/ports/editors/openoffice.org-3/work/OOO330_m20/solver/330/unxfbsdx.pro/inc/offuh
 -I. -I../../res -I. -pipe  -fvisibility-inlines-hidden -g1 -Wall -Wextra 
-Wendif-labels -Wshadow -Wno-ctor-dtor-privacy -Wno-non-virtual-dtor   
-fpic -DFREEBSD -DUNX -DVCL -DGCC -DC341 -DX86_64  -D_PTHREADS -D_REENTRANT 
-DNEW_SOLAR -D_USE_NAMESPACE=1 -DSTLPORT_VERSION=400 
-DHAVE_GCC_VISIBILITY_FEATURE -DX86_64 -D__DMAKE -DUNIX -DCPPU_ENV=gcc3 
-DGXX_INCLUDE_PATH=/usr/include/c++/4.2 -DSUPD=330 -DPRODUCT -DNDEBUG 
-DOSL_DEBUG_LEVEL=0 -DOPTIMIZE -DCUI -DSOLAR_JAVA   
-DOOO_DLLIMPLEMENTATION_DBTOOLS -DSHAREDLIB -D_DLL_   -fexceptions 
-fno-enforce-eh-specs -DEXCEPTIONS_ON  -o 
../../unxfbsdx.pro/slo/wrap_sqlbison.o 
/usr/ports/editors/openoffice.org-3/work/OOO330_m20/connectivity/source/parse/wrap_sqlbison.cxx

In file included from 
/usr/ports/editors/openoffice.org-3/work/OOO330_m20/connectivity/source/parse/wrap_sqlbison.cxx:31:
../../unxfbsdx.pro/misc/sqlbison.cxx: In function 'int SQLyyparse()':
../../unxfbsdx.pro/misc/sqlbison.cxx:7813: error: invalid conversion from 
'const char*' to 'sal_Char*'
../../unxfbsdx.pro/misc/sqlbison.cxx:7813: error:   initializing argument 1 of 
'void connectivity::OSQLParser::error(sal_Char*)'
dmake:  Error code 1, while making '../../unxfbsdx.pro/slo/wrap_sqlbison.obj'


Ports tree was csuped yesterday and all installed ports are up to date.

System info that might be useful...

lstewart@lstewart uname -a
FreeBSD lstewart 9.0-STABLE FreeBSD 9.0-STABLE #1 r231173M: Wed Feb  8 
16:14:51 EST 2012 lstewart@lstewart:/usr/obj/usr/src/sys/DESKTOP  amd64



lstewart@lstewart pkg_info -x bison
Information for bison-2.5,1:


Relevant lines from /etc/make.conf:
.if ${.CURDIR:M*/editors/openoffice.org-3}
WITH_KDE4=1
LOCALIZED_LANG=en-GB
.endif


I'm running KDE 4.7.4.


Any thoughts on how to fix?

Cheers,
Lawrence
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to freebsd-ports-unsubscr...@freebsd.org