Merge branch 'stable'
[gnulib.git] / doc / glibc-functions / getopt_long.texi
1 @node getopt_long
2 @subsection @code{getopt_long}
3 @findex getopt_long
4
5 Gnulib module: getopt-gnu
6
7 Portability problems fixed by Gnulib:
8 @itemize
9 @item
10 The function @code{getopt_long} does not support the @samp{+} flag in
11 the options string on some platforms:
12 MacOS X 10.5, AIX 5.2, OSF/1 5.1, Solaris 10.
13 @item
14 The function @code{getopt_long} does not obey the @samp{-} flag in the
15 options string when @env{POSIXLY_CORRECT} is set on some platforms:
16 Cygwin 1.7.0.
17 @item
18 Some implementations fail to reset state, including re-checking
19 @env{POSIXLY_CORRECT}, when @code{optind} is set to @samp{0}:
20 NetBSD, Cygwin 1.7.0.
21 @item
22 The function @code{getopt_long} does not support options with optional
23 arguments on some platforms:
24 MacOS X 10.5, OpenBSD 4.0, AIX 5.2, IRIX 6.5, Solaris 10, Cygwin 1.5.x.
25 @item
26 This function is missing on some platforms:
27 AIX 5.1, HP-UX 11, IRIX 6.5, OSF/1 5.1, Interix 3.5.
28 @end itemize
29
30 Portability problems not fixed by Gnulib:
31 @itemize
32 @item
33 The glibc extension of using @samp{W;} in the optstring argument to
34 allow @code{-W foo} to behave synonymously with @code{--foo} is not
35 very reliable, even in glibc.
36 @item
37 Mixing a leading @samp{-} or @samp{+} with a leading @samp{:} in the
38 optstring argument has inconsistent effects across platforms.
39 @end itemize