PR: MPNATIVE-12

Create .lib with full name


git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@368490 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
ltheussl 2006-01-12 22:04:55 +00:00
parent a974b81f32
commit 3f7d6ae692
2 changed files with 8 additions and 2 deletions

View File

@ -158,6 +158,11 @@
<j:if test="${outputPresentDLL == 'true'}">
<ant:copy file="${maven.build.dir}/native/_.dll"
tofile="${maven.build.dir}/native/${pom.artifactId}-${pom.currentVersion}.dll" overwrite="true"/>
<ant:available property="outputPresentLIB" file="${maven.build.dir}/native/_.lib"/>
<j:if test="${outputPresentLIB == 'true'}">
<ant:copy file="${maven.build.dir}/native/_.lib"
tofile="${maven.build.dir}/native/${pom.artifactId}-${pom.currentVersion}.lib" overwrite="true"/>
</j:if>
</j:if>
<!-- dylib -->

View File

@ -25,6 +25,7 @@
</properties>
<body>
<release version="1.2-SNAPSHOT" date="in CVS">
<action dev="ltheussl" type="fix" issue="MPNATIVE-12" due-to="Dan Tran">Need .lib full name.</action>
<action dev="ltheussl" type="fix" issue="MPNATIVE-14" due-to="Marcus Crafter">Add dependency classpath to call to javah.</action>
<action dev="ltheussl" type="fix" issue="MPNATIVE-13" due-to="baleineca">Jelly tokenize incorrect behaviour.</action>
<action dev="brett" type="add" due-to="baleineca">Checking for runtime property and adding it. Default to "dynamic" if not present.</action>