mirror of
https://github.com/libguestfs/libguestfs.git
synced 2026-03-22 07:03:38 +00:00
The gobject bindings are adequately covered in the usual manual pages: guestfs(3). There is no need for separate generation of gtk-doc. Also generating gtk documentation is the slowest part of the build, and the tooling around gtk-doc is broken (https://bugzilla.redhat.com/show_bug.cgi?id=1465665). Note this removes the configure ‘--enable-gtk-doc’ option. Using this option now gives a warning, but is otherwise ignored: configure: WARNING: unrecognized options: --enable-gtk-doc
29 lines
1.4 KiB
OCaml
29 lines
1.4 KiB
OCaml
(* libguestfs
|
|
* Copyright (C) 2009-2017 Red Hat Inc.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*)
|
|
|
|
val generate_gobject_header : unit -> unit
|
|
val generate_gobject_makefile : unit -> unit
|
|
val generate_gobject_optargs_header : string -> string -> Types.action -> unit -> unit
|
|
val generate_gobject_optargs_source : string -> string -> Types.optargt list -> Types.action -> unit -> unit
|
|
val generate_gobject_session_header : unit -> unit
|
|
val generate_gobject_session_source : unit -> unit
|
|
val generate_gobject_struct_header : string -> string -> (string * Types.field) list -> unit -> unit
|
|
val generate_gobject_struct_source : string -> string -> unit -> unit
|
|
val generate_gobject_tristate_header : unit -> unit
|
|
val generate_gobject_tristate_source : unit -> unit
|