diff options
Diffstat (limited to 'debian/patches/tn-0002-include-add-X_IMPORTS-to-ipc-definitions.patch')
-rw-r--r-- | debian/patches/tn-0002-include-add-X_IMPORTS-to-ipc-definitions.patch | 64 |
1 files changed, 0 insertions, 64 deletions
diff --git a/debian/patches/tn-0002-include-add-X_IMPORTS-to-ipc-definitions.patch b/debian/patches/tn-0002-include-add-X_IMPORTS-to-ipc-definitions.patch deleted file mode 100644 index e79ac54..0000000 --- a/debian/patches/tn-0002-include-add-X_IMPORTS-to-ipc-definitions.patch +++ /dev/null @@ -1,64 +0,0 @@ -From 1f60234ceb8c3fa90333658528f24ae887ece6f8 Mon Sep 17 00:00:00 2001 -From: Justus Winter <4winter@informatik.uni-hamburg.de> -Date: Thu, 6 Nov 2014 16:57:35 +0100 -Subject: [PATCH gnumach 2/2] include: add X_IMPORTS to ipc definitions - -This makes it possible to inject imports. - -* include/mach/gnumach.defs: Make it possible to inject imports. -* include/mach/mach.defs: Likewise. -* include/mach/mach_host.defs: Likewise. ---- - include/mach/gnumach.defs | 4 ++++ - include/mach/mach.defs | 4 ++++ - include/mach/mach_host.defs | 4 ++++ - 3 files changed, 12 insertions(+) - -diff --git a/include/mach/gnumach.defs b/include/mach/gnumach.defs -index bac3b09..dd4da87 100644 ---- a/include/mach/gnumach.defs -+++ b/include/mach/gnumach.defs -@@ -29,6 +29,10 @@ subsystem - #include <mach/mach_types.defs> - #include <mach_debug/mach_debug_types.defs> - -+#ifdef GNUMACH_IMPORTS -+GNUMACH_IMPORTS -+#endif -+ - type vm_cache_statistics_data_t = struct[11] of integer_t; - - /* -diff --git a/include/mach/mach.defs b/include/mach/mach.defs -index 5851080..3786f65 100644 ---- a/include/mach/mach.defs -+++ b/include/mach/mach.defs -@@ -46,6 +46,10 @@ userprefix r_; - #include <mach/std_types.defs> - #include <mach/mach_types.defs> - -+#ifdef MACH_IMPORTS -+MACH_IMPORTS -+#endif -+ - skip; /* old port_allocate */ - skip; /* old port_deallocate */ - skip; /* old port_enable */ -diff --git a/include/mach/mach_host.defs b/include/mach/mach_host.defs -index 2644146..6699a50 100644 ---- a/include/mach/mach_host.defs -+++ b/include/mach/mach_host.defs -@@ -47,6 +47,10 @@ subsystem - #include <mach/std_types.defs> - #include <mach/mach_types.defs> - -+#ifdef MACH_HOST_IMPORTS -+MACH_HOST_IMPORTS -+#endif -+ - /* - * Get list of processors on this host. - */ --- -2.1.1 - |