From owner-freebsd-openoffice@FreeBSD.ORG Mon Apr 21 06:30:06 2008 Return-Path: Delivered-To: openoffice@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6097E1065673 for ; Mon, 21 Apr 2008 06:30:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 448338FC13 for ; Mon, 21 Apr 2008 06:30:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.2/8.14.2) with ESMTP id m3L6U5eX071595 for ; Mon, 21 Apr 2008 06:30:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.2/8.14.1/Submit) id m3L6U5Aa071594; Mon, 21 Apr 2008 06:30:05 GMT (envelope-from gnats) Date: Mon, 21 Apr 2008 06:30:05 GMT Message-Id: <200804210630.m3L6U5Aa071594@freefall.freebsd.org> To: openoffice@FreeBSD.org From: HASHI Hiroaki Cc: Subject: Re: ports/121787: when devel/icu is installed, openoffice fails to build X-BeenThere: freebsd-openoffice@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: HASHI Hiroaki List-Id: Porting OpenOffice to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Apr 2008 06:30:06 -0000 The following reply was made to PR ports/121787; it has been noted by GNATS. From: HASHI Hiroaki To: bug-followup@FreeBSD.org, kvedulv@kvedulv.de Cc: Subject: Re: ports/121787: when devel/icu is installed, openoffice fails to build Date: Mon, 21 Apr 2008 15:27:24 +0900 (JST) A direct cause is version mismatch with header and library. - At compile time, system(ports) icu was used. - At linkage time, OOo bundled icu was used. In /usr/ports/editors/openoffice.org-2/work/OOH680_m12/vcl/source/glyphs/makefile.mk .IF "$(SYSTEM_FREETYPE)" == "YES" CFLAGS+=-DSYSTEM_FREETYPE $(FREETYPE_CFLAGS) .IF "$(USE_FT_EMBOLDEN)" == "YES" CFLAGS+=-DUSE_FT_EMBOLDEN .ENDIF .ENDIF CFLAGS set to '-I/usr/local/include' if 'SYSTEM_FREETYPE' is yes. So, OOo bundled icu header was shadowed by system's one. A system(ports) icu header (ver 3.8) located in /usr/local/include/unicode/*.h OOo bundled icu header (ver 3.6) located in /usr/ports/editors/openoffice.org-2/work/OOH680_m12/solver/680/unxfbsdi.pro/inc/external/unicode/*.h Following command line cause this mismatch. Making: ../../unxfbsdi.pro/slo/gcach_layout.obj c++ -fmessage-length=0 -c -Os -fno-strict-aliasing -fvisibility=hidden -DSYSTEM_FREETYPE -I/usr/local/include/freetype2 -I/usr/local/include -DUSE_FT_EMBOLDEN -I. -I../../unxfbsdi.pro/inc/glyphs -I../inc -I../../inc/pch -I../../inc -I../../unx/inc -I../../unxfbsdi.pro/inc -I. -I/usr/ports/editors/openoffice.org-2/work/OOH680_m12/solver/680/unxfbsdi.pro/inc/stl -I/usr/ports/editors/openoffice.org-2/work/OOH680_m12/solver/680/unxfbsdi.pro/inc/external -I/usr/ports/editors/openoffice.org-2/work/OOH680_m12/solver/680/unxfbsdi.pro/inc -I/usr/ports/editors/openoffice.org-2/work/OOH680_m12/solenv/unxfbsdi/inc -I/usr/ports/editors/openoffice.org-2/work/OOH680_m12/solenv/inc -I/usr/ports/editors/openoffice.org-2/work/OOH680_m12/res -I/usr/ports/editors/openoffice.org-2/work/OOH680_m12/solver/680/unxfbsdi.pro/inc/stl -I/usr/ports/editors/openoffice.org-2/work/OOH680_m12/solenv/inc/Xp31 -I/usr/local/jdk1.5.0/include -I/usr/local/jdk1.5.0/include/freebsd -I/usr/local/jdk1.5.0/include/bsd -I/usr/local/jdk1.5.0/include/linux -I/usr/local/jdk1.5.0/include/native_threads/include -I/usr/local/include -I/usr/ports/editors/openoffice.org-2/work/OOH680_m12/solver/680/unxfbsdi.pro/inc/offuh -I. -I../../res -I. -pipe -mtune=pentiumpro -fvisibility-inlines-hidden -g -Wall -Wextra -Wendif-labels -Wshadow -Wno-ctor-dtor-privacy -Wno-non-virtual-dtor -fpic -DFREEBSD -DUNX -DVCL -DGCC -DC341 -DINTEL -DCVER=C341 -DX86 -D_PTHREADS -D_REENTRANT -DNEW_SOLAR -D_USE_NAMESPACE=1 -DSTLPORT_VERSION=450 -DHAVE_GCC_VISIBILITY_FEATURE -D__DMAKE -DUNIX -DCPPU_ENV=gcc3 -DGXX_INCLUDE_PATH=/usr/include/c++/4.2 -DSUPD=680 -DPRODUCT -DNDEBUG -DPRODUCT_FULL -DOSL_DEBUG_LEVEL=0 -DOPTIMIZE -DCUI -DSOLAR_JAVA -DOOH680=OOH680 -DUSE_BUILTIN_RASTERIZER -DVCL_DLLIMPLEMENTATION -DSHAREDLIB -D_DLL_ -fexceptions -fno-enforce-eh-specs -DEXCEPTIONS_ON -o ../../unxfbsdi.pro/slo/gcach_layout.o /usr/ports/editors/openoffice.org-2/work/OOH680_m12/vcl/source/glyphs/gcach_layout.cxx From owner-freebsd-openoffice@FreeBSD.ORG Mon Apr 21 11:07:56 2008 Return-Path: Delivered-To: openoffice@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2D41810656BE for ; Mon, 21 Apr 2008 11:07:56 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1C4098FC26 for ; Mon, 21 Apr 2008 11:07:56 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.2/8.14.2) with ESMTP id m3LB7uBK096543 for ; Mon, 21 Apr 2008 11:07:56 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.2/8.14.1/Submit) id m3LB7t3I096539 for openoffice@FreeBSD.org; Mon, 21 Apr 2008 11:07:55 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 21 Apr 2008 11:07:55 GMT Message-Id: <200804211107.m3LB7t3I096539@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: openoffice@FreeBSD.org Cc: Subject: Current problem reports assigned to openoffice@FreeBSD.org X-BeenThere: freebsd-openoffice@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting OpenOffice to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Apr 2008 11:07:56 -0000 Current FreeBSD problem reports Critical problems Serious problems S Tracker Resp. Description -------------------------------------------------------------------------------- f ports/107229 openoffice sysutils/coreutils: gcp fails to set default ACL which o ports/108313 openoffice editors/openoffice.org port build fails o ports/112283 openoffice editors/openoffice-2 fails to build with "pyconfig.h: o ports/114050 openoffice editors/openoffice.org-2 - OpenOffice 2.2.1/MOZ: dmake o ports/115518 openoffice editors/openoffice.org-2 Draw crashes trying to print o ports/117808 openoffice editors/OpenOffice.org-2 seems to be looping o ports/117965 openoffice editors/openoffice.org-2 Impress crashes with multiple o ports/118453 openoffice Build of editors/OpenOffice.org-2 failed o ports/118507 openoffice editors/Openoffice.org-2 2.3.1/AMD64 does not show ODB o ports/119204 openoffice [patch] editors/OpenOffice.org-2 v2.3 loops when file o ports/121787 openoffice when devel/icu is installed, openoffice fails to build 11 problems total. Non-critical problems S Tracker Resp. Description -------------------------------------------------------------------------------- f ports/103896 openoffice OO.o port should add /program to LD_LIBRARY_PA o ports/111561 openoffice editors/openoffice.org-2 build fails with devel/epm in o ports/116741 openoffice editors/openoffice.org-2 build errors related to java o ports/118527 openoffice editors/openoffice.org-2 seg faults when asked to perf 4 problems total. From owner-freebsd-openoffice@FreeBSD.ORG Tue Apr 22 15:50:14 2008 Return-Path: Delivered-To: freebsd-openoffice@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7DA50106567C for ; Tue, 22 Apr 2008 15:50:14 +0000 (UTC) (envelope-from gofdpo-freebsd-openoffice@m.gmane.org) Received: from ciao.gmane.org (main.gmane.org [80.91.229.2]) by mx1.freebsd.org (Postfix) with ESMTP id CF2968FC30 for ; Tue, 22 Apr 2008 15:50:13 +0000 (UTC) (envelope-from gofdpo-freebsd-openoffice@m.gmane.org) Received: from list by ciao.gmane.org with local (Exim 4.43) id 1JoKl1-0006my-4j for freebsd-openoffice@freebsd.org; Tue, 22 Apr 2008 15:50:11 +0000 Received: from host61-162-dynamic.8-87-r.retail.telecomitalia.it ([87.8.162.61]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 22 Apr 2008 15:50:11 +0000 Received: from saper by host61-162-dynamic.8-87-r.retail.telecomitalia.it with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 22 Apr 2008 15:50:11 +0000 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-openoffice@freebsd.org From: Marcin Cieslak Date: Tue, 22 Apr 2008 17:49:37 +0200 Lines: 198 Message-ID: Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-ripemd160; protocol="application/pgp-signature"; boundary="------------enigAB566453CCDC80F545E19971" X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: host61-162-dynamic.8-87-r.retail.telecomitalia.it User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; en-US; rv:1.8.1.13) Gecko/20080405 SeaMonkey/1.1.9 Mnenhy/0.7.5.0 X-Enigmail-Version: 0.95.6 Sender: news Subject: CFT: Patch for OpenOffice.org to fix icu-3.8 breakage, as well as -CURRENT diablo-jdk breakage X-BeenThere: freebsd-openoffice@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting OpenOffice to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 22 Apr 2008 15:50:14 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enigAB566453CCDC80F545E19971 Content-Type: multipart/mixed; boundary="------------050906030806030404040501" This is a multi-part message in MIME format. --------------050906030806030404040501 Content-Type: text/plain; charset=ISO-8859-2; format=flowed Content-Transfer-Encoding: quoted-printable Reposting from -ports -------- Original Message -------- Subject: CFT: Patch for OpenOffice.org to fix icu-3.8 breakage, as=20 well as -CURRENT diablo-jdk breakage Date: Wed, 16 Apr 2008 22:00:44 -0400 From: Coleman Kane Organization: FreeBSD Project To: ports@FreeBSD.org Newsgroups: gmane.os.freebsd.devel.ports Hello everyone, I've got a two-in-one patch I'd like to know if any volunteers would like to test to get ports/editors/openoffice.org-2-RC built and installed under the following circumstances where it may be failing: 1. You've installed the devel/icu 3.8+ port, and the build gives you an undefined symbol named "_ZN7icu_3_814LEFontInstance16getStaticClassIDEv" error 2. You're running 8.0-CURRENT and the KSE stuff has been removed and you installed diablo-jdk. This may be crashing when it tries to run the java stuff during the OO.o build, causing the build to fail with obscure error messages. My fix for #1, above, is to provide a new knob WITH_SYSTEM_ICU that tells configure to use the local-system's installed icu library, rather than the one that was shipped with the OO.o tarball. It seems that during the build, the include path unwittingly brings in your system headers, but then attempts to link against the shipped library. Both of these are incompatible APIs, and the result is an inability to resolve a symbol that is public in the OO.o version, but protected in the ports version. I am also attaching a patch for devel/icu that applies this permission change. My fix for #2, above, is to set the build jdk to "bsdjava" for FreeBSD 8.0+, which results in having Mk/bsd.java.mk look for the ports source-build rather than using the diablo-jdk for doing java compiles. For other versions of FreeBSD, the default is left at what it was before (diablo, then ports). --=20 Coleman Kane --------------050906030806030404040501 Content-Type: text/x-patch; name="openoffice.org-system-icu.patch" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline; filename="openoffice.org-system-icu.patch" diff --git a/editors/openoffice.org-2-RC/Makefile b/editors/openoffice.or= g-2-RC/Makefile index c870dc7..5655df5 100644 --- a/editors/openoffice.org-2-RC/Makefile +++ b/editors/openoffice.org-2-RC/Makefile @@ -7,6 +7,7 @@ =20 PORTNAME?=3D openoffice.org PORTVERSION?=3D 2.4.${SNAPDATE} +PORTREVISION?=3D 1 CATEGORIES+=3D editors java MASTER_SITES+=3D http://ooopackages.good-day.net/pub/OpenOffice.org/sour= ces/ \ http://openoffice.lunarshells.com/sources/ \ @@ -53,7 +54,11 @@ WITHOUT_CPU_CFLAGS=3D true =20 USE_JAVA=3D yes JAVA_BUILD=3D jdk +.if (${OSVERSION} >=3D 800000) +JAVA_VENDOR=3D bsdjava +.else JAVA_VENDOR=3D freebsd bsdjava +.endif .if (${OSVERSION} >=3D 700000) JAVA_VERSION=3D 1.5 .else diff --git a/editors/openoffice.org-2-RC/files/Makefile.knobs b/editors/o= penoffice.org-2-RC/files/Makefile.knobs index c0c76e9..a5a9644 100644 --- a/editors/openoffice.org-2-RC/files/Makefile.knobs +++ b/editors/openoffice.org-2-RC/files/Makefile.knobs @@ -54,6 +54,13 @@ CONFIGURE_ARGS+=3D --enable-debug --enable-symbols=3DT= RUE --enable-dbgutil CONFIGURE_ARGS+=3D --enable-symbols=3DSMALL .endif =20 +.if defined(WITH_SYSTEM_ICU) +LIB_DEPENDS+=3D icule:${PORTSDIR}/devel/icu +CONFIGURE_ARGS+=3D --with-system-icu=3Dyes +.else +CONFIGURE_ARGS+=3D --with-system-icu=3Dno +.endif + pre-fetch: .if (${OSVERSION} < 503001 && ${OSVERSION} >=3D 500000) || (${OSVERSION}= < 492000) @${ECHO} @@ -86,6 +93,11 @@ pre-fetch: @${ECHO} "You can compile OOo without gnome VFS support with" @${ECHO} "make -DWITHOUT_GNOMEVFS" .endif +.if !defined(WITH_SYSTEM_ICU) + @${ECHO} + @${ECHO} "You can compile OOo with devel/icu from ports with" + @${ECHO} "make -DWITH_SYSTEM_ICU" +.endif .if !defined(WITH_SYSTEM_FREETYPE) @${ECHO} @${ECHO} "You can compile OOo with freetype2 from ports with" --------------050906030806030404040501 Content-Type: text/x-patch; name="icu-public-setBreakType.patch" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline; filename="icu-public-setBreakType.patch" diff --git a/devel/icu/Makefile b/devel/icu/Makefile index bc367b3..78edecb 100644 --- a/devel/icu/Makefile +++ b/devel/icu/Makefile @@ -7,7 +7,7 @@ =20 PORTNAME=3D icu PORTVERSION=3D 3.8.1 -PORTREVISION=3D 1 +PORTREVISION=3D 2 CATEGORIES=3D devel MASTER_SITES=3D ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR=3D${PORTNAME} diff --git a/devel/icu/files/patch-common_unicode_rbbi.h b/devel/icu/file= s/patch-common_unicode_rbbi.h new file mode 100644 index 0000000..68f2fc2 --- /dev/null +++ b/devel/icu/files/patch-common_unicode_rbbi.h @@ -0,0 +1,17 @@ +--- common/unicode/rbbi.h.orig 2008-04-16 09:58:20.000000000 -0400 ++++ common/unicode/rbbi.h 2008-04-16 09:59:00.000000000 -0400 +@@ -611,12 +611,14 @@ + virtual int32_t getBreakType() const; + #endif +=20 ++public: + /** + * Set the type of the break iterator. + * @internal + */ + virtual void setBreakType(int32_t type); +=20 ++protected: + /** + * Common initialization function, used by constructors and buffer= Clone. + * (Also used by DictionaryBasedBreakIterator::createBufferClone= ().) --------------050906030806030404040501 Content-Type: application/pgp-signature; name="signature.asc" Content-Transfer-Encoding: base64 Content-Disposition: inline; filename="signature.asc" LS0tLS1CRUdJTiBQR1AgU0lHTkFUVVJFLS0tLS0KVmVyc2lvbjogR251UEcgdjEuNC44IChG cmVlQlNEKQoKaUVZRUFCRUNBQVlGQWtnR3Iwb0FDZ2tRY01TeFFjWGF0NWVpZlFDY0NUQnpT WWRSZ1NtaUFRd3J2dk5xVUJWNwp5NjBBblJMeE1mL1h6QytGTmhNYk9sSU50MWNYUVhsMgo9 ZWtUOAotLS0tLUVORCBQR1AgU0lHTkFUVVJFLS0tLS0KCg== --------------050906030806030404040501-- --------------enigAB566453CCDC80F545E19971 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- iQCVAwUBSA4JFD2W2v2wY27ZAQNhJwP/TMF2znL827LZUZNU4wd620m93c8yNrNF Xl019XlHrXncJOwl3yLzYqle4q2UAoIIKw4bLWK53bewGc5ccWbXcGaGU0jUV/Fm zXCx6BiD+Uiqc0o57CHnzC2BTUK6lZ9a9ASHebJaHWQIb/70d4qbNH1madpp4VhF EfVTcrc+YZ8= =DuOW -----END PGP SIGNATURE----- --------------enigAB566453CCDC80F545E19971-- From owner-freebsd-openoffice@FreeBSD.ORG Wed Apr 23 09:13:45 2008 Return-Path: Delivered-To: openoffice@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 58D51106566B; Wed, 23 Apr 2008 09:13:45 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 34F6D8FC15; Wed, 23 Apr 2008 09:13:45 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.2/8.14.2) with ESMTP id m3N9Djc3053617; Wed, 23 Apr 2008 09:13:45 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.2/8.14.1/Submit) id m3N9Dj7O053612; Wed, 23 Apr 2008 09:13:45 GMT (envelope-from linimon) Date: Wed, 23 Apr 2008 09:13:45 GMT Message-Id: <200804230913.m3N9Dj7O053612@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, openoffice@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/123008: editors/openoffice.org-2 (2.4) compilation fails: dmake: Error code 1, while making '../unxfbsdx.pro/lib/libvcl680fx.so' X-BeenThere: freebsd-openoffice@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting OpenOffice to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Apr 2008 09:13:45 -0000 Old Synopsis: port/openoffice.org-2 (2.4) compilation fails: dmake: Error code 1, while making '../unxfbsdx.pro/lib/libvcl680fx.so' New Synopsis: editors/openoffice.org-2 (2.4) compilation fails: dmake: Error code 1, while making '../unxfbsdx.pro/lib/libvcl680fx.so' Responsible-Changed-From-To: freebsd-ports-bugs->openoffice Responsible-Changed-By: linimon Responsible-Changed-When: Wed Apr 23 09:13:21 UTC 2008 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=123008 From owner-freebsd-openoffice@FreeBSD.ORG Wed Apr 23 09:50:03 2008 Return-Path: Delivered-To: openoffice@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F2BBD1065670 for ; Wed, 23 Apr 2008 09:50:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E3FF28FC0C for ; Wed, 23 Apr 2008 09:50:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.2/8.14.2) with ESMTP id m3N9o3vJ056585 for ; Wed, 23 Apr 2008 09:50:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.2/8.14.1/Submit) id m3N9o3M7056584; Wed, 23 Apr 2008 09:50:03 GMT (envelope-from gnats) Date: Wed, 23 Apr 2008 09:50:03 GMT Message-Id: <200804230950.m3N9o3M7056584@freefall.freebsd.org> To: openoffice@FreeBSD.org From: Marcin Cieslak Cc: Subject: Re: ports/121787: when devel/icu is installed, openoffice fails to build X-BeenThere: freebsd-openoffice@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Marcin Cieslak List-Id: Porting OpenOffice to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Apr 2008 09:50:04 -0000 The following reply was made to PR ports/121787; it has been noted by GNATS. From: Marcin Cieslak To: bug-followup@FreeBSD.org, kvedulv@kvedulv.de Cc: Mark Linimon Subject: Re: ports/121787: when devel/icu is installed, openoffice fails to build Date: Wed, 23 Apr 2008 11:44:01 +0200 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enigE02C1C43452A5535D120199F Content-Type: text/plain; charset=ISO-8859-2; format=flowed Content-Transfer-Encoding: quoted-printable This is the same bug as in http://www.freebsd.org/cgi/query-pr.cgi?pr=3D123008 There is a patch to test already available. Please close this issue. --=20 << Marcin Cieslak // saper@saper.info >> --------------enigE02C1C43452A5535D120199F Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- iQCVAwUBSA8E4T2W2v2wY27ZAQN0SQP/Zu717ecoemfRaZU/TzYQB5ZTWyPWLJUl /nS2WWeV9ROJEYud95RvsrQNH2+eUgjkLQpeXzTnxNvB7N0UIrvQju5evO5AwR/X keWF1QfAZW81AZvYjJvkV/TZf6Bq90pICXnVhE0ZQmw+nub8+zi09d9d3LAaEDQo SJSVgA8Jss8= =lE1C -----END PGP SIGNATURE----- --------------enigE02C1C43452A5535D120199F-- From owner-freebsd-openoffice@FreeBSD.ORG Wed Apr 23 09:50:06 2008 Return-Path: Delivered-To: openoffice@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4022B106566B for ; Wed, 23 Apr 2008 09:50:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 305608FC0A for ; Wed, 23 Apr 2008 09:50:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.2/8.14.2) with ESMTP id m3N9o6Z8056637 for ; Wed, 23 Apr 2008 09:50:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.2/8.14.1/Submit) id m3N9o6SG056636; Wed, 23 Apr 2008 09:50:06 GMT (envelope-from gnats) Date: Wed, 23 Apr 2008 09:50:06 GMT Message-Id: <200804230950.m3N9o6SG056636@freefall.freebsd.org> To: openoffice@FreeBSD.org From: Marcin Cieslak Cc: Subject: Re: ports/123008: editors/openoffice.org-2 (2.4) compilation fails: dmake: Error code 1, while making '../unxfbsdx.pro/lib/libvcl680fx.so' X-BeenThere: freebsd-openoffice@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Marcin Cieslak List-Id: Porting OpenOffice to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Apr 2008 09:50:06 -0000 The following reply was made to PR ports/123008; it has been noted by GNATS. From: Marcin Cieslak To: bug-followup@FreeBSD.org, ohartman@zedat.fu-berlin.de, Mark Linimon Cc: Subject: Re: ports/123008: editors/openoffice.org-2 (2.4) compilation fails: dmake: Error code 1, while making '../unxfbsdx.pro/lib/libvcl680fx.so' Date: Wed, 23 Apr 2008 11:43:56 +0200 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig99266D36E108BDAF371C0989 Content-Type: text/plain; charset=ISO-8859-2; format=flowed Content-Transfer-Encoding: quoted-printable http://www.freebsd.org/cgi/query-pr.cgi?pr=3Dports/121787 is a duplicate = of this bug. --=20 << Marcin Cieslak // saper@system.pl >> --------------enig99266D36E108BDAF371C0989 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- iQCVAwUBSA8E3D2W2v2wY27ZAQM5cgP+OxcE36WJ+pFDqLFtGrLDYcgK9XoHzcoO /Z6wk2FXIIpvrSm/MNTrodiOC5MVLXH/mIqUWPImKMXGzApD/V0c70TaGGOtl6AW xdo5U7BnakNsv+M57Ew6qmkCLvoeypSo3EAActp1XvSVvF7NnqyJKtfXFQU9ixCW VPYivN+aRiA= =ms/1 -----END PGP SIGNATURE----- --------------enig99266D36E108BDAF371C0989-- From owner-freebsd-openoffice@FreeBSD.ORG Wed Apr 23 10:00:07 2008 Return-Path: Delivered-To: openoffice@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 92BDD106564A for ; Wed, 23 Apr 2008 10:00:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 78B9F8FC18 for ; Wed, 23 Apr 2008 10:00:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.2/8.14.2) with ESMTP id m3NA07pY056890 for ; Wed, 23 Apr 2008 10:00:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.2/8.14.1/Submit) id m3NA07kR056889; Wed, 23 Apr 2008 10:00:07 GMT (envelope-from gnats) Date: Wed, 23 Apr 2008 10:00:07 GMT Message-Id: <200804231000.m3NA07kR056889@freefall.freebsd.org> To: openoffice@FreeBSD.org From: Marcin Cieslak Cc: Subject: ports/121787: Patch for OpenOffice.org to fix icu-3.8 breakage, as well as -CURRENT diablo-jdk breakage X-BeenThere: freebsd-openoffice@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Marcin Cieslak List-Id: Porting OpenOffice to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Apr 2008 10:00:07 -0000 The following reply was made to PR ports/121787; it has been noted by GNATS. From: Marcin Cieslak To: bug-followup@FreeBSD.org, ohartman@zedat.fu-berlin.de, Maho NAKATA , kvedulv@kvedulv.de, Olivier Gautherot Cc: Subject: ports/121787: Patch for OpenOffice.org to fix icu-3.8 breakage, as well as -CURRENT diablo-jdk breakage Date: Wed, 23 Apr 2008 11:50:55 +0200 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig5CD469B0AB5C77E86AFF019F Content-Type: multipart/mixed; boundary="------------010905020202010205000309" This is a multi-part message in MIME format. --------------010905020202010205000309 Content-Type: text/plain; charset=ISO-8859-2; format=flowed Content-Transfer-Encoding: quoted-printable Can you try this patch? -------- Original Message -------- Subject: CFT: Patch for OpenOffice.org to fix icu-3.8 breakage, as=20 well as -CURRENT diablo-jdk breakage Date: Wed, 16 Apr 2008 22:00:44 -0400 From: Coleman Kane Organization: FreeBSD Project To: ports@FreeBSD.org Newsgroups: gmane.os.freebsd.devel.ports Hello everyone, I've got a two-in-one patch I'd like to know if any volunteers would like to test to get ports/editors/openoffice.org-2-RC built and installed under the following circumstances where it may be failing: 1. You've installed the devel/icu 3.8+ port, and the build gives you an undefined symbol named "_ZN7icu_3_814LEFontInstance16getStaticClassIDEv" error 2. You're running 8.0-CURRENT and the KSE stuff has been removed and you installed diablo-jdk. This may be crashing when it tries to run the java stuff during the OO.o build, causing the build to fail with obscure error messages. My fix for #1, above, is to provide a new knob WITH_SYSTEM_ICU that tells configure to use the local-system's installed icu library, rather than the one that was shipped with the OO.o tarball. It seems that during the build, the include path unwittingly brings in your system headers, but then attempts to link against the shipped library. Both of these are incompatible APIs, and the result is an inability to resolve a symbol that is public in the OO.o version, but protected in the ports version. I am also attaching a patch for devel/icu that applies this permission change. My fix for #2, above, is to set the build jdk to "bsdjava" for FreeBSD 8.0+, which results in having Mk/bsd.java.mk look for the ports source-build rather than using the diablo-jdk for doing java compiles. For other versions of FreeBSD, the default is left at what it was before (diablo, then ports). --=20 Coleman Kane --------------010905020202010205000309 Content-Type: text/x-patch; name="openoffice.org-system-icu.patch" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline; filename="openoffice.org-system-icu.patch" diff --git a/editors/openoffice.org-2-RC/Makefile b/editors/openoffice.or= g-2-RC/Makefile index c870dc7..5655df5 100644 --- a/editors/openoffice.org-2-RC/Makefile +++ b/editors/openoffice.org-2-RC/Makefile @@ -7,6 +7,7 @@ =20 PORTNAME?=3D openoffice.org PORTVERSION?=3D 2.4.${SNAPDATE} +PORTREVISION?=3D 1 CATEGORIES+=3D editors java MASTER_SITES+=3D http://ooopackages.good-day.net/pub/OpenOffice.org/sour= ces/ \ http://openoffice.lunarshells.com/sources/ \ @@ -53,7 +54,11 @@ WITHOUT_CPU_CFLAGS=3D true =20 USE_JAVA=3D yes JAVA_BUILD=3D jdk +.if (${OSVERSION} >=3D 800000) +JAVA_VENDOR=3D bsdjava +.else JAVA_VENDOR=3D freebsd bsdjava +.endif .if (${OSVERSION} >=3D 700000) JAVA_VERSION=3D 1.5 .else diff --git a/editors/openoffice.org-2-RC/files/Makefile.knobs b/editors/o= penoffice.org-2-RC/files/Makefile.knobs index c0c76e9..a5a9644 100644 --- a/editors/openoffice.org-2-RC/files/Makefile.knobs +++ b/editors/openoffice.org-2-RC/files/Makefile.knobs @@ -54,6 +54,13 @@ CONFIGURE_ARGS+=3D --enable-debug --enable-symbols=3DT= RUE --enable-dbgutil CONFIGURE_ARGS+=3D --enable-symbols=3DSMALL .endif =20 +.if defined(WITH_SYSTEM_ICU) +LIB_DEPENDS+=3D icule:${PORTSDIR}/devel/icu +CONFIGURE_ARGS+=3D --with-system-icu=3Dyes +.else +CONFIGURE_ARGS+=3D --with-system-icu=3Dno +.endif + pre-fetch: .if (${OSVERSION} < 503001 && ${OSVERSION} >=3D 500000) || (${OSVERSION}= < 492000) @${ECHO} @@ -86,6 +93,11 @@ pre-fetch: @${ECHO} "You can compile OOo without gnome VFS support with" @${ECHO} "make -DWITHOUT_GNOMEVFS" .endif +.if !defined(WITH_SYSTEM_ICU) + @${ECHO} + @${ECHO} "You can compile OOo with devel/icu from ports with" + @${ECHO} "make -DWITH_SYSTEM_ICU" +.endif .if !defined(WITH_SYSTEM_FREETYPE) @${ECHO} @${ECHO} "You can compile OOo with freetype2 from ports with" --------------010905020202010205000309 Content-Type: text/x-patch; name="icu-public-setBreakType.patch" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline; filename="icu-public-setBreakType.patch" diff --git a/devel/icu/Makefile b/devel/icu/Makefile index bc367b3..78edecb 100644 --- a/devel/icu/Makefile +++ b/devel/icu/Makefile @@ -7,7 +7,7 @@ =20 PORTNAME=3D icu PORTVERSION=3D 3.8.1 -PORTREVISION=3D 1 +PORTREVISION=3D 2 CATEGORIES=3D devel MASTER_SITES=3D ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR=3D${PORTNAME} diff --git a/devel/icu/files/patch-common_unicode_rbbi.h b/devel/icu/file= s/patch-common_unicode_rbbi.h new file mode 100644 index 0000000..68f2fc2 --- /dev/null +++ b/devel/icu/files/patch-common_unicode_rbbi.h @@ -0,0 +1,17 @@ +--- common/unicode/rbbi.h.orig 2008-04-16 09:58:20.000000000 -0400 ++++ common/unicode/rbbi.h 2008-04-16 09:59:00.000000000 -0400 +@@ -611,12 +611,14 @@ + virtual int32_t getBreakType() const; + #endif +=20 ++public: + /** + * Set the type of the break iterator. + * @internal + */ + virtual void setBreakType(int32_t type); +=20 ++protected: + /** + * Common initialization function, used by constructors and buffer= Clone. + * (Also used by DictionaryBasedBreakIterator::createBufferClone= ().) --------------010905020202010205000309-- --------------enig5CD469B0AB5C77E86AFF019F Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- iQCVAwUBSA8GgD2W2v2wY27ZAQOZNwQAkLTSCjPQyFcGMgZhpBr42J/PqwIs2zTP xBcU+z23QMZIrKDgHj2d5GXtfUQ4eGZpmhUoS/wydUTenqVn4UcvF0pHW0bUOJnE 2GnxGxqDLaGhwghBDlAYQdteEguRmeHxTE0qY3rcibLGmQ4KmJj6CB6AvBY1PLyY 1hey85/TOc0= =+sEB -----END PGP SIGNATURE----- --------------enig5CD469B0AB5C77E86AFF019F-- From owner-freebsd-openoffice@FreeBSD.ORG Wed Apr 23 10:00:10 2008 Return-Path: Delivered-To: openoffice@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 42BCA1065675 for ; Wed, 23 Apr 2008 10:00:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 23AF28FC1C for ; Wed, 23 Apr 2008 10:00:10 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.2/8.14.2) with ESMTP id m3NA09WV056897 for ; Wed, 23 Apr 2008 10:00:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.2/8.14.1/Submit) id m3NA098t056896; Wed, 23 Apr 2008 10:00:09 GMT (envelope-from gnats) Date: Wed, 23 Apr 2008 10:00:09 GMT Message-Id: <200804231000.m3NA098t056896@freefall.freebsd.org> To: openoffice@FreeBSD.org From: Marcin Cieslak Cc: Subject: Re: ports/121787: when devel/icu is installed, openoffice fails to build X-BeenThere: freebsd-openoffice@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Marcin Cieslak List-Id: Porting OpenOffice to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Apr 2008 10:00:10 -0000 The following reply was made to PR ports/121787; it has been noted by GNATS. From: Marcin Cieslak To: Mark Linimon , bug-followup@FreeBSD.org Cc: Subject: Re: ports/121787: when devel/icu is installed, openoffice fails to build Date: Wed, 23 Apr 2008 11:52:52 +0200 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig65B0B4C97891D0A99F9C6E0D Content-Type: text/plain; charset=ISO-8859-2; format=flowed Content-Transfer-Encoding: quoted-printable Er, sorry. Please close ports/123008 and keep ports/121787 --=20 << Marcin Cieslak // saper@saper.info >> --------------enig65B0B4C97891D0A99F9C6E0D Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- iQCVAwUBSA8G9D2W2v2wY27ZAQNsYwP+K8Uj2j94NndZnYz4RW4GvDmA2KRrLRTH XKfW5UUCUoNejwVNy/zMaLNIuHYkJENWt5bDbu2tTQfhnMy08WTvnj7VvgqrS0M7 aO+r+fBBtCCqYy0WvVG4AjMFKpP9+Jcn6RHL+g8AwZWkQdOT6ublzZo5Os27Dcin ViaLhBGmrj4= =yxvg -----END PGP SIGNATURE----- --------------enig65B0B4C97891D0A99F9C6E0D-- From owner-freebsd-openoffice@FreeBSD.ORG Wed Apr 23 10:03:40 2008 Return-Path: Delivered-To: openoffice@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CA5311065674; Wed, 23 Apr 2008 10:03:40 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A07108FC1C; Wed, 23 Apr 2008 10:03:40 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.2/8.14.2) with ESMTP id m3NA3e4U056976; Wed, 23 Apr 2008 10:03:40 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.2/8.14.1/Submit) id m3NA3eOT056972; Wed, 23 Apr 2008 10:03:40 GMT (envelope-from linimon) Date: Wed, 23 Apr 2008 10:03:40 GMT Message-Id: <200804231003.m3NA3eOT056972@freefall.freebsd.org> To: ohartman@zedat.fu-berlin.de, linimon@FreeBSD.org, openoffice@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/123008: editors/openoffice.org-2 (2.4) compilation fails: dmake: Error code 1, while making '../unxfbsdx.pro/lib/libvcl680fx.so' X-BeenThere: freebsd-openoffice@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting OpenOffice to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Apr 2008 10:03:40 -0000 Synopsis: editors/openoffice.org-2 (2.4) compilation fails: dmake: Error code 1, while making '../unxfbsdx.pro/lib/libvcl680fx.so' State-Changed-From-To: open->closed State-Changed-By: linimon State-Changed-When: Wed Apr 23 10:03:23 UTC 2008 State-Changed-Why: See ports/121787. http://www.freebsd.org/cgi/query-pr.cgi?pr=123008 From owner-freebsd-openoffice@FreeBSD.ORG Wed Apr 23 23:39:33 2008 Return-Path: Delivered-To: openoffice@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 03B97106566B for ; Wed, 23 Apr 2008 23:39:33 +0000 (UTC) (envelope-from alex@154cm.com) Received: from smtpauth21.prod.mesa1.secureserver.net (smtpauth21.prod.mesa1.secureserver.net [64.202.165.38]) by mx1.freebsd.org (Postfix) with SMTP id C318E8FC19 for ; Wed, 23 Apr 2008 23:39:32 +0000 (UTC) (envelope-from alex@154cm.com) Received: (qmail 13941 invoked from network); 23 Apr 2008 23:32:51 -0000 Received: from unknown (67.169.58.108) by smtpauth21.prod.mesa1.secureserver.net (64.202.165.38) with ESMTP; 23 Apr 2008 23:32:51 -0000 From: "Alex in the Studio" To: Date: Wed, 23 Apr 2008 16:32:51 -0700 Message-ID: <000301c8a59a$591cb7a0$0902a8c0@sappho> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook, Build 10.0.2627 Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.3198 X-Mailman-Approved-At: Thu, 24 Apr 2008 00:09:28 +0000 Cc: Subject: FW: build timing X-BeenThere: freebsd-openoffice@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: alex@154cm.com List-Id: Porting OpenOffice to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Apr 2008 23:39:33 -0000 my mistake, i managed to overlook that very link! nuts. cheers, alex -----Original Message----- From: Alex in the Studio [mailto:alex@154cm.com]=20 Sent: Wednesday, April 23, 2008 4:29 PM To: 'openoffice@freebsd.org' Subject: build timing i think a reference to this page should be included on the build instruction page. having a reasonable expectation of how long a build might take has an impact on scheduling. for example, i began this build 3 hours ago and i am leaving for chicago this evening in another 4 hours. if it hasn't finished, i will be forced to abort in the middle. cheers, alex From owner-freebsd-openoffice@FreeBSD.ORG Wed Apr 23 23:56:08 2008 Return-Path: Delivered-To: openoffice@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7A30D106564A for ; Wed, 23 Apr 2008 23:56:08 +0000 (UTC) (envelope-from alex@154cm.com) Received: from smtpauth05.prod.mesa1.secureserver.net (smtpauth05.prod.mesa1.secureserver.net [64.202.165.99]) by mx1.freebsd.org (Postfix) with SMTP id 4847C8FC0A for ; Wed, 23 Apr 2008 23:56:08 +0000 (UTC) (envelope-from alex@154cm.com) Received: (qmail 26053 invoked from network); 23 Apr 2008 23:29:27 -0000 Received: from unknown (67.169.58.108) by smtpauth05.prod.mesa1.secureserver.net (64.202.165.99) with ESMTP; 23 Apr 2008 23:29:27 -0000 From: "Alex in the Studio" To: Date: Wed, 23 Apr 2008 16:29:27 -0700 Message-ID: <000201c8a599$df9c9760$0902a8c0@sappho> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook, Build 10.0.2627 Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.3198 X-Mailman-Approved-At: Thu, 24 Apr 2008 02:14:16 +0000 Cc: Subject: build timing X-BeenThere: freebsd-openoffice@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: alex@154cm.com List-Id: Porting OpenOffice to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Apr 2008 23:56:08 -0000 i think a reference to this page should be included on the build instruction page. having a reasonable expectation of how long a build might take has an impact on scheduling. for example, i began this build 3 hours ago and i am leaving for chicago this evening in another 4 hours. if it hasn't finished, i will be forced to abort in the middle. cheers, alex From owner-freebsd-openoffice@FreeBSD.ORG Fri Apr 25 01:20:03 2008 Return-Path: Delivered-To: openoffice@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 24ABE1065678 for ; Fri, 25 Apr 2008 01:20:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 24FEE8FC24 for ; Fri, 25 Apr 2008 01:20:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.2/8.14.2) with ESMTP id m3P1K2Wv082867 for ; Fri, 25 Apr 2008 01:20:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.2/8.14.1/Submit) id m3P1K2e8082866; Fri, 25 Apr 2008 01:20:02 GMT (envelope-from gnats) Date: Fri, 25 Apr 2008 01:20:02 GMT Message-Id: <200804250120.m3P1K2e8082866@freefall.freebsd.org> To: openoffice@FreeBSD.org From: Maho NAKATA Cc: Subject: Re: ports/121787: Patch for OpenOffice.org to fix icu-3.8 breakage, as well as -CURRENT diablo-jdk breakage X-BeenThere: freebsd-openoffice@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Maho NAKATA List-Id: Porting OpenOffice to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Apr 2008 01:20:03 -0000 The following reply was made to PR ports/121787; it has been noted by GNATS. From: Maho NAKATA To: saper@system.pl Cc: bug-followup@FreeBSD.org, ohartman@zedat.fu-berlin.de, kvedulv@kvedulv.de, olivier@gautherot.net Subject: Re: ports/121787: Patch for OpenOffice.org to fix icu-3.8 breakage, as well as -CURRENT diablo-jdk breakage Date: Fri, 25 Apr 2008 09:46:42 +0900 (JST) Hi Marcin, Many thanks for patch submission. I'd like to commit 1st/2nd patch. Both are fine. In any case, adding WITH_SYSTEM_ICU knob is just only a workaround :) Please wait a while. From: Marcin Cieslak Subject: ports/121787: Patch for OpenOffice.org to fix icu-3.8 breakage, as well as -CURRENT diablo-jdk breakage Date: Wed, 23 Apr 2008 11:50:55 +0200 > Can you try this patch? > > -------- Original Message -------- > Subject: CFT: Patch for OpenOffice.org to fix icu-3.8 breakage, as > well as -CURRENT diablo-jdk breakage > Date: Wed, 16 Apr 2008 22:00:44 -0400 > From: Coleman Kane > Organization: FreeBSD Project > To: ports@FreeBSD.org > Newsgroups: gmane.os.freebsd.devel.ports > > Hello everyone, > > I've got a two-in-one patch I'd like to know if any volunteers would > like to test to get ports/editors/openoffice.org-2-RC built and > installed under the following circumstances where it may be failing: > > 1. You've installed the devel/icu 3.8+ port, and the build gives you > an undefined symbol named > "_ZN7icu_3_814LEFontInstance16getStaticClassIDEv" error > 2. You're running 8.0-CURRENT and the KSE stuff has been removed and > you installed diablo-jdk. This may be crashing when it tries to run the > java stuff during the OO.o build, causing the build to fail with obscure > error messages. > > My fix for #1, above, is to provide a new knob WITH_SYSTEM_ICU that > tells configure to use the local-system's installed icu library, rather > than the one that was shipped with the OO.o tarball. It seems that > during the build, the include path unwittingly brings in your system > headers, but then attempts to link against the shipped library. Both of > these are incompatible APIs, and the result is an inability to resolve a > symbol that is public in the OO.o version, but protected in the ports > version. I am also attaching a patch for devel/icu that applies this > permission change. > > My fix for #2, above, is to set the build jdk to "bsdjava" for FreeBSD > 8.0+, which results in having Mk/bsd.java.mk look for the ports > source-build rather than using the diablo-jdk for doing java compiles. > For other versions of FreeBSD, the default is left at what it was before > (diablo, then ports). > > -- > Coleman Kane > From owner-freebsd-openoffice@FreeBSD.ORG Fri Apr 25 02:10:03 2008 Return-Path: Delivered-To: openoffice@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B8AB4106567B for ; Fri, 25 Apr 2008 02:10:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B14A78FC1B for ; Fri, 25 Apr 2008 02:10:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.2/8.14.2) with ESMTP id m3P2A3VY085642 for ; Fri, 25 Apr 2008 02:10:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.2/8.14.1/Submit) id m3P2A3XJ085641; Fri, 25 Apr 2008 02:10:03 GMT (envelope-from gnats) Date: Fri, 25 Apr 2008 02:10:03 GMT Message-Id: <200804250210.m3P2A3XJ085641@freefall.freebsd.org> To: openoffice@FreeBSD.org From: "Olivier Gautherot" Cc: Subject: Re: ports/121787: Patch for OpenOffice.org to fix icu-3.8 breakage, as well as -CURRENT diablo-jdk breakage X-BeenThere: freebsd-openoffice@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Olivier Gautherot List-Id: Porting OpenOffice to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Apr 2008 02:10:03 -0000 The following reply was made to PR ports/121787; it has been noted by GNATS. From: "Olivier Gautherot" To: "Marcin Cieslak" Cc: bug-followup@freebsd.org, ohartman@zedat.fu-berlin.de, "Maho NAKATA" , kvedulv@kvedulv.de Subject: Re: ports/121787: Patch for OpenOffice.org to fix icu-3.8 breakage, as well as -CURRENT diablo-jdk breakage Date: Thu, 24 Apr 2008 21:38:32 -0400 Hi there! It did not work for me, even with the new knob - still complaining about ICU. I just noticed that the missing symbol mentions icu_3_814 but I have icu-3.8.1.1 installed (I suspect that these are 2 different version numbers...) Where does the patch (or the new knob) get its version number from? Cheers Olivier On 4/23/08, Marcin Cieslak wrote: > Can you try this patch? > > -------- Original Message -------- > Subject: CFT: Patch for OpenOffice.org to fix icu-3.8 breakage, as > well as -CURRENT diablo-jdk breakage > Date: Wed, 16 Apr 2008 22:00:44 -0400 > From: Coleman Kane > Organization: FreeBSD Project > To: ports@FreeBSD.org > Newsgroups: gmane.os.freebsd.devel.ports > > Hello everyone, > > I've got a two-in-one patch I'd like to know if any volunteers would > like to test to get ports/editors/openoffice.org-2-RC built and > installed under the following circumstances where it may be failing: > > 1. You've installed the devel/icu 3.8+ port, and the build gives you > an undefined symbol named > "_ZN7icu_3_814LEFontInstance16getStaticClassIDEv" error > 2. You're running 8.0-CURRENT and the KSE stuff has been removed and > you installed diablo-jdk. This may be crashing when it tries to run the > java stuff during the OO.o build, causing the build to fail with obscure > error messages. > > My fix for #1, above, is to provide a new knob WITH_SYSTEM_ICU that > tells configure to use the local-system's installed icu library, rather > than the one that was shipped with the OO.o tarball. It seems that > during the build, the include path unwittingly brings in your system > headers, but then attempts to link against the shipped library. Both of > these are incompatible APIs, and the result is an inability to resolve a > symbol that is public in the OO.o version, but protected in the ports > version. I am also attaching a patch for devel/icu that applies this > permission change. > > My fix for #2, above, is to set the build jdk to "bsdjava" for FreeBSD > 8.0+, which results in having Mk/bsd.java.mk look for the ports > source-build rather than using the diablo-jdk for doing java compiles. > For other versions of FreeBSD, the default is left at what it was before > (diablo, then ports). > > -- > Coleman Kane > > -- Olivier Gautherot olivier@gautherot.net Cel:+56 98 730 9361 www.gautherot.net http://www.linkedin.com/in/ogautherot From owner-freebsd-openoffice@FreeBSD.ORG Fri Apr 25 16:20:03 2008 Return-Path: Delivered-To: openoffice@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 851F9106564A for ; Fri, 25 Apr 2008 16:20:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 5CE928FC12 for ; Fri, 25 Apr 2008 16:20:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.2/8.14.2) with ESMTP id m3PGK2T1063936 for ; Fri, 25 Apr 2008 16:20:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.2/8.14.1/Submit) id m3PGK2A1063935; Fri, 25 Apr 2008 16:20:02 GMT (envelope-from gnats) Date: Fri, 25 Apr 2008 16:20:02 GMT Message-Id: <200804251620.m3PGK2A1063935@freefall.freebsd.org> To: openoffice@FreeBSD.org From: Kvedulv / Michael Moll Cc: Subject: Re: ports/121787: Patch for OpenOffice.org to fix icu-3.8 breakage, as well as -CURRENT diablo-jdk breakage X-BeenThere: freebsd-openoffice@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Kvedulv / Michael Moll List-Id: Porting OpenOffice to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Apr 2008 16:20:03 -0000 The following reply was made to PR ports/121787; it has been noted by GNATS. From: Kvedulv / Michael Moll To: Marcin Cieslak Cc: bug-followup@FreeBSD.org, ohartman@zedat.fu-berlin.de, Maho NAKATA , kvedulv@kvedulv.de, Olivier Gautherot Subject: Re: ports/121787: Patch for OpenOffice.org to fix icu-3.8 breakage, as well as -CURRENT diablo-jdk breakage Date: Fri, 25 Apr 2008 18:10:32 +0200 --8GpibOaaTibBMecb Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hi, On Wed, Apr 23, 2008 at 11:50:55AM +0200, Marcin Cieslak wrote: > Can you try this patch? I rebuilt icu and then openoffice with system-icu enabled, works fine. I see the problem that users maybe don't know that they _must_ enable system-icu when icu is installed. Otherwise everything is good. cu --=20 Kvedulv / Michael Moll e-mail : kvedulv@kvedulv.de WWW : http://www.kvedulv.de/ GSM : +49 175 606 7861 --8GpibOaaTibBMecb Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.8 (FreeBSD) iEYEARECAAYFAkgSAncACgkQbKMJv9Su/UJ35wCeKcnfK22gi1EpxhqZ/+8lTi4s uMkAn1hloAr/9/i8mEBPAmrGC4ekj7w0 =t560 -----END PGP SIGNATURE----- --8GpibOaaTibBMecb-- From owner-freebsd-openoffice@FreeBSD.ORG Fri Apr 25 21:10:04 2008 Return-Path: Delivered-To: openoffice@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7DC33106567D for ; Fri, 25 Apr 2008 21:10:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 70E598FC24 for ; Fri, 25 Apr 2008 21:10:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.2/8.14.2) with ESMTP id m3PLA4fn087628 for ; Fri, 25 Apr 2008 21:10:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.2/8.14.1/Submit) id m3PLA4ol087627; Fri, 25 Apr 2008 21:10:04 GMT (envelope-from gnats) Date: Fri, 25 Apr 2008 21:10:04 GMT Message-Id: <200804252110.m3PLA4ol087627@freefall.freebsd.org> To: openoffice@FreeBSD.org From: Maho NAKATA Cc: Subject: Re: ports/121787: Patch for OpenOffice.org to fix icu-3.8 breakage, as well as -CURRENT diablo-jdk breakage X-BeenThere: freebsd-openoffice@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Maho NAKATA List-Id: Porting OpenOffice to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Apr 2008 21:10:04 -0000 The following reply was made to PR ports/121787; it has been noted by GNATS. From: Maho NAKATA To: kvedulv@kvedulv.de Cc: saper@system.pl, bug-followup@FreeBSD.org, ohartman@zedat.fu-berlin.de, olivier@gautherot.net Subject: Re: ports/121787: Patch for OpenOffice.org to fix icu-3.8 breakage, as well as -CURRENT diablo-jdk breakage Date: Sat, 26 Apr 2008 06:07:27 +0900 (JST) From: Kvedulv / Michael Moll Subject: Re: ports/121787: Patch for OpenOffice.org to fix icu-3.8 breakage, as well as -CURRENT diablo-jdk breakage Date: Fri, 25 Apr 2008 18:10:32 +0200 > Hi, > > On Wed, Apr 23, 2008 at 11:50:55AM +0200, Marcin Cieslak wrote: > > Can you try this patch? > > I rebuilt icu and then openoffice with system-icu enabled, works fine. Great. > I see the problem that users maybe don't know that they _must_ enable > system-icu when icu is installed. Otherwise everything is good. Right. This is the problem. This shuold be fixed in the future. Thanks -- Nakata Maho http://accc.riken.jp/maho/ From owner-freebsd-openoffice@FreeBSD.ORG Sat Apr 26 05:52:49 2008 Return-Path: Delivered-To: freebsd-openoffice@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 98226106564A for ; Sat, 26 Apr 2008 05:52:49 +0000 (UTC) (envelope-from ulrich@pukruppa.net) Received: from pukruppa.net (pukruppa.net [213.146.114.24]) by mx1.freebsd.org (Postfix) with ESMTP id 715848FC16 for ; Sat, 26 Apr 2008 05:52:46 +0000 (UTC) (envelope-from ulrich@pukruppa.net) Received: from pukruppa.net (localhost [127.0.0.1]) by pukruppa.net (8.14.2/8.14.2) with ESMTP id m3Q5FWER025523 for ; Sat, 26 Apr 2008 07:15:33 +0200 (CEST) (envelope-from ulrich@pukruppa.net) Received: from localhost (ulrich@localhost) by pukruppa.net (8.14.2/8.14.2/Submit) with ESMTP id m3Q5FWtF025519 for ; Sat, 26 Apr 2008 07:15:32 +0200 (CEST) (envelope-from ulrich@pukruppa.net) Date: Sat, 26 Apr 2008 07:15:32 +0200 (CEST) From: Peter Ulrich Kruppa To: freebsd-openoffice@freebsd.org Message-ID: <20080426071014.P1477@pukruppa.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Subject: Openoffice.org-2 build failure X-BeenThere: freebsd-openoffice@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting OpenOffice to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Apr 2008 05:52:49 -0000 Hi, on my FreeBSD 7.0-STABLE #2: Sat Apr 19 11:54:32 CEST 2008 amd64 /usr/ports/editors/openoffice-2 fails with ------------------------------------------------------ ============= Building module binfilter ============= /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_svx/source/items ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/legacysmgr/source/legacy ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_basic/source/basmgr ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_basic/source/classes ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_basic/source/comp ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_basic/source/runtime ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_basic/source/sbx ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_basic/util ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_forms/source/component --- NOOPTFILES --- `../../../unxfbsdx/slo/forms_EventThread.obj' is up to date --- NOOPTFILES OVER --- ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_forms/source/misc ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_forms/source/resource ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_goodies/source/base2d ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_goodies/source/base3d ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_goodies/util ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_offmgr/source/offapp/app ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sc/source/core/data ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sc/source/core/src ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sc/source/core/tool ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sc/source/filter/xml ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sc/source/ui/app ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sc/source/ui/dbgui ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sc/source/ui/docshell ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sc/source/ui/src ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sc/source/ui/unoobj ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sc/source/ui/view ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sch/source/core ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sch/source/filter/xml ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sch/source/ui/app ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sch/source/ui/docshell ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sch/source/ui/unoidl ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sd/source/core ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sd/source/filter ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sd/source/filter/bin ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sd/source/filter/xml ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sd/source/ui/app ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sd/source/ui/docshell ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sd/source/ui/unoidl --- NOOPTFILES --- `../../../../unxfbsdx/slo/sd_unowcntr.obj' is up to date --- NOOPTFILES OVER --- ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sd/source/ui/view ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sfx2/source/appl ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sfx2/source/bastyp ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sfx2/source/config ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sfx2/source/control ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sfx2/source/doc ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sfx2/source/explorer ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sfx2/source/notify ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sfx2/source/view ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_so3/source/copied ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_so3/source/data ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_so3/source/dialog ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_so3/source/inplace ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_so3/source/misc ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_so3/source/ole ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_so3/source/persist ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_so3/source/solink ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_so3/src ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_so3/util ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_starmath/source ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_svx/source/dialog ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_svx/source/editeng ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_svx/source/engine3d ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_svx/source/form ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_svx/source/options ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_svx/source/outliner ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_svx/source/svdraw ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_svx/source/svxlink ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_svx/source/unodraw ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_svx/source/unoedit ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_svx/source/xml ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_svx/source/xoutdev cp -f ../../../inc/bf_svx/xenum.hxx ../../../unxfbsdx/inc ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sw/source/core/attr ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sw/source/core/bastyp ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sw/source/core/crsr ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sw/source/core/doc ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sw/source/core/docnode ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sw/source/core/draw ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sw/source/core/edit ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sw/source/core/except ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sw/source/core/fields ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sw/source/core/frmedt ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sw/source/core/graphic ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sw/source/core/layout ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sw/source/core/ole ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sw/source/core/para ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sw/source/core/sw3io ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sw/source/core/swg ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sw/source/core/text ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sw/source/core/tox ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sw/source/core/txtnode ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sw/source/core/undo ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sw/source/core/unocore ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sw/source/core/view ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sw/source/core ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sw/source/filter/ascii ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sw/source/filter/basflt ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sw/source/filter/excel ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sw/source/filter/lotus ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sw/source/filter/sw6 ------------- /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sw/source/filter/w4w ------------------------------ Making: ../../../../unxfbsdx/slo/sw_w4watr.obj c++ -fmessage-length=0 -c -g -O0 -I. -I../../../../unxfbsdx/inc/sw_w4w -I../inc -I../../../../inc/pch -I../../../../inc -I../../../../inc/bf_sw -I../../../../unx/inc -I../../../../unxfbsdx/inc -I. -I/usr/ports/editors/openoffice.org-2/work/OOH680_m12/solver/680/unxfbsdx/inc/stl -I/usr/ports/editors/openoffice.org-2/work/OOH680_m12/solver/680/unxfbsdx/inc/external -I/usr/ports/editors/openoffice.org-2/work/OOH680_m12/solver/680/unxfbsdx/inc -I/usr/ports/editors/openoffice.org-2/work/OOH680_m12/solenv/unxfbsdx/inc -I/usr/ports/editors/openoffice.org-2/work/OOH680_m12/solenv/inc -I/usr/ports/editors/openoffice.org-2/work/OOH680_m12/res -I/usr/ports/editors/openoffice.org-2/work/OOH680_m12/solver/680/unxfbsdx/inc/stl -I/usr/ports/editors/openoffice.org-2/work/OOH680_m12/solenv/inc/Xp31 -I/usr/local/diablo-jdk1.5.0/include -I/usr/local/diablo-jdk1.5.0/include/freebsd -I/usr/local/diablo-jdk1.5.0/include/bsd -I/usr/local/diablo-jdk1.5.0/include/linux -I/usr/local/diablo-jdk1.5.0/include/native_threads/include -I/usr/local/include -I/usr/ports/editors/openoffice.org-2/work/OOH680_m12/solver/680/unxfbsdx/inc/offuh -I. -I../../../../res -I. -pipe -fvisibility-inlines-hidden -g -Wall -Wextra -Wendif-labels -Wshadow -Wno-ctor-dtor-privacy -Wno-non-virtual-dtor -fpic -DFREEBSD -DUNX -DVCL -DGCC -DC341 -DX86_64 -D_STLP_DEBUG -DCVER=C341 -DX86_64 -D_PTHREADS -D_REENTRANT -DNEW_SOLAR -D_USE_NAMESPACE=1 -DSTLPORT_VERSION=450 -DHAVE_GCC_VISIBILITY_FEATURE -D__DMAKE -DUNIX -DCPPU_ENV=gcc3 -DGXX_INCLUDE_PATH=/usr/include/c++/4.2 -DSUPD=680 -DDEBUG -DDBG_UTIL -DOSL_DEBUG_LEVEL=2 -DCUI -DSOLAR_JAVA -DOOH680=OOH680 -DNUM_RELSPACE -DVERTICAL_LAYOUT -DACCESSIBLE_LAYOUT -DBIDI -DSHAREDLIB -D_DLL_ -fno-exceptions -DEXCEPTIONS_OFF -o ../../../../unxfbsdx/slo/sw_w4watr.o /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sw/source/filter/w4w/sw_w4watr.cxx In file included from /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sw/source/filter/w4w/sw_w4watr.cxx:65: ../../../../inc/bf_svx/spltitem.hxx: In constructor 'binfilter::SvxFmtSplitItem::SvxFmtSplitItem(BOOL, USHORT)': ../../../../inc/bf_svx/spltitem.hxx:78: warning: declaration of 'nWhich' shadows a member of 'this' In file included from /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sw/source/filter/w4w/sw_w4watr.cxx:98: ../../../../inc/bf_svx/brkitem.hxx: In constructor 'binfilter::SvxFmtBreakItem::SvxFmtBreakItem(binfilter::SvxBreak, USHORT)': ../../../../inc/bf_svx/brkitem.hxx:131: warning: declaration of 'nWhich' shadows a member of 'this' In file included from /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sw/source/filter/w4w/sw_w4watr.cxx:154: ../../../../inc/bf_sw/doc.hxx: At global scope: ../../../../inc/bf_sw/doc.hxx:1253: warning: unused parameter 'rSrcFmt' ../../../../inc/bf_sw/doc.hxx:1253: warning: unused parameter 'rDestFmt' ../../../../inc/bf_sw/doc.hxx:1257: warning: unused parameter 'rSrcFmt' ../../../../inc/bf_sw/doc.hxx:1257: warning: unused parameter 'rDestFmt' ../../../../inc/bf_sw/doc.hxx:1405: warning: unused parameter 'rCursor' ../../../../inc/bf_sw/doc.hxx:1405: warning: unused parameter 'nCnt' ../../../../inc/bf_sw/doc.hxx:1405: warning: unused parameter 'bBehind' ../../../../inc/bf_sw/doc.hxx:1407: warning: unused parameter 'rCursor' ../../../../inc/bf_sw/doc.hxx:1407: warning: unused parameter 'nCnt' ../../../../inc/bf_sw/doc.hxx:1407: warning: unused parameter 'bBehind' ../../../../inc/bf_sw/doc.hxx:1409: warning: unused parameter 'rBoxes' ../../../../inc/bf_sw/doc.hxx:1410: warning: unused parameter 'rCursor' ../../../../inc/bf_sw/doc.hxx:1411: warning: unused parameter 'rCursor' ../../../../inc/bf_sw/doc.hxx:1416: warning: unused parameter 'rPam' ../../../../inc/bf_sw/doc.hxx:1423: warning: unused parameter 'rTab' ../../../../inc/bf_sw/doc.hxx:1423: warning: unused parameter 'rNew' ../../../../inc/bf_sw/doc.hxx:1423: warning: unused parameter 'rOld' ../../../../inc/bf_sw/doc.hxx:1423: warning: unused parameter 'pStart' ../../../../inc/bf_sw/doc.hxx:1423: warning: unused parameter 'bCurRowOnly' ../../../../inc/bf_sw/doc.hxx:1425: warning: unused parameter 'rTable' ../../../../inc/bf_sw/doc.hxx:1425: warning: unused parameter 'bSet' ../../../../inc/bf_sw/doc.hxx:1427: warning: unused parameter 'rBoxes' ../../../../inc/bf_sw/doc.hxx:1427: warning: unused parameter 'rNew' ../../../../inc/bf_sw/doc.hxx:1436: warning: unused parameter 'rBox' ../../../../inc/bf_sw/doc.hxx:1436: warning: unused parameter 'rSet' ../../../../inc/bf_sw/doc.hxx:1634: warning: unused parameter 'rCursor' ../../../../inc/bf_sw/doc.hxx:1634: warning: unused parameter 'rSet' ../../../../inc/bf_sw/doc.hxx:1636: warning: unused parameter 'rCursor' ../../../../inc/bf_sw/doc.hxx:1636: warning: unused parameter 'rNew' ../../../../inc/bf_sw/doc.hxx:1637: warning: unused parameter 'rCursor' ../../../../inc/bf_sw/doc.hxx:1637: warning: unused parameter 'rToFill' In file included from /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sw/source/filter/w4w/sw_w4watr.cxx:163: ../../../../inc/bf_sw/fldbas.hxx:307: warning: unused parameter 'rVal' ../../../../inc/bf_sw/fldbas.hxx:307: warning: unused parameter 'nMId' ../../../../inc/bf_sw/fldbas.hxx:308: warning: unused parameter 'rVal' ../../../../inc/bf_sw/fldbas.hxx:308: warning: unused parameter 'nMId' In file included from ../../../../inc/bf_sw/ndgrf.hxx:46, from /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sw/source/filter/w4w/sw_w4watr.cxx:166: ../../../../inc/bf_sw/ndnotxt.hxx:96: warning: unused parameter 'pPoly' In file included from /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sw/source/filter/w4w/sw_w4watr.cxx:166: ../../../../inc/bf_sw/ndgrf.hxx:99: warning: unused parameter 'rStrm' In file included from /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sw/source/filter/w4w/sw_w4watr.cxx:169: ../../../../inc/bf_sw/grfatr.hxx: In constructor 'binfilter::SwChannelGrf::SwChannelGrf(sal_Int16, USHORT)': ../../../../inc/bf_sw/grfatr.hxx:188: warning: declaration of 'nWhich' shadows a member of 'this' /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sw/source/filter/w4w/sw_w4watr.cxx: In function 'void binfilter::OutW4W_SwFmtPageDesc1(binfilter::SwW4WWriter&, const binfilter::SwPageDesc*)': /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sw/source/filter/w4w/sw_w4watr.cxx:295: error: no match for 'operator<<' in '((binfilter::SwW4WWriter*)rW4WWrt)->binfilter::SwW4WWriter::.binfilter::Writer::Strm() << sTmp' /usr/ports/editors/openoffice.org-2/work/OOH680_m12/solver/680/unxfbsdx/inc/tools/stream.hxx:393: note: candidates are: SvStream& SvStream::operator<<(sal_uInt16) /usr/ports/editors/openoffice.org-2/work/OOH680_m12/solver/680/unxfbsdx/inc/tools/stream.hxx:394: note: SvStream& SvStream::operator<<(sal_uInt32) /usr/ports/editors/openoffice.org-2/work/OOH680_m12/solver/680/unxfbsdx/inc/tools/stream.hxx:395: note: SvStream& SvStream::operator<<(long int) /usr/ports/editors/openoffice.org-2/work/OOH680_m12/solver/680/unxfbsdx/inc/tools/stream.hxx:396: note: SvStream& SvStream::operator<<(short int) /usr/ports/editors/openoffice.org-2/work/OOH680_m12/solver/680/unxfbsdx/inc/tools/stream.hxx:397: note: SvStream& SvStream::operator<<(int) /usr/ports/editors/openoffice.org-2/work/OOH680_m12/solver/680/unxfbsdx/inc/tools/stream.hxx:398: note: SvStream& SvStream::operator<<(signed char) /usr/ports/editors/openoffice.org-2/work/OOH680_m12/solver/680/unxfbsdx/inc/tools/stream.hxx:399: note: SvStream& SvStream::operator<<(char) /usr/ports/editors/openoffice.org-2/work/OOH680_m12/solver/680/unxfbsdx/inc/tools/stream.hxx:400: note: SvStream& SvStream::operator<<(unsigned char) /usr/ports/editors/openoffice.org-2/work/OOH680_m12/solver/680/unxfbsdx/inc/tools/stream.hxx:401: note: SvStream& SvStream::operator<<(float) /usr/ports/editors/openoffice.org-2/work/OOH680_m12/solver/680/unxfbsdx/inc/tools/stream.hxx:402: note: SvStream& SvStream::operator<<(const double&) /usr/ports/editors/openoffice.org-2/work/OOH680_m12/solver/680/unxfbsdx/inc/tools/stream.hxx:403: note: SvStream& SvStream::operator<<(const char*) /usr/ports/editors/openoffice.org-2/work/OOH680_m12/solver/680/unxfbsdx/inc/tools/stream.hxx:404: note: SvStream& SvStream::operator<<(const unsigned char*) /usr/ports/editors/openoffice.org-2/work/OOH680_m12/solver/680/unxfbsdx/inc/tools/stream.hxx:411: note: SvStream& SvStream::operator<<(SvStream&) ../../../../inc/bf_sw/ndhints.hxx:206: note: SvStream& binfilter::operator<<(SvStream&, const binfilter::SwpHints&) /usr/ports/editors/openoffice.org-2/work/OOH680_m12/solver/680/unxfbsdx/inc/tools/stream.hxx:637: note: SvStream& operator<<(SvStream&, SvStream& (*)(SvStream&)) /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sw/source/filter/w4w/sw_w4watr.cxx: In function 'BOOL binfilter::OutW4W_SwFmtHeader1(binfilter::SwW4WWriter&, const binfilter::SwFmtHeader&, const binfilter::SwPageDesc*, BOOL)': /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sw/source/filter/w4w/sw_w4watr.cxx:401: warning: right-hand operand of comma has no effect /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sw/source/filter/w4w/sw_w4watr.cxx: In function 'BOOL binfilter::OutW4W_SwFmtFooter1(binfilter::SwW4WWriter&, const binfilter::SwFmtFooter&, const binfilter::SwPageDesc*, BOOL)': /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sw/source/filter/w4w/sw_w4watr.cxx:499: warning: right-hand operand of comma has no effect /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sw/source/filter/w4w/sw_w4watr.cxx: In constructor 'binfilter::W4WSttEndPos::W4WSttEndPos(const binfilter::SwTxtAttr*, USHORT, USHORT)': /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sw/source/filter/w4w/sw_w4watr.cxx:731: warning: 'binfilter::W4WSttEndPos::pTxtAttr' will be initialized after /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sw/source/filter/w4w/sw_w4watr.cxx:730: warning: 'USHORT binfilter::W4WSttEndPos::nFontSize' /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sw/source/filter/w4w/sw_w4watr.cxx:737: warning: when initialized here /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sw/source/filter/w4w/sw_w4watr.cxx: In copy constructor 'binfilter::W4WSttEndPos::W4WSttEndPos(const binfilter::W4WSttEndPos&)': /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sw/source/filter/w4w/sw_w4watr.cxx:731: warning: 'binfilter::W4WSttEndPos::pTxtAttr' will be initialized after /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sw/source/filter/w4w/sw_w4watr.cxx:730: warning: 'USHORT binfilter::W4WSttEndPos::nFontSize' /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sw/source/filter/w4w/sw_w4watr.cxx:741: warning: when initialized here /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sw/source/filter/w4w/sw_w4watr.cxx: In function 'binfilter::Writer& binfilter::OutW4W_SwLineSpacing(binfilter::Writer&, const SfxPoolItem&)': /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sw/source/filter/w4w/sw_w4watr.cxx:1490: warning: enumeration value 'SVX_LINE_SPACE_END' not handled in switch /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sw/source/filter/w4w/sw_w4watr.cxx: In function 'binfilter::Writer& binfilter::OutW4W_SwAdjust(binfilter::Writer&, const SfxPoolItem&)': /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sw/source/filter/w4w/sw_w4watr.cxx:1542: warning: enumeration value 'SVX_ADJUST_LEFT' not handled in switch /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sw/source/filter/w4w/sw_w4watr.cxx:1542: warning: enumeration value 'SVX_ADJUST_END' not handled in switch dmake: Error code 1, while making '../../../../unxfbsdx/slo/sw_w4watr.obj' ---* tg_merge.mk *--- ERROR: Error 65280 occurred while making /usr/ports/editors/openoffice.org-2/work/OOH680_m12/binfilter/bf_sw/source/filter/w4w dmake: Error code 1, while making 'build_instsetoo_native' ---* *--- *** Error code 255 Stop in /usr/ports/editors/openoffice.org-2. --------------------------------------------------------- Greetings, Uli. ------------------------------------- Peter Ulrich Kruppa Wuppertal Germany From owner-freebsd-openoffice@FreeBSD.ORG Sat Apr 26 08:10:04 2008 Return-Path: Delivered-To: openoffice@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 259601065672 for ; Sat, 26 Apr 2008 08:10:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1AD348FC13 for ; Sat, 26 Apr 2008 08:10:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.2/8.14.2) with ESMTP id m3Q8A3A1046325 for ; Sat, 26 Apr 2008 08:10:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.2/8.14.1/Submit) id m3Q8A3dt046324; Sat, 26 Apr 2008 08:10:03 GMT (envelope-from gnats) Date: Sat, 26 Apr 2008 08:10:03 GMT Message-Id: <200804260810.m3Q8A3dt046324@freefall.freebsd.org> To: openoffice@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/121787: commit references a PR X-BeenThere: freebsd-openoffice@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: Porting OpenOffice to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Apr 2008 08:10:04 -0000 The following reply was made to PR ports/121787; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/121787: commit references a PR Date: Sat, 26 Apr 2008 08:01:17 +0000 (UTC) maho 2008-04-26 08:01:13 UTC FreeBSD ports repository Modified files: editors/openoffice.org-2 Makefile editors/openoffice.org-2/files Makefile.knobs editors/openoffice.org-2-RC Makefile editors/openoffice.org-2-RC/files Makefile.knobs editors/openoffice.org-2-devel Makefile editors/openoffice.org-2-devel/files Makefile.knobs editors/openoffice.org-3-devel Makefile editors/openoffice.org-3-devel/files Makefile.knobs Log: Add WITH_SYSTEM_ICU knob. Activate when devel/icu is installed. Fix build -CURRENT diablo-jdk breakage PR: 121787 Submitted by: Michael Moll Patch submitted by: Marcin Cieslak Revision Changes Path 1.334 +4 -0 ports/editors/openoffice.org-2-RC/Makefile 1.53 +13 -1 ports/editors/openoffice.org-2-RC/files/Makefile.knobs 1.362 +4 -0 ports/editors/openoffice.org-2-devel/Makefile 1.53 +13 -1 ports/editors/openoffice.org-2-devel/files/Makefile.knobs 1.302 +4 -0 ports/editors/openoffice.org-2/Makefile 1.53 +13 -1 ports/editors/openoffice.org-2/files/Makefile.knobs 1.374 +4 -0 ports/editors/openoffice.org-3-devel/Makefile 1.53 +14 -2 ports/editors/openoffice.org-3-devel/files/Makefile.knobs _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From owner-freebsd-openoffice@FreeBSD.ORG Sat Apr 26 08:20:12 2008 Return-Path: Delivered-To: openoffice@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CF39E1065680; Sat, 26 Apr 2008 08:20:12 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id AAF558FC12; Sat, 26 Apr 2008 08:20:12 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.2/8.14.2) with ESMTP id m3Q8K7Gi047966; Sat, 26 Apr 2008 08:20:07 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.2/8.14.1/Submit) id m3Q8K7Tp047962; Sat, 26 Apr 2008 08:20:07 GMT (envelope-from edwin) Date: Sat, 26 Apr 2008 08:20:07 GMT Message-Id: <200804260820.m3Q8K7Tp047962@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, openoffice@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/123105: repocopy request editors/openoffice.org-2 -> editors/openoffice.org-3 and editors/openoffice.org-2-RC -> editors/openoffice.org-3-RC X-BeenThere: freebsd-openoffice@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting OpenOffice to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Apr 2008 08:20:12 -0000 Synopsis: repocopy request editors/openoffice.org-2 -> editors/openoffice.org-3 and editors/openoffice.org-2-RC -> editors/openoffice.org-3-RC Responsible-Changed-From-To: freebsd-ports-bugs->openoffice Responsible-Changed-By: edwin Responsible-Changed-When: Sat Apr 26 08:20:07 UTC 2008 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=123105 From owner-freebsd-openoffice@FreeBSD.ORG Sat Apr 26 09:32:33 2008 Return-Path: Delivered-To: openoffice@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A35DA106567B; Sat, 26 Apr 2008 09:32:33 +0000 (UTC) (envelope-from maho@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 7E7EA8FC0C; Sat, 26 Apr 2008 09:32:33 +0000 (UTC) (envelope-from maho@FreeBSD.org) Received: from freefall.freebsd.org (maho@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.2/8.14.2) with ESMTP id m3Q9WXa9053982; Sat, 26 Apr 2008 09:32:33 GMT (envelope-from maho@freefall.freebsd.org) Received: (from maho@localhost) by freefall.freebsd.org (8.14.2/8.14.1/Submit) id m3Q9WXCT053978; Sat, 26 Apr 2008 09:32:33 GMT (envelope-from maho) Date: Sat, 26 Apr 2008 09:32:33 GMT Message-Id: <200804260932.m3Q9WXCT053978@freefall.freebsd.org> To: maho@FreeBSD.org, openoffice@FreeBSD.org, repocopy@FreeBSD.org From: maho@FreeBSD.org Cc: Subject: Re: ports/123105: repocopy request editors/openoffice.org-2 -> editors/openoffice.org-3 and editors/openoffice.org-2-RC -> editors/openoffice.org-3-RC X-BeenThere: freebsd-openoffice@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting OpenOffice to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Apr 2008 09:32:33 -0000 Synopsis: repocopy request editors/openoffice.org-2 -> editors/openoffice.org-3 and editors/openoffice.org-2-RC -> editors/openoffice.org-3-RC Responsible-Changed-From-To: openoffice->repocopy Responsible-Changed-By: maho Responsible-Changed-When: Sat Apr 26 09:32:14 UTC 2008 Responsible-Changed-Why: This is a repocopy request. http://www.freebsd.org/cgi/query-pr.cgi?pr=123105 From owner-freebsd-openoffice@FreeBSD.ORG Sat Apr 26 21:56:44 2008 Return-Path: Delivered-To: openoffice@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A7A48106567F for ; Sat, 26 Apr 2008 21:56:44 +0000 (UTC) (envelope-from smg.md@verizon.net) Received: from vms042pub.verizon.net (vms042pub.verizon.net [206.46.252.42]) by mx1.freebsd.org (Postfix) with ESMTP id 8BBF48FC13 for ; Sat, 26 Apr 2008 21:56:44 +0000 (UTC) (envelope-from smg.md@verizon.net) Received: from vms227.mailsrvcs.net ([172.18.12.133]) by vms042.mailsrvcs.net (Sun Java System Messaging Server 6.2-6.01 (built Apr 3 2006)) with ESMTPA id <0JZY00IJACYJKN32@vms042.mailsrvcs.net> for openoffice@FreeBSD.org; Sat, 26 Apr 2008 16:56:43 -0500 (CDT) Received: from 71.250.254.96 ([71.250.254.96]) by vms227.mailsrvcs.net (Verizon Webmail) with HTTP; Sat, 26 Apr 2008 16:56:43 -0500 (CDT) Date: Sat, 26 Apr 2008 16:56:43 -0500 (CDT) From: X-Originating-IP: [71.250.254.96] To: openoffice@FreeBSD.org Message-id: <7785038.4469701209247003121.JavaMail.root@vms227.mailsrvcs.net> MIME-version: 1.0 Content-type: text/plain; charset=UTF-8 Content-transfer-encoding: 7bit Cc: Subject: installing in Freebsd 7 X-BeenThere: freebsd-openoffice@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting OpenOffice to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 26 Apr 2008 21:56:44 -0000 I keep having this problem during installation, and have not been able to find a solution. I already have diablo-jdk1.5.0 but build of jdk15 fails in my system with the following message: WARNING: Your are not building SPONSORS workspace from the control build. This will result in a development-only build of the J2SE workspace, lacking the installation bundles WARNING: Your FreeBSD installation is not valid for building a the J2SDK. You must be using FreeBSD 4.1[01]|5.[345]|6.*. Your release is 7.0-RELEASE ERROR: Your BOOTDIR environment variable does not point to a valid Java 2 SDK for bootstrapping this build. A Java 2 SDK 5.0_14 build must be bootstrapped using J2SDK 1.4.2 fcs (or later). Apparently, your bootstrap JDK is version Please update your ALT_BOOTDIR setting and start your build again. So I gave up building oo.org from source. When I try to install the package, that fails too with the following message. checking the installed JDK... configure: error: JDK is too old, you need at least 1.3 ===> Script "configure" failed unexpectedly. Please report the problem to openoffice@FreeBSD.org [maintainer] and attach the "/usr/ports/editors/openoffice.org-2/work/OOH680_m12/config_office/config.log" including the output of the failure of your make command. Also, it might be a good idea to provide an overview of all packages installed on your system (e.g. an `ls /var/db/pkg`). *** Error code 1 Stop in /usr/ports/editors/openoffice.org-2. But I already have diablo jdk in my system (see above) Please help, I really need openoffice in my system. thanks