[vlc-commits] freetype/fontconfig: remove legacy Apple code
Felix Paul Kühne
git at videolan.org
Sun Nov 22 20:14:44 CET 2015
vlc | branch: master | Felix Paul Kühne <fkuehne at videolan.org> | Sun Nov 22 20:13:16 2015 +0100| [0d13b8233a82f3104993a8a1d2dbf041ea6737e1] | committer: Felix Paul Kühne
freetype/fontconfig: remove legacy Apple code
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=0d13b8233a82f3104993a8a1d2dbf041ea6737e1
---
modules/text_renderer/fonts/fontconfig.c | 15 +++------------
1 file changed, 3 insertions(+), 12 deletions(-)
diff --git a/modules/text_renderer/fonts/fontconfig.c b/modules/text_renderer/fonts/fontconfig.c
index 71f3fbe..2c1e5f0 100644
--- a/modules/text_renderer/fonts/fontconfig.c
+++ b/modules/text_renderer/fonts/fontconfig.c
@@ -35,8 +35,8 @@
#endif
#include <vlc_common.h>
-#include <vlc_filter.h> /* filter_sys_t */
-#include <vlc_dialog.h> /* FcCache dialog */
+#include <vlc_filter.h> /* filter_sys_t */
+#include <vlc_dialog.h> /* FcCache dialog */
#include <fontconfig/fontconfig.h>
@@ -53,7 +53,7 @@ int FontConfig_Prepare( filter_t *p_filter )
FcInit();
#endif
-#if defined( _WIN32 ) || defined( __APPLE__ )
+#if defined( _WIN32 )
dialog_progress_bar_t *p_dialog = NULL;
FcConfig *fcConfig = FcInitLoadConfig();
@@ -68,15 +68,6 @@ int FontConfig_Prepare( filter_t *p_filter )
if( FcConfigBuildFonts( fcConfig ) == FcFalse )
return VLC_ENOMEM;
-#if defined( __APPLE__ )
- // By default, scan only the directory /System/Library/Fonts.
- // So build the set of available fonts under another directories,
- // and add the set to the current configuration.
- FcConfigAppFontAddDir( NULL, "~/Library/Fonts" );
- FcConfigAppFontAddDir( NULL, "/Library/Fonts" );
- FcConfigAppFontAddDir( NULL, "/Network/Library/Fonts" );
- //FcConfigAppFontAddDir( NULL, "/System/Library/Fonts" );
-#endif
if( p_dialog )
{
// dialog_ProgressSet( p_dialog, NULL, 1.0 );
More information about the vlc-commits
mailing list