forked from ngageoint/six-library
-
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.
Squashed 'externals/coda-oss/' changes from bbf8be1..eba1450
eba1450 Merge pull request ngageoint#259 from mdaus/xmlLeak 5640dcf Fix comment a6b53f4 Fix memory leak on error reading 8499ef8 Merge pull request ngageoint#258 from mdaus/solarisC99 d9c0160 Compile solaris with c99 git-subtree-dir: externals/coda-oss git-subtree-split: eba14502fe83c9ef21163a698b4b616ebef84ece
- Loading branch information
1 parent
27677c5
commit f4c8148
Showing
3 changed files
with
11 additions
and
10 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
NAME = 'xml.lite' | ||
MAINTAINER = '[email protected]' | ||
VERSION = '1.2' | ||
MODULE_DEPS = 'io mt logging' | ||
MODULE_DEPS = 'io mem mt logging' | ||
USELIB_CHECK = 'XML' | ||
TEST_FILTER = 'MMParserTest1.cpp MinidomParserTest2.cpp' | ||
TEST_DEPS = 'cli' | ||
|
@@ -20,8 +20,8 @@ def configure(conf): | |
conf.define('USE_LIBXML', '', quote=False) | ||
elif Options.options.xml_layer == 'xerces': | ||
conf.define('USE_XERCES', '', quote=False) | ||
|
||
writeConfig(conf, xml_lite_callback, NAME) | ||
|
||
def build(bld): | ||
bld.module(**globals()) |