Modified: users/devans/GNOME-3/stable/dports/gnome/gstreamer1/Portfile (140733 => 140734)
--- users/devans/GNOME-3/stable/dports/gnome/gstreamer1/Portfile 2015-10-01 14:31:12 UTC (rev 140733)
+++ users/devans/GNOME-3/stable/dports/gnome/gstreamer1/Portfile 2015-10-01 17:16:23 UTC (rev 140734)
@@ -43,9 +43,19 @@
conflicts_build check
+patchfiles patch-struct-sockadr.diff
+
+# global_symbol_pipe gets set to "" on Leopard
+use_autoreconf yes
+autoreconf.args -fvi
+
configure.env-append PERL_PATH=${prefix}/bin/perl
configure.cflags-append -funroll-loops -fstrict-aliasing -fno-common
+if {[string match "*gcc-4.2" ${configure.compiler}]} {
+ configure.cflags-append -std=c99
+}
+
configure.args-append \
--disable-fatal-warnings \
--disable-silent-rules
Modified: users/devans/GNOME-3/stable/dports/gnome/gstreamer1-gst-plugins-bad/Portfile (140733 => 140734)
--- users/devans/GNOME-3/stable/dports/gnome/gstreamer1-gst-plugins-bad/Portfile 2015-10-01 14:31:12 UTC (rev 140733)
+++ users/devans/GNOME-3/stable/dports/gnome/gstreamer1-gst-plugins-bad/Portfile 2015-10-01 17:16:23 UTC (rev 140734)
@@ -107,8 +107,9 @@
#
# port:soundtouch (fails on autoreconf on darwin 8 & 9, see #27533) disable soundtouch on these platforms
-# plugin applemedia (Apple video) only builds on darwin 13 and later due to use of
-# constant kVTCompressionPropertyKey_RealTime introduced in OSX 10.9
+# gl cocoa build continues to fail due to use of API not available on darwin 10 or earlier
+# plugin applemedia (Apple video) now only builds on darwin 14 and later due to use of
+# constant AVQueuedSampleBufferRenderingStatusFailed introduced in OSX 10.10
#
platform darwin {
@@ -116,22 +117,15 @@
depends_lib-delete port:soundtouch
configure.args-append --disable-soundtouch --disable-opengl
}
- if {${os.major} < 13} {
+ if {${os.major} < 11 } {
+ configure.args-append --disable-cocoa
+ }
+ if {${os.major} < 14} {
configure.args-append --disable-apple_media
}
}
#
-# applemedia video plugin uses CoreMedia which is not available on darwin 10 or earlier
-# gl cocoa build continues to fail due to use of API not available on darwin 10 or earlier
-#
-
-if { ${os.major} < 11 } {
- configure.args-append --disable-apple_media \
- --disable-cocoa
-}
-
-#
# X11 is only used for examples that are not installed
# so just disable examples and drop the deprecated +no_x11 variant
#