summaryrefslogtreecommitdiffstats
path: root/extra/gamin/remove_deprecated_G_CONST_RETURN.patch
diff options
context:
space:
mode:
authortnut <tnut at nutyx dot com>2012-01-08 12:15:45 +0100
committertnut <tnut at nutyx dot com>2012-01-08 12:15:45 +0100
commit3f57a7f93b3e7550cbd73036f6a56654e17d1d5c (patch)
tree819b14ab0377fe2054fe59866669d904e9e0b4b5 /extra/gamin/remove_deprecated_G_CONST_RETURN.patch
parentc9972ec7f32bf9d37388e853fe9bf633e242d05a (diff)
downloadnutyx-extra-3f57a7f93b3e7550cbd73036f6a56654e17d1d5c.tar.gz
nutyx-extra-3f57a7f93b3e7550cbd73036f6a56654e17d1d5c.tar.bz2
nutyx-extra-3f57a7f93b3e7550cbd73036f6a56654e17d1d5c.tar.xz
nutyx-extra-3f57a7f93b3e7550cbd73036f6a56654e17d1d5c.zip
split de git pakxe et NuTyX-extra
Diffstat (limited to 'extra/gamin/remove_deprecated_G_CONST_RETURN.patch')
-rw-r--r--extra/gamin/remove_deprecated_G_CONST_RETURN.patch44
1 files changed, 0 insertions, 44 deletions
diff --git a/extra/gamin/remove_deprecated_G_CONST_RETURN.patch b/extra/gamin/remove_deprecated_G_CONST_RETURN.patch
deleted file mode 100644
index f8430a79b..000000000
--- a/extra/gamin/remove_deprecated_G_CONST_RETURN.patch
+++ /dev/null
@@ -1,44 +0,0 @@
---- ./server/gam_node.h.orig 2007-07-04 15:36:49.000000000 +0200
-+++ ./server/gam_node.h 2011-08-26 01:49:59.504423790 +0200
-@@ -58,7 +58,7 @@
- void gam_node_set_is_dir (GamNode *node,
- gboolean is_dir);
-
--G_CONST_RETURN char *gam_node_get_path (GamNode *node);
-+const char *gam_node_get_path (GamNode *node);
-
- GList *gam_node_get_subscriptions (GamNode *node);
-
---- ./server/gam_subscription.h.orig 2007-07-04 15:36:49.000000000 +0200
-+++ ./server/gam_subscription.h 2011-08-26 01:49:59.504423790 +0200
-@@ -21,7 +21,7 @@
-
- int gam_subscription_get_reqno (GamSubscription *sub);
-
--G_CONST_RETURN char *gam_subscription_get_path (GamSubscription *sub);
-+const char *gam_subscription_get_path (GamSubscription *sub);
-
- GamListener *gam_subscription_get_listener (GamSubscription *sub);
-
---- ./server/gam_node.c.orig 2007-07-04 15:36:49.000000000 +0200
-+++ ./server/gam_node.c 2011-08-26 01:49:59.504423790 +0200
-@@ -122,7 +122,7 @@
- * it has finished with the string. If it must keep it longer, it
- * should makes its own copy. The returned string must not be freed.
- */
--G_CONST_RETURN char *
-+const char *
- gam_node_get_path(GamNode * node)
- {
- g_assert(node);
---- ./server/gam_subscription.c.orig 2007-07-04 15:36:49.000000000 +0200
-+++ ./server/gam_subscription.c 2011-08-26 01:49:59.504423790 +0200
-@@ -141,7 +141,7 @@
- * @param sub the GamSubscription
- * @returns The path being monitored. It should not be freed.
- */
--G_CONST_RETURN char *
-+const char *
- gam_subscription_get_path(GamSubscription * sub)
- {
- if (sub == NULL)