diff options
| author | Jack Nagel | 2013-12-10 19:51:49 -0600 |
|---|---|---|
| committer | Jack Nagel | 2013-12-10 19:51:50 -0600 |
| commit | 0e6acdec0fe65e25a6bd56300e243ca7a87734b2 (patch) | |
| tree | e92925ba7fdf6feb1fdaf73eef27b3f4453a309d /Library | |
| parent | a3092a635d364273531e50efed8652facd601ac1 (diff) | |
| download | homebrew-0e6acdec0fe65e25a6bd56300e243ca7a87734b2.tar.bz2 | |
sdl: fix build against recent X11
Fixes #25129.
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/sdl.rb | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/Library/Formula/sdl.rb b/Library/Formula/sdl.rb index 0d240779b..5f0b500e4 100644 --- a/Library/Formula/sdl.rb +++ b/Library/Formula/sdl.rb @@ -5,13 +5,11 @@ class Sdl < Formula url 'http://www.libsdl.org/release/SDL-1.2.15.tar.gz' sha1 '0c5f193ced810b0d7ce3ab06d808cbb5eef03a2c' - head do - url 'http://hg.libsdl.org/SDL', :branch => 'SDL-1.2', :using => :hg + head 'http://hg.libsdl.org/SDL', :branch => 'SDL-1.2', :using => :hg - depends_on :autoconf - depends_on :automake - depends_on :libtool - end + depends_on :autoconf + depends_on :automake + depends_on :libtool option 'with-x11-driver', 'Compile with support for X11 video driver' option :universal @@ -19,9 +17,13 @@ class Sdl < Formula depends_on :x11 if build.with? 'x11-driver' def patches + p = [] # Fix for a bug preventing SDL from building at all on OSX 10.9 Mavericks # Related ticket: https://bugzilla.libsdl.org/show_bug.cgi?id=2085 - "http://bugzilla-attachments.libsdl.org/attachment.cgi?id=1320" if MacOS.version >= :mavericks + p << "http://bugzilla-attachments.libsdl.org/attachment.cgi?id=1320" if MacOS.version >= :mavericks + # Fix build against recent libX11; requires regenerating configure script + p << "http://hg.libsdl.org/SDL/raw-rev/91ad7b43317a" + p end def install @@ -32,7 +34,7 @@ class Sdl < Formula ENV.universal_binary if build.universal? - system "./autogen.sh" if build.head? + system "./autogen.sh" args = %W[--prefix=#{prefix}] args << "--disable-nasm" unless MacOS.version >= :mountain_lion # might work with earlier, might only work with new clang |
