head 1.3; access; symbols pkgsrc-2013Q2:1.3.0.24 pkgsrc-2013Q2-base:1.3 pkgsrc-2012Q4:1.3.0.22 pkgsrc-2012Q4-base:1.3 pkgsrc-2011Q4:1.3.0.20 pkgsrc-2011Q4-base:1.3 pkgsrc-2011Q2:1.3.0.18 pkgsrc-2011Q2-base:1.3 pkgsrc-2009Q4:1.3.0.16 pkgsrc-2009Q4-base:1.3 pkgsrc-2008Q4:1.3.0.14 pkgsrc-2008Q4-base:1.3 pkgsrc-2008Q3:1.3.0.12 pkgsrc-2008Q3-base:1.3 cube-native-xorg:1.3.0.10 cube-native-xorg-base:1.3 pkgsrc-2008Q2:1.3.0.8 pkgsrc-2008Q2-base:1.3 pkgsrc-2008Q1:1.3.0.6 pkgsrc-2008Q1-base:1.3 pkgsrc-2007Q4:1.3.0.4 pkgsrc-2007Q4-base:1.3 pkgsrc-2007Q3:1.3.0.2 pkgsrc-2007Q3-base:1.3 pkgsrc-2007Q2:1.2.0.26 pkgsrc-2007Q2-base:1.2 pkgsrc-2007Q1:1.2.0.24 pkgsrc-2007Q1-base:1.2 pkgsrc-2006Q4:1.2.0.22 pkgsrc-2006Q4-base:1.2 pkgsrc-2006Q3:1.2.0.20 pkgsrc-2006Q3-base:1.2 pkgsrc-2006Q2:1.2.0.18 pkgsrc-2006Q2-base:1.2 pkgsrc-2006Q1:1.2.0.16 pkgsrc-2006Q1-base:1.2 pkgsrc-2005Q4:1.2.0.14 pkgsrc-2005Q4-base:1.2 pkgsrc-2005Q3:1.2.0.12 pkgsrc-2005Q3-base:1.2 pkgsrc-2005Q2:1.2.0.10 pkgsrc-2005Q2-base:1.2 pkgsrc-2005Q1:1.2.0.8 pkgsrc-2005Q1-base:1.2 pkgsrc-2004Q4:1.2.0.6 pkgsrc-2004Q4-base:1.2 pkgsrc-2004Q3:1.2.0.4 pkgsrc-2004Q3-base:1.2 pkgsrc-2004Q2:1.2.0.2 pkgsrc-2004Q2-base:1.2 pkgsrc-2004Q1:1.1.0.4 pkgsrc-2004Q1-base:1.1 pkgsrc-2003Q4:1.1.0.2 pkgsrc-2003Q4-base:1.1; locks; strict; comment @# @; 1.3 date 2007.09.14.15.34.10; author adam; state dead; branches; next 1.2; 1.2 date 2004.04.22.09.18.36; author tron; state Exp; branches; next 1.1; 1.1 date 2003.06.29.23.04.19; author jtb; state Exp; branches; next ; desc @@ 1.3 log @Changes 3.10.0: - New language features - New tools - Faster type-checking of functor applications. - Referencing an interface compiled with -rectypes from a module not compiled with -rectypes is now an error. - Revised the "fragile matching" warning. - Print a stack backtrace on an uncaught exception. - Stack overflow detection on MS Windows 32 bits. - Stack overflow detection on MacOS X PPC and Intel. - Intel/AMD 64 bits: generate position-independent code by default. - Fixed bug involving -for-pack and missing .cmx files. - Fixed bug causing duplication of literals. - C/Caml interface functions take "char const *" arguments instead of "char *" when appropriate. - Faster string comparisons (fast case if strings are ==). - Other @ text @$NetBSD: patch-ai,v 1.2 2004/04/22 09:18:36 tron Exp $ --- asmrun/i386.S.orig Fri Jun 7 11:49:36 2002 +++ asmrun/i386.S Thu Apr 22 10:34:38 2004 @@@@ -53,10 +53,10 @@@@ #elif defined(SYS_bsd_elf) #define PROFILE_CAML \ pushl %ebp; movl %esp, %ebp; pushl %eax; pushl %ecx; pushl %edx; \ - call .mcount; \ + 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 #endif #else #define PROFILE_CAML @ 1.2 log @Fix various issues with this package: - split patches files - always enable threading which has various advantages - it fixes the build of the Tk library - it greatly simplifies the package list handling - it provides threading support under NetBSD 1.6/1.6.x - correct default dependence in "buildlink2.mk" to "build" Bump package revision because of all these changes. @ text @d1 1 a1 1 $NetBSD$ @ 1.1 log @* Use ".L" instead of "L" as label prefix on sparc * For consistency use SYS_bsd for system type on powerpc. We differ from SYS_elf (presumably Linux) on a few points here anyway. * Fix signal handling on powerpc which caused a seg fault when compiling native code version of coq. * Install ocamllex.opt, camlp4o.opt and camlp4r.opt too. @ text @d3 15 a17 20 --- asmcomp/power/proc.ml.orig +++ asmcomp/power/proc.ml @@@@ -190,7 +190,7 @@@@ let loc_external_arguments = match Config.system with "aix" | "rhapsody" -> poweropen_external_conventions 0 7 100 112 - | "elf" -> calling_conventions 0 7 100 107 outgoing 8 + | "elf" | "bsd" -> calling_conventions 0 7 100 107 outgoing 8 | _ -> assert false let extcall_use_push = false @@@@ -244,7 +244,7 @@@@ Ccomp.command ("as -u -m " ^ proc ^ " -o " ^ outfile ^ " " ^ infile) | "elf" -> Ccomp.command ("as -u -m ppc -o " ^ outfile ^ " " ^ infile) - | "rhapsody" -> + | "rhapsody" | "bsd" -> Ccomp.command ("as -o " ^ outfile ^ " " ^ infile) | _ -> assert false @