Displaying 20 results from an estimated 3000 matches similar to: "[PATCH 1/2] Revert "perl: Fix build and test to work with separated builds.""
2013 Apr 27
2
[PATCH] Build and test Perl bindings out-of-tree.
Remaining issue: The C file that is generated from XS is still built
in the source directory
---
configure.ac | 1 +
perl/Makefile.PL.in | 2 +-
perl/Makefile.am | 16 ++++++++++++----
perl/run-perl-tests | 21 ---------------------
perl/run-perl-tests.in | 21 +++++++++++++++++++++
5 files changed, 35 insertions(+), 26 deletions(-)
delete mode 100755
2015 Oct 23
1
[PATCH v3] perl: Switch to using Module::Build.
version 3:
- Split requires into configure_requires/etc.
- Use lists for extra_compiler_flags, extra_linker_flags.
- Suppress .packlist file.
- Set the release_status field.
Rich.
2015 Oct 23
1
[PATCH] perl: Switch to using Module::Build.
Switch from 'ExtUtils::MakeMaker' to 'Module::Build'.
There's not really a huge difference here. The interfacing gymnastics
that we have to do to make Makefile.am and Module::Build talk to each
other is probably a little bit simpler.
I compared the output of 'make install' before and after, and there's
not much difference. 'perllocal.pod' is not
2015 Oct 23
1
[PATCH v2] perl: Switch to using Module::Build.
version 2:
- Fixed handling of clean & distclean.
- Use 'all-local' instead of 'all'.
- Don't use abs_* paths in Build.PL.in.
Rich.
2011 Nov 23
1
[PATCH] run script: Don't overwrite LD_LIBRARY_PATH and PERL5LIB
This change allows the run scripts of virt-v2v and libguestfs to be chained.
---
run.in | 16 +++++++++++++---
1 files changed, 13 insertions(+), 3 deletions(-)
diff --git a/run.in b/run.in
index 9388398..7cef715 100755
--- a/run.in
+++ b/run.in
@@ -37,9 +37,19 @@ b=@abs_builddir@
export TMPDIR="$b"
# Set local environment relative to this script.
-export
2011 Feb 11
1
[PATCH v2v] Add support for performing automated builds
* .gitignore: Ignore RPM specfile & coverage data
* Build.PL: Generate specfile during build
* autobuild.sh: Build control file
* virt-v2v.spec.PL: RPM specfile
* MANIFEST.SKIP: Ignore test coverage data
---
.gitignore | 3 +
Build.PL | 3 +-
MANIFEST | 3 +
MANIFEST.SKIP | 1 +
autobuild.sh | 65 ++++++++++++++++++++++
virt-v2v.spec.PL | 160
2019 Mar 11
2
CPAN not working, or is it?
On Monday 11 March 2019 14:28:38 Pete Biggs wrote:
> > However, as I went for bigger modules, anything that had dependences
> > were then failing as the dependencie were installed OK but then did not
> > appear to be available.
> A number of things you can do. The sort of recommended way is to
> package the perl modules into an RPM and install them that way (so that
>
2012 Jan 10
1
[PATCH] Prepend local library path to LD_LIBRARY_PATH for tests, instead of replacing it
Overwriting LD_LIBRARY_PATH broke some tests when running with fakeroot.
---
align/Makefile.am | 2 +-
cat/Makefile.am | 2 +-
clone/Makefile.am | 2 +-
df/Makefile.am | 2 +-
edit/Makefile.am | 2 +-
fish/Makefile.am | 2 +-
haskell/Makefile.am | 2 +-
ocaml/Makefile.am |
2019 Mar 11
5
CPAN not working, or is it?
(I've just tried this on a second C7 box, literally clean install, only did it
on Friday, with the same results)
I'm replacing a dead F19 box with a new C7 one and I'm trying to get my Perl
install completed. Ultimately, I need to get Selenium::Remote::Driver
working, but I'm struggling before that.
I started off as always by using RPM's for everything I possibly can. I
2012 Jan 20
8
Various fixes from building libguestfs for Debian
Here are some of the patches that I have maintained in the patch queue
of my packages that I maintain within the Debian distribution
(http://packages.qa.debian.org/libg/libguestfs.html). All of them
address FTBFS (fail to build from source) errors that happened with
the particular configuration that is used for building the Debian
package.
Cheers,
-Hilko
2015 Oct 21
1
[PATCH hivex] build: pass $(MAKE) to run-perl-tests
Instead of hardcoding "make" in run-perl-tests, pass the actual name of
make from the Makefile; the default is still "make", mostly to use the
script without having to set $MAKE.
---
perl/Makefile.am | 4 +++-
perl/run-perl-tests | 2 +-
2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/perl/Makefile.am b/perl/Makefile.am
index a0ae863..4632719 100644
---
2015 Feb 13
2
[PATCH] ./run: Use 'prepend' function to build paths.
Add a bash function 'prepend' for intelligently prepending elements to
paths. eg:
prepend PYTHONPATH "/foo"
would set PYTHONPATH to "/foo" or "/foo:<previous-contents-of-PYTHONPATH>"
Tested by:
(1) Building and testing libguestfs twice: first without libguestfs
installed as a system library, and then with it installed.
(2) Examining the output of
2009 Nov 20
5
Fix more build dependency problems
For convenience you can pull it from the 'build' branch in:
git://heisenbug.com/matthew/libguestfs.git
Matt
2013 May 28
0
[PATCH 2/2] perl: Use symlink hack from hivex
---
perl/Makefile.am | 1 +
1 file changed, 1 insertion(+)
diff --git a/perl/Makefile.am b/perl/Makefile.am
index 7b8f5d3..1eb0469 100644
--- a/perl/Makefile.am
+++ b/perl/Makefile.am
@@ -67,6 +67,7 @@ all: Makefile-pl src_deps
$(MAKE) -f Makefile-pl
Makefile-pl: Makefile.PL
+ -[ $(srcdir) != $(builddir) ] && cp -rsu $(abs_srcdir)/. $(builddir)/.
perl Makefile.PL
2014 Jan 16
1
[PATCH] hivex: ruby: Support 'make INSTALLDIRS=vendor install' for Ruby
(This is the same change as 87c9ec881cb695724e01d9f6fc9df996d4c67cb6
in libguestfs.)
---
ruby/Makefile.am | 16 ++++++++++------
1 file changed, 10 insertions(+), 6 deletions(-)
diff --git a/ruby/Makefile.am b/ruby/Makefile.am
index e78ab59..7a5fe42 100644
--- a/ruby/Makefile.am
+++ b/ruby/Makefile.am
@@ -45,13 +45,17 @@ all:
$(RAKE) build
$(RAKE) rdoc
-RUBY_SITELIB := $(shell $(RUBY)
2017 Aug 08
12
[Bug 102106] New: xorg crashes when running gscan2pdf (libgtk2-perl) test case
https://bugs.freedesktop.org/show_bug.cgi?id=102106
Bug ID: 102106
Summary: xorg crashes when running gscan2pdf (libgtk2-perl)
test case
Product: xorg
Version: unspecified
Hardware: x86-64 (AMD64)
OS: Linux (All)
Status: NEW
Severity: normal
Priority: medium
2008 Jan 14
1
Install RSPerl in Leopard
Hi,
I am having problems installing RSPerl 0.92-1 in my Mac OSX 10.5.1.
I?ve installed correctly R-2.6.1 with the .mpkg.
I run the next command: <R CMD INSTALL --configure-args=' --with-in-
perl ' RSPerl>
And the next error message appears:
RSPerl
* Installing to library '/Library/Frameworks/R.framework/Resources/
library'
* Installing *source* package
2007 Mar 22
0
Fwd: RSPerl buffer overflow
Hi,
I installed RSPerl (RSPerl_0.91-2.tar.gz) and after
loading the library I get a buffer overflow.
below is the output from R and below that the
messages during the installation.
Its on an AMD opteron system running Fedora Core5
R version 2.4.1 (2006-12-18).
Thank you very much for your help.
Ido
> sessionInfo()
R version 2.4.1 (2006-12-18)
x86_64-redhat-linux-gnu
locale:
2013 Mar 07
7
Fixes from the patch queue of the Debian package
Here are three patches that fix issues with out-of-tree building and
one that uses Ruby's own autoconf stuff for determining how Ruby
bindings should be built.
Cheers,
-Hilko
2020 Apr 23
3
[PATCH nbdkit] golang: Compile against the local nbdkit build, not installed.
When compiling when an older nbdkit is installed, the build would fail
because certain symbols such as .get_ready were not defined:
../../src/libguestfs.org/nbdkit/nbdkit.go:541:8: plugin.get_ready undefined (type _Ctype_struct_nbdkit_plugin has no field or method get_ready)
This happens because we were using the installed <nbdkit-plugin.h>
rather than the local copy.
We don't want