summaryrefslogtreecommitdiff
path: root/x11/ruby-gnome2/files/patch-extconf.rb
diff options
context:
space:
mode:
Diffstat (limited to 'x11/ruby-gnome2/files/patch-extconf.rb')
-rw-r--r--x11/ruby-gnome2/files/patch-extconf.rb18
1 files changed, 0 insertions, 18 deletions
diff --git a/x11/ruby-gnome2/files/patch-extconf.rb b/x11/ruby-gnome2/files/patch-extconf.rb
deleted file mode 100644
index 6881c14db627..000000000000
--- a/x11/ruby-gnome2/files/patch-extconf.rb
+++ /dev/null
@@ -1,18 +0,0 @@
---- 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