diff options
author | Greg Lewis <glewis@FreeBSD.org> | 2003-06-17 16:29:53 +0000 |
---|---|---|
committer | Greg Lewis <glewis@FreeBSD.org> | 2003-06-17 16:29:53 +0000 |
commit | c2d516ed4b017a879acf3d3f3b90d574a018ad98 (patch) | |
tree | 22378e0fe1829381709c363f526b1aef20c08b5c /java/jmp | |
parent | 1c2c357c86ef96a29bd450c5c14e131309338a5d (diff) | |
download | ports-c2d516ed4b017a879acf3d3f3b90d574a018ad98.tar.gz ports-c2d516ed4b017a879acf3d3f3b90d574a018ad98.zip |
Notes
Diffstat (limited to 'java/jmp')
-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) |