diff options
author | Akinori MUSHA <knu@FreeBSD.org> | 2001-03-26 18:05:55 +0000 |
---|---|---|
committer | Akinori MUSHA <knu@FreeBSD.org> | 2001-03-26 18:05:55 +0000 |
commit | 50a862a7b9c0a0eab6b04098db62d227b8faf5c2 (patch) | |
tree | bde3c74c855ea1850d6c5151999c2782fe90037d /devel/ruby-sdl/files/patch-extconf.rb | |
parent | install freetype-config. (diff) |
Oops. The libc_r weirdness of 4-STABLE and prior prevents this from
working. Mark as broken for systems < 500018.
Notes
Notes:
svn path=/head/; revision=40408
Diffstat (limited to '')
-rw-r--r-- | devel/ruby-sdl/files/patch-extconf.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/devel/ruby-sdl/files/patch-extconf.rb b/devel/ruby-sdl/files/patch-extconf.rb index d0afb4ce6108..e92ab83a6e3e 100644 --- a/devel/ruby-sdl/files/patch-extconf.rb +++ b/devel/ruby-sdl/files/patch-extconf.rb @@ -1,5 +1,5 @@ --- extconf.rb.orig Sun Mar 25 17:10:56 2001 -+++ extconf.rb Tue Mar 27 01:16:54 2001 ++++ extconf.rb Tue Mar 27 02:56:07 2001 @@ -1,7 +1,9 @@ require 'mkmf' @@ -7,8 +7,8 @@ -$LDFLAGS += `sdl-config --libs`.chomp +sdl_config = with_config('sdl-config', 'sdl-config') + -+$CFLAGS += `#{sdl_config} --cflags`.chomp -+$LDFLAGS += `#{sdl_config} --libs`.chomp ++$CFLAGS += ' ' + `#{sdl_config} --cflags`.chomp ++$LDFLAGS += ' ' + `#{sdl_config} --libs`.chomp if have_library("SDL_mixer","Mix_OpenAudio") then $CFLAGS+= " -D HAVE_SDL_MIXER " |