From: Sascha H. <sa...@xm...> - 2009-09-14 10:55:59
|
I just wanted to fix it and saw that a fix for this has already been submitted with revision @496, so when you update, it should work now. @Brian:Thanks for that hint, you are absolutely right that changing filename cases can lead to problem with svn cients running on case-insensitive filesystems. However, in this case the fix wasn't about changing an actual filename. UIScreen.h is part of the iPhone SDK, and we just pull it in. So the fix was simply to change the reference in a header file. // Sascha On Mon, Sep 14, 2009 at 12:28 AM, Brian Schimmel < bri...@go...> wrote: > @Sascha: > Just in case you (or someone else at XMLVM) is going to "fix" it by > changing the file name case in the repository, let me warn you that a > case-only rename in a repository breaks some SVN clients on Windows. I > experienced problems with that in multimple mixed OS X / Windows > projects, especially with Tortoise SVN. I think it tries to create the > "new" file before deleting the "old" one, which does not work if both > have the "same" name from the FS' perspective. > > @Benjamin: > Besides the case problem you posted, is it really possible to compile > the iPhone App on Ubuntu? I'm not even talking about creating a > complete Application package that runs on actual devices, I'd be happy > to compile just to check for errors without needing a Mac. So how did > you manage? Just copy the SDK over to the Ubuntu machine? If you have > any hints or links to share, I'd be happy. > > Brian > > 2009/9/13, Sascha Haeberling <sa...@xm...>: > > Hi Benjamin, > > > > so you are actually compiling the iPhone app on Ubuntu and not on OSX? I > > have never actually tried this and wonder if this can be done > successfully. > > > > However, what you describe makes sense, as OSX's filesystem is not case > > sensitive, whereas most Linux file systems like ext3 are. This explains > why > > you see a problem and we didn't on OSX. > > > > // Sascha > > > > On Tue, Sep 8, 2009 at 8:42 AM, Benjamin Aranguren <bar...@gm... > > > > wrote: > > > > > I am using Ubuntu and was just wondering if anybody else has seen this > > problem when compiling with the generated xmlvm.h. > > > > > > > > > xmlvm.h:14:27: error: UIKit/UiScreen.h: No such file or directory > > > > > > > > > Changing UiScreen.h to UIScreen.h in xmlvm.h fixes the problem (upper > case > > I). > > > #import <UIKit/UiScreen.h> => #import <UIKit/UIScreen.h> > > > > > > > > > I also checked the headers that comes with the iPhone SDK and it is > also > > upper case I. > > > > > > ------------------------------------------------------------------------------ > > > Let Crystal Reports handle the reporting - Free Crystal Reports 2008 > > 30-Day > > > trial. Simplify your report design, integration and deployment - and > focus > > on > > > what you do best, core application coding. Discover what's new with > > > Crystal Reports now. http://p.sf.net/sfu/bobj-july > > > _______________________________________________ > > > xmlvm-users mailing list > > > xml...@li... > > > https://lists.sourceforge.net/lists/listinfo/xmlvm-users > > > > > > > > > > > > > ------------------------------------------------------------------------------ > > Let Crystal Reports handle the reporting - Free Crystal Reports 2008 > 30-Day > > trial. Simplify your report design, integration and deployment - and > focus > > on > > what you do best, core application coding. Discover what's new with > > Crystal Reports now. http://p.sf.net/sfu/bobj-july > > _______________________________________________ > > xmlvm-users mailing list > > xml...@li... > > https://lists.sourceforge.net/lists/listinfo/xmlvm-users > > > > > |