extensions.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Thu, 30 Jun 2016 22:07:40 +0100
branchjv
changeset 7399 143bc9c1a08e
parent 7154 f2d585b5f20e
child 7855 46203abe7d57
permissions -rw-r--r--
Merge

"{ Package: 'stx:libview' }"!

!ConfigurableFeatures class methodsFor:'queries-features'!

hasFontConfig
%{
#if defined(HAVE_FONTCONFIG)
    RETURN ( true );
#endif	
%}.
    ^ false

    "Created: / 22-02-2016 / 08:08:45 / Jan Vrany <jan.vrany@fit.cvut.cz>"
! !

!ConfigurableFeatures class methodsFor:'queries-features'!

hasXFT
%{
#if defined(HAVE_FONTCONFIG) && defined(XFT)
    RETURN ( true );
#endif	
%}.
    ^ false

    "Created: / 22-02-2016 / 08:08:38 / Jan Vrany <jan.vrany@fit.cvut.cz>"
! !

!stx_libview class methodsFor:'documentation'!

extensionsVersion_HG

    ^ '$Changeset: <not expanded> $'
! !