summaryrefslogtreecommitdiff
path: root/x11/ruby-gnome2/files/patch-extconf.rb
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2001-04-18 21:37:32 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2001-04-18 21:37:32 +0000
commit01a9f79f0a3692d8148990805beabc8593d3596d (patch)
tree99d1ef5788fc9e55b6948a7d4951ac4a315f63bf /x11/ruby-gnome2/files/patch-extconf.rb
parentNew index, rebuilt due to samba changes. (Gee, how many things (diff)
This commit was manufactured by cvs2svn to create tag 'RELEASE_4_3_0'.release/4.3.0
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