To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=111958





------- Additional comments from v...@openoffice.org Mon Jun 14 15:29:36 +0000 
2010 -------
@tono: in my opinion, in cppunit/makefile.mk

Blocks:
********************
.IF "$(OS)" == "WNT" && "$(COM)" == "MSC"
...
.ELSE
.IF "$(OS)" == "WNT"
EXTRA_CFLAGS += -mthreads
LDFLAGS += -Wl,--enable-runtime-pseudo-reloc-v2
.ENDIF
....
********************
would be better to enclose like:
********************
.IF "$(OS)" == "WNT"
.IF "$(COM)" == "MSC"
...
.ELSE
.IF "$(COM)" == "GCC"
EXTRA_CFLAGS += -mthreads
LDFLAGS += -Wl,--enable-runtime-pseudo-reloc-v2
.ENDIF # "$(COM)" == "GCC"
.ENDIF # "$(COM)" == "MSC"
.ELSE
****************

Maybe, even without ".IF "$(COM)" == "GCC""

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

Reply via email to