summaryrefslogtreecommitdiff
path: root/devel/glib2/patches
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2002-12-24 03:36:58 +0000
committerwiz <wiz@pkgsrc.org>2002-12-24 03:36:58 +0000
commit6d534a4f2029feb62f29094b952dd1bfd629ac5b (patch)
treefc27f3748fe9899c8ee5652fa24538ed9248ed4b /devel/glib2/patches
parent0d65cd4431e98177e63c50016ae3651d319c5600 (diff)
downloadpkgsrc-6d534a4f2029feb62f29094b952dd1bfd629ac5b.tar.gz
Update to 2.2.0. Deprecate PTL2 support for this package.
Major changes: * Improve generation of pseudo-random integers [Morten Welinder, Sebastian Wilhelmi] * Avoid literal UTF-8 in favor of octal escapes [Owen, Tomas Ogren] * Add copy of the Trio library to build and use for printf() when system printf isn't good enough. Add g_printf()/etc. [Matthias Clasen] * Add g_str_has_suffix()/g_str_has_prefix() [Alex Larsson] * Add g_markup_parse_context_get_element() [Matthias] * Add g_utf8_strreverse [Matthias] * Add g_ascii_strtoull() [Tim Janik] * Support scanning of 64-bit values with GScanner [Tim] * Add g_set/get_application_name() [Havoc Pennington] * Add G_LIKELY()/G_UNLIKELY() macros for hinting branch probabilities. Use for g_return_if_fail(). [Matthias Clasen] * Add G_GNUC_DEPRECATED macro [Tom Tromey] * Improve the seeding algorithm of GRandom to avoid problems with certain pathological seeds. Support G_RANDOM_VERSION=2.0 environment variable. [Sebastian Wilhelmi] * Improve thread configure checks, use -pthread where applicable [Sebastian] * Improve handlng of thread priorities [Sebastian] ...as well as many bug fixes and translation updates.
Diffstat (limited to 'devel/glib2/patches')
-rw-r--r--devel/glib2/patches/patch-ae22
1 files changed, 0 insertions, 22 deletions
diff --git a/devel/glib2/patches/patch-ae b/devel/glib2/patches/patch-ae
deleted file mode 100644
index 8f335cb7ab5..00000000000
--- a/devel/glib2/patches/patch-ae
+++ /dev/null
@@ -1,22 +0,0 @@
-$NetBSD: patch-ae,v 1.1.1.1 2002/03/24 20:27:13 dmcmahill Exp $
-
---- configure.orig Fri Mar 8 10:54:21 2002
-+++ configure
-@@ -6123,7 +6123,7 @@
-
- # AM_GLIB_GNU_GETTEXT above substs $DATADIRNAME
- # this is the directory where the *.{mo,gmo} files are installed
--GLIB_LOCALE_DIR="${prefix}/${DATADIRNAME}/locale"
-+GLIB_LOCALE_DIR="${prefix}/${PKGLOCALEDIR}/locale"
- cat >>confdefs.h <<_ACEOF
- #define GLIB_LOCALE_DIR "$GLIB_LOCALE_DIR"
- _ACEOF
-@@ -16852,7 +16852,7 @@
- G_THREAD_LIBS="-pthread"
- ;;
- *)
-- for thread_lib in "" pthread pthread32 pthreads thread dce; do
-+ for thread_lib in "" PTL pthread pthread32 pthreads thread dce; do
- if test x"$thread_lib" = x; then
- add_thread_lib=""
- IN=""