Re: sqlite3: bug with monotone
Corinna Vinschen cygwin.com> writes: > Please give the 32 bit snapshot a try ASAP. I intend to release 1.7.19 > very soon, probably tomorrow or Tuesday. Have it installed now, but I can't give it much testing before the end of the week. BTW, on the webpage with the snapshots the 'colspan="3"' should be removed in the table cells for the file names. Regards, Achim. -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Re: sqlite3: bug with monotone
On Jun 3 08:03, Achim Gratz wrote: > Corinna Vinschen cygwin.com> writes: > > Please give the 32 bit snapshot a try ASAP. I intend to release 1.7.19 > > very soon, probably tomorrow or Tuesday. > > Have it installed now, but I can't give it much testing before the end of > the week. > > BTW, on the webpage with the snapshots the 'colspan="3"' should be removed > in the table cells for the file names. I'm not a web designer, so, why? Corinna -- Corinna Vinschen Please, send mails regarding Cygwin to Cygwin Maintainer cygwin AT cygwin DOT com Red Hat -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Re: sqlite3: bug with monotone
Corinna Vinschen cygwin.com> writes: > > BTW, on the webpage with the snapshots the 'colspan="3"' should be > > removed in the table cells for the file names. > > I'm not a web designer, so, why? The cell with the snapshot date specifies 'colspan="4"' and the other rows have four columns, so the intention is clearly that it should span across the whole table. So trying to span three non-existing columns in the filename cells causes the date cell to span only two columns effectively and leaves the last two columns empty (since no cell is defined for those). If you want to test it first: In Firefox, Shift-F2 gives you a command line where you can remove all colspan definitions via "pagemod remove attribute colspan td". Then use the Inspector (Ctrl-Shift-I) to re-add 'colspan="4"' to one of the date cells. Regards, Achim. -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Re: pthread_join() problem
On Jun 2 23:01, David Stacey wrote: > I'm trying to get Poco[1] working under Cygwin, and have hit a > problem with the way it manages its threads. A short example > (attached) shows what's going on. > > Poco creates a global object that is used for managing various > threads. In the destructor, the class calls pthread_join() to wait > for the threads to finish. This works in Fedora (and presumably > other Linux variants), but under Cygwin this call never returns. > Note that the object is global, and so pthread_join() is being > called after main() has returned and the global variables are being > mopped up. > > In the attached example, the problem only exists if the > 'thread_container' object is global. When run in this way, > pthread_join() never returns and the programme locks up. If > 'thread_container' is moved local to main() then the programme works > correctly. Sadly, I can't make such a trivial fix to the Poco code, > which rather relies on this object being global. > > The attached example (and indeed Poco) runs fine under Fedora 18 > x64, but locks up on Cygwin (32-bit; haven't tried 64-bit). Problem > exists with a vanilla cygwin-1.7.18-1 and the most recent snapshot > (2013-06-02). Thanks for the simple testcase! I tracked this down to a problem in the process exit handling which disallowed pthreads to exit when process exit was in progress (and running the global destructors is part of the process exit). I fixed that in CVS. I'm just uploading a 2013-06-03 snapshot to http://cygwin.com/snapshots/ as well as generating a 1.7.9-10 cygwin package for the 64 bit test distro. Please give either one of them a try, especially with poco. Thanks, Corinna -- Corinna Vinschen Please, send mails regarding Cygwin to Cygwin Maintainer cygwin AT cygwin DOT com Red Hat -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Re: sqlite3: bug with monotone
On Jun 3 09:53, Achim Gratz wrote: > Corinna Vinschen cygwin.com> writes: > > > BTW, on the webpage with the snapshots the 'colspan="3"' should be > > > removed in the table cells for the file names. > > > > I'm not a web designer, so, why? > > The cell with the snapshot date specifies 'colspan="4"' and the other rows > have four columns, so the intention is clearly that it should span across > the whole table. So trying to span three non-existing columns in the > filename cells causes the date cell to span only two columns effectively and > leaves the last two columns empty (since no cell is defined for those). > > If you want to test it first: In Firefox, Shift-F2 gives you a command line > where you can remove all colspan definitions via "pagemod remove attribute > colspan td". Then use the Inspector (Ctrl-Shift-I) to re-add 'colspan="4"' > to one of the date cells. The colspan=3 is for the cell containing the filesize. There's no colspan for the cell with the filename, afaics. Changing the colspan for the filesize cell to 4 looks weird nad incorrect. Corinna -- Corinna Vinschen Please, send mails regarding Cygwin to Cygwin Maintainer cygwin AT cygwin DOT com Red Hat -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Re: sqlite3: bug with monotone
Corinna Vinschen cygwin.com> writes: > The colspan=3 is for the cell containing the filesize. Yes, and it should be eliminated. I guess formerly the header line with the snapshot date had multiple cells, but now it has just one. > There's no colspan for the cell with the filename, afaics. No, sorry - I've just remembered incorrectly. > Changing the colspan > for the filesize cell to 4 looks weird nad incorrect. Yes, it should have no colspan at all. Regards, Achim. -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Re: sqlite3: bug with monotone
On Jun 3 10:21, Achim Gratz wrote: > Corinna Vinschen cygwin.com> writes: > > The colspan=3 is for the cell containing the filesize. > > Yes, and it should be eliminated. I guess formerly the header line with the > snapshot date had multiple cells, but now it has just one. > > > There's no colspan for the cell with the filename, afaics. > > No, sorry - I've just remembered incorrectly. > > > Changing the colspan > > for the filesize cell to 4 looks weird nad incorrect. > > Yes, it should have no colspan at all. The result of removing colspan is a more narrow table, which doesn't match the width of the headline. Afaics, a colspan=6 for the daily headline containing date/changelog/diff would look better, wouldn't it? Corinna -- Corinna Vinschen Please, send mails regarding Cygwin to Cygwin Maintainer cygwin AT cygwin DOT com Red Hat -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Re: sqlite3: bug with monotone
On Jun 3 12:32, Corinna Vinschen wrote: > On Jun 3 10:21, Achim Gratz wrote: > > Corinna Vinschen cygwin.com> writes: > > > The colspan=3 is for the cell containing the filesize. > > > > Yes, and it should be eliminated. I guess formerly the header line with the > > snapshot date had multiple cells, but now it has just one. > > > > > There's no colspan for the cell with the filename, afaics. > > > > No, sorry - I've just remembered incorrectly. > > > > > Changing the colspan > > > for the filesize cell to 4 looks weird nad incorrect. > > > > Yes, it should have no colspan at all. > > The result of removing colspan is a more narrow table, which doesn't > match the width of the headline. Afaics, a colspan=6 for the daily > headline containing date/changelog/diff would look better, wouldn't it? I changed the snapshots page for testing, btw. Have a look, please. Corinna -- Corinna Vinschen Please, send mails regarding Cygwin to Cygwin Maintainer cygwin AT cygwin DOT com Red Hat -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Re: sqlite3: bug with monotone
Corinna Vinschen cygwin.com> writes: > The result of removing colspan is a more narrow table, which doesn't > match the width of the headline. Afaics, a colspan=6 for the daily > headline containing date/changelog/diff would look better, wouldn't it? It seems we aren't looking at the same table... I'm talking about what I see when loading http://cygwin.com/snapshots/ Is there some postprocessing done before it goes live on the server? That would perhaps explain the apparent mismatch. Regards, Achim. -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Re: sqlite3: bug with monotone
Corinna Vinschen cygwin.com> writes: > > The result of removing colspan is a more narrow table, which doesn't > > match the width of the headline. Afaics, a colspan=6 for the daily > > headline containing date/changelog/diff would look better, wouldn't it? OK, got it - disregard my other mail. The table is the same width in my browser, but the filesize cell gets extra padding to the left when it spans columns. > I changed the snapshots page for testing, btw. Have a look, please. Looks good now, thanks for taking care of it. Regards, Achim. -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Re: sqlite3: bug with monotone
On Jun 3 10:38, Achim Gratz wrote: > Corinna Vinschen cygwin.com> writes: > > The result of removing colspan is a more narrow table, which doesn't > > match the width of the headline. Afaics, a colspan=6 for the daily > > headline containing date/changelog/diff would look better, wouldn't it? > > It seems we aren't looking at the same table... I'm talking about what I see > when loading > > http://cygwin.com/snapshots/ This is what I see as well. > Is there some postprocessing done before it goes live on the server? No. The page gets created in the background and then index.html gets replaced with the newly generated one, that's all. > That > would perhaps explain the apparent mismatch. What mismatch? Here's what I see after applying the colspan=6 change. http://cygwin.de/snapshots-screenshot.png Corinna -- Corinna Vinschen Please, send mails regarding Cygwin to Cygwin Maintainer cygwin AT cygwin DOT com Red Hat -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
[ANNOUNCEMENT] Updated: cppcheck-1.60.1-1
Version 1.60.1-1 of cppcheck has been uploaded, following the upstream release. cppcheck is a tool for static C/C++ code analysis. It tries to detect bugs that your C/C++ compiler doesn't see. The goal is no false positives. cppcheck is versatile. You can check non-standard code that includes various compiler extensions, inline assembly code, etc. For a list of changes see: http://sourceforge.net/p/cppcheck/news/2013/06/cppcheck-1601/ http://sourceforge.net/p/cppcheck/news/2013/06/cppcheck-160/ Note: As of this release a debuginfo package is also available. *** CYGWIN-ANNOUNCE UNSUBSCRIBE INFO *** If you want to unsubscribe from the cygwin-announce mailing list, look at the "List-Unsubscribe: " tag in the email header of this message. Send email to the address specified there. It will be in the format: cygwin-announce-unsubscribe-you=yourdomain.comcygwin.com If you need more information on unsubscribing, start reading here: http://sourceware.org/lists.html#unsubscribe-simple Please read*all* of the information on unsubscribing that is available starting at this URL. -- Chris Sutcliffe http://emergedesktop.org http://www.google.com/profiles/ir0nh34d -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
[ANNOUNCEMENT] Updated: libkate-0.4.1-1
New upstream release. DESCRIPTION: Kate is a codec for karaoke and text encapsulation for Ogg. Most of the time, this would be multiplexed with audio/video to carry subtitles, song lyrics (with or without karaoke data), etc, but doesn't have to be. A possible use of a lone Kate stream would be an e-book. DOWNLOAD: = Note that downloads from sourceware.org (aka cygwin.com) aren't allowed due to bandwidth limitations. This means that you will need to find a mirror which has this update, please choose the one nearest to you: http://cygwin.com/mirrors.html QUESTIONS: == If you want to make a point or ask a question the Cygwin mailing list is the appropriate place. CYGWIN-ANNOUNCE UNSUBSCRIBE INFO: = To unsubscribe to the cygwin-announce mailing list, look at the "List-Unsubscribe: " tag in the email header of this message. Send email to the address specified there. It will be in the format: cygwin-announce-unsubscribe-YOU=yourdomain@cygwin.com If you need more information on unsubscribing, start reading here: http://sourceware.org/lists.html#unsubscribe-simple Please read *all* of the information on unsubscribing that is available starting at this URL. -- David Rothenberger daver...@acm.org "The hands that help are better far than the lips that pray." -- Robert G. Ingersoll -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Re: sqlite3: bug with monotone
On 6/2/2013 04:31, Corinna Vinschen wrote: I just applied a patch to implement mandatory locking. Thank you! It also supports F_GETLK, with limited usability due to Windows restrictions, as I explained in other mail. It is what it is. A haiku: Yesterday it worked. Today it is not working. Windows is like that. I dropped the F_MDLCK idea. Instead I implemented a specific fcntl code to switch to mandatory locking on a file descriptor: fcntl (fd, F_LCK_MANDATORY, 1); Could you add an O_MAND open(2) option as well to turn on the same feature? This will avoid a race condition. I apologize for not thinking of this earlier. It just occurred to me as I was working on the SQLite patch to make use of this new feature. I didn't add a way for the user to switch on mandatory locking for now, and I don't intend to do that for 1.7.19. Hope that helps, nevertheless. I *think* it's sufficient. I may think differently later. :) My current plan is that Cygwin SQLite will build in "Unix mode" now, but with the build flag Yaakov requested above, and mandatory locking enabled unless an environment variable is set. This will let those in Achim's camp use the official Cygwin SQLite but ask it to run in pure POSIX mode. A test build will appear later today. Please give the 32 bit snapshot a try ASAP. As I see it, the test will proceed in several stages: 0. I patch SQLite and run it against both .18 and your snapshot, and strace it to verify that fcntl(fd, 0x99, 1) is called and returns 0 with the snapshot and returns -1 with errno == EINVAL for .18. Both count as "success" so we don't have to require .19. 1. I upload it, and Achim and Yaakov try it and see if this new build satisfies their use cases. 2. I promote test to curr -- waiting for .19 to hit the mirrors if Achim and Yaakov get back to me before that -- and wait for screams from the users. 3. A month or two hence, I'll tell upstream about the patch, and hope they adopt it. -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Re: pthread_join() problem
On 03/06/13 11:01, Corinna Vinschen wrote: I tracked this down to a problem in the process exit handling which disallowed pthreads to exit when process exit was in progress (and running the global destructors is part of the process exit). I fixed that in CVS. I'm just uploading a 2013-06-03 snapshot tohttp://cygwin.com/snapshots/ as well as generating a 1.7.9-10 cygwin package for the 64 bit test distro. Please give either one of them a try, especially with poco. Thank you for providing a fix so quickly. I have tried the new 32-bit snapshot and the new 64-bit cygwin package and can confirm that Poco threads work fine in both environments. I've still got a little way to go with Poco: one of the test harnesses seg-faults, and another locks up part way through :-( I'll chase these down and package it when it's all working. Thanks again for the speedy fix, Dave. -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
[TEST] sqlite3-3.7.17-1 (Cygwin 1.7.19 locking feature)
This is a big-push attempt at a version of Cygwin SQLite that will make everyone happy (ha!) whether they want POSIX advisory locking behavior or Windows mandatory locking behavior. My part of the effort is being stubborn on this point and doing the basic testing and packaging. The real magic was added by Corinna to yesterday's 1.7.19 cygwin1.dll snapshot. This build relies on a new feature in that snapshot, so you must install it first. If you want to try this SQLite build, check with uname -r that you are in fact running the new DLL, else it will *silently* cope with the error that results. (This is a feature.) This test build of Cygwin SQLite does several things at once: - It switches back to a "Unix mode" build, as we tried in 3.7.12.1-1. As a result, the hacky patch to make it use the Unix mode /tmp path selection logic has been removed. - By default, it requests mandatory locking using the feature added in yesterday's Cygwin 1.7.19 snapshot. This should make it cooperate with native Windows programs also using SQLite despite running in Unix mode. I have no STC for this, so I don't know if it is effective. The only test I know of requires running Tortoise SVN with all the Explorer integration features enabled, and I simply don't want to do that to my development box. The test, for those who have done this to *their* box, is to try using Cygwin svn on a directory while that same directory is open in Explorer. Bounce back and forth between the two svn clients. If they don't seem to interfere, the new feature in the Cygwin DLL is probably working as expected. - This mandatory-locks-by-default feature of this SQLite build can be disabled by setting the new CYGWIN_SQLITE_LOCKING environment variable to "posix". (The value is not case-sensitive, so you can spell it "POSIX" if that makes you feel better.) This should finally allow those like Achim Gratz to use the official Cygwin SQLite build, as it effectively makes it behave like a stock Unix mode build. - This build also switches the temporary storage strategy to 2, which makes it always use in-memory temporary files. Although running SQLite in pure Unix mode by setting the above environment variable should obviate the need for this, I want to try shipping SQLite so people don't need to do that for things like monotone to work. I'll consider reverting this change if there is some need for huge DB files which no longer open with this change. Downloads are at http://etr-usa.com/cygwin/sqlite3/ Broadly speaking, you want the files with "3.7.17-1" in their name. The one(s) you want may be buried a level deep, since that tree mirrors the Cygwin repository mirror structure. If you want to test using the interactive sqlite3.exe program, it's in the package at the top level. If you want to test instead using existing binaries dynamically linked to cygsqlite3-0.dll, you should only need to download the one package in the libsqlite3_0 subdirectory. You shouldn't need the -devel and -debuginfo packages. Your current -devel should suffice to build against the new DLL. -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
odd installer error "unexpected OPENSQUARE"
Hi folks, I've made a nice Windows "port" of a client bash installer that deploys a prepared cygwin distribution using NSIS and runs a few scripts afterward. Works great on most of the machines we've tested on, throwing a bizarre error on a Win7 x64 domain machine. Any ideas? During the "Parsing..." step: Parse Errors: \\path\username\Desktop/$RECYCLE.BIN/$RRNEQYK/setup.ini line 1: syntax error, unexpected OPENSQUARE, expecting $end. Thanks! -alex -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Mounting ISOs with Cygwin?
$ mount -o loop -t iso9660 /cygdrive/c/Documents\ and\ Settings/joliver/My\ Documents/Downloads/Fedora-18-x86_64-DVD.iso Fedora mount: unknown option -- t Try `mount --help' for more information. $ mount -o loop /cygdrive/c/Documents\ and\ Settings/joliver/My\ Documents/Downloads/Fedora-18-x86_64-DVD.iso Fedora mount: invalid option - 'loop' $ mount /cygdrive/c/Documents\ and\ Settings/joliver/My\ Documents/Downloads/Fedora-18-x86_64-DVD.iso Fedora mount: Fedora: Invalid argument Man pages don't help, Google doesn't help... what's the secret? :-) -- *** * John Oliver http://www.john-oliver.net/ * * * *** -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Re: Mounting ISOs with Cygwin?
If you're just looking for any old way to do it, as opposed to using cygwin, Me, I just install WinCDEmu from http://wincdemu.sysprogs.org/download and then do cygstart foo.iso - Dan On Mon, Jun 3, 2013 at 3:20 PM, John Oliver wrote: > $ mount -o loop -t iso9660 /cygdrive/c/Documents\ and\ > Settings/joliver/My\ Documents/Downloads/Fedora-18-x86_64-DVD.iso Fedora > mount: unknown option -- t > Try `mount --help' for more information. > > $ mount -o loop /cygdrive/c/Documents\ and\ Settings/joliver/My\ > Documents/Downloads/Fedora-18-x86_64-DVD.iso Fedora > mount: invalid option - 'loop' > > $ mount /cygdrive/c/Documents\ and\ Settings/joliver/My\ > Documents/Downloads/Fedora-18-x86_64-DVD.iso Fedora > mount: Fedora: Invalid argument > > > Man pages don't help, Google doesn't help... what's the secret? :-) > > -- > *** > * John Oliver http://www.john-oliver.net/ * > * * > *** > > -- > Problem reports: http://cygwin.com/problems.html > FAQ: http://cygwin.com/faq/ > Documentation: http://cygwin.com/docs.html > Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple > -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Re: Mounting ISOs with Cygwin?
On 6/3/2013 6:20 PM, John Oliver wrote: $ mount -o loop -t iso9660 /cygdrive/c/Documents\ and\ Settings/joliver/My\ Documents/Downloads/Fedora-18-x86_64-DVD.iso Fedora mount: unknown option -- t Try `mount --help' for more information. $ mount -o loop /cygdrive/c/Documents\ and\ Settings/joliver/My\ Documents/Downloads/Fedora-18-x86_64-DVD.iso Fedora mount: invalid option - 'loop' $ mount /cygdrive/c/Documents\ and\ Settings/joliver/My\ Documents/Downloads/Fedora-18-x86_64-DVD.iso Fedora mount: Fedora: Invalid argument Man pages don't help, Google doesn't help... what's the secret? :-) Cygwin != Linux. This is one area where you see the difference. Cygwin's mount is really just a mechanism for mapping DOS-style paths and names to POSIX versions. That's it. There have been some bells and whistles added over time but there is no Cygwin-specific way to mount ISOs, for example. So how do you do it? The same way you would in Windows. Get a utility that mounts the ISO for you and then, if you want to see that ISO under Cygwin, just access it by its drive name under '/cygdrive'. -- Larry _ A: Yes. > Q: Are you sure? >> A: Because it reverses the logical flow of conversation. >>> Q: Why is top posting annoying in email? -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Re: Mounting ISOs with Cygwin?
On Mon, Jun 3, 2013 at 3:47 PM, Larry Hall (Cygwin) wrote: > Cygwin != Linux /proc/cpuinfo begs to differ :-) For what it's worth, windows 8 now includes a way to mount iso, and it seems to have been backported to older windows as an addon ( http://www.microsoft.com/en-us/download/details.aspx?id=38780 ), so maybe cygwin's mount could use that to trigger a mount, if it's available. -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Re: Mounting ISOs with Cygwin?
On 6/3/2013 17:03, Dan Kegel wrote: On Mon, Jun 3, 2013 at 3:47 PM, Larry Hall (Cygwin) wrote: Cygwin != Linux /proc/cpuinfo begs to differ :-) $ grep -i linux /proc/cpuinfo | wc -l 0 Smiley suggests joke. Joke not funny, yet statement not serious. Programmer confused. F1! Also: $ uname -a | grep -i linux | wc -l 0 -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Re: Mounting ISOs with Cygwin?
On Mon, Jun 3, 2013 at 4:44 PM, Warren Young wrote: >>> Cygwin != Linux >> >> /proc/cpuinfo begs to differ :-) > > $ grep -i linux /proc/cpuinfo | wc -l > 0 Wrong test. I think you were looking for $ test -f /proc/cpuinfo && echo "looks like linux" See also http://www.sourceware.org/ml/cygwin-patches/2003-q2/msg00054.html - Dan -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Re: [TEST] sqlite3-3.7.17-1 (Cygwin 1.7.19 locking feature)
On 6/3/2013 1:11 PM, Warren Young wrote: > This is a big-push attempt at a version of Cygwin SQLite that will make > everyone happy (ha!) whether they want POSIX advisory locking behavior > or Windows mandatory locking behavior. My part of the effort is being > stubborn on this point and doing the basic testing and packaging. The > real magic was added by Corinna to yesterday's 1.7.19 cygwin1.dll snapshot. Thank you (and thank you Corinna!) for all your hard work and perseverance with this issue. Unfortunately... > - By default, it requests mandatory locking using the feature added in > yesterday's Cygwin 1.7.19 snapshot. This should make it cooperate with > native Windows programs also using SQLite despite running in Unix mode. > > - This mandatory-locks-by-default feature of this SQLite build can be > disabled by setting the new CYGWIN_SQLITE_LOCKING environment variable > to "posix". ... initial results with the Subversion test suite (for 1.8.0-rc2) show that most tests fail with a "sqlite: database is locked (S5)" error unless CYGWIN_SQLITE_LOCKING=posix. The good news is that the test cases that relied on temporary tables are now passing. I'll try the 1.7.10 test suite shortly and report back on the results, although I expect them to be the same. -- David Rothenberger daver...@acm.org Water, taken in moderation cannot hurt anybody. -- Mark Twain -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Re: Mounting ISOs with Cygwin?
On 2013-06-03 18:03, Dan Kegel wrote: On Mon, Jun 3, 2013 at 3:47 PM, Larry Hall (Cygwin) wrote: Cygwin != Linux /proc/cpuinfo begs to differ :-) For what it's worth, windows 8 now includes a way to mount iso, and it seems to have been backported to older windows as an addon ( http://www.microsoft.com/en-us/download/details.aspx?id=38780 ), so maybe cygwin's mount could use that to trigger a mount, if it's available. FWIW, that only works for x86 Windows, not x64. Yaakov -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Re: [TEST] sqlite3-3.7.17-1 (Cygwin 1.7.19 locking feature)
On 6/3/2013 5:58 PM, David Rothenberger wrote: > I'll try the 1.7.10 test suite shortly and report back on the results, > although I expect them to be the same. Confirmed. And I get problems in practice using subversion without setting the locking mode to posix. -- David Rothenberger daver...@acm.org "I don't know where we come from, Don't know where we're going to, And if all this should have a reason, We would be the last to know. So let's just hope there is a promised land, And until then, ...as best as you can." -- Steppenwolf, "Rock Me Baby" -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple