Freetype/Fontconfig were pushed under two conditionals beacuse on Darwin we use
Freetype to list fonts (it uses native features). When support for glibc iconv was added the case broke and set $build_linux, the conditional for the fontconfig font lister was $build_default which no longer got triggered. Puts the font listers under FONTLISTER_(FONTCONFIG|FREETYPE) conditional upon $build_darwin being no/yes. Originally committed to SVN as r2180.
This commit is contained in:
parent
806ba1eb5a
commit
b012a3149c
2 changed files with 7 additions and 2 deletions
|
@ -122,11 +122,14 @@ UNIVCHARSET = charset_detect.cpp text_file_reader.cpp
|
|||
endif
|
||||
|
||||
if BUILD_DARWIN
|
||||
FONT_LISTER = font_file_lister_freetype.cpp
|
||||
BEVEL_BUTTON = macosx/bevelButton.cpp
|
||||
endif
|
||||
|
||||
if BUILD_DEFAULT
|
||||
if FONTLISTER_FREETYPE
|
||||
FONT_LISTER = font_file_lister_freetype.cpp
|
||||
endif
|
||||
|
||||
if FONTLISTER_FONTCONFIG
|
||||
FONT_LISTER = font_file_lister_fontconfig.cpp
|
||||
endif
|
||||
|
||||
|
|
|
@ -64,6 +64,8 @@ esac
|
|||
AM_CONDITIONAL([BUILD_DARWIN], [test "$build_darwin" = "yes"])
|
||||
AM_CONDITIONAL([BUILD_DEFAULT], [test "$build_default" = "yes"])
|
||||
|
||||
AM_CONDITIONAL([FONTLISTER_FONTCONFIG], [test "$build_darwin" != "yes"])
|
||||
AM_CONDITIONAL([FONTLISTER_FREETYPE], [test "$build_darwin" = "yes"])
|
||||
|
||||
|
||||
########################
|
||||
|
|
Loading…
Reference in a new issue