patches/realvnc-java-client-01-makefile.diff
author yippi
Mon, 27 Sep 2010 21:07:51 +0000
changeset 20108 51df67ca9307
parent 10202 843de89e6020
permissions -rw-r--r--
I had these modules listed as being owned by me, but they are really owned by wangke, correcting.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10202
843de89e6020 * patches/realvnc-java-client-01-makefile.diff: Rework to fix bugster #6583170.
halton
parents: 10106
diff changeset
     1
--- vnc-4_1-javasrc.orig/java/makefile	2007-07-09 18:51:21.719429000 +0800
843de89e6020 * patches/realvnc-java-client-01-makefile.diff: Rework to fix bugster #6583170.
halton
parents: 10106
diff changeset
     2
+++ vnc-4_1-javasrc/java/makefile	2007-07-21 00:09:07.286607000 +0800
10106
4289719ea5b7 * SUNWgnome-remote-desktop.spec:
halton
parents:
diff changeset
     3
@@ -2,7 +2,7 @@
4289719ea5b7 * SUNWgnome-remote-desktop.spec:
halton
parents:
diff changeset
     4
 # probably won't work for you!
4289719ea5b7 * SUNWgnome-remote-desktop.spec:
halton
parents:
diff changeset
     5
 #
4289719ea5b7 * SUNWgnome-remote-desktop.spec:
halton
parents:
diff changeset
     6
 
4289719ea5b7 * SUNWgnome-remote-desktop.spec:
halton
parents:
diff changeset
     7
-JAVAC = jikes -classpath .:$$CLASSPATH
10202
843de89e6020 * patches/realvnc-java-client-01-makefile.diff: Rework to fix bugster #6583170.
halton
parents: 10106
diff changeset
     8
+JAVAC = javac -target 1.5 -classpath .:$$CLASSPATH
10106
4289719ea5b7 * SUNWgnome-remote-desktop.spec:
halton
parents:
diff changeset
     9
 JAR = jar
4289719ea5b7 * SUNWgnome-remote-desktop.spec:
halton
parents:
diff changeset
    10
 INSTALL_DIR = ../unix/java
4289719ea5b7 * SUNWgnome-remote-desktop.spec:
halton
parents:
diff changeset
    11
 SRCS = $(shell find . -name '*.java' -print 2>/dev/null)
4289719ea5b7 * SUNWgnome-remote-desktop.spec:
halton
parents:
diff changeset
    12
@@ -12,7 +12,7 @@
4289719ea5b7 * SUNWgnome-remote-desktop.spec:
halton
parents:
diff changeset
    13
 vncviewer.jar: $(SRCS)
4289719ea5b7 * SUNWgnome-remote-desktop.spec:
halton
parents:
diff changeset
    14
 	$(RM) `find . -name '*.class' -print`
4289719ea5b7 * SUNWgnome-remote-desktop.spec:
halton
parents:
diff changeset
    15
 	$(JAVAC) -d . $^
4289719ea5b7 * SUNWgnome-remote-desktop.spec:
halton
parents:
diff changeset
    16
-	$(JAR) cmf manifest $@ `find . -name '*.class' -print`
4289719ea5b7 * SUNWgnome-remote-desktop.spec:
halton
parents:
diff changeset
    17
+	$(JAR) cmf manifest $@ `find . -name '*.class' -print` README
4289719ea5b7 * SUNWgnome-remote-desktop.spec:
halton
parents:
diff changeset
    18
 
4289719ea5b7 * SUNWgnome-remote-desktop.spec:
halton
parents:
diff changeset
    19
 clean::
4289719ea5b7 * SUNWgnome-remote-desktop.spec:
halton
parents:
diff changeset
    20
 	$(RM) `find . -name '*.class' -print`