diff options
author | gusi <gusi@df743ca5-7f9a-e211-a948-0013205c9059> | 2014-04-03 18:27:31 +0800 |
---|---|---|
committer | gusi <gusi@df743ca5-7f9a-e211-a948-0013205c9059> | 2014-04-03 18:27:31 +0800 |
commit | cda4e93597649258e1036bdcec9ba99dc95f8807 (patch) | |
tree | 47a2ea69d3c8a131f1d18d03189ab0a40503d16b /x11-fm/nemo/files | |
parent | b5d49c379e5e3d30a630aa1ead06ebdd6c28a933 (diff) | |
download | marcuscom-ports-cda4e93597649258e1036bdcec9ba99dc95f8807.tar marcuscom-ports-cda4e93597649258e1036bdcec9ba99dc95f8807.tar.gz marcuscom-ports-cda4e93597649258e1036bdcec9ba99dc95f8807.tar.bz2 marcuscom-ports-cda4e93597649258e1036bdcec9ba99dc95f8807.tar.lz marcuscom-ports-cda4e93597649258e1036bdcec9ba99dc95f8807.tar.xz marcuscom-ports-cda4e93597649258e1036bdcec9ba99dc95f8807.tar.zst marcuscom-ports-cda4e93597649258e1036bdcec9ba99dc95f8807.zip |
Fix x11-fm/nemo to build with glib-2.40.0, since with 2.39 g_memmove got
deprecated.
While here, instead of disabling tracker make it optional. Use the new option style
in brief mode.
Finaly, do some cosmetic changes.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@19447 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'x11-fm/nemo/files')
-rw-r--r-- | x11-fm/nemo/files/patch-eel_eel-editable-label.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/x11-fm/nemo/files/patch-eel_eel-editable-label.c b/x11-fm/nemo/files/patch-eel_eel-editable-label.c new file mode 100644 index 000000000..4818520a4 --- /dev/null +++ b/x11-fm/nemo/files/patch-eel_eel-editable-label.c @@ -0,0 +1,14 @@ +--- eel/eel-editable-label.c.orig 2014-04-03 11:36:31.849369101 +0000 ++++ eel/eel-editable-label.c 2014-04-03 11:37:01.819371871 +0000 +@@ -36,6 +36,11 @@ + #include <gtk/gtk.h> + #include <gdk/gdkkeysyms.h> + ++/* g_memmove is removed in glib 2.40 */ ++#if GLIB_CHECK_VERSION (2, 39, 0) ++#define g_memmove memmove ++#endif ++ + enum { + MOVE_CURSOR, + POPULATE_POPUP, |