On Thu, 2009-02-26 at 14:51 -0800, Christian Convey wrote:
> > > I've tried untarring the FLTK 1.1.9 source code on a Mac, which by 
> > > default treats filenames with the same kind of case sensitivity as 
> > > Windows: it remembers case, but you can't have to files that differ only 
> > > by case.
> > >
> > > Anyway, I get a conflict with files such as: "FL/Fl.h" and "FL/Fl.H".
> > >
> > > How do people typically get around this?
> >
> >
> > You simply have to use the correct filename
> > with the correct case sensitivy :
> >
> > #include <FL/Fl.H>
> 
> Thanks, but that's not what I'm talking about.  According to one of my users 
> who has a Mac:  When he tries putting the source code for fltk 1.1.9 onto his 
> Mac file system, the operation fails because he can't have, for example, Fl.H 
> and Fl.h  (which differ only be case) in the same directory at the same time.
> 
> FLTK ships with both those files, so it's not clear what the right way around 
> this is.

Fl.h should be a symbolic link to Fl.H.  Apparently, your user's system
isn't handling symlinks correctly.  Here's a snippet from my system:

        scottt:~$ ls -l /usr/local/include/FL/Fl.*
        lrwxrwxrwx 1 root staff   4 2009-02-11 12:48 /usr/local/include/FL/Fl.h 
-> Fl.H
        -rw-r--r-- 1 root staff 37K 2009-02-11 12:48 /usr/local/include/FL/Fl.H

HTH.

-scott.

_______________________________________________
fltk mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk

Reply via email to