From a3b5135851621cb514e7708d11f9dc82f851ea5c Mon Sep 17 00:00:00 2001
From: marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>
Date: Sun, 29 Nov 2009 20:05:12 +0000
Subject: Remove these ports now that they are in the ports tree.

git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@13266 df743ca5-7f9a-e211-a948-0013205c9059
---
 sysutils/consolekit/files/patch-src_main.c | 33 ------------------------------
 1 file changed, 33 deletions(-)
 delete mode 100644 sysutils/consolekit/files/patch-src_main.c

(limited to 'sysutils/consolekit/files/patch-src_main.c')

diff --git a/sysutils/consolekit/files/patch-src_main.c b/sysutils/consolekit/files/patch-src_main.c
deleted file mode 100644
index a791db0f9..000000000
--- a/sysutils/consolekit/files/patch-src_main.c
+++ /dev/null
@@ -1,33 +0,0 @@
---- src/main.c.orig        2007-11-08 15:05:55.000000000 -0500
-+++ src/main.c        2007-11-08 15:07:39.000000000 -0500
-@@ -226,6 +226,21 @@ sigusr1_handler (int sig)
- }
- 
- static void
-+setup_termination_signals (void)
-+{
-+        struct sigaction sa;
-+
-+        sa.sa_handler = SIG_DFL;
-+        sigemptyset (&sa.sa_mask);
-+        sa.sa_flags = 0;
-+
-+        sigaction (SIGTERM, &sa, NULL);
-+        sigaction (SIGQUIT, &sa, NULL);
-+        sigaction (SIGINT, &sa, NULL);
-+        sigaction (SIGHUP, &sa, NULL);
-+}
-+
-+static void
- setup_debug_log_signals (void)
- {
-         struct sigaction sa;
-@@ -300,6 +315,8 @@ main (int    argc,
- 
-         setup_debug_log (debug);
- 
-+        setup_termination_signals ();
-+
-         connection = get_system_bus ();
-         if (connection == NULL) {
-                 goto out;
-- 
cgit