I'd like to use getopt in my C++ program, but the powers-that-be at my place don't want to use GPL or LGPL code (they're not that fond of Boost). Since getopt is licensed under the GPL (or is it the LGPL?), I can't use it.

Does anyone know of any alternatives?

link|improve this question

73% accept rate
1  
It is wise to not be fond of boost... if you are an individual. If you are an organization it is a terrible thing to not use it. – Matt Joiner Sep 3 '10 at 8:32
feedback

5 Answers

Take a look at Boost.Program_options.

link|improve this answer
Yeah program options is not bad. – Matt Joiner Sep 3 '10 at 8:32
feedback

I'm pretty sure getopt is part of the GNU C Library, which is licensed under the LGPL, not the GPL, which means you can use it in your proprietary code as a library. You'll only have to give out the source code to libc, assuming you distribute it as part of your software package.

link|improve this answer
feedback

There are many functions called getopt() and not all of them are licenced under the GPL. Once upon a long time ago (circa 1988, IIRC), an implementation of getopt() in C was released into the public domain by AT&T. It would need cleaning up and conversion to C++, but it would be free of the GPL.

It depends in part on what set of option characteristics you want to support. It is effectively the POSIX getopt(), supporting only single-letter options.

link|improve this answer
feedback

NetBSD (and I'm sure other BSDs as well) has a BSD style licensed getopt (and getopt_long) implementation.

The NetBSD version is licensed under the 4-clause BSD license (the one with the advertising clause). Some people don't like that license as well.

link|improve this answer
feedback

Take a look at http://www.seebs.net/c/opts.html.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.