Percy wrote:
> I just checked and there were no readonly files.
Are you able to replicate the errors VS is giving when
you try to delete the files VS is complaining about
either from the DOS prompt or from the GUI?
If it's an ACL problem, paste two things here:
1) The output of "cacls \some\path", where "\some\path"
is a file VS is complaining about access to.
2) Tell us what user you're logged in as at the time,
and if user is a domain user, include that info as well.
> I did it again and noticed somethings. When I opened it up in VS,
> it wanted to convert the files (which I did).
That's normal.
Which fltk tar file are you working with? (eg. fltk-1.3.x-r6985.tar.gz)
> When I choose a compile mode (debug or release, etc) the default option
> is "Debug Cairo". The errors I have been giving you are from the normal
> "Debug" mode.
Sounds like you switched to a different FLTK version.
So we don't go in circles, tell use which fltk tar file you're working
with when reporting errors.
You definitely want only normal "Debug". Focus on that.
You'd only use "Debug Cairo" if you were compiling FLTK for use with
the Cairo library. (Which is a vector graphics lib IIRC and makes very
pretty anti-aliased shape drawing).
The fact it's showing up as a default, sounds like you've moved to an
older tar file that at one time had that as a default. That has since
been fixed, and is definitely not the case with fltk-1.3.x-r6985.tar.gz
which is the current.
(Note fltk 1.3.x is still in dev, which is why it sometimes has these
"bumps in the road" for compiling)
To fix that error about the 'warning' in Fl_Preferences in your prev
email,
just comment the line in question out, and see how much further it goes
through compilation. Send us the first few errors if it fails again.
I just took the latest fltk-1.3.x-r6985.tar.gz from the website,
(which defaults to normal "Debug") and had to make the following
three changes to Fl_Preferences.cxx to get it to build successfully:
1) Comment out the '#warning' at or around line 85
2) Add the following at the top to prevent an error about
gethostname():
#include <Winsock2.h>
3) Add the following before the closing brace on the function
Fl_Preferences::newUUID(), eg:
---- snip
sprintf(uuidBuffer,
"%02X%02X%02X%02X-%02X%02X-%02X%02X-%02X%02X-%02X%02X%02X%02X%02X%02X",
b[0], b[1], b[2], b[3], b[4], b[5], b[6], b[7],
b[8], b[9], b[10], b[11], b[12], b[13], b[14], b[15]);
#endif
return(uuidBuffer); // <-- ADD THIS
}
---- snip
Whom ever's working on Fl_Preferences.cxx, take note!
Be sure to test with VS 2008 before checking in.
I know someone mentioned #1 has been addressed, not sure about #2 or #3.
_______________________________________________
fltk mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk