diff options
author | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2009-04-11 03:24:39 +0800 |
---|---|---|
committer | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2009-04-11 03:24:39 +0800 |
commit | 58794b38b1a24b93c9a8c3321694e3883bae4cd0 (patch) | |
tree | 3d921b9d8836f0a4c0ba361d4581a70d202545ad /devel/bug-buddy/files/patch-gnome-breakpad_gnome-breakpad.cc | |
parent | f33c5fb61cfe4c8856817db7f2c84041a862250b (diff) | |
download | marcuscom-ports-58794b38b1a24b93c9a8c3321694e3883bae4cd0.tar marcuscom-ports-58794b38b1a24b93c9a8c3321694e3883bae4cd0.tar.gz marcuscom-ports-58794b38b1a24b93c9a8c3321694e3883bae4cd0.tar.bz2 marcuscom-ports-58794b38b1a24b93c9a8c3321694e3883bae4cd0.tar.lz marcuscom-ports-58794b38b1a24b93c9a8c3321694e3883bae4cd0.tar.xz marcuscom-ports-58794b38b1a24b93c9a8c3321694e3883bae4cd0.tar.zst marcuscom-ports-58794b38b1a24b93c9a8c3321694e3883bae4cd0.zip |
Remove these ports now that they have been merged into FreeBSD ports.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@12240 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'devel/bug-buddy/files/patch-gnome-breakpad_gnome-breakpad.cc')
-rw-r--r-- | devel/bug-buddy/files/patch-gnome-breakpad_gnome-breakpad.cc | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/devel/bug-buddy/files/patch-gnome-breakpad_gnome-breakpad.cc b/devel/bug-buddy/files/patch-gnome-breakpad_gnome-breakpad.cc deleted file mode 100644 index 7007a9101..000000000 --- a/devel/bug-buddy/files/patch-gnome-breakpad_gnome-breakpad.cc +++ /dev/null @@ -1,55 +0,0 @@ ---- gnome-breakpad/gnome-breakpad.cc.orig 2009-02-16 15:24:48.000000000 +0100 -+++ gnome-breakpad/gnome-breakpad.cc 2009-02-22 16:25:50.000000000 +0100 -@@ -25,8 +25,14 @@ - #include <cassert> - #include <cstring> - -+#ifdef __FreeBSD__ -+#include <sys/param.h> -+#endif -+ -+#if !defined(__FreeBSD__) || __FreeBSD_version > 700024 - #include <libelf.h> - #include <gelf.h> -+#endif - - #include <sys/types.h> - #include <sys/stat.h> -@@ -264,6 +270,7 @@ find_in_debug_path (const char *filename - } - - -+#if !defined(__FreeBSD__) || __FreeBSD_version > 700024 - static gboolean - elf_has_debug_symbols (const char *filename) - { -@@ -316,7 +323,7 @@ elf_has_debug_symbols (const char *filen - elf_end (elf); - return false; - } -- -+#endif - - - -@@ -429,11 +436,18 @@ check_if_gdb () - _exit (1); - _exit(0); - } -- -+ -+#if !defined(__FreeBSD__) - mypath = g_file_read_link ("/proc/self/exe", NULL); -+#else -+ mypath = g_file_read_link ("/proc/curproc/file", NULL); -+#endif - if (mypath) -+#if !defined(__FreeBSD__) || __FreeBSD_version > 700024 - has_debug_symbols = elf_has_debug_symbols (mypath); -- -+#else -+ has_debug_symbols = TRUE; -+#endif - g_free (mypath); - - if (bugbuddy && gdb && has_debug_symbols) { |