search for: 8f60314

Displaying 4 results from an estimated 4 matches for "8f60314".

Did you mean: 836314
2016 Jun 27
0
Re: [PATCH] RFC: OCaml tools: add and use a Getopt module
...prog in > - Arg.parse argspec anon_fun usage_msg; > + Getopt.parse argspec usage_msg; > > if not !format_consumed then > error (f_"--format parameter must appear before -a parameter"); > diff --git a/dib/Makefile.am b/dib/Makefile.am > index ae6e878..8f60314 100644 > --- a/dib/Makefile.am > +++ b/dib/Makefile.am > @@ -34,6 +34,7 @@ SOURCES_ML = \ > > SOURCES_C = \ > ../mllib/dev_t-c.c \ > + ../mllib/getopt-c.c \ > ../mllib/mkdtemp-c.c > > bin_PROGRAMS = > @@ -60,6 +61,7 @@ BOBJECTS = \ > $(top_builddir)/m...
2016 Jun 24
2
[PATCH] RFC: OCaml tools: add and use a Getopt module
...page virt-customize(1). ") prog in - Arg.parse argspec anon_fun usage_msg; + Getopt.parse argspec usage_msg; if not !format_consumed then error (f_"--format parameter must appear before -a parameter"); diff --git a/dib/Makefile.am b/dib/Makefile.am index ae6e878..8f60314 100644 --- a/dib/Makefile.am +++ b/dib/Makefile.am @@ -34,6 +34,7 @@ SOURCES_ML = \ SOURCES_C = \ ../mllib/dev_t-c.c \ + ../mllib/getopt-c.c \ ../mllib/mkdtemp-c.c bin_PROGRAMS = @@ -60,6 +61,7 @@ BOBJECTS = \ $(top_builddir)/mllib/guestfs_config.cmo \ $(top_builddir)/mllib/common_get...
2016 Jul 11
2
[PATCH v2] OCaml tools: add and use a Getopt module
...page virt-customize(1). ") prog in - Arg.parse argspec anon_fun usage_msg; + Getopt.parse argspec usage_msg; if not !format_consumed then error (f_"--format parameter must appear before -a parameter"); diff --git a/dib/Makefile.am b/dib/Makefile.am index ae6e878..8f60314 100644 --- a/dib/Makefile.am +++ b/dib/Makefile.am @@ -34,6 +34,7 @@ SOURCES_ML = \ SOURCES_C = \ ../mllib/dev_t-c.c \ + ../mllib/getopt-c.c \ ../mllib/mkdtemp-c.c bin_PROGRAMS = @@ -60,6 +61,7 @@ BOBJECTS = \ $(top_builddir)/mllib/guestfs_config.cmo \ $(top_builddir)/mllib/common_get...
2016 Jul 13
3
[PATCH v3 1/2] OCaml tools: add and use a Getopt module
...parse argspec anon_fun usage_msg; + let opthandle = create_standard_options argspec usage_msg in + Getopt.parse opthandle; if not !format_consumed then error (f_"--format parameter must appear before -a parameter"); diff --git a/dib/Makefile.am b/dib/Makefile.am index ae6e878..8f60314 100644 --- a/dib/Makefile.am +++ b/dib/Makefile.am @@ -34,6 +34,7 @@ SOURCES_ML = \ SOURCES_C = \ ../mllib/dev_t-c.c \ + ../mllib/getopt-c.c \ ../mllib/mkdtemp-c.c bin_PROGRAMS = @@ -60,6 +61,7 @@ BOBJECTS = \ $(top_builddir)/mllib/guestfs_config.cmo \ $(top_builddir)/mllib/common_get...