views:

221

answers:

2

Also, has anyone ever used it for a successful commercial application? Red hat is pretty vague on their website.. and have not answered my emails yet.

A: 

At my previous job, we made a semi-serious attempt to purchase a commercial Cygwin license. IIRC, we also had problems in getting Red Hat to respond in time, so ultimately we went with another solution.

JesperE
If you don't mind asking, what route did you go?
+1  A: 

I thought Cygwin was licensed under the GPL so you couldn't use it in non-free (closed source) software.

If you're really keen, MinGW works well and gives you a non-GPL but still free solution. Cygwin is a fully featured Unix-clone for Windows right down to all the tools you could possibly think of. MinGW is a basic Unix-layer and shell, giving you just enough to run tools like Make, Gcc, to build Unixy software. You can, of course, build any Unixy packages you require into the MinGW file system, replicating cygwin if you need.

Adam Hawes