To comment on the following update, log in, then open the issue: http://www.openoffice.org/issues/show_bug.cgi?id=98048 Issue #|98048 Summary|harmonize --with{out}-stlport default Component|porting Version|current Platform|All URL| OS/Version|All Status|NEW Status whiteboard| Keywords| Resolution| Issue type|DEFECT Priority|P2 Subcomponent|code Assigned to|mh Reported by|rene
------- Additional comments from [email protected] Tue Jan 13 23:15:58 +0000 2009 ------- Hi, [ imho this is P2 because currently plain ./configure builds differ in the ABI from vanilla on some archs ] seeing that the x86_64 version of OOo is (by Sun) also built with USE_SYSTEM_STL YES, we probably should harmonize the ./configure defaults with reality. - Linux/i386, Windows, Solaris 32 bit: stay with STLport - all other Linux builds than i386 should be changed - Mac Intel: built by Sun defauls according to Sun to system-stl, too. - Solaris 64bit uses system-stl -> default should be changed If no one objects I'd strt with this: --- configure.in (Revision 266120) +++ configure.in (Arbeitskopie) @@ -2306,7 +2306,7 @@ DEFAULT_TO_STLPORT="yes" if test "$_os" = "Linux"; then case "$build_cpu" in - i?86|powerpc|sparc) + i?86) DEFAULT_TO_STLPORT="yes" ;; *) @@ -2315,11 +2315,19 @@ esac elif test "$_os" = "Darwin"; then DEFAULT_TO_STLPORT="no" + elif test "$_os" = "SunOS"; then + if test $SIZEOF_LONG = 8; then + DEFAULT_TO_STLPORT="no" + else + DEFAULT_TO_STLPORT="yes" + fi + elif test "$_os" = "WINNT"; then + DEFAULT_TO_STLPORT="yes" fi if test "$DEFAULT_TO_STLPORT" = "yes"; then AC_MSG_RESULT([stlport]) else - AC_MSG_RESULT([gcc]) + AC_MSG_RESULT([system]) fi if test "$WITH_STLPORT" = "auto"; then WITH_STLPORT=$DEFAULT_TO_STLPORT port people, do you have a comment? Especially for the OSes/archs not covered here? What about *BSD? What about OS/2? What about possible future Windows 64bit? What about someting else? :) --------------------------------------------------------------------- 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]
