Revision: 74241 http://trac.macports.org/changeset/74241 Author: devans@macports.org Date: 2010-12-08 12:26:30 -0800 (Wed, 08 Dec 2010) Log Message: ----------- gst-plugins-bad: disable soundtouch on darwin 8 & 9 where it fails autoreconf, see #27533. Modified Paths: -------------- trunk/dports/gnome/gst-plugins-bad/Portfile Modified: trunk/dports/gnome/gst-plugins-bad/Portfile =================================================================== --- trunk/dports/gnome/gst-plugins-bad/Portfile 2010-12-08 19:53:17 UTC (rev 74240) +++ trunk/dports/gnome/gst-plugins-bad/Portfile 2010-12-08 20:26:30 UTC (rev 74241) @@ -64,6 +64,15 @@ --enable-experimental \ --enable-static +# +# port:soundtouch (fails on autoreconf on darwin 8 & 9, see #27533) disable soundtouch on these platforms +# + +if { ${os.major} < 10 } { + depends_lib-delete port:soundtouch + configure.args-append --disable-soundtouch +} + configure.cppflags-append "-L${prefix}/lib" configure.cflags-append -funroll-loops -fstrict-aliasing configure.env-append "HAVE_CXX=yes"