vlc | branch: master | Hugo Beauzée-Luyssen <[email protected]> | Sat Jan 30 09:26:30 2016 +0100| [ce1325ed51a5ecd74fada640dc0d88ef3510c71a] | committer: Jean-Baptiste Kempf
cachegen: fix when building without getopt Signed-off-by: Jean-Baptiste Kempf <[email protected]> > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=ce1325ed51a5ecd74fada640dc0d88ef3510c71a --- bin/cachegen.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bin/cachegen.c b/bin/cachegen.c index 4b1cc57..0e52559 100644 --- a/bin/cachegen.c +++ b/bin/cachegen.c @@ -51,6 +51,7 @@ int main (int argc, char *argv[]) #ifdef _WIN32 SetErrorMode(SEM_FAILCRITICALERRORS); #endif +#ifdef HAVE_GETOPT_H static const struct option opts[] = { { "help", no_argument, NULL, 'h' }, @@ -73,6 +74,9 @@ int main (int argc, char *argv[]) usage (argv[0]); return 1; } +#else + int optind = 1; +#endif for (int i = optind; i < argc; i++) { _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
