diff options
author | marcus <marcus@FreeBSD.org> | 2007-01-16 13:11:57 +0800 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2007-01-16 13:11:57 +0800 |
commit | b2d3a1bbd3cd5c136e31dbb4fa482a94866b91c5 (patch) | |
tree | 3b18cf60e9438fe3eb9a8463572f6ded56359d62 | |
parent | 8ac543e2b377409a40f624e6e800644d2b99d77e (diff) | |
download | freebsd-ports-graphics-b2d3a1bbd3cd5c136e31dbb4fa482a94866b91c5.tar.gz freebsd-ports-graphics-b2d3a1bbd3cd5c136e31dbb4fa482a94866b91c5.tar.zst freebsd-ports-graphics-b2d3a1bbd3cd5c136e31dbb4fa482a94866b91c5.zip |
Remove a patch which is no longer required.
-rw-r--r-- | devel/glib20/files/patch-glib_gthreadprivate.h | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/devel/glib20/files/patch-glib_gthreadprivate.h b/devel/glib20/files/patch-glib_gthreadprivate.h deleted file mode 100644 index 0235c20266e..00000000000 --- a/devel/glib20/files/patch-glib_gthreadprivate.h +++ /dev/null @@ -1,53 +0,0 @@ ---- glib/gthreadprivate.h.orig Wed Jul 20 19:44:08 2005 -+++ glib/gthreadprivate.h Wed Jul 20 19:44:08 2005 -@@ -0,0 +1,50 @@ -+/* gthreadprivate.h -+ * -+ * Copyright 1998 Sebastian Wilhelmi; University of Karlsruhe -+ * Owen Taylor -+ * -+ * This library is free software; you can redistribute it and/or -+ * modify it under the terms of the GNU Lesser General Public -+ * License as published by the Free Software Foundation; either -+ * version 2 of the License, or (at your option) any later version. -+ * -+ * This library is distributed in the hope that it will be useful, -+ * but WITHOUT ANY WARRANTY; without even the implied warranty of -+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -+ * Lesser General Public License for more details. -+ * -+ * You should have received a copy of the GNU Lesser General Public -+ * License along with this library; if not, write to the -+ * Free Software Foundation, Inc., 59 Temple Place - Suite 330, -+ * Boston, MA 02111-1307, USA. -+ */ -+ -+#ifndef __G_THREAD_PRIVATE_H__ -+#define __G_THREAD_PRIVATE_H__ -+ -+#ifdef HAVE_CONFIG_H -+#include "config.h" -+#endif -+ -+G_BEGIN_DECLS -+ -+#if GLIB_SIZEOF_SYSTEM_THREAD == SIZEOF_VOID_P -+# define g_system_thread_equal_simple(thread1, thread2) \ -+ ((thread1).dummy_pointer == (thread2).dummy_pointer) -+# define g_system_thread_assign(dest, src) \ -+ ((dest).dummy_pointer = (src).dummy_pointer) -+#else /* GLIB_SIZEOF_SYSTEM_THREAD != SIZEOF_VOID_P */ -+# define g_system_thread_equal_simple(thread1, thread2) \ -+ (memcmp (&(thread1), &(thread2), GLIB_SIZEOF_SYSTEM_THREAD) == 0) -+# define g_system_thread_assign(dest, src) \ -+ (memcpy (&(dest), &(src), GLIB_SIZEOF_SYSTEM_THREAD)) -+#endif /* GLIB_SIZEOF_SYSTEM_THREAD == SIZEOF_VOID_P */ -+ -+#define g_system_thread_equal(thread1, thread2) \ -+ (g_thread_functions_for_glib_use.thread_equal ? \ -+ g_thread_functions_for_glib_use.thread_equal (&(thread1), &(thread2)) :\ -+ g_system_thread_equal_simple((thread1), (thread2))) -+ -+G_END_DECLS -+ -+#endif /* __G_THREAD_PRIVATE_H__ */ |