[commit] r2104 - do not build ogg plugin on osx because of broken framework headers

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

[commit] r2104 - do not build ogg plugin on osx because of broken framework headers

commits-3
 
Author: piumarta
Date: 2009-08-26 18:55:49 -0700 (Wed, 26 Aug 2009)
New Revision: 2104

Modified:
   trunk/platforms/unix/ChangeLog
   trunk/platforms/unix/plugins/OggPlugin/config.cmake
Log:
do not build ogg plugin on osx because of broken framework headers

Modified: trunk/platforms/unix/ChangeLog
===================================================================
--- trunk/platforms/unix/ChangeLog 2009-08-27 01:51:00 UTC (rev 2103)
+++ trunk/platforms/unix/ChangeLog 2009-08-27 01:55:49 UTC (rev 2104)
@@ -1,5 +1,8 @@
 2009-08-26  Ian Piumarta  <com -dot- gmail -at- piumarta (backwards)>
 
+ * plugins/OggPlugin/config.cmake: Do not build OggPlugin on MacOS
+ X due to broken headers in the framework.
+
  * plugins/SqueakFFIPrims/config.cmake: Add missing argument when
  requiring libffi.
 

Modified: trunk/platforms/unix/plugins/OggPlugin/config.cmake
===================================================================
--- trunk/platforms/unix/plugins/OggPlugin/config.cmake 2009-08-27 01:51:00 UTC (rev 2103)
+++ trunk/platforms/unix/plugins/OggPlugin/config.cmake 2009-08-27 01:55:49 UTC (rev 2104)
@@ -5,3 +5,7 @@
 PLUGIN_REQUIRE_LIBRARY (OGG    ogg)
 PLUGIN_REQUIRE_LIBRARY (VORBIS vorbis)
 PLUGIN_REQUIRE_LIBRARY (SPEEX  speex)
+
+IF (APPLE)
+  PLUGIN_DISABLE () # ogg framework headers are broken on 10.5.7
+ENDIF ()