diff options
author | Sven Gothel <[email protected]> | 2010-04-19 01:19:06 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2010-04-19 01:19:06 +0200 |
commit | c7630f35befa1b8dbd365984f08c4efbc04488c1 (patch) | |
tree | ecaa3cbd0dbee4fdf145e7f559343dff3d4a31b6 /make/build.xml | |
parent | 012945e169956ab1e227020a07e4f1b602c9dec7 (diff) |
Added keyNotFoundValue semantics, for primitve types it defaults to -1 now.
Diffstat (limited to 'make/build.xml')
-rwxr-xr-x | make/build.xml | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/make/build.xml b/make/build.xml index 74b8d9f..a9a7d6a 100755 --- a/make/build.xml +++ b/make/build.xml @@ -437,7 +437,7 @@ <param name="map.name" value="IntLongHashMap"/> <param name="map.key" value="int"/> <param name="map.value" value="long"/> - <param name="map.null" value="0"/> + <param name="map.null" value="-1"/> </antcall> <!-- Long*Maps --> @@ -452,14 +452,14 @@ <param name="map.name" value="LongIntHashMap"/> <param name="map.key" value="long"/> <param name="map.value" value="int"/> - <param name="map.null" value="0"/> + <param name="map.null" value="-1"/> </antcall> <antcall target="create-map" inheritrefs="true"> <param name="map.name" value="LongLongHashMap"/> <param name="map.key" value="long"/> <param name="map.value" value="long"/> - <param name="map.null" value="0"/> + <param name="map.null" value="-1"/> </antcall> </target> @@ -473,7 +473,7 @@ <replaceregex pattern="@see ${map.name}" replace="@see IntIntHashMap"/> <replaceregex pattern="/\*value\*/int/\*value\*/" replace="${map.value}"/> <replaceregex pattern="/\*key\*/int/\*key\*/" replace="${map.key}"/> - <replaceregex pattern="/\*null\*/0/\*null\*/" replace="${map.null}"/> + <replaceregex pattern="/\*null\*/-1/\*null\*/" replace="${map.null}"/> </filterchain> <!-- no clue why we have to do this twice... otherwise it will only replace one token per line --> <filterchain> @@ -619,6 +619,9 @@ <fileset dir="${classes-cdc}"> <include name="com/jogamp/gluegen/runtime/*.class" /> <include name="com/jogamp/gluegen/runtime/opengl/*.class" /> + <include name="com/jogamp/common/impl/*.class" /> + <include name="com/jogamp/common/jvm/*.class" /> + <include name="com/jogamp/common/util/*.class" /> <include name="com/jogamp/common/nio/*.class" /> <include name="com/jogamp/common/os/*.class" /> <include name="com/jogamp/common/*.class" /> |