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_map<int, 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]

Reply via email to