To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=113227
User rene changed the following:
What |Old value |New value
================================================================================
Status|NEW |STARTED
--------------------------------------------------------------------------------
Keywords|regression |
--------------------------------------------------------------------------------
Priority|P2 |P3
--------------------------------------------------------------------------------
Summary|odk: unowinreg.dll build f|odk: unowinreg.dll build f
|ails |ails with --with.mingwin=.
| |..-c++
--------------------------------------------------------------------------------
------- Additional comments from [email protected] Mon Jul 19 13:58:10 +0000
2010 -------
OK, I see the problem. I accidentially specified
---with-mingwin=i586-mingw32msvc+c++ instead of -g++. Which makes the MINGWSTRIP
defined wrongly
(and in my other testbuilds I did it right)
--- a/configure.in
+++ b/configure.in
@@ -3496,7 +3496,7 @@
AC_MSG_RESULT(yes)
fi
if echo "$WITH_MINGWIN" | $EGREP -q "/"; then
- if ! test -x "`echo $WITH_MINGWIN | $SED -e s/g++/strip/`"; then
MINGSTRIP=false; else MINGWSTRIP=$(basename $(echo $WITH_MINGWIN | $SED -e
s/g++/strip/)); fi
+ if ! test -x "`echo $WITH_MINGWIN | $SED -e s/g++/strip/`"; then
MINGSTRIP=false; else MINGWSTRIP=$(basename $(echo $WITH_MINGWIN | $SED -e
s/g++/strip/ | $SED -e s/c++/strip/)); fi
else
AC_CHECK_TOOL(MINGWSTRIP, `echo $WITH_MINGWIN | $SED -e s/g++/strip/`,
false)
fi
shold fix it (i.e. also change c++ into strip).
---------------------------------------------------------------------
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]