• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

XML catalogue of packages which are available for installation, using the mingw-get installer.


Commit MetaInfo

Revision0da29a12eef76c3f91d378d1f4ded3d8d64c2e81 (tree)
Time2013-10-13 05:59:24
AuthorKeith Marshall <keithmarshall@user...>
CommiterKeith Marshall

Log Message

Revert enforced -static build for XML validation tool.

Change Summary

Incremental Difference

--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
1+2013-10-12 Keith Marshall <keithmarshall@users.sourceforge.net>
2+
3+ Revert enforced -static build for XML validation tool.
4+
5+ * tests/Makefile.in (xmlcheck$EXEEXT): Remove -static from CXX command
6+ line; users who want or require a static build may add it to the CFLAGS
7+ at either configure or make time.
8+
19 2013-10-12 Earnie Boyd <earnie@users.sourceforge.net>
210
311 Release gcc-4.8.1-4 and corrections as expressed in [#2094]
@@ -19,7 +27,7 @@
1927
2028 Correct an XML validation tool format specification error.
2129
22- * tests/xmlchec.cpp (error_handler::handleError): Need PRIu64 format
30+ * tests/xmlcheck.cpp (error_handler::handleError): Need PRIu64 format
2331 for printing loc->getLineNumber() and loc->getColumnNumber(); define
2432 __STDC_FORMAT_MACROS as 1, and include inttypes.h, to use it.
2533
--- a/tests/Makefile.in
+++ b/tests/Makefile.in
@@ -57,7 +57,7 @@ NO_XERCES_C_TOOLS_MSG = "" \
5757
5858 xerces-c-tools: xmlcheck$(EXEEXT)
5959 xmlcheck$(EXEEXT): xmlcheck.$(OBJEXT)
60- $(CXX) -static $(CXXFLAGS) -o $@ $(LDFLAGS) $^ $(LIBS)
60+ $(CXX) $(CXXFLAGS) -o $@ $(LDFLAGS) $^ $(LIBS)
6161
6262 sinclude *.d
6363 %.$(OBJEXT): %.cpp