From: Cameron McBride Date: 2002-05-03T18:01:21+09:00 Subject: Re: require and case > >Should require be case insensitive or should it give a warning if the module > >it's trying to load has different case to that specified? > > Well, you wouldn't have had an issue on Unix, but because the Windows > filesystem only pretends to be case-sensitive and then really isn't this > is what happens. Maybe there should be a warning, but it should only be > enabled on Windows... Don't need or want it on the Unices. I disagree. If I were writing an app on my happy linux box, but I wanted to distribute it about and have it work on Windows -- I would want the warning. Without the warning -- it seems a quick way to introduce 'porting' problems on a script that otherwise shouldn't have them. Anyhow, why would I want to use same name / different case package names? If I do it -- its got to be a mistake anyhow... ;-) Cameron