XML catalogue of packages which are available for installation, using the mingw-get installer.
Revision | 0da29a12eef76c3f91d378d1f4ded3d8d64c2e81 (tree) |
---|---|
Time | 2013-10-13 05:59:24 |
Author | Keith Marshall <keithmarshall@user...> |
Commiter | Keith Marshall |
Revert enforced -static build for XML validation tool.
@@ -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 | + | |
1 | 9 | 2013-10-12 Earnie Boyd <earnie@users.sourceforge.net> |
2 | 10 | |
3 | 11 | Release gcc-4.8.1-4 and corrections as expressed in [#2094] |
@@ -19,7 +27,7 @@ | ||
19 | 27 | |
20 | 28 | Correct an XML validation tool format specification error. |
21 | 29 | |
22 | - * tests/xmlchec.cpp (error_handler::handleError): Need PRIu64 format | |
30 | + * tests/xmlcheck.cpp (error_handler::handleError): Need PRIu64 format | |
23 | 31 | for printing loc->getLineNumber() and loc->getColumnNumber(); define |
24 | 32 | __STDC_FORMAT_MACROS as 1, and include inttypes.h, to use it. |
25 | 33 |
@@ -57,7 +57,7 @@ NO_XERCES_C_TOOLS_MSG = "" \ | ||
57 | 57 | |
58 | 58 | xerces-c-tools: xmlcheck$(EXEEXT) |
59 | 59 | xmlcheck$(EXEEXT): xmlcheck.$(OBJEXT) |
60 | - $(CXX) -static $(CXXFLAGS) -o $@ $(LDFLAGS) $^ $(LIBS) | |
60 | + $(CXX) $(CXXFLAGS) -o $@ $(LDFLAGS) $^ $(LIBS) | |
61 | 61 | |
62 | 62 | sinclude *.d |
63 | 63 | %.$(OBJEXT): %.cpp |