summaryrefslogtreecommitdiffstats
path: root/abs/core-testing/glib2/gkeyfile-bool-nocase.patch
diff options
context:
space:
mode:
authorJames Meyer <james.meyer@operamail.com>2010-10-23 18:17:40 (GMT)
committerJames Meyer <james.meyer@operamail.com>2010-10-23 18:19:39 (GMT)
commitadbcf19958300e9b6598990184c8815b945ba0ee (patch)
treef4283c850ac0ac202c17e78a637ee7ca8147621b /abs/core-testing/glib2/gkeyfile-bool-nocase.patch
parent61a68250df10d29b624650948484898334ff22d0 (diff)
downloadlinhes_pkgbuild-adbcf19958300e9b6598990184c8815b945ba0ee.zip
linhes_pkgbuild-adbcf19958300e9b6598990184c8815b945ba0ee.tar.gz
linhes_pkgbuild-adbcf19958300e9b6598990184c8815b945ba0ee.tar.bz2
Removed old core and extra from repo. Renamed -testing to core/extra. This will setup the base for the testing branch.
Diffstat (limited to 'abs/core-testing/glib2/gkeyfile-bool-nocase.patch')
-rw-r--r--abs/core-testing/glib2/gkeyfile-bool-nocase.patch16
1 files changed, 0 insertions, 16 deletions
diff --git a/abs/core-testing/glib2/gkeyfile-bool-nocase.patch b/abs/core-testing/glib2/gkeyfile-bool-nocase.patch
deleted file mode 100644
index 133f135..0000000
--- a/abs/core-testing/glib2/gkeyfile-bool-nocase.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-Index: glib/gkeyfile.c
-===================================================================
---- glib/gkeyfile.c (revision 5714)
-+++ glib/gkeyfile.c (working copy)
-@@ -3639,9 +3639,9 @@
- {
- gchar *value_utf8;
-
-- if (strcmp (value, "true") == 0 || strcmp (value, "1") == 0)
-+ if (g_ascii_strcasecmp (value, "true") == 0 || strcmp (value, "1") == 0)
- return TRUE;
-- else if (strcmp (value, "false") == 0 || strcmp (value, "0") == 0)
-+ else if (g_ascii_strcasecmp (value, "false") == 0 || strcmp (value, "0") == 0)
- return FALSE;
-
- value_utf8 = _g_utf8_make_valid (value);