summaryrefslogtreecommitdiff
path: root/lang/ocaml
diff options
context:
space:
mode:
authorjtb <jtb@pkgsrc.org>2003-07-10 12:28:55 +0000
committerjtb <jtb@pkgsrc.org>2003-07-10 12:28:55 +0000
commit148937e759b310d1d658610d1799b1b4571ecadb (patch)
treed1bd69731eecc0a822ae1522a17754d07a2ea002 /lang/ocaml
parent62fb9398c060bdbe94dbeb9426a3591829de1787 (diff)
downloadpkgsrc-148937e759b310d1d658610d1799b1b4571ecadb.tar.gz
Missed change of .mcount to __mcount in PROFILE_C.
Diffstat (limited to 'lang/ocaml')
-rw-r--r--lang/ocaml/distinfo4
-rw-r--r--lang/ocaml/patches/patch-al10
2 files changed, 9 insertions, 5 deletions
diff --git a/lang/ocaml/distinfo b/lang/ocaml/distinfo
index 78780dccb74..013243bd880 100644
--- a/lang/ocaml/distinfo
+++ b/lang/ocaml/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.10 2003/07/10 07:44:01 jtb Exp $
+$NetBSD: distinfo,v 1.11 2003/07/10 12:28:55 jtb Exp $
SHA1 (ocaml-3.06.tar.gz) = cf1b053bf751ad566e445ca13c620ffef3a1b863
Size (ocaml-3.06.tar.gz) = 2436887 bytes
@@ -13,4 +13,4 @@ SHA1 (patch-ah) = 792709f05174590853dad8267afd3c8f1a4e4981
SHA1 (patch-ai) = 5b3a27cbe5c7dcebc6899859b24ebe2bd0248862
SHA1 (patch-aj) = b4ae592a113f10102737df1d114120ec78aa5742
SHA1 (patch-ak) = cd5a93e7530f6864ee6f591f9f7ba5722428408c
-SHA1 (patch-al) = 97cad6e699ef1e973973c1ebc27b441a52fd1b78
+SHA1 (patch-al) = 9c3d37b4d849fb8de033bf927c8d3f7a3aaee4de
diff --git a/lang/ocaml/patches/patch-al b/lang/ocaml/patches/patch-al
index d47223f5639..55f4ec90911 100644
--- a/lang/ocaml/patches/patch-al
+++ b/lang/ocaml/patches/patch-al
@@ -1,8 +1,8 @@
-$NetBSD: patch-al,v 1.1 2003/07/10 07:44:02 jtb Exp $
+$NetBSD: patch-al,v 1.2 2003/07/10 12:28:55 jtb Exp $
--- asmrun/i386.S.orig
+++ asmrun/i386.S
-@@ -53,7 +53,7 @@
+@@ -53,10 +53,10 @@
#elif defined(SYS_bsd_elf)
#define PROFILE_CAML \
pushl %ebp; movl %esp, %ebp; pushl %eax; pushl %ecx; pushl %edx; \
@@ -10,4 +10,8 @@ $NetBSD: patch-al,v 1.1 2003/07/10 07:44:02 jtb Exp $
+ call __mcount; \
popl %edx; popl %ecx; popl %eax; popl %ebp
#define PROFILE_C \
- pushl %ebp; movl %esp, %ebp; call .mcount; popl %ebp
+- pushl %ebp; movl %esp, %ebp; call .mcount; popl %ebp
++ pushl %ebp; movl %esp, %ebp; call __mcount; popl %ebp
+ #endif
+ #else
+ #define PROFILE_CAML