6
0
Files
matthewlib-java/classpath_fix.patch
Stephan Kulow 062a3ab50b Accepting request 124694 from Java:packages
- update to 0.8
  * Add -fno-stack-protector to fix compilation issues in various distros
  * Fix spin-on-disconnection bug (Spotted by Christopher Armstrong 
    <carmstrong -at- fastmail -dot- com -dot- au>)
  * Patch from 石頭成 <shirock -dot- tw -at- gmail -dot- com> to avoid a
    memory leak
  * Change to expat (MIT) licence 
  * Patches to the CGI libraries from Andy Canfield <andy -dot- canfield -at-
    pimco -dot- mobi>

OBS-URL: https://build.opensuse.org/request/show/124694
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/matthewlib-java?expand=0&rev=10
2012-06-13 11:31:56 +00:00

39 lines
1.4 KiB
Diff

Index: libmatthew-java-0.8/Makefile
===================================================================
--- libmatthew-java-0.8.orig/Makefile 2012-05-15 10:19:39.418201897 +0200
+++ libmatthew-java-0.8/Makefile 2012-05-15 10:19:41.742201844 +0200
@@ -62,11 +62,12 @@
io-$(IOVER).jar: .classes
(cd classes; $(JAR) cf ../$@ cx/ath/matthew/io/*class)
unix-$(UNIXVER).jar: .classes
-ifeq ($(DEBUG),enable)
- echo "Class-Path: $(JARDIR)/debug-$(DEBUG).jar" > Manifest
-else
- echo "Class-Path: " > Manifest
-endif
+#ifeq ($(DEBUG),enable)
+# echo "Class-Path: $(JARDIR)/debug-$(DEBUG).jar" > Manifest
+#else
+# echo "Class-Path: " > Manifest
+#endif
+ echo > Manifest
(cd classes; $(JAR) cfm ../$@ ../Manifest cx/ath/matthew/unix/*class)
hexdump-$(HEXVER).jar: .classes
@@ -91,11 +92,13 @@
debug-enable-$(DEBUGVER).jar: cx/ath/matthew/debug/Debug.jpp
make .enabledebug
- echo "Class-Path: $(JARDIR)/hexdump.jar" > Manifest
+ #echo "Class-Path: $(JARDIR)/hexdump.jar" > Manifest
+ echo > Manifest
(cd classes;jar cfm ../$@ ../Manifest cx/ath/matthew/debug/*.class)
debug-disable-$(DEBUGVER).jar: cx/ath/matthew/debug/Debug.jpp
make .disabledebug
- echo "Class-Path: $(JARDIR)/hexdump.jar" > Manifest
+ #echo "Class-Path: $(JARDIR)/hexdump.jar" > Manifest
+ echo > Manifest
(cd classes;jar cfm ../$@ ../Manifest cx/ath/matthew/debug/*.class)
.enabledebug: cx/ath/matthew/debug/Debug.jpp
mkdir -p classes