aboutsummaryrefslogtreecommitdiffstats
path: root/x11/ruby-gnome/files/patch-extconf.rb
diff options
context:
space:
mode:
Diffstat (limited to 'x11/ruby-gnome/files/patch-extconf.rb')
-rw-r--r--x11/ruby-gnome/files/patch-extconf.rb18
1 files changed, 18 insertions, 0 deletions
diff --git a/x11/ruby-gnome/files/patch-extconf.rb b/x11/ruby-gnome/files/patch-extconf.rb
new file mode 100644
index 000000000000..6881c14db627
--- /dev/null
+++ b/x11/ruby-gnome/files/patch-extconf.rb
@@ -0,0 +1,18 @@
+--- extconf.rb.orig Sat Sep 23 06:00:02 2000
++++ extconf.rb Wed Feb 28 20:59:59 2001
+@@ -21,11 +21,12 @@
+ config_library = "gnomeui"
+ version = `#{config_cmd} --version`
+ if not version.chomp.empty? then
+- $LDFLAGS, *libs =
++ ldflags, *libs =
+ `#{config_cmd} #{config_libs} #{config_library}`.chomp.split(/(-l.*)/)
++ $LDFLAGS += ldflags
+ $libs = libs.join(' ') + ' ' + $libs
+- $CFLAGS = `#{config_cmd} #{config_cflags} #{config_library}`.chomp
+- $CFLAGS = $CFLAGS + " -DHAVE_GDKIMLIB -I../../gtk/src -I../../gdkimlib"
++ $CFLAGS += `#{config_cmd} #{config_cflags} #{config_library}`.chomp
++ $CFLAGS += " -DHAVE_GDKIMLIB -I../../gtk/src -I../../gdkimlib"
+ else
+ raise "can't find a config command"
+ end