diff options
author | knu <knu@FreeBSD.org> | 2003-01-24 03:23:13 +0800 |
---|---|---|
committer | knu <knu@FreeBSD.org> | 2003-01-24 03:23:13 +0800 |
commit | 2a4d43317403dcd8359a7bd34f67cc5d818ffcba (patch) | |
tree | 10c00f63d839437b94942c7a3166d18abc3027ac /graphics | |
parent | 7bf3c1ec4c37d1ffe29402f5d6d442aabbccd024 (diff) | |
download | freebsd-ports-gnome-2a4d43317403dcd8359a7bd34f67cc5d818ffcba.tar.gz freebsd-ports-gnome-2a4d43317403dcd8359a7bd34f67cc5d818ffcba.tar.zst freebsd-ports-gnome-2a4d43317403dcd8359a7bd34f67cc5d818ffcba.zip |
Unbreak for ruby 1.8.
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/ruby-evas/files/patch-extconf.rb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/graphics/ruby-evas/files/patch-extconf.rb b/graphics/ruby-evas/files/patch-extconf.rb new file mode 100644 index 000000000000..ba186dd04070 --- /dev/null +++ b/graphics/ruby-evas/files/patch-extconf.rb @@ -0,0 +1,12 @@ +--- src/extconf.rb.orig Thu Jun 13 17:12:48 2002 ++++ src/extconf.rb Fri Jan 24 04:21:24 2003 +@@ -2,7 +2,7 @@ + # vim: ts=2 sw=2 + require 'mkmf' + +-$CFLAGS << "-Wall `evas-config --cflags`" +-$LDFLAGS << `evas-config --libs` ++$CFLAGS << " -Wall `evas-config --cflags`" ++$LDFLAGS << ' ' << `evas-config --libs`.chomp + + create_makefile("evas") |