Re: [fpc-pascal] FPC with case insensitive file system under Linux

2012-02-28 Thread Sven Barth
Am 28.02.2012 08:38, schrieb Noah Silva: Windows supports multiple locales and has 95% of the computer market - Not really: http://en.wikipedia.org/wiki/Usage_share_of_operating_systems Anyway, if we did everything the way Microsoft suggested, we would give up real sym links and

Re: [fpc-pascal] FPC with case insensitive file system under Linux

2012-02-28 Thread Noah Silva
Hi Sven, From what I've read, the NT kernel (and filesystem) support a lot of things that Windows in general doesn't. Presumably this is because it is (unofficially, of course) loosely based on VMS, but Win32 was originally designed to work with DOS, etc. Thank you, Noah Silva 2012/2/28

Re: [fpc-pascal] FPC with case insensitive file system under Linux

2012-02-28 Thread Sven Barth
Am 28.02.2012 09:47, schrieb Noah Silva: Hi Sven, From what I've read, the NT kernel (and filesystem) support a lot of things that Windows in general doesn't. Presumably this is because it is (unofficially, of course) loosely based on VMS, but Win32 was originally designed to work with DOS,

Re: [fpc-pascal] FPC with case insensitive file system under Linux

2012-02-28 Thread Noah Silva
Hi Sven, It seems that since NT is the only remaining Windows kernel now that it might make sense to use NT functions in (for example) the normal SysUtils library for more efficient implementations - do you think there is any strong reason not to? You have to figure there are two layers of

Re: [fpc-pascal] FPC with case insensitive file system under Linux

2012-02-28 Thread Sven Barth
Am 28.02.2012 10:03, schrieb Noah Silva: Hi Sven, It seems that since NT is the only remaining Windows kernel now that it might make sense to use NT functions in (for example) the normal SysUtils library for more efficient implementations - do you think there is any strong reason not to? You

Re: [fpc-pascal] FPC with case insensitive file system under Linux

2012-02-27 Thread Noah Silva
Hi, 2012/2/25 Graeme Geldenhuys graemeg.li...@gmail.com On 24 February 2012 16:13, Henry Vermaak wrote: Because case sensitive systems don't create as much confusion Then lets look at it from an average user's point of view. Must they really be confronted with multiple files in a

Re: [fpc-pascal] FPC with case insensitive file system under Linux

2012-02-25 Thread Graeme Geldenhuys
On 24 February 2012 16:13, Henry Vermaak wrote: Because case sensitive systems don't create as much confusion. Here my thoughts are the opposite. While backing up my data no an external drive with is case insensitive I came across a lot of possible issues I never realised I had on my case

Re: [fpc-pascal] FPC with case insensitive file system under Linux

2012-02-25 Thread Graeme Geldenhuys
On 24 February 2012 15:57, Mattias Gaertner wrote: The whole last week I cursed the opposite direction (first windows, then OS X). It seems it depends on the current task. :-) Linux can handle both. But many Linux tools only support case sensitive files. Well, in a case insensitive file

Re: [fpc-pascal] FPC with case insensitive file system under Linux

2012-02-25 Thread Jürgen Hestermann
Graeme Geldenhuys schrieb: On 24 February 2012 16:13, Henry Vermaak wrote: Because case sensitive systems don't create as much confusion. Here my thoughts are the opposite. While backing up my data no an external drive with is case insensitive I came across a lot of possible issues I never

[fpc-pascal] FPC with case insensitive file system under Linux

2012-02-24 Thread Graeme Geldenhuys
Hi, [rant] I'm just sick of the idiocy of Linux/Unix with there case sensitive file systems! Google'ing a round for the reason for this, it seems that in the 60's, it was C programmers that decided that searching for case sensitive files was easier to implement (and marginally faster). Well, 40+

Re: [fpc-pascal] FPC with case insensitive file system under Linux

2012-02-24 Thread michael . vancanneyt
On Fri, 24 Feb 2012, Graeme Geldenhuys wrote: Hi, [rant] I'm just sick of the idiocy of Linux/Unix with there case sensitive file systems! Well, some men prefer blondes, others prefer brunettes. [/rant] Anyway, back to the point I seriously doubt there would be any problems, but

Re: [fpc-pascal] FPC with case insensitive file system under Linux

2012-02-24 Thread Tomas Hajny
On Fri, February 24, 2012 12:21, michael.vancann...@wisa.be wrote: On Fri, 24 Feb 2012, Graeme Geldenhuys wrote: . . Anyway, back to the point I seriously doubt there would be any problems, but I'll ask anyway. Has anybody here used JFS (case insensitive option enabled) with FPC and

Re: [fpc-pascal] FPC with case insensitive file system under Linux

2012-02-24 Thread Graeme Geldenhuys
2012/2/24 Tomas Hajny : One concrete example - if you create a unit and store it in a file with a mixed case name, it will be found by the compiler in your case. If you share this source with someone else (also using Linux like you), it may not be found. This would be an equal problem if done

Re: [fpc-pascal] FPC with case insensitive file system under Linux

2012-02-24 Thread Mattias Gaertner
On Fri, 24 Feb 2012 13:09:09 +0200 Graeme Geldenhuys graemeg.li...@gmail.com wrote: Hi, [rant] I'm just sick of the idiocy of Linux/Unix with there case sensitive file systems! Google'ing a round for the reason for this, it seems that in the 60's, it was C programmers that decided that

Re: [fpc-pascal] FPC with case insensitive file system under Linux

2012-02-24 Thread Henry Vermaak
On 24/02/12 11:09, Graeme Geldenhuys wrote: Hi, [rant] I'm just sick of the idiocy of Linux/Unix with there case sensitive file systems! Google'ing a round for the reason for this, it seems that in the 60's, it was C programmers that decided that searching for case sensitive files was easier to

Re: [fpc-pascal] FPC with case insensitive file system under Linux

2012-02-24 Thread Mark Morgan Lloyd
Graeme Geldenhuys wrote: Hi, [rant] I'm just sick of the idiocy of Linux/Unix with there case sensitive file systems! Google'ing a round for the reason for this, it seems that in the 60's, it was C programmers that decided that searching for case sensitive files was easier to implement (and

Re: [fpc-pascal] FPC with case insensitive file system under Linux

2012-02-24 Thread Marco van de Voort
In our previous episode, Sven Barth said: Anybody know of other Linux file systems that have a case insensitive option? I really thought ext2 had this, but searching now through the man pages, it seems I was mistaken. Anybody know if Btrfs would have such an option? Did you know that

Re: [fpc-pascal] FPC with case insensitive file system under Linux

2012-02-24 Thread Noa Shiruba
Hi, You can get similar problems when copying code from Windows to OS X, because OS X is not only case insensitive, it normalizes UTF characters. Well that's a good thing in the long run, because you can guarantee more matches if you always normalize. My recommendation: If you have the