search for: guestfs_module

Displaying 4 results from an estimated 4 matches for "guestfs_module".

2015 Feb 06
0
Re: Patchable build problems on OS X 10.10
...> @@ -40,9 +40,11 @@ end > PKG_NAME='@PACKAGE_NAME@' > PKG_VERSION='@PACKAGE_VERSION@' > > +DLEXT=RbConfig::CONFIG['DLEXT'] > + > EXT_CONF='@abs_builddir@/ext/guestfs/extconf.rb' > MAKEFILE='@builddir@/ext/guestfs/Makefile' > -GUESTFS_MODULE='@builddir@/ext/guestfs/_guestfs.so' > +GUESTFS_MODULE="@builddir@/ext/guestfs/_guestfs.#{DLEXT}" > GUESTFS_SRC='@srcdir@/ext/guestfs/_guestfs.c' > > CLEAN.include [ "@builddir@/ext/**/*.o", GUESTFS_MODULE, The DLEXT changes in the ruby directory...
2011 Nov 20
1
[PATCH] out-of-tree build: ruby
...e.in @@ -24,7 +24,7 @@ require 'rake/gempackagetask' PKG_NAME='@PACKAGE_NAME@' PKG_VERSION='@PACKAGE_VERSION@' -EXT_CONF='@srcdir@/ext/guestfs/extconf.rb' +EXT_CONF='@abs_srcdir@/ext/guestfs/extconf.rb' MAKEFILE='@builddir@/ext/guestfs/Makefile' GUESTFS_MODULE='@builddir@/ext/guestfs/_guestfs.so' GUESTFS_SRC='@srcdir@/ext/guestfs/_guestfs.c' @@ -38,13 +38,13 @@ CLOBBER.include [ "@builddir@/config.save", "@builddir@/ext/**/mkmf.log", # Build locally file MAKEFILE => EXT_CONF do |t| - unless sh "top_src...
2015 Feb 05
4
Patchable build problems on OS X 10.10
Hello, I'm attempting to create a Homebrew formula to get libguestfs to compile on Mac OS X. I've managed to achieve success with several monkey patches, but since Homebrew's policy is to contact maintainers about proper fixes in upstream, I would like to ask if there are any plans to fix these issues. I'm afraid I don't know C well enough to propose decent solutions myself.
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