Displaying 7 results from an estimated 7 matches for "ruby_libs".
2012 Feb 10
3
Installing from source missing -lruby18 in linking.
...ir"],
rake/rakeconfigure.rb: Config::CONFIG[''arch'']) ]
rake/rakeconfigure.rb: $ruby_includes = " -I. -I " + Config::CONFIG["archdir"]
rake/rakeconfigure.rb:$ruby_ldflags = Config::CONFIG["LDFLAGS"]
rake/rakeconfigure.rb:$ruby_libs = Config::CONFIG["LIBS"]
rake/rakeconfigure.rb:OBJ_EXT = Config::CONFIG["OBJEXT"]
rake/rakewx.rb:$ruby_exe = Config::CONFIG["ruby_install_name"]
rake/rakewx.rb: dest_dir = Config::CONFIG[''sitelibdir'']
rake/rakewx.rb: cp TARGET_LIB, Config::CONFIG[&...
2008 Jan 10
1
Where to store custom providers?
Hi,
While i''ve read the wiki page on development of custom providers (
http://www.reductivelabs.com/trac/puppet/wiki/ProviderDevelopment), i cannot
find information on where the custom provider''s source file should be
located. My little provider works fine if i copy it to
/usr/lib/ruby/site_ruby/1.8/puppet/provider/package
but i''d prefer to keep that in tact from the
2020 Aug 18
0
[PATCH nbdkit 2/9] build: On Windows only, link all plugins and filters with -lnbdkit.
...a/plugins/ruby/Makefile.am b/plugins/ruby/Makefile.am
index c435ff0e..b0ae24c8 100644
--- a/plugins/ruby/Makefile.am
+++ b/plugins/ruby/Makefile.am
@@ -53,6 +53,7 @@ nbdkit_ruby_plugin_la_CFLAGS = \
$(RUBY_CFLAGS) \
$(NULL)
nbdkit_ruby_plugin_la_LIBADD = \
+ $(LINK_LIBNBDKIT_ON_WINDOWS) \
$(RUBY_LIBS) \
$(NULL)
nbdkit_ruby_plugin_la_LDFLAGS = \
diff --git a/plugins/sh/Makefile.am b/plugins/sh/Makefile.am
index 77a3abde..4274b6e8 100644
--- a/plugins/sh/Makefile.am
+++ b/plugins/sh/Makefile.am
@@ -56,6 +56,7 @@ nbdkit_sh_plugin_la_CPPFLAGS = \
nbdkit_sh_plugin_la_CFLAGS = $(WARNINGS_CFLAGS)...
2005 Feb 04
7
FW: Bug fix
Forwarded, because I don''t think he''s subscribed and I''m not getting an
email notification in my Yahoo account.
Dan
-----Original Message-----
From: CT [mailto:demerzel@gmail.com]
Sent: Friday, February 04, 2005 4:17 PM
To: Berger, Daniel
Cc: win32utils-devel@rubyforge.org
Subject: Re: Bug fix
On Fri, 4 Feb 2005 16:53:17 -0600, Berger, Daniel
2020 Mar 26
15
[PATCH nbdkit 0/9] Create libnbdkit.so
This creates libnbdkit.so as discussed in the following thread:
https://www.redhat.com/archives/libguestfs/2020-March/thread.html#00203
test-delay-shutdown.sh fails for unclear reasons.
This series starts by reverting "tests: Don't strand hung nbdkit
processes" which is because several other tests fail randomly unless I
revert this patch. I didn't investigate this yet so it
2020 Aug 18
15
[PATCH nbdkit 0/9] Port to Windows.
Also available here:
https://github.com/rwmjones/nbdkit/tree/2020-windows-mingw
This is the port to Windows using native Windows APIs (not MSYS or
Cygwin).
This patch series is at the point where it basically now works. I can
run the server with the memory plugin, and access it remotely using
guestfish, creating filesystems and so on without any apparent
problems.
Nevertheless there are many
2020 Aug 20
15
[PATCH nbdkit 0/13] Port to Windows without using a separate library.
Also available here:
https://github.com/rwmjones/nbdkit/tree/2020-windows-mingw-nolib
After a lot of work I have made the port to Windows work without using
a separate library. Instead, on Windows only, we build an "import
library" (library of stubs) which resolves references to nbdkit_*
functions in the main program and fixes up the plugin, basically the
first technique outlined in