--- asm-5.0.4.orig/build.xml	2015-05-15 09:37:28.000000000 -0500
+++ asm-5.0.4/build.xml	2015-09-12 02:09:55.543183528 -0500
@@ -490,7 +490,7 @@
   </target>
   -->
 
-	<target name="dist" depends="jar,sigtest,jdoc,examples">
+	<target name="dist" depends="jar,jdoc,examples">
 		<zip zipFile="${out.dist}/src.zip" basedir="${src}" excludes="**/optimizer/**/*" />
 	</target>
 
@@ -539,18 +539,6 @@
 			<fileset dir="${src}" excludes="**/optimizer/**/*" />
 		</jar>
 	</target>
-	
-	<!-- ================================== -->
-	<!-- =====  BINARY COMPATIBILITY   ==== -->
-	<!-- ================================== -->
-
-	<target name="sigtest-setup" depends="jar">
-		<ant antfile="${test}/build.xml" target="sigtest-setup" inheritRefs="true" />
-	</target>
-
-	<target name="sigtest" depends="jar">
-		<ant antfile="${test}/build.xml" target="sigtest" inheritRefs="true" />
-	</target>
 
 	<!-- =================================== -->
 	<!-- ==========     CLEAN     ========== -->
--- asm-5.0.4.orig/test/build.xml	2015-05-15 09:37:31.000000000 -0500
+++ asm-5.0.4/test/build.xml	2015-09-12 02:10:51.599546527 -0500
@@ -208,42 +208,5 @@
       <report todir="${out.test}/reports"/>
     </junitreport-->
   </target>
-
-  <!-- ================================== -->
-  <!-- =====  BINARY COMPATIBILITY   ==== -->
-  <!-- ================================== -->
-  
-  <target name="sigtest-setup">
-    <java classname="com.sun.tdk.signaturetest.Setup">
-      <classpath>
-        <pathelement location="${test}/lib/sigtestdev.jar"/>
-      </classpath>
-      <arg value="-apiversion"/>
-      <arg value="${product.artifact}"/>
-      <arg value="-static"/>
-      <arg value="-classpath"/>
-      <arg value="${java.home}/lib/rt.jar;${out.dist}/lib/all/asm-all-${product.artifact}.jar"/>
-      <arg value="-package"/>
-      <arg value="org.objectweb.asm"/>
-      <arg value="-filename"/>
-      <arg value="${test}/ASM.sig"/>
-    </java>
-  </target>
-
-  <target name="sigtest">
-    <taskdef name="atest" classname="com.sun.tdk.signaturetest.ant.ATest" 
-        classpath="${test}/lib/sigtestdev.jar"/>
-    <atest filename="${test}/ASM.sig"
-        apiversion="${product.artifact}"
-        backward="true" 
-        binary="true"
-        failonerror="true">	
-      <package name="org.objectweb.asm"/>
-      <classpath>
-        <pathelement location="${java.home}/lib/rt.jar"/>
-        <pathelement location="${out.dist}/lib/all/asm-all-${product.artifact}.jar"/>
-      </classpath>
-    </atest>
-  </target>
   
 </project>