From 3771feef9b1734e0bbb88bbc94b896b34e68ead4 Mon Sep 17 00:00:00 2001 From: Lyle Johnson <lyle@lylejohnson.name> Date: Mon, 14 Sep 2009 17:10:31 -0500 Subject: [PATCH] Modified the config_options for the ExtensionTask to point to the full DOS path for FOX installation --- Rakefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index c6193aa..20b5b06 100755 --- a/Rakefile +++ b/Rakefile @@ -218,6 +218,10 @@ task :generate_kwargs_lib do end Rake::ExtensionTask.new("fox16") do |ext| +# ext.config_options << "--with-fox-include=/usr/local/include/fox-1.6" +# ext.config_options << "--with-fox-lib=/usr/local/lib" + ext.config_options << "--with-fox-include=c:/ruby-1.8.6-p383-preview2/devkit/msys/1.0.11/usr/local/include/fox-1.6" + ext.config_options << "--with-fox-lib=c:/ruby-1.8.6-p383-preview2/devkit/msys/1.0.11/usr/local/lib" end -task :build => [:configure, :compile] \ No newline at end of file +task :build => [:configure, :compile] -- GitLab