I think I'll start with the simple stuff, just to be safe. :-) Here are some cvsignore updates, and a fix for the inter-project dependencies in the MSVC *.dsw file. Cheers, Eric -------------- next part -------------- A non-text attachment was scrubbed... Name: vp32-cvs-ignore-patch.diff Type: application/octet-stream Size: 1524 bytes Desc: vp32-cvs-ignore-patch.diff Url : http://lists.xiph.org/pipermail/theora-dev/attachments/20020718/39512615/vp32-cvs-ignore-patch-0001.obj -------------- next part -------------- A non-text attachment was scrubbed... Name: vp32-dsw-dependency.diff Type: application/octet-stream Size: 595 bytes Desc: vp32-dsw-dependency.diff Url : http://lists.xiph.org/pipermail/theora-dev/attachments/20020718/39512615/vp32-dsw-dependency-0001.obj
Out of curiosity, what were the dependency problems, and how did you fix them? I still find the .dsw environment mystifying in some ways, particularly as it relates to dependencies. I didn't set up this project, and I haven't touched that part of it yet. I think the plan, as far as Theora itself goes, is to get all MS specific stuff out of here pronto and move to cygwin, although I'm sure some will want to maintain parallel VC builds, especially for the codecs. As someone mentioned, the difficulty will be with regard to all the assembly code. ___ Dan Miller (++,) CTO and founder, On2 Technologies On 18 Jul 2002, Eric M. Kidd wrote:> I think I'll start with the simple stuff, just to be safe. :-) > > Here are some cvsignore updates, and a fix for the inter-project dependencies in the MSVC *.dsw file. > > Cheers, > Eric ><p>--- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubscribe from this list, send a message to 'theora-dev-request@xiph.org' containing only the word 'unsubscribe' in the body. No subject is needed. Unsubscribe messages sent to the list will be ignored/filtered.
ok -- the .dsw patch was easy. I'm having a problem with the cvs patch, which may simply reflect on my ignorance of the proper use of the Cygwin/GNU toolset. I am attempting to run patch as follows: patch -d vp32 <vp32-cvs-ignore-patch.diff and get output like this: The next patch would create the file `.cvsignore', which already exists! Assume -R? [n] Apply anyway? [n] Skipping patch. <p>It looks to me like patch is trying to put each .cvsignore in the vp32 directory rather than the specified subdirectories such as Codecs/quicktime/. It seems like I need some option to get patch to use the 'Index:' commands. I looked at the man page, it goes on about how patch tries to derive the filenames, but I am still confused. Any help would be appreciated. <p> ___ Dan Miller (++,) CTO and founder, On2 Technologies On 18 Jul 2002, Eric M. Kidd wrote:> I think I'll start with the simple stuff, just to be safe. :-) > > Here are some cvsignore updates, and a fix for the inter-project dependencies in the MSVC *.dsw file. > > Cheers, > Eric ><p>--- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubscribe from this list, send a message to 'theora-dev-request@xiph.org' containing only the word 'unsubscribe' in the body. No subject is needed. Unsubscribe messages sent to the list will be ignored/filtered.
--- Ralph Giles wrote: FWIW, I was a little nervous about that one. the *.<build-file-ext> additions are reasonable, but things like 'Debug' and 'Release' looked like they could conflict with later files/directories. Eric, can you explain for us non-windows folk where those files come from and what they are? --- end of quote --- These are standard MSVC++ output directories, and they get created every time you do a build. They typically contain many kinds of object files and build byproducts. They are frequently included in .cvsignore files, because (1) they're a build byproduct and (2) they're all over most MSVC++ build trees. They're actually named after the "Debug" and "Release" targets associated with every MSVC++ project. If you add new build configurations, you'll get more directories. I hope this helps! Cheers, Eric (Linux/Windows/Mac developer) --- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubscribe from this list, send a message to 'theora-dev-request@xiph.org' containing only the word 'unsubscribe' in the body. No subject is needed. Unsubscribe messages sent to the list will be ignored/filtered.