mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-03 17:59:07 -04:00
45 lines
1.2 KiB
Plaintext
45 lines
1.2 KiB
Plaintext
$NetBSD: patch-mb,v 1.1 2015/07/13 17:49:26 ryoon Exp $
|
|
|
|
--- mozilla/xpcom/reflect/xptcall/src/md/unix/Makefile.in.orig 2014-07-18 00:05:57.000000000 +0000
|
|
+++ mozilla/xpcom/reflect/xptcall/src/md/unix/Makefile.in
|
|
@@ -56,6 +56,39 @@ endif
|
|
# SPARC
|
|
######################################################################
|
|
#
|
|
+# Linux/SPARC
|
|
+#
|
|
+ifeq ($(OS_ARCH),Linux)
|
|
+ifneq (,$(findstring sparc,$(OS_TEST)))
|
|
+ASFILES := xptcinvoke_asm_sparc_linux_GCC3.s xptcstubs_asm_sparc_solaris.s
|
|
+endif
|
|
+endif
|
|
+#
|
|
+# NetBSD/SPARC
|
|
+#
|
|
+ifeq ($(OS_ARCH)$(OS_TEST),NetBSDsparc)
|
|
+ASFILES := xptcinvoke_asm_sparc_netbsd.s xptcstubs_asm_sparc_netbsd.s
|
|
+endif
|
|
+#
|
|
+# OpenBSD/SPARC
|
|
+#
|
|
+ifeq ($(OS_ARCH)$(OS_TEST),OpenBSDsparc)
|
|
+ASFILES := xptcinvoke_asm_sparc_openbsd.s xptcstubs_asm_sparc_openbsd.s
|
|
+endif
|
|
+#
|
|
+# OpenBSD/SPARC64
|
|
+#
|
|
+ifneq (,$(filter OpenBSDsparc64 FreeBSDsparc64,$(OS_ARCH)$(OS_TEST)))
|
|
+ASFILES := xptcinvoke_asm_sparc64_openbsd.s xptcstubs_asm_sparc64_openbsd.s
|
|
+endif
|
|
+#
|
|
+# NetBSD/SPARC64
|
|
+#
|
|
+ifeq ($(OS_ARCH)$(OS_TEST),NetBSDsparc64)
|
|
+CPPSRCS := xptcinvoke_sparc64_netbsd.cpp xptcstubs_sparc64_openbsd.cpp
|
|
+ASFILES := xptcinvoke_asm_sparc64_openbsd.s xptcstubs_asm_sparc64_netbsd.s
|
|
+endif
|
|
+#
|
|
# Solaris/SPARC
|
|
#
|
|
ifeq ($(OS_ARCH),SunOS)
|