[porting-issues] [Issue 72150] configure: without-stlport 4 breaks configure, when using some with-syste m -flags

2007-10-20 Thread mox
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=72150





--- Additional comments from [EMAIL PROTECTED] Sat Oct 20 08:15:47 + 
2007 ---
Created an attachment (id=49045)
tarred configure showing failed system stl


-
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 72150] configure: without-stlport 4 breaks configure, when using some with-syste m -flags

2007-10-20 Thread mox
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=72150





--- Additional comments from [EMAIL PROTECTED] Sat Oct 20 08:25:02 + 
2007 ---
Unfortunately even applying 82715 does not help the MacOSX problems, when using
without-stlport4.

1)
system python errors and stops the configure

2)
Things like zlib.h detection causes warnings not usually seen (this is not a
major issue)

...

The related nasty thing is that applying the patch from 82715 actually stops the
configure with configure: error: Your gcc STL headers are not visibility
safe.. Does that mean that somehow the gcc STL in Mac OS X is broken? I'm
currently using XCode 2.4.1, which means: gcc version 4.0.1 (Apple Computer,
Inc. build 5367)




-
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 72150] configure: without-stlport 4 breaks configure, when using some with-syste m -flags

2007-10-20 Thread cmc
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=72150





--- Additional comments from [EMAIL PROTECTED] Sat Oct 20 16:44:32 + 
2007 ---
So, if you look at the config.log and search for the zlib.h test you'll see that
the preprocessor is run as 

  -I/sw/include conftest.cc

not as
cc -E -I/sw/include conftest.cc

so the question is why have we lost the preprocessor variable, looking backwards
from there I see most interestingly that where we have AC_LANG_RESTORE in e.g.
the end of the ODK test ac_cpp='$CXXCPP ...' is substituted by autoconf not
ac_cpp=$CPP like I would have expected, going backup the doc I suspect that one
of the problems is that of the test $_os = SunOS; then AC_LANG_CPLUSPLUS; fi

I suspect that the natural assumption that the AC_LANG_CPLUSPLUS only affects
SunOS is incorrect and that autoconf pushes and pops with LANG_SAVE and
LANG_RESTORE according to the position of AC_LANG_CPLUSPLUS in the configure.in
script and the if/fi has no affect on that. i.e. from that point onwards the
language is considered to be c++ so we are SAVING and RESTORING c++ not c like
we thing. And it just so happens that we don't test for CXXCPP on Darwin so the
c++ CXXCPP is never set. So on the very next LANG_RESTORE the ac_cpp value is
set to the c++ cpp and from that point on all preprocesser tests that think they
are using the C preprocesser are using the C++ one, and that's empty on darwin.

And it does so happens that the system stl test has a restore, and it's the
first one before the zlib etc tests, but anything that did the restore would
have triggered the problem if there is a test that uses the preprocessor 
afterwards.

I think we have multiple problems here, missing LANG_RESTORE in hunspell,
missing tests for CXXCPP on anything except Linux and BSD varients, and a
hangover from issue 445. I'll see if I can cook up something acceptable for all.

-
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 72150] configure: without-stlport 4 breaks configure, when using some with-syste m -flags

2007-10-20 Thread cmc
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=72150


User cmc changed the following:

What|Old value |New value

 IssuesThisDependsOn|82715 |





--- Additional comments from [EMAIL PROTECTED] Sat Oct 20 17:22:00 + 
2007 ---
Attaching a proposed patch to configure.in and a configure from a patch and
autoconfed m233 for testing if autoconf isn't available under macosx to
regenerate configure

-
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 72150] configure: without-stlport 4 breaks configure, when using some with-syste m -flags

2007-10-20 Thread cmc
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=72150


User cmc changed the following:

What|Old value |New value

 Attachment is patch|  |Created an attachment (id=
|  |49046)
proposed patch, nee
|  |ds verification under maco
|  |sx






--- Additional comments from [EMAIL PROTECTED] Sat Oct 20 17:22:56 + 
2007 ---
Created an attachment (id=49046)
proposed patch, needs verification under macosx


-
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 72150] configure: without-stlport 4 breaks configure, when using some with-syste m -flags

2007-10-20 Thread cmc
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=72150





--- Additional comments from [EMAIL PROTECTED] Sat Oct 20 17:23:48 + 
2007 ---
Created an attachment (id=49047)
pre-generated configure to perhaps aid testing


-
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 72150] configure: without-stlport 4 breaks configure, when using some with-syste m -flags

2007-10-20 Thread cmc
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=72150





--- Additional comments from [EMAIL PROTECTED] Sat Oct 20 17:27:33 + 
2007 ---
Use push and pop because people cut and paste, and if they miss it then push and
pop will hopefully cry if there's a mismatch.

Change the SunOS test to do what the comment says what it wants to do and
default to looking for CPP/CXXCPP except under windows.

Move all test that use the preprocessor after the CPP tests.

cmc-moz: so does it work :-)

-
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 72150] configure: without-stlport 4 breaks configure, when using some with-syste m -flags

2007-10-20 Thread mox
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=72150





--- Additional comments from [EMAIL PROTECTED] Sat Oct 20 21:31:05 + 
2007 ---
cmc: YAY!

The using the preprocesser.patch on m233 configure.in works very nicely, thanks!

After that, I manually added the gcc visibility check (stlvisok stuff) and
that still fails :/ Although I'm starting to suspect that the check itself does
not work on Mac... 

-
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 72150] configure: without-stlport 4 breaks configure, when using some with-syste m -flags

2007-10-20 Thread mox
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=72150





--- Additional comments from [EMAIL PROTECTED] Sat Oct 20 21:38:12 + 
2007 ---
Created an attachment (id=49050)
tarred config_office with preprocesser.patch and manually added stlvisok check 
(failed configure)


-
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 72150] configure: without-stlport 4 breaks configure, when using some with-syste m -flags

2007-10-19 Thread cmc
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=72150





--- Additional comments from [EMAIL PROTECTED] Fri Oct 19 06:56:05 + 
2007 ---
I don't see that 82715 will have any impact on this at all, that issue just
makes --without-stlport4 the default for certain non-i386 Linux variants, not
macosx. 

You're results still sound like some AC_LANG_SAVE AC_LANG_RESTORE guards are
missing someplace, or there is a route through configure on macosx which skips a
AC_LANG_RESTORE or something like that.

-
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 72150] configure: without-stlport 4 breaks configure, when using some with-syste m -flags

2007-10-18 Thread mox
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=72150


User mox changed the following:

What|Old value |New value

 IssuesThisDependsOn|  |82715





--- Additional comments from [EMAIL PROTECTED] Thu Oct 18 20:47:33 + 
2007 ---
the updates in issue 82715 would probably help for this bug too (the ones around
hash_map hackery).

I recently bought an iMac (x86), so could check this again...


cmc: 
any chance of renaming the configure flag to with-system-stl, instead of the 
confusing without-stlport4?

-
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 72150] configure: without-stlport 4 breaks configure, when using some with-syste m -flags

2007-10-15 Thread cmc
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=72150





--- Additional comments from [EMAIL PROTECTED] Mon Oct 15 11:11:50 + 
2007 ---
I don't have any information here to make any useful changes, so unless anyone
has some data I'll close this soon.

-
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 72150] configure: without-stlport 4 breaks configure, when using some with-syste m -flags

2007-08-31 Thread cmc
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=72150





--- Additional comments from [EMAIL PROTECTED] Fri Aug 31 08:51:06 + 
2007 ---
we need a needinfo state, I don't have a mac so I can't just check this
myself, so if someone has the problem I suspect that there's some simple cockup,
so a tarred up config_office post configure attached here might help.

-
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 72150] configure: without-stlport 4 breaks configure, when using some with-syste m -flags

2007-08-14 Thread rene
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=72150


User rene changed the following:

What|Old value |New value

  CC|'mox,rene,sparcmoz'   |'cloph,mox,rene,sparcmoz'

 Assigned to|cloph |cmc





--- Additional comments from [EMAIL PROTECTED] Tue Aug 14 17:44:12 + 
2007 ---
pjanik: no.

reassigning to cmc because he did --without-stlport4.
cmc: idea?

-
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 72150] configure: without-stlport 4 breaks configure, when using some with-syste m -flags

2007-08-14 Thread cmc
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=72150





--- Additional comments from [EMAIL PROTECTED] Tue Aug 14 18:42:06 + 
2007 ---
I don't know, but if it is isolated to the configure script, attach the tared up
config_office dir here so we can look at the config.log and associated files.
Perhaps we'll see something in there to explain it.

-
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 72150] configure: without-stlport 4 breaks configure, when using some with-syste m -flags

2007-08-06 Thread pjanik
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=72150


User pjanik changed the following:

What|Old value |New value

  CC|'mox,sparcmoz'|'mox,rene,sparcmoz'

Target milestone|OOo 2.3   |OOo 2.4





--- Additional comments from [EMAIL PROTECTED] Mon Aug  6 10:03:47 + 
2007 ---
Move target.

Rene: do you see some issue in the respective code?


-
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 72150] configure: without-stlport 4 breaks configure, when using some with-syste m -flags

2007-04-29 Thread sparcmoz
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=72150


User sparcmoz changed the following:

What|Old value |New value

  CC|'mox' |'mox,sparcmoz'





-
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 72150] configure: without-stlport 4 breaks configure, when using some with-syste m -flags

2007-04-28 Thread mox
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=72150


User mox changed the following:

What|Old value |New value

  Ever confirmed|  |1

  Status|UNCONFIRMED   |NEW

Target milestone|---   |OOo 2.3





--- Additional comments from [EMAIL PROTECTED] Sat Apr 28 12:44:53 + 
2007 ---
still an issue with SRC680_m211.

-
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 72150] configure: without-stlport 4 breaks configure, when using some with-syste m -flags

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


User pjanik changed the following:

What|Old value |New value

  CC|'mox,pjanik'  |'mox'





-
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 72150] configure: without-stlport 4 breaks configure, when using some with-syste m -flags

2006-12-07 Thread mox
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=72150


User mox changed the following:

What|Old value |New value

  CC|'pjanik'  |'mox,pjanik'





--- Additional comments from [EMAIL PROTECTED] Thu Dec  7 05:26:24 -0800 
2006 ---
I have traced the problem to hash_map hackery in config_office/configure.in

The following code breaks the environment for system libraries (zlib, expat,
python) for Mac OS X:

dnl ===
dnl hash_map hackery
dnl ===
if test $USE_SYSTEM_STL = YES; then
   AC_MSG_CHECKING([if hash_map will be in __gnu_cxx namespace])
   AC_LANG_SAVE
   AC_LANG_CPLUSPLUS
   AC_TRY_COMPILE([#include ext/hash_map
using namespace __gnu_cxx;
],[hash_mapint, int t; return 0;],
  ac_cv_cxx_have_ext_hash_map=yes, ac_cv_cxx_have_ext_hash_map=no)
   AC_LANG_RESTORE
   if test $ac_cv_cxx_have_ext_hash_map = no; then
  AC_MSG_ERROR([Can't find hash_map. Try with stlport enabled])
   else
  AC_MSG_RESULT([$ac_cv_cxx_have_ext_hash_map])
   fi
fi

...

do the AC_LANG_SAVE / _RESTORE work as they are supposed to?

Uncommenting the above check, will make it possible to start building openoffice
normally (while using --without-stlport4)



-
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 72150] configure: without-stlport 4 breaks configure, when using some with-syste m -flags

2006-11-30 Thread mox
To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=72150
 Issue #|72150
 Summary|configure: without-stlport4 breaks configure, when usi
|ng some with-system -flags
   Component|porting
 Version|OOo 2.1
Platform|Macintosh
 URL|
  OS/Version|Mac OS X
  Status|UNCONFIRMED
   Status whiteboard|
Keywords|
  Resolution|
  Issue type|DEFECT
Priority|P3
Subcomponent|MacOSX
 Assigned to|cloph
 Reported by|mox





--- Additional comments from [EMAIL PROTECTED] Thu Nov 30 09:26:52 -0800 
2006 ---
I have successfully compiled previous milestones with the (oo internal) stlport4
and have succeeded doing in configuring m195 and starting a build correctly with
that setting.


However, when using the --without-stlport4 flag to configure, it declares
warnings on expat and zlib, and finally errors in python, claiming that it
cannot find the headers. Enabling or disabling Jam does not change the 
situation.

I'm using these configure flags:
--with-system-expat --with-system-libxml --with-system-freetype
--with-system-python --with-system-curl --with-system-stdlibs --with-system-zlib
--enable-cups --disable-mozilla --enable-jam --without-stlport4

Also:
export nodep=TRUE
export NO_HIDS=TRUE

* last few lines of the build log: **
checking which python to use... external
checking for a Python interpreter with version = 2.2... python
checking for python... /usr/bin/python
checking for python version... 2.3
checking for python platform... darwin
checking for python script directory... ${prefix}/lib/python2.3/site-packages
checking for python extension module directory...
${exec_prefix}/lib/python2.3/site-packages
configure: error: Python headers not found.
make: *** [build.configure] Error 1

**

-
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]