forked from eclipse-omr/omr
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pugixml 1.8 was chosen because it can still be built using the same build files as pugixml 1.5. Miscellanous modifications to pugixml.cpp were made for EBCDIC support and for snprintf compatibility with modern build compilers. pugixml 1.5 is deleted from OMR. The main motivation for this upgrade is to simplify the license vetting process with the Eclipse Foundation. However, it is also useful to maintain currency with newer pugixml releases. Signed-off-by: Daryl Maier <[email protected]>
- Loading branch information
Showing
9 changed files
with
2,585 additions
and
1,396 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/** | ||
* pugixml parser - version 1.5 | ||
* pugixml parser - version 1.8 | ||
* -------------------------------------------------------- | ||
* Copyright (C) 2006-2014, by Arseny Kapoulkine ([email protected]) | ||
* Copyright (C) 2006-2016, by Arseny Kapoulkine ([email protected]) | ||
* Report bugs and download new versions at http://pugixml.org/ | ||
* | ||
* This library is distributed under the MIT License. See notice at the end | ||
|
@@ -17,6 +17,9 @@ | |
// Uncomment this to enable wchar_t mode | ||
// #define PUGIXML_WCHAR_MODE | ||
|
||
// Uncomment this to enable compact mode | ||
// #define PUGIXML_COMPACT | ||
|
||
// Uncomment this to disable XPath | ||
// #define PUGIXML_NO_XPATH | ||
|
||
|
@@ -39,15 +42,14 @@ | |
|
||
// Uncomment this to switch to header-only version | ||
// #define PUGIXML_HEADER_ONLY | ||
// #include "pugixml.cpp" | ||
|
||
// Uncomment this to enable long long support | ||
// #define PUGIXML_HAS_LONG_LONG | ||
|
||
#endif | ||
|
||
/** | ||
* Copyright (c) 2006-2014 Arseny Kapoulkine | ||
* Copyright (c) 2006-2016 Arseny Kapoulkine | ||
* | ||
* Permission is hereby granted, free of charge, to any person | ||
* obtaining a copy of this software and associated documentation | ||
|
@@ -60,7 +62,7 @@ | |
* | ||
* The above copyright notice and this permission notice shall be | ||
* included in all copies or substantial portions of the Software. | ||
* | ||
* | ||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, | ||
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES | ||
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND | ||
|
Oops, something went wrong.