aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorTuncer Ayaz2010-04-01 19:16:38 +0200
committerDavid Höppner2010-04-01 20:16:17 +0200
commitd1a114e11c76a6339d780e7233cd0fef0137a626 (patch)
tree0a8e900eb50a096b044f8861d596aed518e08adf /Library
parent4e8080913b16457cc9f847c5eaab33a888d3c483 (diff)
downloadhomebrew-d1a114e11c76a6339d780e7233cd0fef0137a626.tar.bz2
Updated formula: libao-1.0.0
Signed-off-by: Tuncer Ayaz <tuncer.ayaz@gmail.com> Signed-off-by: David Höppner <0xffea@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/libao.rb38
1 files changed, 2 insertions, 36 deletions
diff --git a/Library/Formula/libao.rb b/Library/Formula/libao.rb
index f18ecf4a5..b563ae969 100644
--- a/Library/Formula/libao.rb
+++ b/Library/Formula/libao.rb
@@ -1,47 +1,13 @@
require 'formula'
class Libao <Formula
- @url='http://downloads.xiph.org/releases/ao/libao-0.8.8.tar.gz'
- @md5='b92cba3cbcf1ee9bc221118a85d23dcd'
+ @url='http://downloads.xiph.org/releases/ao/libao-1.0.0.tar.gz'
+ @md5='08283fbe1f587619053a156254afecec'
@homepage='http://www.xiph.org/ao/'
- def patches
- # Fix this: dyld: lazy symbol binding failed: Symbol not found: _dlsym_auto_underscore
- # See: http://trac.macports.org/ticket/20891
- DATA
- end
-
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}", "--disable-x"
system "make install"
end
end
-
-
-__END__
---- a/configure 2007-05-24 12:51:52.000000000 +0200
-+++ b/configure 2007-11-30 21:54:58.000000000 +0100
-@@ -20094,9 +20094,10 @@
- PROFILE="-pg -g -O20 -D__NO_MATH_INLINES -fsigned-char" ;;
- *-darwin*)
- PLUGIN_LDFLAGS="-module -avoid-version"
-- DEBUG="-g -Wall -D__NO_MATH_INLINES -fsigned-char -Ddlsym=dlsym_auto_underscore"
-- CFLAGS="-D__NO_MATH_INLINES -fsigned-char -Ddlsym=dlsym_auto_underscore"
-- PROFILE="-g -pg -D__NO_MATH_INLINES -fsigned-char -Ddlsym=dlsym_auto_underscore" ;;
-+ DEBUG="-g -Wall -D__NO_MATH_INLINES -fsigned-char"
-+ CFLAGS="-D__NO_MATH_INLINES -fsigned-char"
-+ PROFILE="-g -pg -D__NO_MATH_INLINES -fsigned-char"
-+ LIBS="-Wl,-framework -Wl,AudioUnit" ;;
- *)
- PLUGIN_LDFLAGS="-export-dynamic -avoid-version"
- DEBUG="-g -Wall -D__NO_MATH_INLINES -fsigned-char"
-@@ -20203,7 +20204,7 @@
- DLOPEN_FLAG='(RTLD_LAZY)'
- SHARED_LIB_EXT='.sl'
- ;;
-- *openbsd* | *netbsd* | *solaris2.7)
-+ *openbsd* | *netbsd* | *solaris2.7 | *darwin*)
- DLOPEN_FLAG='(RTLD_LAZY)'
- SHARED_LIB_EXT='.so'
- ;;