search for: 5c2efca

Displaying 4 results from an estimated 4 matches for "5c2efca".

2016 Aug 25
2
[PATCH] build: Add common CLEANFILES and DISTCLEANFILES to common-rules.mk.
...A_DIST = \ InspectVM.java \ guestfs-java.pod -CLEANFILES = \ - *.class \ - guestfs-java.3 \ - stamp-guestfs-java.pod +CLEANFILES += \ + *.class man_MANS = guestfs-java.3 noinst_DATA = $(top_builddir)/website/guestfs-java.3.html diff --git a/lua/Makefile.am b/lua/Makefile.am index 264f170..5c2efca 100644 --- a/lua/Makefile.am +++ b/lua/Makefile.am @@ -27,9 +27,7 @@ EXTRA_DIST = \ $(generator_built) \ run-bindtests -CLEANFILES = \ - *~ \ - bindtests.tmp \ +CLEANFILES += \ guestfs.so if HAVE_LUA diff --git a/lua/examples/Makefile.am b/lua/examples/Makefile.am index dad5793..239f92c...
2017 Jan 25
0
[PATCH v2 2/7] lib: Move utilities to new directory common/utils.
...@ -108,6 +108,7 @@ libguestfs_jni_la_SOURCES = \ libguestfs_jni_la_CPPFLAGS = \ -DGUESTFS_PRIVATE=1 \ + -I$(top_srcdir)/common/utils -I$(top_builddir)/common/utils \ -I$(top_srcdir)/src -I$(top_builddir)/src libguestfs_jni_la_CFLAGS = \ diff --git a/lua/Makefile.am b/lua/Makefile.am index 5c2efca..30ec4fb 100644 --- a/lua/Makefile.am +++ b/lua/Makefile.am @@ -41,6 +41,7 @@ libluaguestfs_la_SOURCES = lua-guestfs.c libluaguestfs_la_CPPFLAGS = \ -DGUESTFS_PRIVATE=1 \ + -I$(top_srcdir)/common/utils -I$(top_builddir)/common/utils \ -I$(top_srcdir)/src -I$(top_builddir)/src libluaguestf...
2017 Jan 20
5
[PATCH 0/5] Rename src/ to lib/ and move common code to common/
This patch series moves some files and directories around but is only code motion (or supposed to be). A new directory, common/, is created for all of the common code which is currently shared in random ways between parts of the project. And src/ becomes lib/ (the largest change, but mostly mechanical). In full this series makes the following changes: src/libprotocol -> common/protocol
2017 Jan 25
10
[PATCH v2 0/7] Rename src/ to lib/ and move common code to common/
Previous patch series was posted here: https://www.redhat.com/archives/libguestfs/2017-January/msg00059.html v2 simply extends this patch series to cover the extra directories common/edit, common/progress, common/windows and common/parallel. The only remaining item is to consider whether we should rename mllib to something else, mlcommon was my suggestion. Rich.