[porting-issues] [Issue 88228] build break in filter on M ac OSX Tiger/PPC: pdf2xml is broken

2009-06-13 Thread rbircher
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=88228


User rbircher changed the following:

What|Old value |New value

  Status|VERIFIED  |CLOSED





--- Additional comments from rbirc...@openoffice.org Sat Jun 13 21:09:47 
+ 2009 ---
Closing issue

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: issues-unsubscr...@porting.openoffice.org
For additional commands, e-mail: issues-h...@porting.openoffice.org


-
To unsubscribe, e-mail: allbugs-unsubscr...@openoffice.org
For additional commands, e-mail: allbugs-h...@openoffice.org



[porting-issues] [Issue 88228] build break in filter on M ac OSX Tiger/PPC: pdf2xml is broken

2008-07-04 Thread cloph
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=88228





--- Additional comments from [EMAIL PROTECTED] Fri Jul  4 07:03:38 + 
2008 ---
for reference: the fix for the linker-problem is issue 91107 (got committed to
cws vcl90)

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[porting-issues] [Issue 88228] build break in filter on M ac OSX Tiger/PPC: pdf2xml is broken

2008-07-03 Thread maho
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=88228


User maho changed the following:

What|Old value |New value

OtherIssuesDependingOnTh|  |8
  is|  |





-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[porting-issues] [Issue 88228] build break in filter on M ac OSX Tiger/PPC: pdf2xml is broken

2008-06-26 Thread cloph
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=88228





--- Additional comments from [EMAIL PROTECTED] Thu Jun 26 15:43:30 + 
2008 ---
correction to the patch:
it should read
"$(GUIBASE)"=="unx"
instead of $(GUI)"=="UNX"

(both aqua and X11 use GUI=UNX)

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[porting-issues] [Issue 88228] build break in filter on M ac OSX Tiger/PPC: pdf2xml is broken

2008-06-26 Thread cloph
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=88228





--- Additional comments from [EMAIL PROTECTED] Thu Jun 26 15:14:34 + 
2008 ---
Created an attachment (id=54766)
for reference: the linker error when building with X11, without the -lobjc


-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[porting-issues] [Issue 88228] build break in filter on M ac OSX Tiger/PPC: pdf2xml is broken

2008-06-26 Thread cloph
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=88228


User cloph changed the following:

What|Old value |New value

  Status|RESOLVED  |VERIFIED





--- Additional comments from [EMAIL PROTECTED] Thu Jun 26 15:11:32 + 
2008 ---
fixed on PPC/aqua - one can now build the PDF import extension and the extension
can be installed and works.
When building X11, there apparently is the linker bug again. Adding -lobjc to
the compileflags worksaround the bug. In this case, -Wl,-all_load doesn't work
for some reason.
Sample patch to make it compile when doing a build with X11
diff -u -r1.4 makefile.mk
--- wrapper/makefile.mk 6 Jun 2008 16:49:07 -   1.4
+++ wrapper/makefile.mk 26 Jun 2008 15:06:43 -
@@ -54,6 +54,9 @@
 APP1STDLIBS+=xpdf.lib fofi.lib Goo.lib gdi32.lib advapi32.lib
 .ENDIF
 .ELSE
+.IF "$(OS)" == "MACOSX" && "$(GUI)"=="UNX"
+APP1STDLIBS+=-lobjc
+.ENDIF
 APP1STDLIBS+=-lxpdf -lfofi -lGoo
 .ENDIF
 
but as 3.0 is focused towards aqua anyway, I'll verify the issue.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[porting-issues] [Issue 88228] build break in filter on M ac OSX Tiger/PPC: pdf2xml is broken

2008-06-25 Thread thb
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=88228


User thb changed the following:

What|Old value |New value

 Assigned to|thb   |cloph





--- Additional comments from [EMAIL PROTECTED] Wed Jun 25 10:11:20 + 
2008 ---
@cloph: fixed in CWS thb30fixes, please verify (if ppc is an issue - eric might
be able to help out)

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[porting-issues] [Issue 88228] build break in filter on M ac OSX Tiger/PPC: pdf2xml is broken

2008-06-23 Thread thb
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=88228


User thb changed the following:

What|Old value |New value

  Status|STARTED   |RESOLVED

  Resolution|  |FIXED





--- Additional comments from [EMAIL PROTECTED] Mon Jun 23 09:45:38 + 
2008 ---
Fixed in CWS thb30fixes - was not an endianness issue, and has affected all of
pdfimport. Should now be safe to enable.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[porting-issues] [Issue 88228] build break in filter on M ac OSX Tiger/PPC: pdf2xml is broken

2008-06-23 Thread thb
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=88228


User thb changed the following:

What|Old value |New value

 Attachment is patch|  |Created an attachment (id=
|  |54681)
committed fix






--- Additional comments from [EMAIL PROTECTED] Mon Jun 23 09:43:56 + 
2008 ---
Created an attachment (id=54681)
committed fix


-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[porting-issues] [Issue 88228] build break in filter on M ac OSX Tiger/PPC: pdf2xml is broken

2008-06-23 Thread thb
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=88228


User thb changed the following:

What|Old value |New value

  CC|'ericb,maho,pjanik,rene'  |'ericb,hjs,maho,pjanik,ren
|  |e'





--- Additional comments from [EMAIL PROTECTED] Mon Jun 23 09:04:17 + 
2008 ---
Eric thankfully provided access. So, this crash is caused by huge deficiency in
how we drive configure scripts for external code - apparently, there's no
syncing of compiler switches in place. On Mac PPC, the crashes are caused by OOo
code being compiled with -malign-natural, whereas the xpdf libs are compiled
without this options (and pack structs differently).

Will commit a stop-gap-solution to CWS thb30fixes, but I think this needs
general fixing in solenv - I find it rather disconcerting that changing compiler
flags globally for OOo does not automatically propagate to linked libs (having
everything & laundry rolled into CFLAGS is also prolly unhelpful here -
especially -c kills configure when passed along directly).
 

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[porting-issues] [Issue 88228] build break in filter on M ac OSX Tiger/PPC: pdf2xml is broken

2008-06-20 Thread thb
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=88228





--- Additional comments from [EMAIL PROTECTED] Fri Jun 20 14:56:02 + 
2008 ---
last call, I otherwise have to retarget this.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[porting-issues] [Issue 88228] build break in filter on M ac OSX Tiger/PPC: pdf2xml is broken

2008-06-04 Thread thb
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=88228


User thb changed the following:

What|Old value |New value

  Status|NEW   |STARTED





--- Additional comments from [EMAIL PROTECTED] Wed Jun  4 15:46:07 + 
2008 ---
Ok, poppler is pretty much out of scope for 3.0 - I'm willing to tackle this,
but would need shell access to such a machine. Any takers?

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[porting-issues] [Issue 88228] build break in filter on M ac OSX Tiger/PPC: pdf2xml is broken

2008-05-04 Thread valeuf
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=88228





--- Additional comments from [EMAIL PROTECTED] Sun May  4 12:20:59 + 
2008 ---
I confirm too, same problem

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[porting-issues] [Issue 88228] build break in filter on M ac OSX Tiger/PPC: pdf2xml is broken

2008-05-04 Thread ericb
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=88228


User ericb changed the following:

What|Old value |New value

  CC|'maho,pjanik,rene'|'ericb,maho,pjanik,rene'





--- Additional comments from [EMAIL PROTECTED] Sun May  4 10:12:45 + 
2008 ---
.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[porting-issues] [Issue 88228] build break in filter on M ac OSX Tiger/PPC: pdf2xml is broken

2008-04-20 Thread maho
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=88228





--- Additional comments from [EMAIL PROTECTED] Mon Apr 21 00:29:19 + 
2008 ---
Hi, any progress here?
:)


-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[porting-issues] [Issue 88228] build break in filter on M ac OSX Tiger/PPC: pdf2xml is broken

2008-04-15 Thread maho
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=88228


User maho changed the following:

What|Old value |New value

  CC|'pjanik,rene' |'maho,pjanik,rene'





-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[porting-issues] [Issue 88228] build break in filter on M ac OSX Tiger/PPC: pdf2xml is broken

2008-04-14 Thread maho
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=88228





--- Additional comments from [EMAIL PROTECTED] Tue Apr 15 00:06:54 + 
2008 ---
same error on my Tiger/PPC.


-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[porting-issues] [Issue 88228] build break in filter on M ac OSX Tiger/PPC: pdf2xml is broken

2008-04-14 Thread thb
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=88228


User thb changed the following:

What|Old value |New value

  CC|'pjanik'  |'pjanik,rene'





--- Additional comments from [EMAIL PROTECTED] Mon Apr 14 11:14:24 + 
2008 ---
Thankfully, cloph gave me some input: apparently xpdfimport crashes on the
graphicsformats.pdf file, likely an endianness issue. CCing rene, we should
really move to poppler here.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[porting-issues] [Issue 88228] build break in filter on M ac OSX Tiger/PPC: pdf2xml is broken

2008-04-14 Thread thb
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=88228





--- Additional comments from [EMAIL PROTECTED] Mon Apr 14 10:39:23 + 
2008 ---
Hm. no real clue without being able to look at that platform - although likely
something with xpdf execution does not work (either it does not find the binary,
or the osl process spawning function is broken).

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[porting-issues] [Issue 88228] build break in filter on M ac OSX Tiger/PPC: pdf2xml is broken

2008-04-14 Thread akhva
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=88228


User akhva changed the following:

What|Old value |New value

 Assigned to|akhva |thb

Priority|P2|P3





--- Additional comments from [EMAIL PROTECTED] Mon Apr 14 09:24:29 + 
2008 ---
Sorry, I can not test it, ( there is no PPC Mac available). Maybe have Thorsten
a tip for solving of this issue.  

Best regards,
Artem 

 

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[porting-issues] [Issue 88228] build break in filter on M ac OSX Tiger/PPC: pdf2xml is broken

2008-04-13 Thread pjanik
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=88228


User pjanik changed the following:

What|Old value |New value

  CC|''|'pjanik'

Priority|P3|P2

Target milestone|---   |OOo 3.0





--- Additional comments from [EMAIL PROTECTED] Sun Apr 13 15:48:22 + 
2008 ---
I can confirm this. It works on on Intel though.



-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[porting-issues] [Issue 88228] build break in filter on M ac OSX Tiger/PPC: pdf2xml is broken

2008-04-13 Thread cloph
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=88228
 Issue #|88228
 Summary|build break in filter on Mac OSX Tiger/PPC: pdf2xml is
| broken
   Component|porting
 Version|DEV300m6
Platform|PowerPC
 URL|
  OS/Version|Mac OS X
  Status|NEW
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|MacOSX
 Assigned to|akhva
 Reported by|cloph





--- Additional comments from [EMAIL PROTECTED] Sun Apr 13 15:46:48 + 
2008 ---
building DEV300_m6 on Mac OSX 10.4 (Tiger) on PPC breaks in module filter with
the following error:
/Users/buildslave/compile/m6_aqua/filter/source/pdfimport/test/testdocs
-
rm -f ../../../../unxmacxp.pro/misc/graphicformats_pdfi_unittest_writer.xml
../../../../unxmacxp.pro/bin/pdf2xml -writer graphicformats.pdf
../../../../unxmacxp.pro/misc/graphicformats_pdfi_unittest_writer.xml
../../../../unxmacxp.pro/bin/pdfi_unittest_test.ini
diff ../../../../unxmacxp.pro/misc/graphicformats_pdfi_unittest_writer.xml
graphicformats_pdfi_unittest_writer.xml
3a4,30
> 
[lots and lots of diff's output snipped]
> 
dmake:  Error code 1, while making
'../../../../unxmacxp.pro/misc/graphicformats_pdfi_unittest_writer_succeeded'

ERROR: Error 65280 occurred while making
/Users/buildslave/compile/m6_aqua/filter/source/pdfimport/test/testdocs

The pdf2xml program doesn't work - it only creates a xml-skeleton, without real
content.

-
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]