diff options
author | glewis <glewis@FreeBSD.org> | 2003-06-18 00:29:53 +0800 |
---|---|---|
committer | glewis <glewis@FreeBSD.org> | 2003-06-18 00:29:53 +0800 |
commit | cf30c3aadbae077afad490eb0d231600061f397d (patch) | |
tree | 40c3879ca47acf7ad03d7f295afad62742ee7def | |
parent | 9b36eaac5bd1d0780d304d76856069a7fca98cdc (diff) | |
download | freebsd-ports-gnome-cf30c3aadbae077afad490eb0d231600061f397d.tar.gz freebsd-ports-gnome-cf30c3aadbae077afad490eb0d231600061f397d.tar.zst freebsd-ports-gnome-cf30c3aadbae077afad490eb0d231600061f397d.zip |
. Update to 0.30
PR: 52628
Submitted by: Ronald Klop <ronald@cs.vu.nl> (maintainer)
-rw-r--r-- | java/jmp/Makefile | 2 | ||||
-rw-r--r-- | java/jmp/distinfo | 2 | ||||
-rw-r--r-- | java/jmp/files/patch-configure | 12 | ||||
-rw-r--r-- | java/jmp/files/patch-jmp.c | 45 |
4 files changed, 2 insertions, 59 deletions
diff --git a/java/jmp/Makefile b/java/jmp/Makefile index 6610824d04f4..88df330bc76a 100644 --- a/java/jmp/Makefile +++ b/java/jmp/Makefile @@ -6,7 +6,7 @@ # PORTNAME= jmp -PORTVERSION= 0.29 +PORTVERSION= 0.30 CATEGORIES= java devel MASTER_SITES= http://www.khelekore.org/jmp/ diff --git a/java/jmp/distinfo b/java/jmp/distinfo index 85cfd4775e54..a7bd48cc6ed5 100644 --- a/java/jmp/distinfo +++ b/java/jmp/distinfo @@ -1 +1 @@ -MD5 (jmp-0.29.tar.gz) = ba923307a088b81f08d94faaf8ca8ade +MD5 (jmp-0.30.tar.gz) = 25cb5003953ffcac5e166471660463e2 diff --git a/java/jmp/files/patch-configure b/java/jmp/files/patch-configure deleted file mode 100644 index 1e1a32c90f62..000000000000 --- a/java/jmp/files/patch-configure +++ /dev/null @@ -1,12 +0,0 @@ -$FreeBSD$ - ---- configure.orig Fri Feb 28 08:28:00 2003 -+++ configure Fri Feb 28 08:28:31 2003 -@@ -11241,6 +11241,7 @@ - - - case $target_os in -+ freebsd*) java_os=freebsd;; - linux*) java_os=linux;; - solaris*) java_os=solaris;; - cygwin*) java_os=win32;; diff --git a/java/jmp/files/patch-jmp.c b/java/jmp/files/patch-jmp.c deleted file mode 100644 index 888f0a5dfd48..000000000000 --- a/java/jmp/files/patch-jmp.c +++ /dev/null @@ -1,45 +0,0 @@ -$FreeBSD$ - ---- jmp.c Tue May 13 23:17:03 2003 -+++ jmp.c Tue May 13 23:17:47 2003 -@@ -1548,10 +1548,11 @@ - free (cf); - } - --void enable_method_events () { -+void enable_method_events_and_stacks (int get_stacks) { - /* Ok, the thread stacks are bogous, clear them all and try to get - * real stacks, timing will be a bit bogous, but not to much... - */ -+ if (get_stacks) { - jmphash_lock (threads); - jmphash_lock (methods); - jvmpi->DisableGC (); -@@ -1559,6 +1560,7 @@ - jvmpi->EnableGC (); - jmphash_unlock (methods); - jmphash_unlock (threads); -+ } - - method_profiling = 1; - /* -@@ -1572,6 +1574,10 @@ - jvmpi->EnableEvent (JVMPI_EVENT_METHOD_EXIT, NULL); - } - -+void enable_method_events () { -+ enable_method_events_and_stacks (1); -+} -+ - static void enable_dump_events () { - dump_enabled = 1; - jvmpi->EnableEvent (JVMPI_EVENT_DATA_DUMP_REQUEST, NULL); -@@ -1603,7 +1609,7 @@ - enable_object_events (); - enable_thread_events (); - if (method_profiling) -- enable_method_events (); -+ enable_method_events_and_stacks (0); - if (dump_enabled) - enable_dump_events (); - if (monitor_profiling) |