search for: create_makefile

Displaying 6 results from an estimated 6 matches for "create_makefile".

2005 Jul 26
10
Patch for wxRuby2
Ok so I made a lot of changes and the controls sample works pretty good now. What I changed or added: - Got all my modifications meshed into wxRuby2. - Added constructors to wxIcon.h - Changed Xrc.i to XmlResource.i and changed wxXrc to wxXmlResource within the file. I also had to change Xrc to XmlResource in rakewx.rb. - For backwards compatability with wxRuby 0.6 I added the subclass methods
2013 Feb 18
4
Some fixes for building the Debian package for 1.20.2
I needed to add a few patches to be able to build libguestfs 1.20.2 out of tree. Mostly srcdir/builddir issues -- I think that I had posted something for building the daemon before. As mentioned on IRC, I found that compiling (Ruby bindings) caused config.h file shipped with the Ruby headers to be included rather than ${builddir}/config.h. This can be fixed because the relevant checks can be
2017 Aug 10
3
[PATCH] ruby: fix order of CFLAGS
...;rb_alloc_func_t") $CFLAGS = - "#{$CFLAGS} @CFLAGS@ -DGUESTFS_PRIVATE=1 " << - "@WARN_CFLAGS@ @WERROR_CFLAGS@" + "#{$CFLAGS} " << + "@WARN_CFLAGS@ @WERROR_CFLAGS@ " << + "@CFLAGS@ -DGUESTFS_PRIVATE=1" create_header create_makefile(extension_name, "@abs_srcdir@") -- 2.13.4
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
2005 Feb 03
0
Fix for win32-shortcut
...lole32 -luuid'' else # -Tp tells cl to compile as c++ CONFIG["COMPILE_C"].sub!(/-Tc/,''-Tp'') $LIBS += '' ole32.lib '' end File.copy("lib/win32/shortcut.c",".") File.copy("lib/win32/shortcut.h",".") create_makefile("win32/shortcut") Unless there are any objections, I will commit the change this weekend. Dan
2006 Oct 21
0
[702] trunk/wxruby2: Additions to allow faster compiling via a Makefile on dual-processor
...+367,37 @@ </span><span class="cx"> create_link_task </span><span class="cx"> &nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbspcreate_install_task </span><span class="cx"> end </span><ins>+ +def create_makefile + if ($mswin) + out_arg = "/Fo" + else + out_arg = "-o " + end + + object_rules = "" + + all_obj_files_and_extra_obj = all_obj_files + $extra_objs.split('' '') + all_obj_files_and_extra_obj.each do |o| + obj_no_dir = o.sub(''o...