# HG changeset patch # User Claus Gittinger # Date 1362400454 -3600 # Node ID ff6be3d27a815b455fc59be4fdc434301b35f59c # Parent bf4f76418acfc059d494ef9332561f1f9bb6b60a initial checkin diff -r bf4f76418acf -r ff6be3d27a81 OSXOperatingSystem.st --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/OSXOperatingSystem.st Mon Mar 04 13:34:14 2013 +0100 @@ -0,0 +1,32 @@ +"{ Package: 'stx:libbasic' }" + +UnixOperatingSystem subclass:#OSXOperatingSystem + instanceVariableNames:'' + classVariableNames:'' + poolDictionaries:'' + category:'OS-Unix' +! + + +!OSXOperatingSystem class methodsFor:'file queries'! + +caseSensitiveFilenames + "return true, if the OS has caseSensitive file naming. + On MSDOS, this will return false; + on a real OS, we return true." + + ^ false + + "Modified: / 5.6.1998 / 18:35:18 / cg" +! ! + +!OSXOperatingSystem class methodsFor:'documentation'! + +version + ^ '$Header: /cvs/stx/stx/libbasic/OSXOperatingSystem.st,v 1.1 2013-03-04 12:34:14 cg Exp $' +! + +version_CVS + ^ '$Header: /cvs/stx/stx/libbasic/OSXOperatingSystem.st,v 1.1 2013-03-04 12:34:14 cg Exp $' +! ! +