extensions.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Wed, 06 Sep 2017 10:04:18 +0200
branchjv
changeset 8180 25149dfd68e0
parent 8035 8bbd397fe321
permissions -rw-r--r--
Build files: removed a bunch of make rules for long-dead unsupported systems ...in order to unify and simplify the build. If a need to support this ancient systems arose, these hacks may ni longer be needed (due to new versions of tools) or the hacks would have to be written again (better) or retrieved from SCM (worse). Time will show.

"{ 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>"
! !

!Object methodsFor:'testing'!

isColormap
    ^ false
! !

!Object methodsFor:'testing'!

isKeyboardMap
    ^ false
! !

!stx_libview class methodsFor:'documentation'!

extensionsVersion_HG

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