search for: b3d0ce7

Displaying 3 results from an estimated 3 matches for "b3d0ce7".

2019 Aug 30
0
[p2v PATCH 3/3] build: require List::MoreUtils
...generate-p2v-config.pl build script, so make sure to error out earlier when this Perl module is not found. Followup of commit 2ac0713900dc60d9f0fbb8e5234ee41254f03e84. --- m4/p2v-progs.m4 | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/m4/p2v-progs.m4 b/m4/p2v-progs.m4 index d54b391..b3d0ce7 100644 --- a/m4/p2v-progs.m4 +++ b/m4/p2v-progs.m4 @@ -58,6 +58,14 @@ else AC_MSG_RESULT([yes]) fi +dnl Check for List::MoreUtils, used by generate-p2v-config.pl +AC_MSG_CHECKING([for List::MoreUtils]) +if ! $PERL -MList::MoreUtils -e1 >&AS_MESSAGE_LOG_FD 2>&1; then + AC_MS...
2019 Aug 30
4
[p2v PATCH 0/3] Small build fixes
This series for virt-p2v removes the usage of GTK deprecated stuff, and checks for a required Perl module used during build. Tested on: - RHEL 6 (GTK 2) - RHEL 7 (GTK 3) - Fedora 30 (GTK 2 & 3) - Fedora Rawhide/32 (GTK 2 & 3) Pino Toscano (3): Copy GtkAttachOptions from GTK >= 3.4 build: disable deprecated GTK stuff build: require List::MoreUtils Makefile.am | 1 +
2019 Sep 18
1
[p2v PATCH v2] Use URL to point to GNU licenses
...am; if not, write to the Free Software -# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. +# along with this program. If not, see <https://www.gnu.org/licenses/>. dnl Any C libraries required by virt-p2v. diff --git a/m4/p2v-progs.m4 b/m4/p2v-progs.m4 index b3d0ce7..3ddb13c 100644 --- a/m4/p2v-progs.m4 +++ b/m4/p2v-progs.m4 @@ -12,8 +12,7 @@ # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 51 Franklin Stree...