extensions.st
branchjv
changeset 7154 f2d585b5f20e
child 7855 46203abe7d57
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/extensions.st	Mon Feb 22 08:41:04 2016 +0000
@@ -0,0 +1,34 @@
+"{ 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> $'
+! !