Displaying 3 results from an estimated 3 matches for "gtk_license_gpl_2_0".
2017 Mar 30
2
[PATCH 1/2] p2v: move the license text to gui.c
It is used only for the about dialog, and this way it will be easier
to disable.
---
p2v/Makefile.am | 1 -
p2v/about-license.c | 38 --------------------------------------
p2v/gui.c | 16 ++++++++++++++++
p2v/p2v.h | 3 ---
4 files changed, 16 insertions(+), 42 deletions(-)
delete mode 100644 p2v/about-license.c
diff --git a/p2v/Makefile.am b/p2v/Makefile.am
index
2017 Mar 30
0
[PATCH 2/2] p2v: use standard license type in about dialog
...data)
"copyright", "\u00A9 2009-2017 Red Hat Inc.",
"comments",
_("Virtualize a physical machine to run on KVM"),
+#if GTK_CHECK_VERSION(3,0,0) /* gtk >= 3 */
+ "license-type", GTK_LICENSE_GPL_2_0,
+#else
"license", gplv2plus,
+#endif
"website", "http://libguestfs.org/",
"authors", authors,
NULL);
--
2.9.3
2019 Sep 10
3
[PATCH 0/2] Remove virt-p2v from libguestfs
Now that virt-p2v has its own repository [1] and releases [2], it is
time to remove it from libguestfs.
[1] https://github.com/libguestfs/virt-p2v
[2] http://download.libguestfs.org/virt-p2v/
Pino Toscano (2):
Remove virt-p2v
Remove remaining virt-p2v bits
.gitignore | 4 -
Makefile.am | 7 +-
bash/Makefile.am