diff options
author | ryoon <ryoon@pkgsrc.org> | 2012-03-15 08:58:26 +0000 |
---|---|---|
committer | ryoon <ryoon@pkgsrc.org> | 2012-03-15 08:58:26 +0000 |
commit | 42ff9c9ca0fe2169854cd87a6f30ed6170c5c3f0 (patch) | |
tree | 6de06953ccbd45ca4f5f665b618096d241a6c65b /devel/xulrunner10/patches/patch-af | |
parent | 7d6c989218646a8250a735e860050a05473da355 (diff) | |
download | pkgsrc-42ff9c9ca0fe2169854cd87a6f30ed6170c5c3f0.tar.gz |
Import xulrunner-10.0.3 as devel/xulrunner
* Successor of devel/xulrunner, xulrunner-10.0.2.
* This is ESR (Extended Support Release) version.
* Fix security bugs
Diffstat (limited to 'devel/xulrunner10/patches/patch-af')
-rw-r--r-- | devel/xulrunner10/patches/patch-af | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/devel/xulrunner10/patches/patch-af b/devel/xulrunner10/patches/patch-af new file mode 100644 index 00000000000..1d7b9990e26 --- /dev/null +++ b/devel/xulrunner10/patches/patch-af @@ -0,0 +1,32 @@ +$NetBSD: patch-af,v 1.1.1.1 2012/03/15 08:58:27 ryoon Exp $ + +--- config/mkdepend/imakemdep.h.orig 2012-03-09 22:20:09.000000000 +0000 ++++ config/mkdepend/imakemdep.h +@@ -235,7 +235,7 @@ in this Software without prior written a + #ifdef _CRAY + #define DEFAULT_CPP "/lib/pcpp" + #endif +-#if defined(__386BSD__) || defined(__NetBSD__) || defined(__FreeBSD__) || defined(__OpenBSD__) ++#if defined(__386BSD__) || defined(__NetBSD__) || defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__DragonFly__) + #define DEFAULT_CPP "/usr/libexec/cpp" + #endif + #ifdef MACH +@@ -273,7 +273,7 @@ char *cpp_argv[ARGUMENTS] = { + #ifdef unix + "-Uunix", /* remove unix symbol so that filename unix.c okay */ + #endif +-#if defined(__386BSD__) || defined(__NetBSD__) || defined(__FreeBSD__) || defined(__OpenBSD__) || defined(MACH) ++#if defined(__386BSD__) || defined(__NetBSD__) || defined(__FreeBSD__) || defined(__OpenBSD__) || defined(MACH) || defined(__DragonFly__) + # ifdef __i386__ + "-D__i386__", + # endif +@@ -713,6 +713,9 @@ struct symtab predefs[] = { + #ifdef __sgi + {"__sgi", "1"}, + #endif ++#ifdef __DragonFly__ ++ {"__DragonFly__", "1"}, ++#endif + #ifdef __FreeBSD__ + {"__FreeBSD__", "1"}, + #endif |